From cc1805e1d480fd8de8b01de0ba30273aa8d26caa Mon Sep 17 00:00:00 2001 From: ThePra Date: Fri, 16 Dec 2022 00:55:43 +0100 Subject: [PATCH] up --- App.razor | 2 +- LayerComponents/CascadingState.razor | 8 + Program.cs | 1 + SCSS/bulma/sass/base/generic.sass | 5 - SCSS/bulma/sass/components/dropdown.sass | 1 - SCSS/bulma/sass/elements/button.sass | 20 - SCSS/bulma/sass/form/shared.sass | 7 +- SCSS/variables.scss | 6 - bundleconfig.json | 4 +- decePubClient.csproj | 12 +- wwwroot/css/main.css | 6 - wwwroot/css/main.min.css | 2 +- wwwroot/css/style.min.css | 7222 +++++++++++----------- wwwroot/css/style.min.css.gz | Bin 28247 -> 28371 bytes wwwroot/fonts/ionicons.eot | Bin 112654 -> 112650 bytes wwwroot/fonts/ionicons.svg | 2785 ++++++--- wwwroot/fonts/ionicons.ttf | Bin 112476 -> 112472 bytes wwwroot/fonts/ionicons.woff | Bin 65912 -> 65908 bytes wwwroot/index.html | 1 + wwwroot/vendor/bulma.css | 49 +- wwwroot/vendor/bulma.min.css | 2 +- wwwroot/vendor/ionicons.css | 3512 ----------- wwwroot/vendor/ionicons.min.css | 12 +- wwwroot/vendor/open-iconic.css | 511 -- wwwroot/vendor/open-iconic.min.css | 1 - 25 files changed, 5824 insertions(+), 8345 deletions(-) delete mode 100644 wwwroot/vendor/ionicons.css delete mode 100644 wwwroot/vendor/open-iconic.css delete mode 100644 wwwroot/vendor/open-iconic.min.css diff --git a/App.razor b/App.razor index 69c13d7..56aa443 100644 --- a/App.razor +++ b/App.razor @@ -14,7 +14,7 @@ } - + Not found diff --git a/LayerComponents/CascadingState.razor b/LayerComponents/CascadingState.razor index 24f72c1..8c7b29f 100644 --- a/LayerComponents/CascadingState.razor +++ b/LayerComponents/CascadingState.razor @@ -31,6 +31,7 @@ --colour-index: 0; --background: hsl(0,0%,88%); --text-color: hsl(0,0%,26.4%); + --placeholder-text-color: hsla(0,0%,26.4%,.4); --primary-color: hsl(0,0%,88%); --primary-color-light: hsl(0,0%,100%); --primary-color-dark: hsl(0,0%,66%); @@ -51,6 +52,7 @@ --colour-index: 0; --background: hsl(0,0%,12%); --text-color: hsl(0,0%,73.6%); + --placeholder-text-color: hsla(0,0%,52.8%,.4); --primary-color: hsl(0,0%,12%); --primary-color-light: hsl(0,0%,100%); --primary-color-dark: hsl(0,0%,33%); @@ -73,6 +75,7 @@ --colour-index: {PublicCacheData.PageSettings.LightThemeIndexColour}; --background: hsl(var(--colour-index,25),84%,88%); --text-color: hsl(var(--colour-index,25),84%,26.4%); + --placeholder-text-color: hsla(var(--colour-index,25),84%,26.4%,.4); --primary-color: hsl(var(--colour-index,25),84%,88%); --primary-color-light: hsl(var(--colour-index,25),84%,100%); --primary-color-dark: hsl(var(--colour-index,25),84%,66%); @@ -93,6 +96,7 @@ --colour-index: {PublicCacheData.PageSettings.DarkThemeIndexColour}; --background: hsl(var(--colour-index,215),16%,12%); --text-color: hsl(var(--colour-index,215),16%,73.6%); + --placeholder-text-color: hsla(var(--colour-index,25),84%,26.4%,.4); --primary-color: hsl(var(--colour-index,215),16%,12%); --primary-color-light: hsl(var(--colour-index,215),84%,100%); --primary-color-dark: hsl(var(--colour-index,215),16%,33%); @@ -118,6 +122,7 @@ @($@":root{{--colour-index: 0; --background: hsl(0,0%,12%); --text-color: hsl(0,0%,73.6%); + --placeholder-text-color: hsla(0,0%,73.6%,.4); --primary-color: hsl(0,0%,12%); --primary-color-light: hsl(0,0%,100%); --primary-color-dark: hsl(0,0%,33%); @@ -135,6 +140,7 @@ @($@":root{{--colour-index: 0; --background: hsl(0,0%,88%); --text-color: hsl(0,0%,26.4%); + --placeholder-text-color: hsla(0,0%,26.4%,.4); --primary-color: hsl(0,0%,88%); --primary-color-light: hsl(0,0%,100%); --primary-color-dark: hsl(0,0%,66%); @@ -155,6 +161,7 @@ @($@":root{{--colour-index: {PublicCacheData.PageSettings.DarkThemeIndexColour}; --background: hsl(var(--colour-index,215),16%,12%); --text-color: hsl(var(--colour-index,215),16%,73.6%); + --placeholder-text-color: hsla(var(--colour-index,215),16%,73.6%,.4); --primary-color: hsl(var(--colour-index,215),16%,12%); --primary-color-light: hsl(var(--colour-index,215),84%,100%); --primary-color-dark: hsl(var(--colour-index,215),16%,33%); @@ -172,6 +179,7 @@ @($@":root{{--colour-index: {PublicCacheData.PageSettings.LightThemeIndexColour}; --background: hsl(var(--colour-index,25),84%,88%); --text-color: hsl(var(--colour-index,25),84%,26.4%); + --placeholder-text-color: hsla(var(--colour-index,25),84%,26.4%,.4); --primary-color: hsl(var(--colour-index,25),84%,88%); --primary-color-light: hsl(var(--colour-index,25),84%,100%); --primary-color-dark: hsl(var(--colour-index,25),84%,66%); diff --git a/Program.cs b/Program.cs index 2cce5c6..d915bef 100644 --- a/Program.cs +++ b/Program.cs @@ -45,6 +45,7 @@ builder.Services.AddOptions() .AddScoped(provider => provider.GetRequiredService()) .AddSingleton(typeof(CoalescingStringLocalizer)) //.AddTransient() + .AddHotKeys(options => options.DisableClientScriptAutoInjection = true) .AddHeadElementHelper(options => options.DisableClientScriptAutoInjection = true) .AddLocalization() .AddTransient() diff --git a/SCSS/bulma/sass/base/generic.sass b/SCSS/bulma/sass/base/generic.sass index 42c736a..db9ebac 100644 --- a/SCSS/bulma/sass/base/generic.sass +++ b/SCSS/bulma/sass/base/generic.sass @@ -74,13 +74,8 @@ body // Inline a - color: $link cursor: pointer text-decoration: none - strong - color: currentColor - &:hover - color: $link-hover code background-color: $code-background diff --git a/SCSS/bulma/sass/components/dropdown.sass b/SCSS/bulma/sass/components/dropdown.sass index 3743cb7..521868f 100644 --- a/SCSS/bulma/sass/components/dropdown.sass +++ b/SCSS/bulma/sass/components/dropdown.sass @@ -55,7 +55,6 @@ $dropdown-divider-background-color: $border-light !default padding-top: $dropdown-content-padding-top .dropdown-item - color: $dropdown-item-color display: block font-size: 0.875rem line-height: 1.5 diff --git a/SCSS/bulma/sass/elements/button.sass b/SCSS/bulma/sass/elements/button.sass index 6308064..3fe337d 100644 --- a/SCSS/bulma/sass/elements/button.sass +++ b/SCSS/bulma/sass/elements/button.sass @@ -61,10 +61,6 @@ $button-responsive-sizes: ("mobile": ("small": ($size-small * 0.75), "normal": ( .button @extend %control @extend %unselectable - background-color: $button-background-color - border-color: $button-border-color - border-width: $button-border-width - color: $button-color cursor: pointer @if $button-family font-family: $button-family @@ -75,8 +71,6 @@ $button-responsive-sizes: ("mobile": ("small": ($size-small * 0.75), "normal": ( padding-top: $button-padding-vertical text-align: center white-space: nowrap - strong - color: inherit .icon &, &.is-small, @@ -94,20 +88,6 @@ $button-responsive-sizes: ("mobile": ("small": ($size-small * 0.75), "normal": ( margin-left: calc(#{-0.5 * $button-padding-horizontal} - #{$button-border-width}) margin-right: calc(#{-0.5 * $button-padding-horizontal} - #{$button-border-width}) // States - &:hover, - &.is-hovered - border-color: $button-hover-border-color - color: $button-hover-color - &:focus, - &.is-focused - border-color: $button-focus-border-color - color: $button-focus-color - &:not(:active) - box-shadow: $button-focus-box-shadow-size $button-focus-box-shadow-color - &:active, - &.is-active - border-color: $button-active-border-color - color: $button-active-color // Colors &.is-text background-color: transparent diff --git a/SCSS/bulma/sass/form/shared.sass b/SCSS/bulma/sass/form/shared.sass index 422d7aa..7ff7087 100644 --- a/SCSS/bulma/sass/form/shared.sass +++ b/SCSS/bulma/sass/form/shared.sass @@ -35,9 +35,8 @@ $input-radius: $radius !default background-color: $input-background-color border-color: $input-border-color border-radius: $input-radius - color: $input-color +placeholder - color: $input-placeholder-color + color: var(--placeholder-text-color) &:hover, &.is-hovered border-color: $input-hover-border-color @@ -52,9 +51,9 @@ $input-radius: $radius !default background-color: $input-disabled-background-color border-color: $input-disabled-border-color box-shadow: none - color: $input-disabled-color + color: var(--placeholder-text-color) +placeholder - color: $input-disabled-placeholder-color + color: var(--placeholder-text-color) %input +input diff --git a/SCSS/variables.scss b/SCSS/variables.scss index 9d5176d..de3e0ee 100644 --- a/SCSS/variables.scss +++ b/SCSS/variables.scss @@ -18,17 +18,11 @@ --secondary-color-dark: hsl(205, 84%, 84%); --light-shadow: hsla(25,84%,100%, .5); --dark-shadow: hsla(25,84%,66%, .5); - /*--fa-primary-color: hsl(25,84%,26.4%); - --fa-secondary-color: hsl(25,84%,66%);*/ --fa-primary-color: hsl(205,84%,26.4%); --fa-secondary-color: hsl(205,84%,66%); - /*--fa-primary-color: hsl(115,84%,26.4%); - --fa-secondary-color: hsl(115,84%,66%);*/ --fa-primary-opacity: 0.80; --fa-secondary-opacity: 0.80; --danger-color: hsl(0, 82%, 91%); --warning-color: hsl(48, 82%, 91%); --info-color: hsl(196, 82%, 91%); - --plus-green: hsl(96, 49%, 49%); - --plus-gold: hsl(51, 72%, 46%); } \ No newline at end of file diff --git a/bundleconfig.json b/bundleconfig.json index f7d3a8f..200d096 100644 --- a/bundleconfig.json +++ b/bundleconfig.json @@ -5,9 +5,9 @@ // "wwwroot/vendor/solid.css", // "wwwroot/vendor/fontawesome.css", //"wwwroot/vendor/open-iconic.css", - "wwwroot/vendor/ionicons.css", + "wwwroot/vendor/ionicons.min.css", "wwwroot/vendor/toggle-dark-light-mode.css", - "wwwroot/vendor/bulma.min.css", + "wwwroot/vendor/bulma.css", "wwwroot/css/main.min.css", "wwwroot/vendor/tailwind.css", "wwwroot/css/tailwind-override.css" diff --git a/decePubClient.csproj b/decePubClient.csproj index 67d9ae1..b2b6020 100644 --- a/decePubClient.csproj +++ b/decePubClient.csproj @@ -23,6 +23,7 @@ + @@ -38,9 +39,7 @@ - - @@ -49,10 +48,7 @@ - - - @@ -85,6 +81,12 @@ + + + PreserveNewest + + + ResXFileCodeGenerator diff --git a/wwwroot/css/main.css b/wwwroot/css/main.css index 2d76c65..3818839 100644 --- a/wwwroot/css/main.css +++ b/wwwroot/css/main.css @@ -18,19 +18,13 @@ --secondary-color-dark: hsl(205, 84%, 84%); --light-shadow: hsla(25,84%,100%, .5); --dark-shadow: hsla(25,84%,66%, .5); - /*--fa-primary-color: hsl(25,84%,26.4%); - --fa-secondary-color: hsl(25,84%,66%);*/ --fa-primary-color: hsl(205,84%,26.4%); --fa-secondary-color: hsl(205,84%,66%); - /*--fa-primary-color: hsl(115,84%,26.4%); - --fa-secondary-color: hsl(115,84%,66%);*/ --fa-primary-opacity: 0.80; --fa-secondary-opacity: 0.80; --danger-color: hsl(0, 82%, 91%); --warning-color: hsl(48, 82%, 91%); --info-color: hsl(196, 82%, 91%); - --plus-green: hsl(96, 49%, 49%); - --plus-gold: hsl(51, 72%, 46%); } :root { diff --git a/wwwroot/css/main.min.css b/wwwroot/css/main.min.css index 9627e5c..a480b59 100644 --- a/wwwroot/css/main.min.css +++ b/wwwroot/css/main.min.css @@ -1 +1 @@ -:root{--background:hsl(25,84%,88%);--text-color:hsl(25,84%,26.4%);--placeholder-text-color:hsla(25,84%,26.4%,.3);--black:hsl(0,0%,4%);--black-bis:hsl(0,0%,7%);--black-ter:hsl(0,0%,14%);--white:hsl(0,4%,99.8%);--primary-color:hsl(25,84%,88%);--primary-color-light:hsl(25,84%,100%);--primary-color-dark:hsl(25,84%,66%);--primary-gradiend-light:hsl(25,84%,92%);--primary-gradiend-dark:hsl(25,84%,84%);--primary-gradiend-lighter:hsl(25,84%,96%);--primary-gradiend-darker:hsl(25,84%,80%);--secondary-color:hsl(205,84%,88%);--secondary-color-light:hsl(205,84%,100%);--secondary-color-dark:hsl(205,84%,84%);--light-shadow:hsla(25,84%,100%,.5);--dark-shadow:hsla(25,84%,66%,.5);--fa-primary-color:hsl(205,84%,26.4%);--fa-secondary-color:hsl(205,84%,66%);--fa-primary-opacity:.8;--fa-secondary-opacity:.8;--danger-color:hsl(0,82%,91%);--warning-color:hsl(48,82%,91%);--info-color:hsl(196,82%,91%);--plus-green:hsl(96,49%,49%);--plus-gold:hsl(51,72%,46%)}:root{--shadow-offset:8px;--blur-radius:16px;--is-inset:inherit}.neomorph{box-shadow:calc(-1*var(--shadow-offset)) calc(-1*var(--shadow-offset)) var(--blur-radius) var(--light-shadow),var(--shadow-offset) var(--shadow-offset) var(--blur-radius) var(--dark-shadow);background-color:var(--background)}.neomorphInset{box-shadow:inset var(--shadow-offset) var(--shadow-offset) var(--blur-radius) var(--dark-shadow),inset calc(-1*var(--shadow-offset)) calc(-1*var(--shadow-offset)) var(--blur-radius) var(--light-shadow);background-color:var(--background)}.neomorphInset.is-nxxsmall{--shadow-offset:2px;--blur-radius:4px}@media(min-width:640px){.neomorphInset.is-nxxsmall-sm{--shadow-offset:2px;--blur-radius:4px}}@media(min-width:768px){.neomorphInset.is-nxxsmall-md{--shadow-offset:2px;--blur-radius:4px}}@media(min-width:1024px){.neomorphInset.is-nxxsmall-lg{--shadow-offset:2px;--blur-radius:4px}}@media(min-width:1280px){.neomorphInset.is-nxxsmall-xl{--shadow-offset:2px;--blur-radius:4px}}.neomorphInset.is-nxsmall{--shadow-offset:3px;--blur-radius:6px}@media(min-width:640px){.neomorphInset.is-nxsmall-sm{--shadow-offset:3px;--blur-radius:6px}}@media(min-width:768px){.neomorphInset.is-nxsmall-md{--shadow-offset:3px;--blur-radius:6px}}@media(min-width:1024px){.neomorphInset.is-nxsmall-lg{--shadow-offset:3px;--blur-radius:6px}}@media(min-width:1280px){.neomorphInset.is-nxsmall-xl{--shadow-offset:3px;--blur-radius:6px}}.neomorphInset.is-nsmall{--shadow-offset:6px;--blur-radius:12px}@media(min-width:640px){.neomorphInset.is-nsmall-sm{--shadow-offset:6px;--blur-radius:12px}}@media(min-width:768px){.neomorphInset.is-nsmall-md{--shadow-offset:6px;--blur-radius:12px}}@media(min-width:1024px){.neomorphInset.is-nsmall-lg{--shadow-offset:6px;--blur-radius:12px}}@media(min-width:1280px){.neomorphInset.is-nsmall-xl{--shadow-offset:6px;--blur-radius:12px}}.neomorph.is-nxxsmall{--shadow-offset:2px;--blur-radius:4px}@media(min-width:640px){.neomorph.is-nxxsmall-sm{--shadow-offset:2px;--blur-radius:4px}}@media(min-width:768px){.neomorph.is-nxxsmall-md{--shadow-offset:2px;--blur-radius:4px}}@media(min-width:1024px){.neomorph.is-nxxsmall-lg{--shadow-offset:2px;--blur-radius:4px}}@media(min-width:1280px){.neomorph.is-nxxsmall-xl{--shadow-offset:2px;--blur-radius:4px}}.neomorph.is-nxsmall{--shadow-offset:3px;--blur-radius:6px}@media(min-width:640px){.neomorph.is-nxsmall-sm{--shadow-offset:3px;--blur-radius:6px}}@media(min-width:768px){.neomorph.is-nxsmall-md{--shadow-offset:3px;--blur-radius:6px}}@media(min-width:1024px){.neomorph.is-nxsmall-lg{--shadow-offset:3px;--blur-radius:6px}}@media(min-width:1280px){.neomorph.is-nxsmall-xl{--shadow-offset:3px;--blur-radius:6px}}.neomorph.is-nsmall{--shadow-offset:6px;--blur-radius:12px}@media(min-width:640px){.neomorph.is-nsmall-sm{--shadow-offset:6px;--blur-radius:12px}}@media(min-width:768px){.neomorph.is-nsmall-md{--shadow-offset:6px;--blur-radius:12px}}@media(min-width:1024px){.neomorph.is-nsmall-lg{--shadow-offset:6px;--blur-radius:12px}}@media(min-width:1280px){.neomorph.is-nsmall-xl{--shadow-offset:6px;--blur-radius:12px}}.neomorph.is-nnormal{--shadow-offset:8px;--blur-radius:16px}@media(min-width:640px){.neomorph.is-nnormal-sm{--shadow-offset:8px;--blur-radius:16px}}@media(min-width:768px){.neomorph.is-nnormal-md{--shadow-offset:8px;--blur-radius:16px}}@media(min-width:1024px){.neomorph.is-nnormal-lg{--shadow-offset:8px;--blur-radius:16px}}@media(min-width:1280px){.neomorph.is-nnormal-xl{--shadow-offset:8px;--blur-radius:16px}}button.neoBtn,.neoBtn{background-image:linear-gradient(145deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:-3px -3px 6px var(--light-shadow),3px 3px 6px var(--dark-shadow);border:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}button.neoBtn:focus,.neoBtn:focus{background-image:linear-gradient(-45deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:-3px -3px 6px var(--light-shadow),3px 3px 6px var(--dark-shadow);border:0}button.neoBtnSmall,.neoBtnSmall{background-image:linear-gradient(145deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:-2px -2px 4px var(--light-shadow),2px 2px 4px var(--dark-shadow);border:0}button.neoBtnSmall:focus,.neoBtnSmall:focus{background-image:linear-gradient(-45deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:-2px -2px 4px var(--light-shadow),2px 2px 4px var(--dark-shadow);border:0}button.neoBtnSmall:focus:not(:active),.neoBtnSmall:focus:not(:active){background-image:linear-gradient(-45deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:-2px -2px 4px var(--light-shadow),2px 2px 4px var(--dark-shadow)}button.neoBtnSmall:focus input[type=file],.neoBtnSmall:focus input[type=file]{background-image:linear-gradient(-45deg,var(--primary-gradiend-light),var(--primary-gradiend-dark))}button.neoBtnSmallPlain,.neoBtnSmallPlain{background:var(--background);box-shadow:-3px -3px 6px var(--light-shadow),3px 3px 6px var(--dark-shadow);border:0}button.neoBtnSmallPlain:focus,.neoBtnSmallPlain:focus{box-shadow:-3px -3px 6px var(--light-shadow),3px 3px 6px var(--dark-shadow);border:0}button.neoBtnSmallInsetPlain,.neoBtnSmallInsetPlain{background-image:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow);border:0}button.neoBtnSmallInsetPlain:focus,.neoBtnSmallInsetPlain:focus{background-image:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow);border:0}button.neoBtnSmallXInsetPlain,.neoBtnSmallXInsetPlain{background-image:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light));box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);border:0}button.neoBtnSmallXInsetPlain:focus,.neoBtnSmallXInsetPlain:focus{background-image:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter));box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);border:0}button.neoBtnInsetPlain,.neoBtnInsetPlain{background-image:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow);border:0}button.neoBtnInsetPlain:focus,.neoBtnInsetPlain:focus{background-image:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow);border:0}button.neoBtnInsetPlain:focus:not(:active),.neoBtnInsetPlain:focus:not(:active){background-image:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow)}button.neoFile,.neoFile{box-shadow:0 0 0 var(--light-shadow),0 0 0 var(--dark-shadow);transition:all .2s linear;-webkit-backface-visibility:hidden;backface-visibility:hidden}button.neoFile:hover,.neoFile:hover{box-shadow:-3px -3px 6px var(--light-shadow),3px 3px 6px var(--dark-shadow)}button.neoFile:focus-visible,.neoFile:focus-visible{background:linear-gradient(-45deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow);outline:0}button.neoFile.isSelected,.neoFile.isSelected{background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow)}button.neoFile.isSelected:focus-visible,.neoFile.isSelected:focus-visible{background:linear-gradient(-45deg,var(--primary-gradiend-lighter),var(--primary-gradiend-darker));outline:0}button.neoFile.is-active,button.neoFile.active,.neoFile.is-active,.neoFile.active{box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow);color:var(--black)}button.neoInput,.neoInput{box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light));border:0}button.neoInput:focus,.neoInput:focus{background:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter));border:0}button.neoSelect>select,.neoSelect>select{box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light));border:0}button.neoSelect>select:focus,.neoSelect>select:focus{background:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter));border:0}.neoCheckbox{opacity:0;width:0}.neoCheckbox:focus+label:before{background:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter))!important}.neoCheckboxContainer{position:relative}.neoCheckbox+label{padding:.15rem .15rem .15rem 2rem;cursor:pointer;font-size:1rem;line-height:1.5}.neoCheckbox+label:before{animation-name:none;width:1.5rem;height:1.5rem;border-radius:100px;position:absolute;left:0;top:0;content:"";border:0;box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light))!important}.neoCheckbox:checked.is-checked-bold+label{font-weight:bold}.neoCheckbox:checked+label:after{display:inline-block;width:.375rem;height:.6rem;top:.35rem;left:.55rem;transform:translateY(0) rotate(45deg);border-width:.1rem;border-top-width:.1rem;border-left-width:.1rem;border-style:solid;border-top-style:solid;border-left-style:solid;border-color:var(--text-color);border-top:0;border-left:0;position:absolute;content:""}hr.neoSeparatorFlat{height:10px;border:0;border-radius:20px;box-shadow:-2px -2px 4px var(--light-shadow),2px 2px 4px var(--dark-shadow);background:var(--background)}hr.neoSeparatorPressed{height:10px;border:0;border-radius:20px;box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light))}input.neoRange[type=range]{height:30px;-webkit-appearance:none;width:100%;background:transparent}input.neoRange[type=range]:focus{outline:0}input.neoRange[type=range]::-webkit-slider-runnable-track{width:100%;height:20px;cursor:pointer;animate:.2s;border-radius:20px;box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(90deg,hsl(0deg,90%,80%),hsl(10deg,90%,80%),hsl(20deg,90%,80%),hsl(30deg,90%,80%),hsl(40deg,90%,80%),hsl(50deg,90%,80%),hsl(60deg,90%,80%),hsl(70deg,90%,80%),hsl(80deg,90%,80%),hsl(90deg,90%,80%),hsl(100deg,90%,80%),hsl(110deg,90%,80%),hsl(120deg,90%,80%),hsl(130deg,90%,80%),hsl(140deg,90%,80%),hsl(150deg,90%,80%),hsl(160deg,90%,80%),hsl(170deg,90%,80%),hsl(180deg,90%,80%),hsl(190deg,90%,80%),hsl(200deg,90%,80%),hsl(210deg,90%,80%),hsl(220deg,90%,80%),hsl(230deg,90%,80%),hsl(240deg,90%,80%),hsl(250deg,90%,80%),hsl(260deg,90%,80%),hsl(270deg,90%,80%),hsl(280deg,90%,80%),hsl(290deg,90%,80%),hsl(300deg,90%,80%),hsl(310deg,90%,80%),hsl(320deg,90%,80%),hsl(330deg,90%,80%),hsl(340deg,90%,80%),hsl(350deg,90%,80%),hsl(359deg,90%,80%))!important}input.neoRange[type=range]::-webkit-slider-thumb{border:0;height:26px;width:26px;border-radius:20px;box-shadow:2px 2px 4px var(--dark-shadow),-2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-light),var(--primary-gradiend-dark))!important;cursor:pointer;-webkit-appearance:none;margin-top:-3px}input.neoRange[type=range]:focus::-webkit-slider-runnable-track{background:linear-gradient(90deg,hsl(0deg,90%,80%),hsl(10deg,90%,80%),hsl(20deg,90%,80%),hsl(30deg,90%,80%),hsl(40deg,90%,80%),hsl(50deg,90%,80%),hsl(60deg,90%,80%),hsl(70deg,90%,80%),hsl(80deg,90%,80%),hsl(90deg,90%,80%),hsl(100deg,90%,80%),hsl(110deg,90%,80%),hsl(120deg,90%,80%),hsl(130deg,90%,80%),hsl(140deg,90%,80%),hsl(150deg,90%,80%),hsl(160deg,90%,80%),hsl(170deg,90%,80%),hsl(180deg,90%,80%),hsl(190deg,90%,80%),hsl(200deg,90%,80%),hsl(210deg,90%,80%),hsl(220deg,90%,80%),hsl(230deg,90%,80%),hsl(240deg,90%,80%),hsl(250deg,90%,80%),hsl(260deg,90%,80%),hsl(270deg,90%,80%),hsl(280deg,90%,80%),hsl(290deg,90%,80%),hsl(300deg,90%,80%),hsl(310deg,90%,80%),hsl(320deg,90%,80%),hsl(330deg,90%,80%),hsl(340deg,90%,80%),hsl(350deg,90%,80%),hsl(359deg,90%,80%))!important}input.neoRange[type=range]::-moz-range-track{width:100%;height:20px;cursor:pointer;border-radius:20px;box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(90deg,hsl(0deg,90%,80%),hsl(10deg,90%,80%),hsl(20deg,90%,80%),hsl(30deg,90%,80%),hsl(40deg,90%,80%),hsl(50deg,90%,80%),hsl(60deg,90%,80%),hsl(70deg,90%,80%),hsl(80deg,90%,80%),hsl(90deg,90%,80%),hsl(100deg,90%,80%),hsl(110deg,90%,80%),hsl(120deg,90%,80%),hsl(130deg,90%,80%),hsl(140deg,90%,80%),hsl(150deg,90%,80%),hsl(160deg,90%,80%),hsl(170deg,90%,80%),hsl(180deg,90%,80%),hsl(190deg,90%,80%),hsl(200deg,90%,80%),hsl(210deg,90%,80%),hsl(220deg,90%,80%),hsl(230deg,90%,80%),hsl(240deg,90%,80%),hsl(250deg,90%,80%),hsl(260deg,90%,80%),hsl(270deg,90%,80%),hsl(280deg,90%,80%),hsl(290deg,90%,80%),hsl(300deg,90%,80%),hsl(310deg,90%,80%),hsl(320deg,90%,80%),hsl(330deg,90%,80%),hsl(340deg,90%,80%),hsl(350deg,90%,80%),hsl(359deg,90%,80%))!important;border:0}input.neoRange[type=range]::-moz-range-thumb{border:0;height:26px;width:26px;border-radius:20px;box-shadow:2px 2px 4px var(--dark-shadow),-2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-light),var(--primary-gradiend-dark))!important;cursor:pointer}body{color:var(--text-color);background-color:var(--background)}.background{background-color:var(--background)}details>summary::-webkit-details-marker{color:var(--text-color)}:focus-visible{outline:0}*,::after,::before{scrollbar-color:inherit;scrollbar-width:inherit}::-webkit-scrollbar{width:8px}::-webkit-scrollbar-button{width:8px;height:5px}::-webkit-scrollbar-track{background:transparent;border:thin solid transparent;box-shadow:none;border-radius:10px}::-webkit-scrollbar-thumb{background:var(--primary-color-dark);border:thin solid transparent;border-radius:10px}::-webkit-scrollbar-thumb:hover{background:var(--primary-color-dark)}::-moz-selection{color:var(--primary-color);background:var(--primary-color-dark)}::selection{color:var(--primary-color);background:var(--primary-color-dark)}.flex.flex-col-reverse>div:first-child{margin-top:1rem}.loadAnimation span{animation-name:blink;animation-duration:1.4s;animation-iteration-count:infinite;animation-fill-mode:both}.loadAnimation span:nth-child(1){animation-delay:.4s}.loadAnimation span:nth-child(2){animation-delay:.3s}.loadAnimation span:nth-child(3){animation-delay:.2s}.loadAnimation span:nth-child(4){animation-delay:.2s}.loadAnimation span:nth-child(5){animation-delay:.3s}.loadAnimation span:nth-child(6){animation-delay:.4s} \ No newline at end of file +:root{--background:hsl(25,84%,88%);--text-color:hsl(25,84%,26.4%);--placeholder-text-color:hsla(25,84%,26.4%,.3);--black:hsl(0,0%,4%);--black-bis:hsl(0,0%,7%);--black-ter:hsl(0,0%,14%);--white:hsl(0,4%,99.8%);--primary-color:hsl(25,84%,88%);--primary-color-light:hsl(25,84%,100%);--primary-color-dark:hsl(25,84%,66%);--primary-gradiend-light:hsl(25,84%,92%);--primary-gradiend-dark:hsl(25,84%,84%);--primary-gradiend-lighter:hsl(25,84%,96%);--primary-gradiend-darker:hsl(25,84%,80%);--secondary-color:hsl(205,84%,88%);--secondary-color-light:hsl(205,84%,100%);--secondary-color-dark:hsl(205,84%,84%);--light-shadow:hsla(25,84%,100%,.5);--dark-shadow:hsla(25,84%,66%,.5);--fa-primary-color:hsl(205,84%,26.4%);--fa-secondary-color:hsl(205,84%,66%);--fa-primary-opacity:.8;--fa-secondary-opacity:.8;--danger-color:hsl(0,82%,91%);--warning-color:hsl(48,82%,91%);--info-color:hsl(196,82%,91%)}:root{--shadow-offset:8px;--blur-radius:16px;--is-inset:inherit}.neomorph{box-shadow:calc(-1*var(--shadow-offset)) calc(-1*var(--shadow-offset)) var(--blur-radius) var(--light-shadow),var(--shadow-offset) var(--shadow-offset) var(--blur-radius) var(--dark-shadow);background-color:var(--background)}.neomorphInset{box-shadow:inset var(--shadow-offset) var(--shadow-offset) var(--blur-radius) var(--dark-shadow),inset calc(-1*var(--shadow-offset)) calc(-1*var(--shadow-offset)) var(--blur-radius) var(--light-shadow);background-color:var(--background)}.neomorphInset.is-nxxsmall{--shadow-offset:2px;--blur-radius:4px}@media(min-width:640px){.neomorphInset.is-nxxsmall-sm{--shadow-offset:2px;--blur-radius:4px}}@media(min-width:768px){.neomorphInset.is-nxxsmall-md{--shadow-offset:2px;--blur-radius:4px}}@media(min-width:1024px){.neomorphInset.is-nxxsmall-lg{--shadow-offset:2px;--blur-radius:4px}}@media(min-width:1280px){.neomorphInset.is-nxxsmall-xl{--shadow-offset:2px;--blur-radius:4px}}.neomorphInset.is-nxsmall{--shadow-offset:3px;--blur-radius:6px}@media(min-width:640px){.neomorphInset.is-nxsmall-sm{--shadow-offset:3px;--blur-radius:6px}}@media(min-width:768px){.neomorphInset.is-nxsmall-md{--shadow-offset:3px;--blur-radius:6px}}@media(min-width:1024px){.neomorphInset.is-nxsmall-lg{--shadow-offset:3px;--blur-radius:6px}}@media(min-width:1280px){.neomorphInset.is-nxsmall-xl{--shadow-offset:3px;--blur-radius:6px}}.neomorphInset.is-nsmall{--shadow-offset:6px;--blur-radius:12px}@media(min-width:640px){.neomorphInset.is-nsmall-sm{--shadow-offset:6px;--blur-radius:12px}}@media(min-width:768px){.neomorphInset.is-nsmall-md{--shadow-offset:6px;--blur-radius:12px}}@media(min-width:1024px){.neomorphInset.is-nsmall-lg{--shadow-offset:6px;--blur-radius:12px}}@media(min-width:1280px){.neomorphInset.is-nsmall-xl{--shadow-offset:6px;--blur-radius:12px}}.neomorph.is-nxxsmall{--shadow-offset:2px;--blur-radius:4px}@media(min-width:640px){.neomorph.is-nxxsmall-sm{--shadow-offset:2px;--blur-radius:4px}}@media(min-width:768px){.neomorph.is-nxxsmall-md{--shadow-offset:2px;--blur-radius:4px}}@media(min-width:1024px){.neomorph.is-nxxsmall-lg{--shadow-offset:2px;--blur-radius:4px}}@media(min-width:1280px){.neomorph.is-nxxsmall-xl{--shadow-offset:2px;--blur-radius:4px}}.neomorph.is-nxsmall{--shadow-offset:3px;--blur-radius:6px}@media(min-width:640px){.neomorph.is-nxsmall-sm{--shadow-offset:3px;--blur-radius:6px}}@media(min-width:768px){.neomorph.is-nxsmall-md{--shadow-offset:3px;--blur-radius:6px}}@media(min-width:1024px){.neomorph.is-nxsmall-lg{--shadow-offset:3px;--blur-radius:6px}}@media(min-width:1280px){.neomorph.is-nxsmall-xl{--shadow-offset:3px;--blur-radius:6px}}.neomorph.is-nsmall{--shadow-offset:6px;--blur-radius:12px}@media(min-width:640px){.neomorph.is-nsmall-sm{--shadow-offset:6px;--blur-radius:12px}}@media(min-width:768px){.neomorph.is-nsmall-md{--shadow-offset:6px;--blur-radius:12px}}@media(min-width:1024px){.neomorph.is-nsmall-lg{--shadow-offset:6px;--blur-radius:12px}}@media(min-width:1280px){.neomorph.is-nsmall-xl{--shadow-offset:6px;--blur-radius:12px}}.neomorph.is-nnormal{--shadow-offset:8px;--blur-radius:16px}@media(min-width:640px){.neomorph.is-nnormal-sm{--shadow-offset:8px;--blur-radius:16px}}@media(min-width:768px){.neomorph.is-nnormal-md{--shadow-offset:8px;--blur-radius:16px}}@media(min-width:1024px){.neomorph.is-nnormal-lg{--shadow-offset:8px;--blur-radius:16px}}@media(min-width:1280px){.neomorph.is-nnormal-xl{--shadow-offset:8px;--blur-radius:16px}}button.neoBtn,.neoBtn{background-image:linear-gradient(145deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:-3px -3px 6px var(--light-shadow),3px 3px 6px var(--dark-shadow);border:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}button.neoBtn:focus,.neoBtn:focus{background-image:linear-gradient(-45deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:-3px -3px 6px var(--light-shadow),3px 3px 6px var(--dark-shadow);border:0}button.neoBtnSmall,.neoBtnSmall{background-image:linear-gradient(145deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:-2px -2px 4px var(--light-shadow),2px 2px 4px var(--dark-shadow);border:0}button.neoBtnSmall:focus,.neoBtnSmall:focus{background-image:linear-gradient(-45deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:-2px -2px 4px var(--light-shadow),2px 2px 4px var(--dark-shadow);border:0}button.neoBtnSmall:focus:not(:active),.neoBtnSmall:focus:not(:active){background-image:linear-gradient(-45deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:-2px -2px 4px var(--light-shadow),2px 2px 4px var(--dark-shadow)}button.neoBtnSmall:focus input[type=file],.neoBtnSmall:focus input[type=file]{background-image:linear-gradient(-45deg,var(--primary-gradiend-light),var(--primary-gradiend-dark))}button.neoBtnSmallPlain,.neoBtnSmallPlain{background:var(--background);box-shadow:-3px -3px 6px var(--light-shadow),3px 3px 6px var(--dark-shadow);border:0}button.neoBtnSmallPlain:focus,.neoBtnSmallPlain:focus{box-shadow:-3px -3px 6px var(--light-shadow),3px 3px 6px var(--dark-shadow);border:0}button.neoBtnSmallInsetPlain,.neoBtnSmallInsetPlain{background-image:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow);border:0}button.neoBtnSmallInsetPlain:focus,.neoBtnSmallInsetPlain:focus{background-image:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow);border:0}button.neoBtnSmallXInsetPlain,.neoBtnSmallXInsetPlain{background-image:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light));box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);border:0}button.neoBtnSmallXInsetPlain:focus,.neoBtnSmallXInsetPlain:focus{background-image:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter));box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);border:0}button.neoBtnInsetPlain,.neoBtnInsetPlain{background-image:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow);border:0}button.neoBtnInsetPlain:focus,.neoBtnInsetPlain:focus{background-image:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow);border:0}button.neoBtnInsetPlain:focus:not(:active),.neoBtnInsetPlain:focus:not(:active){background-image:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow)}button.neoFile,.neoFile{box-shadow:0 0 0 var(--light-shadow),0 0 0 var(--dark-shadow);transition:all .2s linear;-webkit-backface-visibility:hidden;backface-visibility:hidden}button.neoFile:hover,.neoFile:hover{box-shadow:-3px -3px 6px var(--light-shadow),3px 3px 6px var(--dark-shadow)}button.neoFile:focus-visible,.neoFile:focus-visible{background:linear-gradient(-45deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow);outline:0}button.neoFile.isSelected,.neoFile.isSelected{background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow)}button.neoFile.isSelected:focus-visible,.neoFile.isSelected:focus-visible{background:linear-gradient(-45deg,var(--primary-gradiend-lighter),var(--primary-gradiend-darker));outline:0}button.neoFile.is-active,button.neoFile.active,.neoFile.is-active,.neoFile.active{box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow);color:var(--black)}button.neoInput,.neoInput{box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light));border:0}button.neoInput:focus,.neoInput:focus{background:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter));border:0}button.neoSelect>select,.neoSelect>select{box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light));border:0}button.neoSelect>select:focus,.neoSelect>select:focus{background:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter));border:0}.neoCheckbox{opacity:0;width:0}.neoCheckbox:focus+label:before{background:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter))!important}.neoCheckboxContainer{position:relative}.neoCheckbox+label{padding:.15rem .15rem .15rem 2rem;cursor:pointer;font-size:1rem;line-height:1.5}.neoCheckbox+label:before{animation-name:none;width:1.5rem;height:1.5rem;border-radius:100px;position:absolute;left:0;top:0;content:"";border:0;box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light))!important}.neoCheckbox:checked.is-checked-bold+label{font-weight:bold}.neoCheckbox:checked+label:after{display:inline-block;width:.375rem;height:.6rem;top:.35rem;left:.55rem;transform:translateY(0) rotate(45deg);border-width:.1rem;border-top-width:.1rem;border-left-width:.1rem;border-style:solid;border-top-style:solid;border-left-style:solid;border-color:var(--text-color);border-top:0;border-left:0;position:absolute;content:""}hr.neoSeparatorFlat{height:10px;border:0;border-radius:20px;box-shadow:-2px -2px 4px var(--light-shadow),2px 2px 4px var(--dark-shadow);background:var(--background)}hr.neoSeparatorPressed{height:10px;border:0;border-radius:20px;box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light))}input.neoRange[type=range]{height:30px;-webkit-appearance:none;width:100%;background:transparent}input.neoRange[type=range]:focus{outline:0}input.neoRange[type=range]::-webkit-slider-runnable-track{width:100%;height:20px;cursor:pointer;animate:.2s;border-radius:20px;box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(90deg,hsl(0deg,90%,80%),hsl(10deg,90%,80%),hsl(20deg,90%,80%),hsl(30deg,90%,80%),hsl(40deg,90%,80%),hsl(50deg,90%,80%),hsl(60deg,90%,80%),hsl(70deg,90%,80%),hsl(80deg,90%,80%),hsl(90deg,90%,80%),hsl(100deg,90%,80%),hsl(110deg,90%,80%),hsl(120deg,90%,80%),hsl(130deg,90%,80%),hsl(140deg,90%,80%),hsl(150deg,90%,80%),hsl(160deg,90%,80%),hsl(170deg,90%,80%),hsl(180deg,90%,80%),hsl(190deg,90%,80%),hsl(200deg,90%,80%),hsl(210deg,90%,80%),hsl(220deg,90%,80%),hsl(230deg,90%,80%),hsl(240deg,90%,80%),hsl(250deg,90%,80%),hsl(260deg,90%,80%),hsl(270deg,90%,80%),hsl(280deg,90%,80%),hsl(290deg,90%,80%),hsl(300deg,90%,80%),hsl(310deg,90%,80%),hsl(320deg,90%,80%),hsl(330deg,90%,80%),hsl(340deg,90%,80%),hsl(350deg,90%,80%),hsl(359deg,90%,80%))!important}input.neoRange[type=range]::-webkit-slider-thumb{border:0;height:26px;width:26px;border-radius:20px;box-shadow:2px 2px 4px var(--dark-shadow),-2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-light),var(--primary-gradiend-dark))!important;cursor:pointer;-webkit-appearance:none;margin-top:-3px}input.neoRange[type=range]:focus::-webkit-slider-runnable-track{background:linear-gradient(90deg,hsl(0deg,90%,80%),hsl(10deg,90%,80%),hsl(20deg,90%,80%),hsl(30deg,90%,80%),hsl(40deg,90%,80%),hsl(50deg,90%,80%),hsl(60deg,90%,80%),hsl(70deg,90%,80%),hsl(80deg,90%,80%),hsl(90deg,90%,80%),hsl(100deg,90%,80%),hsl(110deg,90%,80%),hsl(120deg,90%,80%),hsl(130deg,90%,80%),hsl(140deg,90%,80%),hsl(150deg,90%,80%),hsl(160deg,90%,80%),hsl(170deg,90%,80%),hsl(180deg,90%,80%),hsl(190deg,90%,80%),hsl(200deg,90%,80%),hsl(210deg,90%,80%),hsl(220deg,90%,80%),hsl(230deg,90%,80%),hsl(240deg,90%,80%),hsl(250deg,90%,80%),hsl(260deg,90%,80%),hsl(270deg,90%,80%),hsl(280deg,90%,80%),hsl(290deg,90%,80%),hsl(300deg,90%,80%),hsl(310deg,90%,80%),hsl(320deg,90%,80%),hsl(330deg,90%,80%),hsl(340deg,90%,80%),hsl(350deg,90%,80%),hsl(359deg,90%,80%))!important}input.neoRange[type=range]::-moz-range-track{width:100%;height:20px;cursor:pointer;border-radius:20px;box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(90deg,hsl(0deg,90%,80%),hsl(10deg,90%,80%),hsl(20deg,90%,80%),hsl(30deg,90%,80%),hsl(40deg,90%,80%),hsl(50deg,90%,80%),hsl(60deg,90%,80%),hsl(70deg,90%,80%),hsl(80deg,90%,80%),hsl(90deg,90%,80%),hsl(100deg,90%,80%),hsl(110deg,90%,80%),hsl(120deg,90%,80%),hsl(130deg,90%,80%),hsl(140deg,90%,80%),hsl(150deg,90%,80%),hsl(160deg,90%,80%),hsl(170deg,90%,80%),hsl(180deg,90%,80%),hsl(190deg,90%,80%),hsl(200deg,90%,80%),hsl(210deg,90%,80%),hsl(220deg,90%,80%),hsl(230deg,90%,80%),hsl(240deg,90%,80%),hsl(250deg,90%,80%),hsl(260deg,90%,80%),hsl(270deg,90%,80%),hsl(280deg,90%,80%),hsl(290deg,90%,80%),hsl(300deg,90%,80%),hsl(310deg,90%,80%),hsl(320deg,90%,80%),hsl(330deg,90%,80%),hsl(340deg,90%,80%),hsl(350deg,90%,80%),hsl(359deg,90%,80%))!important;border:0}input.neoRange[type=range]::-moz-range-thumb{border:0;height:26px;width:26px;border-radius:20px;box-shadow:2px 2px 4px var(--dark-shadow),-2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-light),var(--primary-gradiend-dark))!important;cursor:pointer}body{color:var(--text-color);background-color:var(--background)}.background{background-color:var(--background)}details>summary::-webkit-details-marker{color:var(--text-color)}:focus-visible{outline:0}*,::after,::before{scrollbar-color:inherit;scrollbar-width:inherit}::-webkit-scrollbar{width:8px}::-webkit-scrollbar-button{width:8px;height:5px}::-webkit-scrollbar-track{background:transparent;border:thin solid transparent;box-shadow:none;border-radius:10px}::-webkit-scrollbar-thumb{background:var(--primary-color-dark);border:thin solid transparent;border-radius:10px}::-webkit-scrollbar-thumb:hover{background:var(--primary-color-dark)}::-moz-selection{color:var(--primary-color);background:var(--primary-color-dark)}::selection{color:var(--primary-color);background:var(--primary-color-dark)}.flex.flex-col-reverse>div:first-child{margin-top:1rem}.loadAnimation span{animation-name:blink;animation-duration:1.4s;animation-iteration-count:infinite;animation-fill-mode:both}.loadAnimation span:nth-child(1){animation-delay:.4s}.loadAnimation span:nth-child(2){animation-delay:.3s}.loadAnimation span:nth-child(3){animation-delay:.2s}.loadAnimation span:nth-child(4){animation-delay:.2s}.loadAnimation span:nth-child(5){animation-delay:.3s}.loadAnimation span:nth-child(6){animation-delay:.4s} \ No newline at end of file diff --git a/wwwroot/css/style.min.css b/wwwroot/css/style.min.css index 394722f..e3eaa54 100644 --- a/wwwroot/css/style.min.css +++ b/wwwroot/css/style.min.css @@ -1,3515 +1,4 @@ -@charset "UTF-8"; -/*! - Ionicons, v4.6.4-1 - Created by Ben Sperry for the Ionic Framework, http://ionicons.com/ - https://twitter.com/benjsperry https://twitter.com/ionicframework - MIT License: https://github.com/driftyco/ionicons - - Android-style icons originally built by Google’s - Material Design Icons: https://github.com/google/material-design-icons - used under CC BY http://creativecommons.org/licenses/by/4.0/ - Modified icons to fit ionicon’s grid from original. -*/ -@font-face { - font-family: "Ionicons"; - src: url("../fonts/ionicons.eot?v=4.6.4-1"); - src: url("../fonts/ionicons.eot?v=4.6.4-1#iefix") format("embedded-opentype"), url("../fonts/ionicons.woff2?v=4.6.4-1") format("woff2"), url("../fonts/ionicons.woff?v=4.6.4-1") format("woff"), url("../fonts/ionicons.ttf?v=4.6.4-1") format("truetype"), url("../fonts/ionicons.svg?v=4.6.4-1#Ionicons") format("svg"); - font-weight: normal; - font-style: normal; -} -.ion, .ionicons, -.ion-ios-add:before, -.ion-ios-add-circle:before, -.ion-ios-add-circle-outline:before, -.ion-ios-airplane:before, -.ion-ios-alarm:before, -.ion-ios-albums:before, -.ion-ios-alert:before, -.ion-ios-american-football:before, -.ion-ios-analytics:before, -.ion-ios-aperture:before, -.ion-ios-apps:before, -.ion-ios-appstore:before, -.ion-ios-archive:before, -.ion-ios-arrow-back:before, -.ion-ios-arrow-down:before, -.ion-ios-arrow-dropdown:before, -.ion-ios-arrow-dropdown-circle:before, -.ion-ios-arrow-dropleft:before, -.ion-ios-arrow-dropleft-circle:before, -.ion-ios-arrow-dropright:before, -.ion-ios-arrow-dropright-circle:before, -.ion-ios-arrow-dropup:before, -.ion-ios-arrow-dropup-circle:before, -.ion-ios-arrow-forward:before, -.ion-ios-arrow-round-back:before, -.ion-ios-arrow-round-down:before, -.ion-ios-arrow-round-forward:before, -.ion-ios-arrow-round-up:before, -.ion-ios-arrow-up:before, -.ion-ios-at:before, -.ion-ios-attach:before, -.ion-ios-backspace:before, -.ion-ios-barcode:before, -.ion-ios-baseball:before, -.ion-ios-basket:before, -.ion-ios-basketball:before, -.ion-ios-battery-charging:before, -.ion-ios-battery-dead:before, -.ion-ios-battery-full:before, -.ion-ios-beaker:before, -.ion-ios-bed:before, -.ion-ios-beer:before, -.ion-ios-bicycle:before, -.ion-ios-bluetooth:before, -.ion-ios-boat:before, -.ion-ios-body:before, -.ion-ios-bonfire:before, -.ion-ios-book:before, -.ion-ios-bookmark:before, -.ion-ios-bookmarks:before, -.ion-ios-bowtie:before, -.ion-ios-briefcase:before, -.ion-ios-browsers:before, -.ion-ios-brush:before, -.ion-ios-bug:before, -.ion-ios-build:before, -.ion-ios-bulb:before, -.ion-ios-bus:before, -.ion-ios-business:before, -.ion-ios-cafe:before, -.ion-ios-calculator:before, -.ion-ios-calendar:before, -.ion-ios-call:before, -.ion-ios-camera:before, -.ion-ios-car:before, -.ion-ios-card:before, -.ion-ios-cart:before, -.ion-ios-cash:before, -.ion-ios-cellular:before, -.ion-ios-chatboxes:before, -.ion-ios-chatbubbles:before, -.ion-ios-checkbox:before, -.ion-ios-checkbox-outline:before, -.ion-ios-checkmark:before, -.ion-ios-checkmark-circle:before, -.ion-ios-checkmark-circle-outline:before, -.ion-ios-clipboard:before, -.ion-ios-clock:before, -.ion-ios-close:before, -.ion-ios-close-circle:before, -.ion-ios-close-circle-outline:before, -.ion-ios-cloud:before, -.ion-ios-cloud-circle:before, -.ion-ios-cloud-done:before, -.ion-ios-cloud-download:before, -.ion-ios-cloud-outline:before, -.ion-ios-cloud-upload:before, -.ion-ios-cloudy:before, -.ion-ios-cloudy-night:before, -.ion-ios-code:before, -.ion-ios-code-download:before, -.ion-ios-code-working:before, -.ion-ios-cog:before, -.ion-ios-color-fill:before, -.ion-ios-color-filter:before, -.ion-ios-color-palette:before, -.ion-ios-color-wand:before, -.ion-ios-compass:before, -.ion-ios-construct:before, -.ion-ios-contact:before, -.ion-ios-contacts:before, -.ion-ios-contract:before, -.ion-ios-contrast:before, -.ion-ios-copy:before, -.ion-ios-create:before, -.ion-ios-crop:before, -.ion-ios-cube:before, -.ion-ios-cut:before, -.ion-ios-desktop:before, -.ion-ios-disc:before, -.ion-ios-document:before, -.ion-ios-done-all:before, -.ion-ios-download:before, -.ion-ios-easel:before, -.ion-ios-egg:before, -.ion-ios-exit:before, -.ion-ios-expand:before, -.ion-ios-eye:before, -.ion-ios-eye-off:before, -.ion-ios-fastforward:before, -.ion-ios-female:before, -.ion-ios-filing:before, -.ion-ios-film:before, -.ion-ios-finger-print:before, -.ion-ios-fitness:before, -.ion-ios-flag:before, -.ion-ios-flame:before, -.ion-ios-flash:before, -.ion-ios-flash-off:before, -.ion-ios-flashlight:before, -.ion-ios-flask:before, -.ion-ios-flower:before, -.ion-ios-folder:before, -.ion-ios-folder-open:before, -.ion-ios-football:before, -.ion-ios-funnel:before, -.ion-ios-gift:before, -.ion-ios-git-branch:before, -.ion-ios-git-commit:before, -.ion-ios-git-compare:before, -.ion-ios-git-merge:before, -.ion-ios-git-network:before, -.ion-ios-git-pull-request:before, -.ion-ios-glasses:before, -.ion-ios-globe:before, -.ion-ios-grid:before, -.ion-ios-hammer:before, -.ion-ios-hand:before, -.ion-ios-happy:before, -.ion-ios-headset:before, -.ion-ios-heart:before, -.ion-ios-heart-dislike:before, -.ion-ios-heart-empty:before, -.ion-ios-heart-half:before, -.ion-ios-help:before, -.ion-ios-help-buoy:before, -.ion-ios-help-circle:before, -.ion-ios-help-circle-outline:before, -.ion-ios-home:before, -.ion-ios-hourglass:before, -.ion-ios-ice-cream:before, -.ion-ios-image:before, -.ion-ios-images:before, -.ion-ios-infinite:before, -.ion-ios-information:before, -.ion-ios-information-circle:before, -.ion-ios-information-circle-outline:before, -.ion-ios-jet:before, -.ion-ios-journal:before, -.ion-ios-key:before, -.ion-ios-keypad:before, -.ion-ios-laptop:before, -.ion-ios-leaf:before, -.ion-ios-link:before, -.ion-ios-list:before, -.ion-ios-list-box:before, -.ion-ios-locate:before, -.ion-ios-lock:before, -.ion-ios-log-in:before, -.ion-ios-log-out:before, -.ion-ios-magnet:before, -.ion-ios-mail:before, -.ion-ios-mail-open:before, -.ion-ios-mail-unread:before, -.ion-ios-male:before, -.ion-ios-man:before, -.ion-ios-map:before, -.ion-ios-medal:before, -.ion-ios-medical:before, -.ion-ios-medkit:before, -.ion-ios-megaphone:before, -.ion-ios-menu:before, -.ion-ios-mic:before, -.ion-ios-mic-off:before, -.ion-ios-microphone:before, -.ion-ios-moon:before, -.ion-ios-more:before, -.ion-ios-move:before, -.ion-ios-musical-note:before, -.ion-ios-musical-notes:before, -.ion-ios-navigate:before, -.ion-ios-notifications:before, -.ion-ios-notifications-off:before, -.ion-ios-notifications-outline:before, -.ion-ios-nuclear:before, -.ion-ios-nutrition:before, -.ion-ios-open:before, -.ion-ios-options:before, -.ion-ios-outlet:before, -.ion-ios-paper:before, -.ion-ios-paper-plane:before, -.ion-ios-partly-sunny:before, -.ion-ios-pause:before, -.ion-ios-paw:before, -.ion-ios-people:before, -.ion-ios-person:before, -.ion-ios-person-add:before, -.ion-ios-phone-landscape:before, -.ion-ios-phone-portrait:before, -.ion-ios-photos:before, -.ion-ios-pie:before, -.ion-ios-pin:before, -.ion-ios-pint:before, -.ion-ios-pizza:before, -.ion-ios-planet:before, -.ion-ios-play:before, -.ion-ios-play-circle:before, -.ion-ios-podium:before, -.ion-ios-power:before, -.ion-ios-pricetag:before, -.ion-ios-pricetags:before, -.ion-ios-print:before, -.ion-ios-pulse:before, -.ion-ios-qr-scanner:before, -.ion-ios-quote:before, -.ion-ios-radio:before, -.ion-ios-radio-button-off:before, -.ion-ios-radio-button-on:before, -.ion-ios-rainy:before, -.ion-ios-recording:before, -.ion-ios-redo:before, -.ion-ios-refresh:before, -.ion-ios-refresh-circle:before, -.ion-ios-remove:before, -.ion-ios-remove-circle:before, -.ion-ios-remove-circle-outline:before, -.ion-ios-reorder:before, -.ion-ios-repeat:before, -.ion-ios-resize:before, -.ion-ios-restaurant:before, -.ion-ios-return-left:before, -.ion-ios-return-right:before, -.ion-ios-reverse-camera:before, -.ion-ios-rewind:before, -.ion-ios-ribbon:before, -.ion-ios-rocket:before, -.ion-ios-rose:before, -.ion-ios-sad:before, -.ion-ios-save:before, -.ion-ios-school:before, -.ion-ios-search:before, -.ion-ios-send:before, -.ion-ios-settings:before, -.ion-ios-share:before, -.ion-ios-share-alt:before, -.ion-ios-shirt:before, -.ion-ios-shuffle:before, -.ion-ios-skip-backward:before, -.ion-ios-skip-forward:before, -.ion-ios-snow:before, -.ion-ios-speedometer:before, -.ion-ios-square:before, -.ion-ios-square-outline:before, -.ion-ios-star:before, -.ion-ios-star-half:before, -.ion-ios-star-outline:before, -.ion-ios-stats:before, -.ion-ios-stopwatch:before, -.ion-ios-subway:before, -.ion-ios-sunny:before, -.ion-ios-swap:before, -.ion-ios-switch:before, -.ion-ios-sync:before, -.ion-ios-tablet-landscape:before, -.ion-ios-tablet-portrait:before, -.ion-ios-tennisball:before, -.ion-ios-text:before, -.ion-ios-thermometer:before, -.ion-ios-thumbs-down:before, -.ion-ios-thumbs-up:before, -.ion-ios-thunderstorm:before, -.ion-ios-time:before, -.ion-ios-timer:before, -.ion-ios-today:before, -.ion-ios-train:before, -.ion-ios-transgender:before, -.ion-ios-trash:before, -.ion-ios-trending-down:before, -.ion-ios-trending-up:before, -.ion-ios-trophy:before, -.ion-ios-tv:before, -.ion-ios-umbrella:before, -.ion-ios-undo:before, -.ion-ios-unlock:before, -.ion-ios-videocam:before, -.ion-ios-volume-high:before, -.ion-ios-volume-low:before, -.ion-ios-volume-mute:before, -.ion-ios-volume-off:before, -.ion-ios-walk:before, -.ion-ios-wallet:before, -.ion-ios-warning:before, -.ion-ios-watch:before, -.ion-ios-water:before, -.ion-ios-wifi:before, -.ion-ios-wine:before, -.ion-ios-woman:before, -.ion-logo-android:before, -.ion-logo-angular:before, -.ion-logo-apple:before, -.ion-logo-bitbucket:before, -.ion-logo-bitcoin:before, -.ion-logo-buffer:before, -.ion-logo-chrome:before, -.ion-logo-closed-captioning:before, -.ion-logo-codepen:before, -.ion-logo-css3:before, -.ion-logo-designernews:before, -.ion-logo-dribbble:before, -.ion-logo-dropbox:before, -.ion-logo-euro:before, -.ion-logo-facebook:before, -.ion-logo-flickr:before, -.ion-logo-foursquare:before, -.ion-logo-freebsd-devil:before, -.ion-logo-game-controller-a:before, -.ion-logo-game-controller-b:before, -.ion-logo-github:before, -.ion-logo-google:before, -.ion-logo-googleplus:before, -.ion-logo-hackernews:before, -.ion-logo-html5:before, -.ion-logo-instagram:before, -.ion-logo-ionic:before, -.ion-logo-ionitron:before, -.ion-logo-javascript:before, -.ion-logo-linkedin:before, -.ion-logo-markdown:before, -.ion-logo-model-s:before, -.ion-logo-no-smoking:before, -.ion-logo-nodejs:before, -.ion-logo-npm:before, -.ion-logo-octocat:before, -.ion-logo-pinterest:before, -.ion-logo-playstation:before, -.ion-logo-polymer:before, -.ion-logo-python:before, -.ion-logo-reddit:before, -.ion-logo-rss:before, -.ion-logo-sass:before, -.ion-logo-skype:before, -.ion-logo-slack:before, -.ion-logo-snapchat:before, -.ion-logo-steam:before, -.ion-logo-tumblr:before, -.ion-logo-tux:before, -.ion-logo-twitch:before, -.ion-logo-twitter:before, -.ion-logo-usd:before, -.ion-logo-vimeo:before, -.ion-logo-vk:before, -.ion-logo-whatsapp:before, -.ion-logo-windows:before, -.ion-logo-wordpress:before, -.ion-logo-xbox:before, -.ion-logo-xing:before, -.ion-logo-yahoo:before, -.ion-logo-yen:before, -.ion-logo-youtube:before, -.ion-md-add:before, -.ion-md-add-circle:before, -.ion-md-add-circle-outline:before, -.ion-md-airplane:before, -.ion-md-alarm:before, -.ion-md-albums:before, -.ion-md-alert:before, -.ion-md-american-football:before, -.ion-md-analytics:before, -.ion-md-aperture:before, -.ion-md-apps:before, -.ion-md-appstore:before, -.ion-md-archive:before, -.ion-md-arrow-back:before, -.ion-md-arrow-down:before, -.ion-md-arrow-dropdown:before, -.ion-md-arrow-dropdown-circle:before, -.ion-md-arrow-dropleft:before, -.ion-md-arrow-dropleft-circle:before, -.ion-md-arrow-dropright:before, -.ion-md-arrow-dropright-circle:before, -.ion-md-arrow-dropup:before, -.ion-md-arrow-dropup-circle:before, -.ion-md-arrow-forward:before, -.ion-md-arrow-round-back:before, -.ion-md-arrow-round-down:before, -.ion-md-arrow-round-forward:before, -.ion-md-arrow-round-up:before, -.ion-md-arrow-up:before, -.ion-md-at:before, -.ion-md-attach:before, -.ion-md-backspace:before, -.ion-md-barcode:before, -.ion-md-baseball:before, -.ion-md-basket:before, -.ion-md-basketball:before, -.ion-md-battery-charging:before, -.ion-md-battery-dead:before, -.ion-md-battery-full:before, -.ion-md-beaker:before, -.ion-md-bed:before, -.ion-md-beer:before, -.ion-md-bicycle:before, -.ion-md-bluetooth:before, -.ion-md-boat:before, -.ion-md-body:before, -.ion-md-bonfire:before, -.ion-md-book:before, -.ion-md-bookmark:before, -.ion-md-bookmarks:before, -.ion-md-bowtie:before, -.ion-md-briefcase:before, -.ion-md-browsers:before, -.ion-md-brush:before, -.ion-md-bug:before, -.ion-md-build:before, -.ion-md-bulb:before, -.ion-md-bus:before, -.ion-md-business:before, -.ion-md-cafe:before, -.ion-md-calculator:before, -.ion-md-calendar:before, -.ion-md-call:before, -.ion-md-camera:before, -.ion-md-car:before, -.ion-md-card:before, -.ion-md-cart:before, -.ion-md-cash:before, -.ion-md-cellular:before, -.ion-md-chatboxes:before, -.ion-md-chatbubbles:before, -.ion-md-checkbox:before, -.ion-md-checkbox-outline:before, -.ion-md-checkmark:before, -.ion-md-checkmark-circle:before, -.ion-md-checkmark-circle-outline:before, -.ion-md-clipboard:before, -.ion-md-clock:before, -.ion-md-close:before, -.ion-md-close-circle:before, -.ion-md-close-circle-outline:before, -.ion-md-cloud:before, -.ion-md-cloud-circle:before, -.ion-md-cloud-done:before, -.ion-md-cloud-download:before, -.ion-md-cloud-outline:before, -.ion-md-cloud-upload:before, -.ion-md-cloudy:before, -.ion-md-cloudy-night:before, -.ion-md-code:before, -.ion-md-code-download:before, -.ion-md-code-working:before, -.ion-md-cog:before, -.ion-md-color-fill:before, -.ion-md-color-filter:before, -.ion-md-color-palette:before, -.ion-md-color-wand:before, -.ion-md-compass:before, -.ion-md-construct:before, -.ion-md-contact:before, -.ion-md-contacts:before, -.ion-md-contract:before, -.ion-md-contrast:before, -.ion-md-copy:before, -.ion-md-create:before, -.ion-md-crop:before, -.ion-md-cube:before, -.ion-md-cut:before, -.ion-md-desktop:before, -.ion-md-disc:before, -.ion-md-document:before, -.ion-md-done-all:before, -.ion-md-download:before, -.ion-md-easel:before, -.ion-md-egg:before, -.ion-md-exit:before, -.ion-md-expand:before, -.ion-md-eye:before, -.ion-md-eye-off:before, -.ion-md-fastforward:before, -.ion-md-female:before, -.ion-md-filing:before, -.ion-md-film:before, -.ion-md-finger-print:before, -.ion-md-fitness:before, -.ion-md-flag:before, -.ion-md-flame:before, -.ion-md-flash:before, -.ion-md-flash-off:before, -.ion-md-flashlight:before, -.ion-md-flask:before, -.ion-md-flower:before, -.ion-md-folder:before, -.ion-md-folder-open:before, -.ion-md-football:before, -.ion-md-funnel:before, -.ion-md-gift:before, -.ion-md-git-branch:before, -.ion-md-git-commit:before, -.ion-md-git-compare:before, -.ion-md-git-merge:before, -.ion-md-git-network:before, -.ion-md-git-pull-request:before, -.ion-md-glasses:before, -.ion-md-globe:before, -.ion-md-grid:before, -.ion-md-hammer:before, -.ion-md-hand:before, -.ion-md-happy:before, -.ion-md-headset:before, -.ion-md-heart:before, -.ion-md-heart-dislike:before, -.ion-md-heart-empty:before, -.ion-md-heart-half:before, -.ion-md-help:before, -.ion-md-help-buoy:before, -.ion-md-help-circle:before, -.ion-md-help-circle-outline:before, -.ion-md-home:before, -.ion-md-hourglass:before, -.ion-md-ice-cream:before, -.ion-md-image:before, -.ion-md-images:before, -.ion-md-infinite:before, -.ion-md-information:before, -.ion-md-information-circle:before, -.ion-md-information-circle-outline:before, -.ion-md-jet:before, -.ion-md-journal:before, -.ion-md-key:before, -.ion-md-keypad:before, -.ion-md-laptop:before, -.ion-md-leaf:before, -.ion-md-link:before, -.ion-md-list:before, -.ion-md-list-box:before, -.ion-md-locate:before, -.ion-md-lock:before, -.ion-md-log-in:before, -.ion-md-log-out:before, -.ion-md-magnet:before, -.ion-md-mail:before, -.ion-md-mail-open:before, -.ion-md-mail-unread:before, -.ion-md-male:before, -.ion-md-man:before, -.ion-md-map:before, -.ion-md-medal:before, -.ion-md-medical:before, -.ion-md-medkit:before, -.ion-md-megaphone:before, -.ion-md-menu:before, -.ion-md-mic:before, -.ion-md-mic-off:before, -.ion-md-microphone:before, -.ion-md-moon:before, -.ion-md-more:before, -.ion-md-move:before, -.ion-md-musical-note:before, -.ion-md-musical-notes:before, -.ion-md-navigate:before, -.ion-md-notifications:before, -.ion-md-notifications-off:before, -.ion-md-notifications-outline:before, -.ion-md-nuclear:before, -.ion-md-nutrition:before, -.ion-md-open:before, -.ion-md-options:before, -.ion-md-outlet:before, -.ion-md-paper:before, -.ion-md-paper-plane:before, -.ion-md-partly-sunny:before, -.ion-md-pause:before, -.ion-md-paw:before, -.ion-md-people:before, -.ion-md-person:before, -.ion-md-person-add:before, -.ion-md-phone-landscape:before, -.ion-md-phone-portrait:before, -.ion-md-photos:before, -.ion-md-pie:before, -.ion-md-pin:before, -.ion-md-pint:before, -.ion-md-pizza:before, -.ion-md-planet:before, -.ion-md-play:before, -.ion-md-play-circle:before, -.ion-md-podium:before, -.ion-md-power:before, -.ion-md-pricetag:before, -.ion-md-pricetags:before, -.ion-md-print:before, -.ion-md-pulse:before, -.ion-md-qr-scanner:before, -.ion-md-quote:before, -.ion-md-radio:before, -.ion-md-radio-button-off:before, -.ion-md-radio-button-on:before, -.ion-md-rainy:before, -.ion-md-recording:before, -.ion-md-redo:before, -.ion-md-refresh:before, -.ion-md-refresh-circle:before, -.ion-md-remove:before, -.ion-md-remove-circle:before, -.ion-md-remove-circle-outline:before, -.ion-md-reorder:before, -.ion-md-repeat:before, -.ion-md-resize:before, -.ion-md-restaurant:before, -.ion-md-return-left:before, -.ion-md-return-right:before, -.ion-md-reverse-camera:before, -.ion-md-rewind:before, -.ion-md-ribbon:before, -.ion-md-rocket:before, -.ion-md-rose:before, -.ion-md-sad:before, -.ion-md-save:before, -.ion-md-school:before, -.ion-md-search:before, -.ion-md-send:before, -.ion-md-settings:before, -.ion-md-share:before, -.ion-md-share-alt:before, -.ion-md-shirt:before, -.ion-md-shuffle:before, -.ion-md-skip-backward:before, -.ion-md-skip-forward:before, -.ion-md-snow:before, -.ion-md-speedometer:before, -.ion-md-square:before, -.ion-md-square-outline:before, -.ion-md-star:before, -.ion-md-star-half:before, -.ion-md-star-outline:before, -.ion-md-stats:before, -.ion-md-stopwatch:before, -.ion-md-subway:before, -.ion-md-sunny:before, -.ion-md-swap:before, -.ion-md-switch:before, -.ion-md-sync:before, -.ion-md-tablet-landscape:before, -.ion-md-tablet-portrait:before, -.ion-md-tennisball:before, -.ion-md-text:before, -.ion-md-thermometer:before, -.ion-md-thumbs-down:before, -.ion-md-thumbs-up:before, -.ion-md-thunderstorm:before, -.ion-md-time:before, -.ion-md-timer:before, -.ion-md-today:before, -.ion-md-train:before, -.ion-md-transgender:before, -.ion-md-trash:before, -.ion-md-trending-down:before, -.ion-md-trending-up:before, -.ion-md-trophy:before, -.ion-md-tv:before, -.ion-md-umbrella:before, -.ion-md-undo:before, -.ion-md-unlock:before, -.ion-md-videocam:before, -.ion-md-volume-high:before, -.ion-md-volume-low:before, -.ion-md-volume-mute:before, -.ion-md-volume-off:before, -.ion-md-walk:before, -.ion-md-wallet:before, -.ion-md-warning:before, -.ion-md-watch:before, -.ion-md-water:before, -.ion-md-wifi:before, -.ion-md-wine:before, -.ion-md-woman:before { - display: inline-block; - font-family: "Ionicons"; - speak: none; - font-style: normal; - font-weight: normal; - font-variant: normal; - text-transform: none; - text-rendering: auto; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.ion-ios-add:before { - content: ""; -} - -.ion-ios-add-circle:before { - content: ""; -} - -.ion-ios-add-circle-outline:before { - content: ""; -} - -.ion-ios-airplane:before { - content: ""; -} - -.ion-ios-alarm:before { - content: ""; -} - -.ion-ios-albums:before { - content: ""; -} - -.ion-ios-alert:before { - content: ""; -} - -.ion-ios-american-football:before { - content: ""; -} - -.ion-ios-analytics:before { - content: ""; -} - -.ion-ios-aperture:before { - content: ""; -} - -.ion-ios-apps:before { - content: ""; -} - -.ion-ios-appstore:before { - content: ""; -} - -.ion-ios-archive:before { - content: ""; -} - -.ion-ios-arrow-back:before { - content: ""; -} - -.ion-ios-arrow-down:before { - content: ""; -} - -.ion-ios-arrow-dropdown:before { - content: ""; -} - -.ion-ios-arrow-dropdown-circle:before { - content: ""; -} - -.ion-ios-arrow-dropleft:before { - content: ""; -} - -.ion-ios-arrow-dropleft-circle:before { - content: ""; -} - -.ion-ios-arrow-dropright:before { - content: ""; -} - -.ion-ios-arrow-dropright-circle:before { - content: ""; -} - -.ion-ios-arrow-dropup:before { - content: ""; -} - -.ion-ios-arrow-dropup-circle:before { - content: ""; -} - -.ion-ios-arrow-forward:before { - content: ""; -} - -.ion-ios-arrow-round-back:before { - content: ""; -} - -.ion-ios-arrow-round-down:before { - content: ""; -} - -.ion-ios-arrow-round-forward:before { - content: ""; -} - -.ion-ios-arrow-round-up:before { - content: ""; -} - -.ion-ios-arrow-up:before { - content: ""; -} - -.ion-ios-at:before { - content: ""; -} - -.ion-ios-attach:before { - content: ""; -} - -.ion-ios-backspace:before { - content: ""; -} - -.ion-ios-barcode:before { - content: ""; -} - -.ion-ios-baseball:before { - content: ""; -} - -.ion-ios-basket:before { - content: ""; -} - -.ion-ios-basketball:before { - content: ""; -} - -.ion-ios-battery-charging:before { - content: ""; -} - -.ion-ios-battery-dead:before { - content: ""; -} - -.ion-ios-battery-full:before { - content: ""; -} - -.ion-ios-beaker:before { - content: ""; -} - -.ion-ios-bed:before { - content: ""; -} - -.ion-ios-beer:before { - content: ""; -} - -.ion-ios-bicycle:before { - content: ""; -} - -.ion-ios-bluetooth:before { - content: ""; -} - -.ion-ios-boat:before { - content: ""; -} - -.ion-ios-body:before { - content: ""; -} - -.ion-ios-bonfire:before { - content: ""; -} - -.ion-ios-book:before { - content: ""; -} - -.ion-ios-bookmark:before { - content: ""; -} - -.ion-ios-bookmarks:before { - content: ""; -} - -.ion-ios-bowtie:before { - content: ""; -} - -.ion-ios-briefcase:before { - content: ""; -} - -.ion-ios-browsers:before { - content: ""; -} - -.ion-ios-brush:before { - content: ""; -} - -.ion-ios-bug:before { - content: ""; -} - -.ion-ios-build:before { - content: ""; -} - -.ion-ios-bulb:before { - content: ""; -} - -.ion-ios-bus:before { - content: ""; -} - -.ion-ios-business:before { - content: ""; -} - -.ion-ios-cafe:before { - content: ""; -} - -.ion-ios-calculator:before { - content: ""; -} - -.ion-ios-calendar:before { - content: ""; -} - -.ion-ios-call:before { - content: ""; -} - -.ion-ios-camera:before { - content: ""; -} - -.ion-ios-car:before { - content: ""; -} - -.ion-ios-card:before { - content: ""; -} - -.ion-ios-cart:before { - content: ""; -} - -.ion-ios-cash:before { - content: ""; -} - -.ion-ios-cellular:before { - content: ""; -} - -.ion-ios-chatboxes:before { - content: ""; -} - -.ion-ios-chatbubbles:before { - content: ""; -} - -.ion-ios-checkbox:before { - content: ""; -} - -.ion-ios-checkbox-outline:before { - content: ""; -} - -.ion-ios-checkmark:before { - content: ""; -} - -.ion-ios-checkmark-circle:before { - content: ""; -} - -.ion-ios-checkmark-circle-outline:before { - content: ""; -} - -.ion-ios-clipboard:before { - content: ""; -} - -.ion-ios-clock:before { - content: ""; -} - -.ion-ios-close:before { - content: ""; -} - -.ion-ios-close-circle:before { - content: ""; -} - -.ion-ios-close-circle-outline:before { - content: ""; -} - -.ion-ios-cloud:before { - content: ""; -} - -.ion-ios-cloud-circle:before { - content: ""; -} - -.ion-ios-cloud-done:before { - content: ""; -} - -.ion-ios-cloud-download:before { - content: ""; -} - -.ion-ios-cloud-outline:before { - content: ""; -} - -.ion-ios-cloud-upload:before { - content: ""; -} - -.ion-ios-cloudy:before { - content: ""; -} - -.ion-ios-cloudy-night:before { - content: ""; -} - -.ion-ios-code:before { - content: ""; -} - -.ion-ios-code-download:before { - content: ""; -} - -.ion-ios-code-working:before { - content: ""; -} - -.ion-ios-cog:before { - content: ""; -} - -.ion-ios-color-fill:before { - content: ""; -} - -.ion-ios-color-filter:before { - content: ""; -} - -.ion-ios-color-palette:before { - content: ""; -} - -.ion-ios-color-wand:before { - content: ""; -} - -.ion-ios-compass:before { - content: ""; -} - -.ion-ios-construct:before { - content: ""; -} - -.ion-ios-contact:before { - content: ""; -} - -.ion-ios-contacts:before { - content: ""; -} - -.ion-ios-contract:before { - content: ""; -} - -.ion-ios-contrast:before { - content: ""; -} - -.ion-ios-copy:before { - content: ""; -} - -.ion-ios-create:before { - content: ""; -} - -.ion-ios-crop:before { - content: ""; -} - -.ion-ios-cube:before { - content: ""; -} - -.ion-ios-cut:before { - content: ""; -} - -.ion-ios-desktop:before { - content: ""; -} - -.ion-ios-disc:before { - content: ""; -} - -.ion-ios-document:before { - content: ""; -} - -.ion-ios-done-all:before { - content: ""; -} - -.ion-ios-download:before { - content: ""; -} - -.ion-ios-easel:before { - content: ""; -} - -.ion-ios-egg:before { - content: ""; -} - -.ion-ios-exit:before { - content: ""; -} - -.ion-ios-expand:before { - content: ""; -} - -.ion-ios-eye:before { - content: ""; -} - -.ion-ios-eye-off:before { - content: ""; -} - -.ion-ios-fastforward:before { - content: ""; -} - -.ion-ios-female:before { - content: ""; -} - -.ion-ios-filing:before { - content: ""; -} - -.ion-ios-film:before { - content: ""; -} - -.ion-ios-finger-print:before { - content: ""; -} - -.ion-ios-fitness:before { - content: ""; -} - -.ion-ios-flag:before { - content: ""; -} - -.ion-ios-flame:before { - content: ""; -} - -.ion-ios-flash:before { - content: ""; -} - -.ion-ios-flash-off:before { - content: ""; -} - -.ion-ios-flashlight:before { - content: ""; -} - -.ion-ios-flask:before { - content: ""; -} - -.ion-ios-flower:before { - content: ""; -} - -.ion-ios-folder:before { - content: ""; -} - -.ion-ios-folder-open:before { - content: ""; -} - -.ion-ios-football:before { - content: ""; -} - -.ion-ios-funnel:before { - content: ""; -} - -.ion-ios-gift:before { - content: ""; -} - -.ion-ios-git-branch:before { - content: ""; -} - -.ion-ios-git-commit:before { - content: ""; -} - -.ion-ios-git-compare:before { - content: ""; -} - -.ion-ios-git-merge:before { - content: ""; -} - -.ion-ios-git-network:before { - content: ""; -} - -.ion-ios-git-pull-request:before { - content: ""; -} - -.ion-ios-glasses:before { - content: ""; -} - -.ion-ios-globe:before { - content: ""; -} - -.ion-ios-grid:before { - content: ""; -} - -.ion-ios-hammer:before { - content: ""; -} - -.ion-ios-hand:before { - content: ""; -} - -.ion-ios-happy:before { - content: ""; -} - -.ion-ios-headset:before { - content: ""; -} - -.ion-ios-heart:before { - content: ""; -} - -.ion-ios-heart-dislike:before { - content: ""; -} - -.ion-ios-heart-empty:before { - content: ""; -} - -.ion-ios-heart-half:before { - content: ""; -} - -.ion-ios-help:before { - content: ""; -} - -.ion-ios-help-buoy:before { - content: ""; -} - -.ion-ios-help-circle:before { - content: ""; -} - -.ion-ios-help-circle-outline:before { - content: ""; -} - -.ion-ios-home:before { - content: ""; -} - -.ion-ios-hourglass:before { - content: ""; -} - -.ion-ios-ice-cream:before { - content: ""; -} - -.ion-ios-image:before { - content: ""; -} - -.ion-ios-images:before { - content: ""; -} - -.ion-ios-infinite:before { - content: ""; -} - -.ion-ios-information:before { - content: ""; -} - -.ion-ios-information-circle:before { - content: ""; -} - -.ion-ios-information-circle-outline:before { - content: ""; -} - -.ion-ios-jet:before { - content: ""; -} - -.ion-ios-journal:before { - content: ""; -} - -.ion-ios-key:before { - content: ""; -} - -.ion-ios-keypad:before { - content: ""; -} - -.ion-ios-laptop:before { - content: ""; -} - -.ion-ios-leaf:before { - content: ""; -} - -.ion-ios-link:before { - content: ""; -} - -.ion-ios-list:before { - content: ""; -} - -.ion-ios-list-box:before { - content: ""; -} - -.ion-ios-locate:before { - content: ""; -} - -.ion-ios-lock:before { - content: ""; -} - -.ion-ios-log-in:before { - content: ""; -} - -.ion-ios-log-out:before { - content: ""; -} - -.ion-ios-magnet:before { - content: ""; -} - -.ion-ios-mail:before { - content: ""; -} - -.ion-ios-mail-open:before { - content: ""; -} - -.ion-ios-mail-unread:before { - content: ""; -} - -.ion-ios-male:before { - content: ""; -} - -.ion-ios-man:before { - content: ""; -} - -.ion-ios-map:before { - content: ""; -} - -.ion-ios-medal:before { - content: ""; -} - -.ion-ios-medical:before { - content: ""; -} - -.ion-ios-medkit:before { - content: ""; -} - -.ion-ios-megaphone:before { - content: ""; -} - -.ion-ios-menu:before { - content: ""; -} - -.ion-ios-mic:before { - content: ""; -} - -.ion-ios-mic-off:before { - content: ""; -} - -.ion-ios-microphone:before { - content: ""; -} - -.ion-ios-moon:before { - content: ""; -} - -.ion-ios-more:before { - content: ""; -} - -.ion-ios-move:before { - content: ""; -} - -.ion-ios-musical-note:before { - content: ""; -} - -.ion-ios-musical-notes:before { - content: ""; -} - -.ion-ios-navigate:before { - content: ""; -} - -.ion-ios-notifications:before { - content: ""; -} - -.ion-ios-notifications-off:before { - content: ""; -} - -.ion-ios-notifications-outline:before { - content: ""; -} - -.ion-ios-nuclear:before { - content: ""; -} - -.ion-ios-nutrition:before { - content: ""; -} - -.ion-ios-open:before { - content: ""; -} - -.ion-ios-options:before { - content: ""; -} - -.ion-ios-outlet:before { - content: ""; -} - -.ion-ios-paper:before { - content: ""; -} - -.ion-ios-paper-plane:before { - content: ""; -} - -.ion-ios-partly-sunny:before { - content: ""; -} - -.ion-ios-pause:before { - content: ""; -} - -.ion-ios-paw:before { - content: ""; -} - -.ion-ios-people:before { - content: ""; -} - -.ion-ios-person:before { - content: ""; -} - -.ion-ios-person-add:before { - content: ""; -} - -.ion-ios-phone-landscape:before { - content: ""; -} - -.ion-ios-phone-portrait:before { - content: ""; -} - -.ion-ios-photos:before { - content: ""; -} - -.ion-ios-pie:before { - content: ""; -} - -.ion-ios-pin:before { - content: ""; -} - -.ion-ios-pint:before { - content: ""; -} - -.ion-ios-pizza:before { - content: ""; -} - -.ion-ios-planet:before { - content: ""; -} - -.ion-ios-play:before { - content: ""; -} - -.ion-ios-play-circle:before { - content: ""; -} - -.ion-ios-podium:before { - content: ""; -} - -.ion-ios-power:before { - content: ""; -} - -.ion-ios-pricetag:before { - content: ""; -} - -.ion-ios-pricetags:before { - content: ""; -} - -.ion-ios-print:before { - content: ""; -} - -.ion-ios-pulse:before { - content: ""; -} - -.ion-ios-qr-scanner:before { - content: ""; -} - -.ion-ios-quote:before { - content: ""; -} - -.ion-ios-radio:before { - content: ""; -} - -.ion-ios-radio-button-off:before { - content: ""; -} - -.ion-ios-radio-button-on:before { - content: ""; -} - -.ion-ios-rainy:before { - content: ""; -} - -.ion-ios-recording:before { - content: ""; -} - -.ion-ios-redo:before { - content: ""; -} - -.ion-ios-refresh:before { - content: ""; -} - -.ion-ios-refresh-circle:before { - content: ""; -} - -.ion-ios-remove:before { - content: ""; -} - -.ion-ios-remove-circle:before { - content: ""; -} - -.ion-ios-remove-circle-outline:before { - content: ""; -} - -.ion-ios-reorder:before { - content: ""; -} - -.ion-ios-repeat:before { - content: ""; -} - -.ion-ios-resize:before { - content: ""; -} - -.ion-ios-restaurant:before { - content: ""; -} - -.ion-ios-return-left:before { - content: ""; -} - -.ion-ios-return-right:before { - content: ""; -} - -.ion-ios-reverse-camera:before { - content: ""; -} - -.ion-ios-rewind:before { - content: ""; -} - -.ion-ios-ribbon:before { - content: ""; -} - -.ion-ios-rocket:before { - content: ""; -} - -.ion-ios-rose:before { - content: ""; -} - -.ion-ios-sad:before { - content: ""; -} - -.ion-ios-save:before { - content: ""; -} - -.ion-ios-school:before { - content: ""; -} - -.ion-ios-search:before { - content: ""; -} - -.ion-ios-send:before { - content: ""; -} - -.ion-ios-settings:before { - content: ""; -} - -.ion-ios-share:before { - content: ""; -} - -.ion-ios-share-alt:before { - content: ""; -} - -.ion-ios-shirt:before { - content: ""; -} - -.ion-ios-shuffle:before { - content: ""; -} - -.ion-ios-skip-backward:before { - content: ""; -} - -.ion-ios-skip-forward:before { - content: ""; -} - -.ion-ios-snow:before { - content: ""; -} - -.ion-ios-speedometer:before { - content: ""; -} - -.ion-ios-square:before { - content: ""; -} - -.ion-ios-square-outline:before { - content: ""; -} - -.ion-ios-star:before { - content: ""; -} - -.ion-ios-star-half:before { - content: ""; -} - -.ion-ios-star-outline:before { - content: ""; -} - -.ion-ios-stats:before { - content: ""; -} - -.ion-ios-stopwatch:before { - content: ""; -} - -.ion-ios-subway:before { - content: ""; -} - -.ion-ios-sunny:before { - content: ""; -} - -.ion-ios-swap:before { - content: ""; -} - -.ion-ios-switch:before { - content: ""; -} - -.ion-ios-sync:before { - content: ""; -} - -.ion-ios-tablet-landscape:before { - content: ""; -} - -.ion-ios-tablet-portrait:before { - content: ""; -} - -.ion-ios-tennisball:before { - content: ""; -} - -.ion-ios-text:before { - content: ""; -} - -.ion-ios-thermometer:before { - content: ""; -} - -.ion-ios-thumbs-down:before { - content: ""; -} - -.ion-ios-thumbs-up:before { - content: ""; -} - -.ion-ios-thunderstorm:before { - content: ""; -} - -.ion-ios-time:before { - content: ""; -} - -.ion-ios-timer:before { - content: ""; -} - -.ion-ios-today:before { - content: ""; -} - -.ion-ios-train:before { - content: ""; -} - -.ion-ios-transgender:before { - content: ""; -} - -.ion-ios-trash:before { - content: ""; -} - -.ion-ios-trending-down:before { - content: ""; -} - -.ion-ios-trending-up:before { - content: ""; -} - -.ion-ios-trophy:before { - content: ""; -} - -.ion-ios-tv:before { - content: ""; -} - -.ion-ios-umbrella:before { - content: ""; -} - -.ion-ios-undo:before { - content: ""; -} - -.ion-ios-unlock:before { - content: ""; -} - -.ion-ios-videocam:before { - content: ""; -} - -.ion-ios-volume-high:before { - content: ""; -} - -.ion-ios-volume-low:before { - content: ""; -} - -.ion-ios-volume-mute:before { - content: ""; -} - -.ion-ios-volume-off:before { - content: ""; -} - -.ion-ios-walk:before { - content: ""; -} - -.ion-ios-wallet:before { - content: ""; -} - -.ion-ios-warning:before { - content: ""; -} - -.ion-ios-watch:before { - content: ""; -} - -.ion-ios-water:before { - content: ""; -} - -.ion-ios-wifi:before { - content: ""; -} - -.ion-ios-wine:before { - content: ""; -} - -.ion-ios-woman:before { - content: ""; -} - -.ion-logo-android:before { - content: ""; -} - -.ion-logo-angular:before { - content: ""; -} - -.ion-logo-apple:before { - content: ""; -} - -.ion-logo-bitbucket:before { - content: ""; -} - -.ion-logo-bitcoin:before { - content: ""; -} - -.ion-logo-buffer:before { - content: ""; -} - -.ion-logo-chrome:before { - content: ""; -} - -.ion-logo-closed-captioning:before { - content: ""; -} - -.ion-logo-codepen:before { - content: ""; -} - -.ion-logo-css3:before { - content: ""; -} - -.ion-logo-designernews:before { - content: ""; -} - -.ion-logo-dribbble:before { - content: ""; -} - -.ion-logo-dropbox:before { - content: ""; -} - -.ion-logo-euro:before { - content: ""; -} - -.ion-logo-facebook:before { - content: ""; -} - -.ion-logo-flickr:before { - content: ""; -} - -.ion-logo-foursquare:before { - content: ""; -} - -.ion-logo-freebsd-devil:before { - content: ""; -} - -.ion-logo-game-controller-a:before { - content: ""; -} - -.ion-logo-game-controller-b:before { - content: ""; -} - -.ion-logo-github:before { - content: ""; -} - -.ion-logo-google:before { - content: ""; -} - -.ion-logo-googleplus:before { - content: ""; -} - -.ion-logo-hackernews:before { - content: ""; -} - -.ion-logo-html5:before { - content: ""; -} - -.ion-logo-instagram:before { - content: ""; -} - -.ion-logo-ionic:before { - content: ""; -} - -.ion-logo-ionitron:before { - content: ""; -} - -.ion-logo-javascript:before { - content: ""; -} - -.ion-logo-linkedin:before { - content: ""; -} - -.ion-logo-markdown:before { - content: ""; -} - -.ion-logo-model-s:before { - content: ""; -} - -.ion-logo-no-smoking:before { - content: ""; -} - -.ion-logo-nodejs:before { - content: ""; -} - -.ion-logo-npm:before { - content: ""; -} - -.ion-logo-octocat:before { - content: ""; -} - -.ion-logo-pinterest:before { - content: ""; -} - -.ion-logo-playstation:before { - content: ""; -} - -.ion-logo-polymer:before { - content: ""; -} - -.ion-logo-python:before { - content: ""; -} - -.ion-logo-reddit:before { - content: ""; -} - -.ion-logo-rss:before { - content: ""; -} - -.ion-logo-sass:before { - content: ""; -} - -.ion-logo-skype:before { - content: ""; -} - -.ion-logo-slack:before { - content: ""; -} - -.ion-logo-snapchat:before { - content: ""; -} - -.ion-logo-steam:before { - content: ""; -} - -.ion-logo-tumblr:before { - content: ""; -} - -.ion-logo-tux:before { - content: ""; -} - -.ion-logo-twitch:before { - content: ""; -} - -.ion-logo-twitter:before { - content: ""; -} - -.ion-logo-usd:before { - content: ""; -} - -.ion-logo-vimeo:before { - content: ""; -} - -.ion-logo-vk:before { - content: ""; -} - -.ion-logo-whatsapp:before { - content: ""; -} - -.ion-logo-windows:before { - content: ""; -} - -.ion-logo-wordpress:before { - content: ""; -} - -.ion-logo-xbox:before { - content: ""; -} - -.ion-logo-xing:before { - content: ""; -} - -.ion-logo-yahoo:before { - content: ""; -} - -.ion-logo-yen:before { - content: ""; -} - -.ion-logo-youtube:before { - content: ""; -} - -.ion-md-add:before { - content: ""; -} - -.ion-md-add-circle:before { - content: ""; -} - -.ion-md-add-circle-outline:before { - content: ""; -} - -.ion-md-airplane:before { - content: ""; -} - -.ion-md-alarm:before { - content: ""; -} - -.ion-md-albums:before { - content: ""; -} - -.ion-md-alert:before { - content: ""; -} - -.ion-md-american-football:before { - content: ""; -} - -.ion-md-analytics:before { - content: ""; -} - -.ion-md-aperture:before { - content: ""; -} - -.ion-md-apps:before { - content: ""; -} - -.ion-md-appstore:before { - content: ""; -} - -.ion-md-archive:before { - content: ""; -} - -.ion-md-arrow-back:before { - content: ""; -} - -.ion-md-arrow-down:before { - content: ""; -} - -.ion-md-arrow-dropdown:before { - content: ""; -} - -.ion-md-arrow-dropdown-circle:before { - content: ""; -} - -.ion-md-arrow-dropleft:before { - content: ""; -} - -.ion-md-arrow-dropleft-circle:before { - content: ""; -} - -.ion-md-arrow-dropright:before { - content: ""; -} - -.ion-md-arrow-dropright-circle:before { - content: ""; -} - -.ion-md-arrow-dropup:before { - content: ""; -} - -.ion-md-arrow-dropup-circle:before { - content: ""; -} - -.ion-md-arrow-forward:before { - content: ""; -} - -.ion-md-arrow-round-back:before { - content: ""; -} - -.ion-md-arrow-round-down:before { - content: ""; -} - -.ion-md-arrow-round-forward:before { - content: ""; -} - -.ion-md-arrow-round-up:before { - content: ""; -} - -.ion-md-arrow-up:before { - content: ""; -} - -.ion-md-at:before { - content: ""; -} - -.ion-md-attach:before { - content: ""; -} - -.ion-md-backspace:before { - content: ""; -} - -.ion-md-barcode:before { - content: ""; -} - -.ion-md-baseball:before { - content: ""; -} - -.ion-md-basket:before { - content: ""; -} - -.ion-md-basketball:before { - content: ""; -} - -.ion-md-battery-charging:before { - content: ""; -} - -.ion-md-battery-dead:before { - content: ""; -} - -.ion-md-battery-full:before { - content: ""; -} - -.ion-md-beaker:before { - content: ""; -} - -.ion-md-bed:before { - content: ""; -} - -.ion-md-beer:before { - content: ""; -} - -.ion-md-bicycle:before { - content: ""; -} - -.ion-md-bluetooth:before { - content: ""; -} - -.ion-md-boat:before { - content: ""; -} - -.ion-md-body:before { - content: ""; -} - -.ion-md-bonfire:before { - content: ""; -} - -.ion-md-book:before { - content: ""; -} - -.ion-md-bookmark:before { - content: ""; -} - -.ion-md-bookmarks:before { - content: ""; -} - -.ion-md-bowtie:before { - content: ""; -} - -.ion-md-briefcase:before { - content: ""; -} - -.ion-md-browsers:before { - content: ""; -} - -.ion-md-brush:before { - content: ""; -} - -.ion-md-bug:before { - content: ""; -} - -.ion-md-build:before { - content: ""; -} - -.ion-md-bulb:before { - content: ""; -} - -.ion-md-bus:before { - content: ""; -} - -.ion-md-business:before { - content: ""; -} - -.ion-md-cafe:before { - content: ""; -} - -.ion-md-calculator:before { - content: ""; -} - -.ion-md-calendar:before { - content: ""; -} - -.ion-md-call:before { - content: ""; -} - -.ion-md-camera:before { - content: ""; -} - -.ion-md-car:before { - content: ""; -} - -.ion-md-card:before { - content: ""; -} - -.ion-md-cart:before { - content: ""; -} - -.ion-md-cash:before { - content: ""; -} - -.ion-md-cellular:before { - content: ""; -} - -.ion-md-chatboxes:before { - content: ""; -} - -.ion-md-chatbubbles:before { - content: ""; -} - -.ion-md-checkbox:before { - content: ""; -} - -.ion-md-checkbox-outline:before { - content: ""; -} - -.ion-md-checkmark:before { - content: ""; -} - -.ion-md-checkmark-circle:before { - content: ""; -} - -.ion-md-checkmark-circle-outline:before { - content: ""; -} - -.ion-md-clipboard:before { - content: ""; -} - -.ion-md-clock:before { - content: ""; -} - -.ion-md-close:before { - content: ""; -} - -.ion-md-close-circle:before { - content: ""; -} - -.ion-md-close-circle-outline:before { - content: ""; -} - -.ion-md-cloud:before { - content: ""; -} - -.ion-md-cloud-circle:before { - content: ""; -} - -.ion-md-cloud-done:before { - content: ""; -} - -.ion-md-cloud-download:before { - content: ""; -} - -.ion-md-cloud-outline:before { - content: ""; -} - -.ion-md-cloud-upload:before { - content: ""; -} - -.ion-md-cloudy:before { - content: ""; -} - -.ion-md-cloudy-night:before { - content: ""; -} - -.ion-md-code:before { - content: ""; -} - -.ion-md-code-download:before { - content: ""; -} - -.ion-md-code-working:before { - content: ""; -} - -.ion-md-cog:before { - content: ""; -} - -.ion-md-color-fill:before { - content: ""; -} - -.ion-md-color-filter:before { - content: ""; -} - -.ion-md-color-palette:before { - content: ""; -} - -.ion-md-color-wand:before { - content: ""; -} - -.ion-md-compass:before { - content: ""; -} - -.ion-md-construct:before { - content: ""; -} - -.ion-md-contact:before { - content: ""; -} - -.ion-md-contacts:before { - content: ""; -} - -.ion-md-contract:before { - content: ""; -} - -.ion-md-contrast:before { - content: ""; -} - -.ion-md-copy:before { - content: ""; -} - -.ion-md-create:before { - content: ""; -} - -.ion-md-crop:before { - content: ""; -} - -.ion-md-cube:before { - content: ""; -} - -.ion-md-cut:before { - content: ""; -} - -.ion-md-desktop:before { - content: ""; -} - -.ion-md-disc:before { - content: ""; -} - -.ion-md-document:before { - content: ""; -} - -.ion-md-done-all:before { - content: ""; -} - -.ion-md-download:before { - content: ""; -} - -.ion-md-easel:before { - content: ""; -} - -.ion-md-egg:before { - content: ""; -} - -.ion-md-exit:before { - content: ""; -} - -.ion-md-expand:before { - content: ""; -} - -.ion-md-eye:before { - content: ""; -} - -.ion-md-eye-off:before { - content: ""; -} - -.ion-md-fastforward:before { - content: ""; -} - -.ion-md-female:before { - content: ""; -} - -.ion-md-filing:before { - content: ""; -} - -.ion-md-film:before { - content: ""; -} - -.ion-md-finger-print:before { - content: ""; -} - -.ion-md-fitness:before { - content: ""; -} - -.ion-md-flag:before { - content: ""; -} - -.ion-md-flame:before { - content: ""; -} - -.ion-md-flash:before { - content: ""; -} - -.ion-md-flash-off:before { - content: ""; -} - -.ion-md-flashlight:before { - content: ""; -} - -.ion-md-flask:before { - content: ""; -} - -.ion-md-flower:before { - content: ""; -} - -.ion-md-folder:before { - content: ""; -} - -.ion-md-folder-open:before { - content: ""; -} - -.ion-md-football:before { - content: ""; -} - -.ion-md-funnel:before { - content: ""; -} - -.ion-md-gift:before { - content: ""; -} - -.ion-md-git-branch:before { - content: ""; -} - -.ion-md-git-commit:before { - content: ""; -} - -.ion-md-git-compare:before { - content: ""; -} - -.ion-md-git-merge:before { - content: ""; -} - -.ion-md-git-network:before { - content: ""; -} - -.ion-md-git-pull-request:before { - content: ""; -} - -.ion-md-glasses:before { - content: ""; -} - -.ion-md-globe:before { - content: ""; -} - -.ion-md-grid:before { - content: ""; -} - -.ion-md-hammer:before { - content: ""; -} - -.ion-md-hand:before { - content: ""; -} - -.ion-md-happy:before { - content: ""; -} - -.ion-md-headset:before { - content: ""; -} - -.ion-md-heart:before { - content: ""; -} - -.ion-md-heart-dislike:before { - content: ""; -} - -.ion-md-heart-empty:before { - content: ""; -} - -.ion-md-heart-half:before { - content: ""; -} - -.ion-md-help:before { - content: ""; -} - -.ion-md-help-buoy:before { - content: ""; -} - -.ion-md-help-circle:before { - content: ""; -} - -.ion-md-help-circle-outline:before { - content: ""; -} - -.ion-md-home:before { - content: ""; -} - -.ion-md-hourglass:before { - content: ""; -} - -.ion-md-ice-cream:before { - content: ""; -} - -.ion-md-image:before { - content: ""; -} - -.ion-md-images:before { - content: ""; -} - -.ion-md-infinite:before { - content: ""; -} - -.ion-md-information:before { - content: ""; -} - -.ion-md-information-circle:before { - content: ""; -} - -.ion-md-information-circle-outline:before { - content: ""; -} - -.ion-md-jet:before { - content: ""; -} - -.ion-md-journal:before { - content: ""; -} - -.ion-md-key:before { - content: ""; -} - -.ion-md-keypad:before { - content: ""; -} - -.ion-md-laptop:before { - content: ""; -} - -.ion-md-leaf:before { - content: ""; -} - -.ion-md-link:before { - content: ""; -} - -.ion-md-list:before { - content: ""; -} - -.ion-md-list-box:before { - content: ""; -} - -.ion-md-locate:before { - content: ""; -} - -.ion-md-lock:before { - content: ""; -} - -.ion-md-log-in:before { - content: ""; -} - -.ion-md-log-out:before { - content: ""; -} - -.ion-md-magnet:before { - content: ""; -} - -.ion-md-mail:before { - content: ""; -} - -.ion-md-mail-open:before { - content: ""; -} - -.ion-md-mail-unread:before { - content: ""; -} - -.ion-md-male:before { - content: ""; -} - -.ion-md-man:before { - content: ""; -} - -.ion-md-map:before { - content: ""; -} - -.ion-md-medal:before { - content: ""; -} - -.ion-md-medical:before { - content: ""; -} - -.ion-md-medkit:before { - content: ""; -} - -.ion-md-megaphone:before { - content: ""; -} - -.ion-md-menu:before { - content: ""; -} - -.ion-md-mic:before { - content: ""; -} - -.ion-md-mic-off:before { - content: ""; -} - -.ion-md-microphone:before { - content: ""; -} - -.ion-md-moon:before { - content: ""; -} - -.ion-md-more:before { - content: ""; -} - -.ion-md-move:before { - content: ""; -} - -.ion-md-musical-note:before { - content: ""; -} - -.ion-md-musical-notes:before { - content: ""; -} - -.ion-md-navigate:before { - content: ""; -} - -.ion-md-notifications:before { - content: ""; -} - -.ion-md-notifications-off:before { - content: ""; -} - -.ion-md-notifications-outline:before { - content: ""; -} - -.ion-md-nuclear:before { - content: ""; -} - -.ion-md-nutrition:before { - content: ""; -} - -.ion-md-open:before { - content: ""; -} - -.ion-md-options:before { - content: ""; -} - -.ion-md-outlet:before { - content: ""; -} - -.ion-md-paper:before { - content: ""; -} - -.ion-md-paper-plane:before { - content: ""; -} - -.ion-md-partly-sunny:before { - content: ""; -} - -.ion-md-pause:before { - content: ""; -} - -.ion-md-paw:before { - content: ""; -} - -.ion-md-people:before { - content: ""; -} - -.ion-md-person:before { - content: ""; -} - -.ion-md-person-add:before { - content: ""; -} - -.ion-md-phone-landscape:before { - content: ""; -} - -.ion-md-phone-portrait:before { - content: ""; -} - -.ion-md-photos:before { - content: ""; -} - -.ion-md-pie:before { - content: ""; -} - -.ion-md-pin:before { - content: ""; -} - -.ion-md-pint:before { - content: ""; -} - -.ion-md-pizza:before { - content: ""; -} - -.ion-md-planet:before { - content: ""; -} - -.ion-md-play:before { - content: ""; -} - -.ion-md-play-circle:before { - content: ""; -} - -.ion-md-podium:before { - content: ""; -} - -.ion-md-power:before { - content: ""; -} - -.ion-md-pricetag:before { - content: ""; -} - -.ion-md-pricetags:before { - content: ""; -} - -.ion-md-print:before { - content: ""; -} - -.ion-md-pulse:before { - content: ""; -} - -.ion-md-qr-scanner:before { - content: ""; -} - -.ion-md-quote:before { - content: ""; -} - -.ion-md-radio:before { - content: ""; -} - -.ion-md-radio-button-off:before { - content: ""; -} - -.ion-md-radio-button-on:before { - content: ""; -} - -.ion-md-rainy:before { - content: ""; -} - -.ion-md-recording:before { - content: ""; -} - -.ion-md-redo:before { - content: ""; -} - -.ion-md-refresh:before { - content: ""; -} - -.ion-md-refresh-circle:before { - content: ""; -} - -.ion-md-remove:before { - content: ""; -} - -.ion-md-remove-circle:before { - content: ""; -} - -.ion-md-remove-circle-outline:before { - content: ""; -} - -.ion-md-reorder:before { - content: ""; -} - -.ion-md-repeat:before { - content: ""; -} - -.ion-md-resize:before { - content: ""; -} - -.ion-md-restaurant:before { - content: ""; -} - -.ion-md-return-left:before { - content: ""; -} - -.ion-md-return-right:before { - content: ""; -} - -.ion-md-reverse-camera:before { - content: ""; -} - -.ion-md-rewind:before { - content: ""; -} - -.ion-md-ribbon:before { - content: ""; -} - -.ion-md-rocket:before { - content: ""; -} - -.ion-md-rose:before { - content: ""; -} - -.ion-md-sad:before { - content: ""; -} - -.ion-md-save:before { - content: ""; -} - -.ion-md-school:before { - content: ""; -} - -.ion-md-search:before { - content: ""; -} - -.ion-md-send:before { - content: ""; -} - -.ion-md-settings:before { - content: ""; -} - -.ion-md-share:before { - content: ""; -} - -.ion-md-share-alt:before { - content: ""; -} - -.ion-md-shirt:before { - content: ""; -} - -.ion-md-shuffle:before { - content: ""; -} - -.ion-md-skip-backward:before { - content: ""; -} - -.ion-md-skip-forward:before { - content: ""; -} - -.ion-md-snow:before { - content: ""; -} - -.ion-md-speedometer:before { - content: ""; -} - -.ion-md-square:before { - content: ""; -} - -.ion-md-square-outline:before { - content: ""; -} - -.ion-md-star:before { - content: ""; -} - -.ion-md-star-half:before { - content: ""; -} - -.ion-md-star-outline:before { - content: ""; -} - -.ion-md-stats:before { - content: ""; -} - -.ion-md-stopwatch:before { - content: ""; -} - -.ion-md-subway:before { - content: ""; -} - -.ion-md-sunny:before { - content: ""; -} - -.ion-md-swap:before { - content: ""; -} - -.ion-md-switch:before { - content: ""; -} - -.ion-md-sync:before { - content: ""; -} - -.ion-md-tablet-landscape:before { - content: ""; -} - -.ion-md-tablet-portrait:before { - content: ""; -} - -.ion-md-tennisball:before { - content: ""; -} - -.ion-md-text:before { - content: ""; -} - -.ion-md-thermometer:before { - content: ""; -} - -.ion-md-thumbs-down:before { - content: ""; -} - -.ion-md-thumbs-up:before { - content: ""; -} - -.ion-md-thunderstorm:before { - content: ""; -} - -.ion-md-time:before { - content: ""; -} - -.ion-md-timer:before { - content: ""; -} - -.ion-md-today:before { - content: ""; -} - -.ion-md-train:before { - content: ""; -} - -.ion-md-transgender:before { - content: ""; -} - -.ion-md-trash:before { - content: ""; -} - -.ion-md-trending-down:before { - content: ""; -} - -.ion-md-trending-up:before { - content: ""; -} - -.ion-md-trophy:before { - content: ""; -} - -.ion-md-tv:before { - content: ""; -} - -.ion-md-umbrella:before { - content: ""; -} - -.ion-md-undo:before { - content: ""; -} - -.ion-md-unlock:before { - content: ""; -} - -.ion-md-videocam:before { - content: ""; -} - -.ion-md-volume-high:before { - content: ""; -} - -.ion-md-volume-low:before { - content: ""; -} - -.ion-md-volume-mute:before { - content: ""; -} - -.ion-md-volume-off:before { - content: ""; -} - -.ion-md-walk:before { - content: ""; -} - -.ion-md-wallet:before { - content: ""; -} - -.ion-md-warning:before { - content: ""; -} - -.ion-md-watch:before { - content: ""; -} - -.ion-md-water:before { - content: ""; -} - -.ion-md-wifi:before { - content: ""; -} - -.ion-md-wine:before { - content: ""; -} - -.ion-md-woman:before { - content: ""; -} +@font-face{font-family:"Ionicons";src:url("../fonts/ionicons.eot?v=4.5.10-1");src:url("../fonts/ionicons.eot?v=4.5.10-1#iefix") format("embedded-opentype"),url("../fonts/ionicons.woff2?v=4.5.10-1") format("woff2"),url("../fonts/ionicons.woff?v=4.5.10-1") format("woff"),url("../fonts/ionicons.ttf?v=4.5.10-1") format("truetype"),url("../fonts/ionicons.svg?v=4.5.10-1#Ionicons") format("svg");font-weight:normal;font-style:normal}.ion,.ionicons,.ion-ios-add:before,.ion-ios-add-circle:before,.ion-ios-add-circle-outline:before,.ion-ios-airplane:before,.ion-ios-alarm:before,.ion-ios-albums:before,.ion-ios-alert:before,.ion-ios-american-football:before,.ion-ios-analytics:before,.ion-ios-aperture:before,.ion-ios-apps:before,.ion-ios-appstore:before,.ion-ios-archive:before,.ion-ios-arrow-back:before,.ion-ios-arrow-down:before,.ion-ios-arrow-dropdown:before,.ion-ios-arrow-dropdown-circle:before,.ion-ios-arrow-dropleft:before,.ion-ios-arrow-dropleft-circle:before,.ion-ios-arrow-dropright:before,.ion-ios-arrow-dropright-circle:before,.ion-ios-arrow-dropup:before,.ion-ios-arrow-dropup-circle:before,.ion-ios-arrow-forward:before,.ion-ios-arrow-round-back:before,.ion-ios-arrow-round-down:before,.ion-ios-arrow-round-forward:before,.ion-ios-arrow-round-up:before,.ion-ios-arrow-up:before,.ion-ios-at:before,.ion-ios-attach:before,.ion-ios-backspace:before,.ion-ios-barcode:before,.ion-ios-baseball:before,.ion-ios-basket:before,.ion-ios-basketball:before,.ion-ios-battery-charging:before,.ion-ios-battery-dead:before,.ion-ios-battery-full:before,.ion-ios-beaker:before,.ion-ios-bed:before,.ion-ios-beer:before,.ion-ios-bicycle:before,.ion-ios-bluetooth:before,.ion-ios-boat:before,.ion-ios-body:before,.ion-ios-bonfire:before,.ion-ios-book:before,.ion-ios-bookmark:before,.ion-ios-bookmarks:before,.ion-ios-bowtie:before,.ion-ios-briefcase:before,.ion-ios-browsers:before,.ion-ios-brush:before,.ion-ios-bug:before,.ion-ios-build:before,.ion-ios-bulb:before,.ion-ios-bus:before,.ion-ios-business:before,.ion-ios-cafe:before,.ion-ios-calculator:before,.ion-ios-calendar:before,.ion-ios-call:before,.ion-ios-camera:before,.ion-ios-car:before,.ion-ios-card:before,.ion-ios-cart:before,.ion-ios-cash:before,.ion-ios-cellular:before,.ion-ios-chatboxes:before,.ion-ios-chatbubbles:before,.ion-ios-checkbox:before,.ion-ios-checkbox-outline:before,.ion-ios-checkmark:before,.ion-ios-checkmark-circle:before,.ion-ios-checkmark-circle-outline:before,.ion-ios-clipboard:before,.ion-ios-clock:before,.ion-ios-close:before,.ion-ios-close-circle:before,.ion-ios-close-circle-outline:before,.ion-ios-cloud:before,.ion-ios-cloud-circle:before,.ion-ios-cloud-done:before,.ion-ios-cloud-download:before,.ion-ios-cloud-outline:before,.ion-ios-cloud-upload:before,.ion-ios-cloudy:before,.ion-ios-cloudy-night:before,.ion-ios-code:before,.ion-ios-code-download:before,.ion-ios-code-working:before,.ion-ios-cog:before,.ion-ios-color-fill:before,.ion-ios-color-filter:before,.ion-ios-color-palette:before,.ion-ios-color-wand:before,.ion-ios-compass:before,.ion-ios-construct:before,.ion-ios-contact:before,.ion-ios-contacts:before,.ion-ios-contract:before,.ion-ios-contrast:before,.ion-ios-copy:before,.ion-ios-create:before,.ion-ios-crop:before,.ion-ios-cube:before,.ion-ios-cut:before,.ion-ios-desktop:before,.ion-ios-disc:before,.ion-ios-document:before,.ion-ios-done-all:before,.ion-ios-download:before,.ion-ios-easel:before,.ion-ios-egg:before,.ion-ios-exit:before,.ion-ios-expand:before,.ion-ios-eye:before,.ion-ios-eye-off:before,.ion-ios-fastforward:before,.ion-ios-female:before,.ion-ios-filing:before,.ion-ios-film:before,.ion-ios-finger-print:before,.ion-ios-fitness:before,.ion-ios-flag:before,.ion-ios-flame:before,.ion-ios-flash:before,.ion-ios-flash-off:before,.ion-ios-flashlight:before,.ion-ios-flask:before,.ion-ios-flower:before,.ion-ios-folder:before,.ion-ios-folder-open:before,.ion-ios-football:before,.ion-ios-funnel:before,.ion-ios-gift:before,.ion-ios-git-branch:before,.ion-ios-git-commit:before,.ion-ios-git-compare:before,.ion-ios-git-merge:before,.ion-ios-git-network:before,.ion-ios-git-pull-request:before,.ion-ios-glasses:before,.ion-ios-globe:before,.ion-ios-grid:before,.ion-ios-hammer:before,.ion-ios-hand:before,.ion-ios-happy:before,.ion-ios-headset:before,.ion-ios-heart:before,.ion-ios-heart-dislike:before,.ion-ios-heart-empty:before,.ion-ios-heart-half:before,.ion-ios-help:before,.ion-ios-help-buoy:before,.ion-ios-help-circle:before,.ion-ios-help-circle-outline:before,.ion-ios-home:before,.ion-ios-hourglass:before,.ion-ios-ice-cream:before,.ion-ios-image:before,.ion-ios-images:before,.ion-ios-infinite:before,.ion-ios-information:before,.ion-ios-information-circle:before,.ion-ios-information-circle-outline:before,.ion-ios-jet:before,.ion-ios-journal:before,.ion-ios-key:before,.ion-ios-keypad:before,.ion-ios-laptop:before,.ion-ios-leaf:before,.ion-ios-link:before,.ion-ios-list:before,.ion-ios-list-box:before,.ion-ios-locate:before,.ion-ios-lock:before,.ion-ios-log-in:before,.ion-ios-log-out:before,.ion-ios-magnet:before,.ion-ios-mail:before,.ion-ios-mail-open:before,.ion-ios-mail-unread:before,.ion-ios-male:before,.ion-ios-man:before,.ion-ios-map:before,.ion-ios-medal:before,.ion-ios-medical:before,.ion-ios-medkit:before,.ion-ios-megaphone:before,.ion-ios-menu:before,.ion-ios-mic:before,.ion-ios-mic-off:before,.ion-ios-microphone:before,.ion-ios-moon:before,.ion-ios-more:before,.ion-ios-move:before,.ion-ios-musical-note:before,.ion-ios-musical-notes:before,.ion-ios-navigate:before,.ion-ios-notifications:before,.ion-ios-notifications-off:before,.ion-ios-notifications-outline:before,.ion-ios-nuclear:before,.ion-ios-nutrition:before,.ion-ios-open:before,.ion-ios-options:before,.ion-ios-outlet:before,.ion-ios-paper:before,.ion-ios-paper-plane:before,.ion-ios-partly-sunny:before,.ion-ios-pause:before,.ion-ios-paw:before,.ion-ios-people:before,.ion-ios-person:before,.ion-ios-person-add:before,.ion-ios-phone-landscape:before,.ion-ios-phone-portrait:before,.ion-ios-photos:before,.ion-ios-pie:before,.ion-ios-pin:before,.ion-ios-pint:before,.ion-ios-pizza:before,.ion-ios-planet:before,.ion-ios-play:before,.ion-ios-play-circle:before,.ion-ios-podium:before,.ion-ios-power:before,.ion-ios-pricetag:before,.ion-ios-pricetags:before,.ion-ios-print:before,.ion-ios-pulse:before,.ion-ios-qr-scanner:before,.ion-ios-quote:before,.ion-ios-radio:before,.ion-ios-radio-button-off:before,.ion-ios-radio-button-on:before,.ion-ios-rainy:before,.ion-ios-recording:before,.ion-ios-redo:before,.ion-ios-refresh:before,.ion-ios-refresh-circle:before,.ion-ios-remove:before,.ion-ios-remove-circle:before,.ion-ios-remove-circle-outline:before,.ion-ios-reorder:before,.ion-ios-repeat:before,.ion-ios-resize:before,.ion-ios-restaurant:before,.ion-ios-return-left:before,.ion-ios-return-right:before,.ion-ios-reverse-camera:before,.ion-ios-rewind:before,.ion-ios-ribbon:before,.ion-ios-rocket:before,.ion-ios-rose:before,.ion-ios-sad:before,.ion-ios-save:before,.ion-ios-school:before,.ion-ios-search:before,.ion-ios-send:before,.ion-ios-settings:before,.ion-ios-share:before,.ion-ios-share-alt:before,.ion-ios-shirt:before,.ion-ios-shuffle:before,.ion-ios-skip-backward:before,.ion-ios-skip-forward:before,.ion-ios-snow:before,.ion-ios-speedometer:before,.ion-ios-square:before,.ion-ios-square-outline:before,.ion-ios-star:before,.ion-ios-star-half:before,.ion-ios-star-outline:before,.ion-ios-stats:before,.ion-ios-stopwatch:before,.ion-ios-subway:before,.ion-ios-sunny:before,.ion-ios-swap:before,.ion-ios-switch:before,.ion-ios-sync:before,.ion-ios-tablet-landscape:before,.ion-ios-tablet-portrait:before,.ion-ios-tennisball:before,.ion-ios-text:before,.ion-ios-thermometer:before,.ion-ios-thumbs-down:before,.ion-ios-thumbs-up:before,.ion-ios-thunderstorm:before,.ion-ios-time:before,.ion-ios-timer:before,.ion-ios-today:before,.ion-ios-train:before,.ion-ios-transgender:before,.ion-ios-trash:before,.ion-ios-trending-down:before,.ion-ios-trending-up:before,.ion-ios-trophy:before,.ion-ios-tv:before,.ion-ios-umbrella:before,.ion-ios-undo:before,.ion-ios-unlock:before,.ion-ios-videocam:before,.ion-ios-volume-high:before,.ion-ios-volume-low:before,.ion-ios-volume-mute:before,.ion-ios-volume-off:before,.ion-ios-walk:before,.ion-ios-wallet:before,.ion-ios-warning:before,.ion-ios-watch:before,.ion-ios-water:before,.ion-ios-wifi:before,.ion-ios-wine:before,.ion-ios-woman:before,.ion-logo-android:before,.ion-logo-angular:before,.ion-logo-apple:before,.ion-logo-bitbucket:before,.ion-logo-bitcoin:before,.ion-logo-buffer:before,.ion-logo-chrome:before,.ion-logo-closed-captioning:before,.ion-logo-codepen:before,.ion-logo-css3:before,.ion-logo-designernews:before,.ion-logo-dribbble:before,.ion-logo-dropbox:before,.ion-logo-euro:before,.ion-logo-facebook:before,.ion-logo-flickr:before,.ion-logo-foursquare:before,.ion-logo-freebsd-devil:before,.ion-logo-game-controller-a:before,.ion-logo-game-controller-b:before,.ion-logo-github:before,.ion-logo-google:before,.ion-logo-googleplus:before,.ion-logo-hackernews:before,.ion-logo-html5:before,.ion-logo-instagram:before,.ion-logo-ionic:before,.ion-logo-ionitron:before,.ion-logo-javascript:before,.ion-logo-linkedin:before,.ion-logo-markdown:before,.ion-logo-model-s:before,.ion-logo-no-smoking:before,.ion-logo-nodejs:before,.ion-logo-npm:before,.ion-logo-octocat:before,.ion-logo-pinterest:before,.ion-logo-playstation:before,.ion-logo-polymer:before,.ion-logo-python:before,.ion-logo-reddit:before,.ion-logo-rss:before,.ion-logo-sass:before,.ion-logo-skype:before,.ion-logo-slack:before,.ion-logo-snapchat:before,.ion-logo-steam:before,.ion-logo-tumblr:before,.ion-logo-tux:before,.ion-logo-twitch:before,.ion-logo-twitter:before,.ion-logo-usd:before,.ion-logo-vimeo:before,.ion-logo-vk:before,.ion-logo-whatsapp:before,.ion-logo-windows:before,.ion-logo-wordpress:before,.ion-logo-xbox:before,.ion-logo-xing:before,.ion-logo-yahoo:before,.ion-logo-yen:before,.ion-logo-youtube:before,.ion-md-add:before,.ion-md-add-circle:before,.ion-md-add-circle-outline:before,.ion-md-airplane:before,.ion-md-alarm:before,.ion-md-albums:before,.ion-md-alert:before,.ion-md-american-football:before,.ion-md-analytics:before,.ion-md-aperture:before,.ion-md-apps:before,.ion-md-appstore:before,.ion-md-archive:before,.ion-md-arrow-back:before,.ion-md-arrow-down:before,.ion-md-arrow-dropdown:before,.ion-md-arrow-dropdown-circle:before,.ion-md-arrow-dropleft:before,.ion-md-arrow-dropleft-circle:before,.ion-md-arrow-dropright:before,.ion-md-arrow-dropright-circle:before,.ion-md-arrow-dropup:before,.ion-md-arrow-dropup-circle:before,.ion-md-arrow-forward:before,.ion-md-arrow-round-back:before,.ion-md-arrow-round-down:before,.ion-md-arrow-round-forward:before,.ion-md-arrow-round-up:before,.ion-md-arrow-up:before,.ion-md-at:before,.ion-md-attach:before,.ion-md-backspace:before,.ion-md-barcode:before,.ion-md-baseball:before,.ion-md-basket:before,.ion-md-basketball:before,.ion-md-battery-charging:before,.ion-md-battery-dead:before,.ion-md-battery-full:before,.ion-md-beaker:before,.ion-md-bed:before,.ion-md-beer:before,.ion-md-bicycle:before,.ion-md-bluetooth:before,.ion-md-boat:before,.ion-md-body:before,.ion-md-bonfire:before,.ion-md-book:before,.ion-md-bookmark:before,.ion-md-bookmarks:before,.ion-md-bowtie:before,.ion-md-briefcase:before,.ion-md-browsers:before,.ion-md-brush:before,.ion-md-bug:before,.ion-md-build:before,.ion-md-bulb:before,.ion-md-bus:before,.ion-md-business:before,.ion-md-cafe:before,.ion-md-calculator:before,.ion-md-calendar:before,.ion-md-call:before,.ion-md-camera:before,.ion-md-car:before,.ion-md-card:before,.ion-md-cart:before,.ion-md-cash:before,.ion-md-cellular:before,.ion-md-chatboxes:before,.ion-md-chatbubbles:before,.ion-md-checkbox:before,.ion-md-checkbox-outline:before,.ion-md-checkmark:before,.ion-md-checkmark-circle:before,.ion-md-checkmark-circle-outline:before,.ion-md-clipboard:before,.ion-md-clock:before,.ion-md-close:before,.ion-md-close-circle:before,.ion-md-close-circle-outline:before,.ion-md-cloud:before,.ion-md-cloud-circle:before,.ion-md-cloud-done:before,.ion-md-cloud-download:before,.ion-md-cloud-outline:before,.ion-md-cloud-upload:before,.ion-md-cloudy:before,.ion-md-cloudy-night:before,.ion-md-code:before,.ion-md-code-download:before,.ion-md-code-working:before,.ion-md-cog:before,.ion-md-color-fill:before,.ion-md-color-filter:before,.ion-md-color-palette:before,.ion-md-color-wand:before,.ion-md-compass:before,.ion-md-construct:before,.ion-md-contact:before,.ion-md-contacts:before,.ion-md-contract:before,.ion-md-contrast:before,.ion-md-copy:before,.ion-md-create:before,.ion-md-crop:before,.ion-md-cube:before,.ion-md-cut:before,.ion-md-desktop:before,.ion-md-disc:before,.ion-md-document:before,.ion-md-done-all:before,.ion-md-download:before,.ion-md-easel:before,.ion-md-egg:before,.ion-md-exit:before,.ion-md-expand:before,.ion-md-eye:before,.ion-md-eye-off:before,.ion-md-fastforward:before,.ion-md-female:before,.ion-md-filing:before,.ion-md-film:before,.ion-md-finger-print:before,.ion-md-fitness:before,.ion-md-flag:before,.ion-md-flame:before,.ion-md-flash:before,.ion-md-flash-off:before,.ion-md-flashlight:before,.ion-md-flask:before,.ion-md-flower:before,.ion-md-folder:before,.ion-md-folder-open:before,.ion-md-football:before,.ion-md-funnel:before,.ion-md-gift:before,.ion-md-git-branch:before,.ion-md-git-commit:before,.ion-md-git-compare:before,.ion-md-git-merge:before,.ion-md-git-network:before,.ion-md-git-pull-request:before,.ion-md-glasses:before,.ion-md-globe:before,.ion-md-grid:before,.ion-md-hammer:before,.ion-md-hand:before,.ion-md-happy:before,.ion-md-headset:before,.ion-md-heart:before,.ion-md-heart-dislike:before,.ion-md-heart-empty:before,.ion-md-heart-half:before,.ion-md-help:before,.ion-md-help-buoy:before,.ion-md-help-circle:before,.ion-md-help-circle-outline:before,.ion-md-home:before,.ion-md-hourglass:before,.ion-md-ice-cream:before,.ion-md-image:before,.ion-md-images:before,.ion-md-infinite:before,.ion-md-information:before,.ion-md-information-circle:before,.ion-md-information-circle-outline:before,.ion-md-jet:before,.ion-md-journal:before,.ion-md-key:before,.ion-md-keypad:before,.ion-md-laptop:before,.ion-md-leaf:before,.ion-md-link:before,.ion-md-list:before,.ion-md-list-box:before,.ion-md-locate:before,.ion-md-lock:before,.ion-md-log-in:before,.ion-md-log-out:before,.ion-md-magnet:before,.ion-md-mail:before,.ion-md-mail-open:before,.ion-md-mail-unread:before,.ion-md-male:before,.ion-md-man:before,.ion-md-map:before,.ion-md-medal:before,.ion-md-medical:before,.ion-md-medkit:before,.ion-md-megaphone:before,.ion-md-menu:before,.ion-md-mic:before,.ion-md-mic-off:before,.ion-md-microphone:before,.ion-md-moon:before,.ion-md-more:before,.ion-md-move:before,.ion-md-musical-note:before,.ion-md-musical-notes:before,.ion-md-navigate:before,.ion-md-notifications:before,.ion-md-notifications-off:before,.ion-md-notifications-outline:before,.ion-md-nuclear:before,.ion-md-nutrition:before,.ion-md-open:before,.ion-md-options:before,.ion-md-outlet:before,.ion-md-paper:before,.ion-md-paper-plane:before,.ion-md-partly-sunny:before,.ion-md-pause:before,.ion-md-paw:before,.ion-md-people:before,.ion-md-person:before,.ion-md-person-add:before,.ion-md-phone-landscape:before,.ion-md-phone-portrait:before,.ion-md-photos:before,.ion-md-pie:before,.ion-md-pin:before,.ion-md-pint:before,.ion-md-pizza:before,.ion-md-planet:before,.ion-md-play:before,.ion-md-play-circle:before,.ion-md-podium:before,.ion-md-power:before,.ion-md-pricetag:before,.ion-md-pricetags:before,.ion-md-print:before,.ion-md-pulse:before,.ion-md-qr-scanner:before,.ion-md-quote:before,.ion-md-radio:before,.ion-md-radio-button-off:before,.ion-md-radio-button-on:before,.ion-md-rainy:before,.ion-md-recording:before,.ion-md-redo:before,.ion-md-refresh:before,.ion-md-refresh-circle:before,.ion-md-remove:before,.ion-md-remove-circle:before,.ion-md-remove-circle-outline:before,.ion-md-reorder:before,.ion-md-repeat:before,.ion-md-resize:before,.ion-md-restaurant:before,.ion-md-return-left:before,.ion-md-return-right:before,.ion-md-reverse-camera:before,.ion-md-rewind:before,.ion-md-ribbon:before,.ion-md-rocket:before,.ion-md-rose:before,.ion-md-sad:before,.ion-md-save:before,.ion-md-school:before,.ion-md-search:before,.ion-md-send:before,.ion-md-settings:before,.ion-md-share:before,.ion-md-share-alt:before,.ion-md-shirt:before,.ion-md-shuffle:before,.ion-md-skip-backward:before,.ion-md-skip-forward:before,.ion-md-snow:before,.ion-md-speedometer:before,.ion-md-square:before,.ion-md-square-outline:before,.ion-md-star:before,.ion-md-star-half:before,.ion-md-star-outline:before,.ion-md-stats:before,.ion-md-stopwatch:before,.ion-md-subway:before,.ion-md-sunny:before,.ion-md-swap:before,.ion-md-switch:before,.ion-md-sync:before,.ion-md-tablet-landscape:before,.ion-md-tablet-portrait:before,.ion-md-tennisball:before,.ion-md-text:before,.ion-md-thermometer:before,.ion-md-thumbs-down:before,.ion-md-thumbs-up:before,.ion-md-thunderstorm:before,.ion-md-time:before,.ion-md-timer:before,.ion-md-today:before,.ion-md-train:before,.ion-md-transgender:before,.ion-md-trash:before,.ion-md-trending-down:before,.ion-md-trending-up:before,.ion-md-trophy:before,.ion-md-tv:before,.ion-md-umbrella:before,.ion-md-undo:before,.ion-md-unlock:before,.ion-md-videocam:before,.ion-md-volume-high:before,.ion-md-volume-low:before,.ion-md-volume-mute:before,.ion-md-volume-off:before,.ion-md-walk:before,.ion-md-wallet:before,.ion-md-warning:before,.ion-md-watch:before,.ion-md-water:before,.ion-md-wifi:before,.ion-md-wine:before,.ion-md-woman:before{display:inline-block;font-family:"Ionicons";speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;text-rendering:auto;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ion-ios-add:before{content:""}.ion-ios-add-circle:before{content:""}.ion-ios-add-circle-outline:before{content:""}.ion-ios-airplane:before{content:""}.ion-ios-alarm:before{content:""}.ion-ios-albums:before{content:""}.ion-ios-alert:before{content:""}.ion-ios-american-football:before{content:""}.ion-ios-analytics:before{content:""}.ion-ios-aperture:before{content:""}.ion-ios-apps:before{content:""}.ion-ios-appstore:before{content:""}.ion-ios-archive:before{content:""}.ion-ios-arrow-back:before{content:""}.ion-ios-arrow-down:before{content:""}.ion-ios-arrow-dropdown:before{content:""}.ion-ios-arrow-dropdown-circle:before{content:""}.ion-ios-arrow-dropleft:before{content:""}.ion-ios-arrow-dropleft-circle:before{content:""}.ion-ios-arrow-dropright:before{content:""}.ion-ios-arrow-dropright-circle:before{content:""}.ion-ios-arrow-dropup:before{content:""}.ion-ios-arrow-dropup-circle:before{content:""}.ion-ios-arrow-forward:before{content:""}.ion-ios-arrow-round-back:before{content:""}.ion-ios-arrow-round-down:before{content:""}.ion-ios-arrow-round-forward:before{content:""}.ion-ios-arrow-round-up:before{content:""}.ion-ios-arrow-up:before{content:""}.ion-ios-at:before{content:""}.ion-ios-attach:before{content:""}.ion-ios-backspace:before{content:""}.ion-ios-barcode:before{content:""}.ion-ios-baseball:before{content:""}.ion-ios-basket:before{content:""}.ion-ios-basketball:before{content:""}.ion-ios-battery-charging:before{content:""}.ion-ios-battery-dead:before{content:""}.ion-ios-battery-full:before{content:""}.ion-ios-beaker:before{content:""}.ion-ios-bed:before{content:""}.ion-ios-beer:before{content:""}.ion-ios-bicycle:before{content:""}.ion-ios-bluetooth:before{content:""}.ion-ios-boat:before{content:""}.ion-ios-body:before{content:""}.ion-ios-bonfire:before{content:""}.ion-ios-book:before{content:""}.ion-ios-bookmark:before{content:""}.ion-ios-bookmarks:before{content:""}.ion-ios-bowtie:before{content:""}.ion-ios-briefcase:before{content:""}.ion-ios-browsers:before{content:""}.ion-ios-brush:before{content:""}.ion-ios-bug:before{content:""}.ion-ios-build:before{content:""}.ion-ios-bulb:before{content:""}.ion-ios-bus:before{content:""}.ion-ios-business:before{content:""}.ion-ios-cafe:before{content:""}.ion-ios-calculator:before{content:""}.ion-ios-calendar:before{content:""}.ion-ios-call:before{content:""}.ion-ios-camera:before{content:""}.ion-ios-car:before{content:""}.ion-ios-card:before{content:""}.ion-ios-cart:before{content:""}.ion-ios-cash:before{content:""}.ion-ios-cellular:before{content:""}.ion-ios-chatboxes:before{content:""}.ion-ios-chatbubbles:before{content:""}.ion-ios-checkbox:before{content:""}.ion-ios-checkbox-outline:before{content:""}.ion-ios-checkmark:before{content:""}.ion-ios-checkmark-circle:before{content:""}.ion-ios-checkmark-circle-outline:before{content:""}.ion-ios-clipboard:before{content:""}.ion-ios-clock:before{content:""}.ion-ios-close:before{content:""}.ion-ios-close-circle:before{content:""}.ion-ios-close-circle-outline:before{content:""}.ion-ios-cloud:before{content:""}.ion-ios-cloud-circle:before{content:""}.ion-ios-cloud-done:before{content:""}.ion-ios-cloud-download:before{content:""}.ion-ios-cloud-outline:before{content:""}.ion-ios-cloud-upload:before{content:""}.ion-ios-cloudy:before{content:""}.ion-ios-cloudy-night:before{content:""}.ion-ios-code:before{content:""}.ion-ios-code-download:before{content:""}.ion-ios-code-working:before{content:""}.ion-ios-cog:before{content:""}.ion-ios-color-fill:before{content:""}.ion-ios-color-filter:before{content:""}.ion-ios-color-palette:before{content:""}.ion-ios-color-wand:before{content:""}.ion-ios-compass:before{content:""}.ion-ios-construct:before{content:""}.ion-ios-contact:before{content:""}.ion-ios-contacts:before{content:""}.ion-ios-contract:before{content:""}.ion-ios-contrast:before{content:""}.ion-ios-copy:before{content:""}.ion-ios-create:before{content:""}.ion-ios-crop:before{content:""}.ion-ios-cube:before{content:""}.ion-ios-cut:before{content:""}.ion-ios-desktop:before{content:""}.ion-ios-disc:before{content:""}.ion-ios-document:before{content:""}.ion-ios-done-all:before{content:""}.ion-ios-download:before{content:""}.ion-ios-easel:before{content:""}.ion-ios-egg:before{content:""}.ion-ios-exit:before{content:""}.ion-ios-expand:before{content:""}.ion-ios-eye:before{content:""}.ion-ios-eye-off:before{content:""}.ion-ios-fastforward:before{content:""}.ion-ios-female:before{content:""}.ion-ios-filing:before{content:""}.ion-ios-film:before{content:""}.ion-ios-finger-print:before{content:""}.ion-ios-fitness:before{content:""}.ion-ios-flag:before{content:""}.ion-ios-flame:before{content:""}.ion-ios-flash:before{content:""}.ion-ios-flash-off:before{content:""}.ion-ios-flashlight:before{content:""}.ion-ios-flask:before{content:""}.ion-ios-flower:before{content:""}.ion-ios-folder:before{content:""}.ion-ios-folder-open:before{content:""}.ion-ios-football:before{content:""}.ion-ios-funnel:before{content:""}.ion-ios-gift:before{content:""}.ion-ios-git-branch:before{content:""}.ion-ios-git-commit:before{content:""}.ion-ios-git-compare:before{content:""}.ion-ios-git-merge:before{content:""}.ion-ios-git-network:before{content:""}.ion-ios-git-pull-request:before{content:""}.ion-ios-glasses:before{content:""}.ion-ios-globe:before{content:""}.ion-ios-grid:before{content:""}.ion-ios-hammer:before{content:""}.ion-ios-hand:before{content:""}.ion-ios-happy:before{content:""}.ion-ios-headset:before{content:""}.ion-ios-heart:before{content:""}.ion-ios-heart-dislike:before{content:""}.ion-ios-heart-empty:before{content:""}.ion-ios-heart-half:before{content:""}.ion-ios-help:before{content:""}.ion-ios-help-buoy:before{content:""}.ion-ios-help-circle:before{content:""}.ion-ios-help-circle-outline:before{content:""}.ion-ios-home:before{content:""}.ion-ios-hourglass:before{content:""}.ion-ios-ice-cream:before{content:""}.ion-ios-image:before{content:""}.ion-ios-images:before{content:""}.ion-ios-infinite:before{content:""}.ion-ios-information:before{content:""}.ion-ios-information-circle:before{content:""}.ion-ios-information-circle-outline:before{content:""}.ion-ios-jet:before{content:""}.ion-ios-journal:before{content:""}.ion-ios-key:before{content:""}.ion-ios-keypad:before{content:""}.ion-ios-laptop:before{content:""}.ion-ios-leaf:before{content:""}.ion-ios-link:before{content:""}.ion-ios-list:before{content:""}.ion-ios-list-box:before{content:""}.ion-ios-locate:before{content:""}.ion-ios-lock:before{content:""}.ion-ios-log-in:before{content:""}.ion-ios-log-out:before{content:""}.ion-ios-magnet:before{content:""}.ion-ios-mail:before{content:""}.ion-ios-mail-open:before{content:""}.ion-ios-mail-unread:before{content:""}.ion-ios-male:before{content:""}.ion-ios-man:before{content:""}.ion-ios-map:before{content:""}.ion-ios-medal:before{content:""}.ion-ios-medical:before{content:""}.ion-ios-medkit:before{content:""}.ion-ios-megaphone:before{content:""}.ion-ios-menu:before{content:""}.ion-ios-mic:before{content:""}.ion-ios-mic-off:before{content:""}.ion-ios-microphone:before{content:""}.ion-ios-moon:before{content:""}.ion-ios-more:before{content:""}.ion-ios-move:before{content:""}.ion-ios-musical-note:before{content:""}.ion-ios-musical-notes:before{content:""}.ion-ios-navigate:before{content:""}.ion-ios-notifications:before{content:""}.ion-ios-notifications-off:before{content:""}.ion-ios-notifications-outline:before{content:""}.ion-ios-nuclear:before{content:""}.ion-ios-nutrition:before{content:""}.ion-ios-open:before{content:""}.ion-ios-options:before{content:""}.ion-ios-outlet:before{content:""}.ion-ios-paper:before{content:""}.ion-ios-paper-plane:before{content:""}.ion-ios-partly-sunny:before{content:""}.ion-ios-pause:before{content:""}.ion-ios-paw:before{content:""}.ion-ios-people:before{content:""}.ion-ios-person:before{content:""}.ion-ios-person-add:before{content:""}.ion-ios-phone-landscape:before{content:""}.ion-ios-phone-portrait:before{content:""}.ion-ios-photos:before{content:""}.ion-ios-pie:before{content:""}.ion-ios-pin:before{content:""}.ion-ios-pint:before{content:""}.ion-ios-pizza:before{content:""}.ion-ios-planet:before{content:""}.ion-ios-play:before{content:""}.ion-ios-play-circle:before{content:""}.ion-ios-podium:before{content:""}.ion-ios-power:before{content:""}.ion-ios-pricetag:before{content:""}.ion-ios-pricetags:before{content:""}.ion-ios-print:before{content:""}.ion-ios-pulse:before{content:""}.ion-ios-qr-scanner:before{content:""}.ion-ios-quote:before{content:""}.ion-ios-radio:before{content:""}.ion-ios-radio-button-off:before{content:""}.ion-ios-radio-button-on:before{content:""}.ion-ios-rainy:before{content:""}.ion-ios-recording:before{content:""}.ion-ios-redo:before{content:""}.ion-ios-refresh:before{content:""}.ion-ios-refresh-circle:before{content:""}.ion-ios-remove:before{content:""}.ion-ios-remove-circle:before{content:""}.ion-ios-remove-circle-outline:before{content:""}.ion-ios-reorder:before{content:""}.ion-ios-repeat:before{content:""}.ion-ios-resize:before{content:""}.ion-ios-restaurant:before{content:""}.ion-ios-return-left:before{content:""}.ion-ios-return-right:before{content:""}.ion-ios-reverse-camera:before{content:""}.ion-ios-rewind:before{content:""}.ion-ios-ribbon:before{content:""}.ion-ios-rocket:before{content:""}.ion-ios-rose:before{content:""}.ion-ios-sad:before{content:""}.ion-ios-save:before{content:""}.ion-ios-school:before{content:""}.ion-ios-search:before{content:""}.ion-ios-send:before{content:""}.ion-ios-settings:before{content:""}.ion-ios-share:before{content:""}.ion-ios-share-alt:before{content:""}.ion-ios-shirt:before{content:""}.ion-ios-shuffle:before{content:""}.ion-ios-skip-backward:before{content:""}.ion-ios-skip-forward:before{content:""}.ion-ios-snow:before{content:""}.ion-ios-speedometer:before{content:""}.ion-ios-square:before{content:""}.ion-ios-square-outline:before{content:""}.ion-ios-star:before{content:""}.ion-ios-star-half:before{content:""}.ion-ios-star-outline:before{content:""}.ion-ios-stats:before{content:""}.ion-ios-stopwatch:before{content:""}.ion-ios-subway:before{content:""}.ion-ios-sunny:before{content:""}.ion-ios-swap:before{content:""}.ion-ios-switch:before{content:""}.ion-ios-sync:before{content:""}.ion-ios-tablet-landscape:before{content:""}.ion-ios-tablet-portrait:before{content:""}.ion-ios-tennisball:before{content:""}.ion-ios-text:before{content:""}.ion-ios-thermometer:before{content:""}.ion-ios-thumbs-down:before{content:""}.ion-ios-thumbs-up:before{content:""}.ion-ios-thunderstorm:before{content:""}.ion-ios-time:before{content:""}.ion-ios-timer:before{content:""}.ion-ios-today:before{content:""}.ion-ios-train:before{content:""}.ion-ios-transgender:before{content:""}.ion-ios-trash:before{content:""}.ion-ios-trending-down:before{content:""}.ion-ios-trending-up:before{content:""}.ion-ios-trophy:before{content:""}.ion-ios-tv:before{content:""}.ion-ios-umbrella:before{content:""}.ion-ios-undo:before{content:""}.ion-ios-unlock:before{content:""}.ion-ios-videocam:before{content:""}.ion-ios-volume-high:before{content:""}.ion-ios-volume-low:before{content:""}.ion-ios-volume-mute:before{content:""}.ion-ios-volume-off:before{content:""}.ion-ios-walk:before{content:""}.ion-ios-wallet:before{content:""}.ion-ios-warning:before{content:""}.ion-ios-watch:before{content:""}.ion-ios-water:before{content:""}.ion-ios-wifi:before{content:""}.ion-ios-wine:before{content:""}.ion-ios-woman:before{content:""}.ion-logo-android:before{content:""}.ion-logo-angular:before{content:""}.ion-logo-apple:before{content:""}.ion-logo-bitbucket:before{content:""}.ion-logo-bitcoin:before{content:""}.ion-logo-buffer:before{content:""}.ion-logo-chrome:before{content:""}.ion-logo-closed-captioning:before{content:""}.ion-logo-codepen:before{content:""}.ion-logo-css3:before{content:""}.ion-logo-designernews:before{content:""}.ion-logo-dribbble:before{content:""}.ion-logo-dropbox:before{content:""}.ion-logo-euro:before{content:""}.ion-logo-facebook:before{content:""}.ion-logo-flickr:before{content:""}.ion-logo-foursquare:before{content:""}.ion-logo-freebsd-devil:before{content:""}.ion-logo-game-controller-a:before{content:""}.ion-logo-game-controller-b:before{content:""}.ion-logo-github:before{content:""}.ion-logo-google:before{content:""}.ion-logo-googleplus:before{content:""}.ion-logo-hackernews:before{content:""}.ion-logo-html5:before{content:""}.ion-logo-instagram:before{content:""}.ion-logo-ionic:before{content:""}.ion-logo-ionitron:before{content:""}.ion-logo-javascript:before{content:""}.ion-logo-linkedin:before{content:""}.ion-logo-markdown:before{content:""}.ion-logo-model-s:before{content:""}.ion-logo-no-smoking:before{content:""}.ion-logo-nodejs:before{content:""}.ion-logo-npm:before{content:""}.ion-logo-octocat:before{content:""}.ion-logo-pinterest:before{content:""}.ion-logo-playstation:before{content:""}.ion-logo-polymer:before{content:""}.ion-logo-python:before{content:""}.ion-logo-reddit:before{content:""}.ion-logo-rss:before{content:""}.ion-logo-sass:before{content:""}.ion-logo-skype:before{content:""}.ion-logo-slack:before{content:""}.ion-logo-snapchat:before{content:""}.ion-logo-steam:before{content:""}.ion-logo-tumblr:before{content:""}.ion-logo-tux:before{content:""}.ion-logo-twitch:before{content:""}.ion-logo-twitter:before{content:""}.ion-logo-usd:before{content:""}.ion-logo-vimeo:before{content:""}.ion-logo-vk:before{content:""}.ion-logo-whatsapp:before{content:""}.ion-logo-windows:before{content:""}.ion-logo-wordpress:before{content:""}.ion-logo-xbox:before{content:""}.ion-logo-xing:before{content:""}.ion-logo-yahoo:before{content:""}.ion-logo-yen:before{content:""}.ion-logo-youtube:before{content:""}.ion-md-add:before{content:""}.ion-md-add-circle:before{content:""}.ion-md-add-circle-outline:before{content:""}.ion-md-airplane:before{content:""}.ion-md-alarm:before{content:""}.ion-md-albums:before{content:""}.ion-md-alert:before{content:""}.ion-md-american-football:before{content:""}.ion-md-analytics:before{content:""}.ion-md-aperture:before{content:""}.ion-md-apps:before{content:""}.ion-md-appstore:before{content:""}.ion-md-archive:before{content:""}.ion-md-arrow-back:before{content:""}.ion-md-arrow-down:before{content:""}.ion-md-arrow-dropdown:before{content:""}.ion-md-arrow-dropdown-circle:before{content:""}.ion-md-arrow-dropleft:before{content:""}.ion-md-arrow-dropleft-circle:before{content:""}.ion-md-arrow-dropright:before{content:""}.ion-md-arrow-dropright-circle:before{content:""}.ion-md-arrow-dropup:before{content:""}.ion-md-arrow-dropup-circle:before{content:""}.ion-md-arrow-forward:before{content:""}.ion-md-arrow-round-back:before{content:""}.ion-md-arrow-round-down:before{content:""}.ion-md-arrow-round-forward:before{content:""}.ion-md-arrow-round-up:before{content:""}.ion-md-arrow-up:before{content:""}.ion-md-at:before{content:""}.ion-md-attach:before{content:""}.ion-md-backspace:before{content:""}.ion-md-barcode:before{content:""}.ion-md-baseball:before{content:""}.ion-md-basket:before{content:""}.ion-md-basketball:before{content:""}.ion-md-battery-charging:before{content:""}.ion-md-battery-dead:before{content:""}.ion-md-battery-full:before{content:""}.ion-md-beaker:before{content:""}.ion-md-bed:before{content:""}.ion-md-beer:before{content:""}.ion-md-bicycle:before{content:""}.ion-md-bluetooth:before{content:""}.ion-md-boat:before{content:""}.ion-md-body:before{content:""}.ion-md-bonfire:before{content:""}.ion-md-book:before{content:""}.ion-md-bookmark:before{content:""}.ion-md-bookmarks:before{content:""}.ion-md-bowtie:before{content:""}.ion-md-briefcase:before{content:""}.ion-md-browsers:before{content:""}.ion-md-brush:before{content:""}.ion-md-bug:before{content:""}.ion-md-build:before{content:""}.ion-md-bulb:before{content:""}.ion-md-bus:before{content:""}.ion-md-business:before{content:""}.ion-md-cafe:before{content:""}.ion-md-calculator:before{content:""}.ion-md-calendar:before{content:""}.ion-md-call:before{content:""}.ion-md-camera:before{content:""}.ion-md-car:before{content:""}.ion-md-card:before{content:""}.ion-md-cart:before{content:""}.ion-md-cash:before{content:""}.ion-md-cellular:before{content:""}.ion-md-chatboxes:before{content:""}.ion-md-chatbubbles:before{content:""}.ion-md-checkbox:before{content:""}.ion-md-checkbox-outline:before{content:""}.ion-md-checkmark:before{content:""}.ion-md-checkmark-circle:before{content:""}.ion-md-checkmark-circle-outline:before{content:""}.ion-md-clipboard:before{content:""}.ion-md-clock:before{content:""}.ion-md-close:before{content:""}.ion-md-close-circle:before{content:""}.ion-md-close-circle-outline:before{content:""}.ion-md-cloud:before{content:""}.ion-md-cloud-circle:before{content:""}.ion-md-cloud-done:before{content:""}.ion-md-cloud-download:before{content:""}.ion-md-cloud-outline:before{content:""}.ion-md-cloud-upload:before{content:""}.ion-md-cloudy:before{content:""}.ion-md-cloudy-night:before{content:""}.ion-md-code:before{content:""}.ion-md-code-download:before{content:""}.ion-md-code-working:before{content:""}.ion-md-cog:before{content:""}.ion-md-color-fill:before{content:""}.ion-md-color-filter:before{content:""}.ion-md-color-palette:before{content:""}.ion-md-color-wand:before{content:""}.ion-md-compass:before{content:""}.ion-md-construct:before{content:""}.ion-md-contact:before{content:""}.ion-md-contacts:before{content:""}.ion-md-contract:before{content:""}.ion-md-contrast:before{content:""}.ion-md-copy:before{content:""}.ion-md-create:before{content:""}.ion-md-crop:before{content:""}.ion-md-cube:before{content:""}.ion-md-cut:before{content:""}.ion-md-desktop:before{content:""}.ion-md-disc:before{content:""}.ion-md-document:before{content:""}.ion-md-done-all:before{content:""}.ion-md-download:before{content:""}.ion-md-easel:before{content:""}.ion-md-egg:before{content:""}.ion-md-exit:before{content:""}.ion-md-expand:before{content:""}.ion-md-eye:before{content:""}.ion-md-eye-off:before{content:""}.ion-md-fastforward:before{content:""}.ion-md-female:before{content:""}.ion-md-filing:before{content:""}.ion-md-film:before{content:""}.ion-md-finger-print:before{content:""}.ion-md-fitness:before{content:""}.ion-md-flag:before{content:""}.ion-md-flame:before{content:""}.ion-md-flash:before{content:""}.ion-md-flash-off:before{content:""}.ion-md-flashlight:before{content:""}.ion-md-flask:before{content:""}.ion-md-flower:before{content:""}.ion-md-folder:before{content:""}.ion-md-folder-open:before{content:""}.ion-md-football:before{content:""}.ion-md-funnel:before{content:""}.ion-md-gift:before{content:""}.ion-md-git-branch:before{content:""}.ion-md-git-commit:before{content:""}.ion-md-git-compare:before{content:""}.ion-md-git-merge:before{content:""}.ion-md-git-network:before{content:""}.ion-md-git-pull-request:before{content:""}.ion-md-glasses:before{content:""}.ion-md-globe:before{content:""}.ion-md-grid:before{content:""}.ion-md-hammer:before{content:""}.ion-md-hand:before{content:""}.ion-md-happy:before{content:""}.ion-md-headset:before{content:""}.ion-md-heart:before{content:""}.ion-md-heart-dislike:before{content:""}.ion-md-heart-empty:before{content:""}.ion-md-heart-half:before{content:""}.ion-md-help:before{content:""}.ion-md-help-buoy:before{content:""}.ion-md-help-circle:before{content:""}.ion-md-help-circle-outline:before{content:""}.ion-md-home:before{content:""}.ion-md-hourglass:before{content:""}.ion-md-ice-cream:before{content:""}.ion-md-image:before{content:""}.ion-md-images:before{content:""}.ion-md-infinite:before{content:""}.ion-md-information:before{content:""}.ion-md-information-circle:before{content:""}.ion-md-information-circle-outline:before{content:""}.ion-md-jet:before{content:""}.ion-md-journal:before{content:""}.ion-md-key:before{content:""}.ion-md-keypad:before{content:""}.ion-md-laptop:before{content:""}.ion-md-leaf:before{content:""}.ion-md-link:before{content:""}.ion-md-list:before{content:""}.ion-md-list-box:before{content:""}.ion-md-locate:before{content:""}.ion-md-lock:before{content:""}.ion-md-log-in:before{content:""}.ion-md-log-out:before{content:""}.ion-md-magnet:before{content:""}.ion-md-mail:before{content:""}.ion-md-mail-open:before{content:""}.ion-md-mail-unread:before{content:""}.ion-md-male:before{content:""}.ion-md-man:before{content:""}.ion-md-map:before{content:""}.ion-md-medal:before{content:""}.ion-md-medical:before{content:""}.ion-md-medkit:before{content:""}.ion-md-megaphone:before{content:""}.ion-md-menu:before{content:""}.ion-md-mic:before{content:""}.ion-md-mic-off:before{content:""}.ion-md-microphone:before{content:""}.ion-md-moon:before{content:""}.ion-md-more:before{content:""}.ion-md-move:before{content:""}.ion-md-musical-note:before{content:""}.ion-md-musical-notes:before{content:""}.ion-md-navigate:before{content:""}.ion-md-notifications:before{content:""}.ion-md-notifications-off:before{content:""}.ion-md-notifications-outline:before{content:""}.ion-md-nuclear:before{content:""}.ion-md-nutrition:before{content:""}.ion-md-open:before{content:""}.ion-md-options:before{content:""}.ion-md-outlet:before{content:""}.ion-md-paper:before{content:""}.ion-md-paper-plane:before{content:""}.ion-md-partly-sunny:before{content:""}.ion-md-pause:before{content:""}.ion-md-paw:before{content:""}.ion-md-people:before{content:""}.ion-md-person:before{content:""}.ion-md-person-add:before{content:""}.ion-md-phone-landscape:before{content:""}.ion-md-phone-portrait:before{content:""}.ion-md-photos:before{content:""}.ion-md-pie:before{content:""}.ion-md-pin:before{content:""}.ion-md-pint:before{content:""}.ion-md-pizza:before{content:""}.ion-md-planet:before{content:""}.ion-md-play:before{content:""}.ion-md-play-circle:before{content:""}.ion-md-podium:before{content:""}.ion-md-power:before{content:""}.ion-md-pricetag:before{content:""}.ion-md-pricetags:before{content:""}.ion-md-print:before{content:""}.ion-md-pulse:before{content:""}.ion-md-qr-scanner:before{content:""}.ion-md-quote:before{content:""}.ion-md-radio:before{content:""}.ion-md-radio-button-off:before{content:""}.ion-md-radio-button-on:before{content:""}.ion-md-rainy:before{content:""}.ion-md-recording:before{content:""}.ion-md-redo:before{content:""}.ion-md-refresh:before{content:""}.ion-md-refresh-circle:before{content:""}.ion-md-remove:before{content:""}.ion-md-remove-circle:before{content:""}.ion-md-remove-circle-outline:before{content:""}.ion-md-reorder:before{content:""}.ion-md-repeat:before{content:""}.ion-md-resize:before{content:""}.ion-md-restaurant:before{content:""}.ion-md-return-left:before{content:""}.ion-md-return-right:before{content:""}.ion-md-reverse-camera:before{content:""}.ion-md-rewind:before{content:""}.ion-md-ribbon:before{content:""}.ion-md-rocket:before{content:""}.ion-md-rose:before{content:""}.ion-md-sad:before{content:""}.ion-md-save:before{content:""}.ion-md-school:before{content:""}.ion-md-search:before{content:""}.ion-md-send:before{content:""}.ion-md-settings:before{content:""}.ion-md-share:before{content:""}.ion-md-share-alt:before{content:""}.ion-md-shirt:before{content:""}.ion-md-shuffle:before{content:""}.ion-md-skip-backward:before{content:""}.ion-md-skip-forward:before{content:""}.ion-md-snow:before{content:""}.ion-md-speedometer:before{content:""}.ion-md-square:before{content:""}.ion-md-square-outline:before{content:""}.ion-md-star:before{content:""}.ion-md-star-half:before{content:""}.ion-md-star-outline:before{content:""}.ion-md-stats:before{content:""}.ion-md-stopwatch:before{content:""}.ion-md-subway:before{content:""}.ion-md-sunny:before{content:""}.ion-md-swap:before{content:""}.ion-md-switch:before{content:""}.ion-md-sync:before{content:""}.ion-md-tablet-landscape:before{content:""}.ion-md-tablet-portrait:before{content:""}.ion-md-tennisball:before{content:""}.ion-md-text:before{content:""}.ion-md-thermometer:before{content:""}.ion-md-thumbs-down:before{content:""}.ion-md-thumbs-up:before{content:""}.ion-md-thunderstorm:before{content:""}.ion-md-time:before{content:""}.ion-md-timer:before{content:""}.ion-md-today:before{content:""}.ion-md-train:before{content:""}.ion-md-transgender:before{content:""}.ion-md-trash:before{content:""}.ion-md-trending-down:before{content:""}.ion-md-trending-up:before{content:""}.ion-md-trophy:before{content:""}.ion-md-tv:before{content:""}.ion-md-umbrella:before{content:""}.ion-md-undo:before{content:""}.ion-md-unlock:before{content:""}.ion-md-videocam:before{content:""}.ion-md-volume-high:before{content:""}.ion-md-volume-low:before{content:""}.ion-md-volume-mute:before{content:""}.ion-md-volume-off:before{content:""}.ion-md-walk:before{content:""}.ion-md-wallet:before{content:""}.ion-md-warning:before{content:""}.ion-md-watch:before{content:""}.ion-md-water:before{content:""}.ion-md-wifi:before{content:""}.ion-md-wine:before{content:""}.ion-md-woman:before{content:""} .toggle-checkbox { position: absolute; opacity: 0; @@ -3591,8 +80,3713 @@ transform: translate(1.85em, 0.15em) rotate(-15deg); } /*! bulma.io v0.9.4 | MIT License | github.com/jgthms/bulma */ -.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis,.file-cta,.file-name,.select select,.textarea,.input,.button{-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.5em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(.5em - 1px);padding-left:calc(.75em - 1px);padding-right:calc(.75em - 1px);padding-top:calc(.5em - 1px);position:relative;vertical-align:top}.pagination-previous:focus,.pagination-next:focus,.pagination-link:focus,.pagination-ellipsis:focus,.file-cta:focus,.file-name:focus,.select select:focus,.textarea:focus,.input:focus,.button:focus,.is-focused.pagination-previous,.is-focused.pagination-next,.is-focused.pagination-link,.is-focused.pagination-ellipsis,.is-focused.file-cta,.is-focused.file-name,.select select.is-focused,.is-focused.textarea,.is-focused.input,.is-focused.button,.pagination-previous:active,.pagination-next:active,.pagination-link:active,.pagination-ellipsis:active,.file-cta:active,.file-name:active,.select select:active,.textarea:active,.input:active,.button:active,.is-active.pagination-previous,.is-active.pagination-next,.is-active.pagination-link,.is-active.pagination-ellipsis,.is-active.file-cta,.is-active.file-name,.select select.is-active,.is-active.textarea,.is-active.input,.is-active.button{outline:0}[disabled].pagination-previous,[disabled].pagination-next,[disabled].pagination-link,[disabled].pagination-ellipsis,[disabled].file-cta,[disabled].file-name,.select select[disabled],[disabled].textarea,[disabled].input,[disabled].button,fieldset[disabled] .pagination-previous,fieldset[disabled] .pagination-next,fieldset[disabled] .pagination-link,fieldset[disabled] .pagination-ellipsis,fieldset[disabled] .file-cta,fieldset[disabled] .file-name,fieldset[disabled] .select select,.select fieldset[disabled] select,fieldset[disabled] .textarea,fieldset[disabled] .input,fieldset[disabled] .button{cursor:not-allowed}.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis,.file,.button{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.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%;transform:rotate(-45deg);transform-origin:center;width:.625em}.pagination:not(:last-child),.message:not(:last-child),.progress:not(:last-child),.notification:not(:last-child),.content:not(:last-child){margin-bottom:1.5rem}.delete{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-moz-appearance:none;-webkit-appearance:none;background-color:rgba(10,10,10,.2);border:0;border-radius:9999px;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::before,.delete::after{background-color:hsl(0deg,0%,100%);content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}.delete::before{height:2px;width:50%}.delete::after{height:50%;width:2px}.delete:hover,.delete:focus{background-color:rgba(10,10,10,.3)}.delete:active{background-color:rgba(10,10,10,.4)}.is-small.delete{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}.is-medium.delete{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}.is-large.delete{height:32px;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}.control.is-loading::after,.select.is-loading::after,.loader,.button.is-loading::after{animation:spinAround 500ms infinite linear;border:2px solid hsl(0deg,0%,86%);border-radius:9999px;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1em;position:relative;width:1em}.image.is-square img,.image.is-square .has-ratio,.image.is-1by1 img,.image.is-1by1 .has-ratio,.image.is-5by4 img,.image.is-5by4 .has-ratio,.image.is-4by3 img,.image.is-4by3 .has-ratio,.image.is-3by2 img,.image.is-3by2 .has-ratio,.image.is-5by3 img,.image.is-5by3 .has-ratio,.image.is-16by9 img,.image.is-16by9 .has-ratio,.image.is-2by1 img,.image.is-2by1 .has-ratio,.image.is-3by1 img,.image.is-3by1 .has-ratio,.image.is-4by5 img,.image.is-4by5 .has-ratio,.image.is-3by4 img,.image.is-3by4 .has-ratio,.image.is-2by3 img,.image.is-2by3 .has-ratio,.image.is-3by5 img,.image.is-3by5 .has-ratio,.image.is-9by16 img,.image.is-9by16 .has-ratio,.image.is-1by2 img,.image.is-1by2 .has-ratio,.image.is-1by3 img,.image.is-1by3 .has-ratio{bottom:0;left:0;position:absolute;right:0;top:0}html{background-color:hsl(0deg,0%,100%);font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:hidden;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}article,aside,figure,footer,header,hgroup,section{display:block}body,button,input,optgroup,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:hsl(0deg,0%,29%);font-size:1em;font-weight:400;line-height:1.5}a{color:hsl(229deg,53%,53%);cursor:pointer;text-decoration:none}a strong{color:currentColor}a:hover{color:hsl(0deg,0%,21%)}code{background-color:hsl(0deg,0%,96%);color:#da1039;font-size:.875em;font-weight:normal;padding:.25em .5em .25em}hr{background-color:hsl(0deg,0%,96%);border:0;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:hsl(0deg,0%,21%);font-weight:700}fieldset{border:0}pre{-webkit-overflow-scrolling:touch;background-color:hsl(0deg,0%,96%);color:hsl(0deg,0%,29%);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{vertical-align:top}table td:not([align]),table th:not([align]){text-align:inherit}table th{color:hsl(0deg,0%,21%)}@keyframes spinAround{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}.button{background-color:hsl(0deg,0%,100%);border-color:hsl(0deg,0%,86%);border-width:1px;color:hsl(0deg,0%,21%);cursor:pointer;justify-content:center;padding-bottom:calc(.5em - 1px);padding-left:1em;padding-right:1em;padding-top:calc(.5em - 1px);text-align:center;white-space:nowrap}.button strong{color:inherit}.button .icon,.button .icon.is-small,.button .icon.is-medium,.button .icon.is-large{height:1.5em;width:1.5em}.button .icon:first-child:not(:last-child){margin-left:calc(-.5em - 1px);margin-right:.25em}.button .icon:last-child:not(:first-child){margin-left:.25em;margin-right:calc(-.5em - 1px)}.button .icon:first-child:last-child{margin-left:calc(-.5em - 1px);margin-right:calc(-.5em - 1px)}.button:hover,.button.is-hovered{border-color:hsl(0deg,0%,71%);color:hsl(0deg,0%,21%)}.button:focus,.button.is-focused{border-color:hsl(229deg,53%,53%);color:hsl(0deg,0%,21%)}.button:focus:not(:active),.button.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(72,95,199,.25)}.button:active,.button.is-active{border-color:hsl(0deg,0%,29%);color:hsl(0deg,0%,21%)}.button.is-text{background-color:transparent;border-color:transparent;color:hsl(0deg,0%,29%);text-decoration:underline}.button.is-text:hover,.button.is-text.is-hovered,.button.is-text:focus,.button.is-text.is-focused{background-color:hsl(0deg,0%,96%);color:hsl(0deg,0%,21%)}.button.is-text:active,.button.is-text.is-active{background-color:#e8e8e8;color:hsl(0deg,0%,21%)}.button.is-text[disabled],fieldset[disabled] .button.is-text{background-color:transparent;border-color:transparent;box-shadow:none}.button.is-ghost{background:none;border-color:transparent;color:hsl(229deg,53%,53%);text-decoration:none}.button.is-ghost:hover,.button.is-ghost.is-hovered{color:hsl(229deg,53%,53%);text-decoration:underline}.button.is-white{background-color:hsl(0deg,0%,100%);border-color:transparent;color:hsl(0deg,0%,4%)}.button.is-white:hover,.button.is-white.is-hovered{background-color:#f9f9f9;border-color:transparent;color:hsl(0deg,0%,4%)}.button.is-white:focus,.button.is-white.is-focused{border-color:transparent;color:hsl(0deg,0%,4%)}.button.is-white:focus:not(:active),.button.is-white.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(255,255,255,.25)}.button.is-white:active,.button.is-white.is-active{background-color:#f2f2f2;border-color:transparent;color:hsl(0deg,0%,4%)}.button.is-white[disabled],fieldset[disabled] .button.is-white{background-color:hsl(0deg,0%,100%);border-color:hsl(0deg,0%,100%);box-shadow:none}.button.is-white.is-inverted{background-color:hsl(0deg,0%,4%);color:hsl(0deg,0%,100%)}.button.is-white.is-inverted:hover,.button.is-white.is-inverted.is-hovered{background-color:#000}.button.is-white.is-inverted[disabled],fieldset[disabled] .button.is-white.is-inverted{background-color:hsl(0deg,0%,4%);border-color:transparent;box-shadow:none;color:hsl(0deg,0%,100%)}.button.is-white.is-loading::after{border-color:transparent transparent hsl(0deg,0%,4%) hsl(0deg,0%,4%)!important}.button.is-white.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,100%);color:hsl(0deg,0%,100%)}.button.is-white.is-outlined:hover,.button.is-white.is-outlined.is-hovered,.button.is-white.is-outlined:focus,.button.is-white.is-outlined.is-focused{background-color:hsl(0deg,0%,100%);border-color:hsl(0deg,0%,100%);color:hsl(0deg,0%,4%)}.button.is-white.is-outlined.is-loading::after{border-color:transparent transparent hsl(0deg,0%,100%) hsl(0deg,0%,100%)!important}.button.is-white.is-outlined.is-loading:hover::after,.button.is-white.is-outlined.is-loading.is-hovered::after,.button.is-white.is-outlined.is-loading:focus::after,.button.is-white.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(0deg,0%,4%) hsl(0deg,0%,4%)!important}.button.is-white.is-outlined[disabled],fieldset[disabled] .button.is-white.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,100%);box-shadow:none;color:hsl(0deg,0%,100%)}.button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,4%);color:hsl(0deg,0%,4%)}.button.is-white.is-inverted.is-outlined:hover,.button.is-white.is-inverted.is-outlined.is-hovered,.button.is-white.is-inverted.is-outlined:focus,.button.is-white.is-inverted.is-outlined.is-focused{background-color:hsl(0deg,0%,4%);color:hsl(0deg,0%,100%)}.button.is-white.is-inverted.is-outlined.is-loading:hover::after,.button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-white.is-inverted.is-outlined.is-loading:focus::after,.button.is-white.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(0deg,0%,100%) hsl(0deg,0%,100%)!important}.button.is-white.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,4%);box-shadow:none;color:hsl(0deg,0%,4%)}.button.is-black{background-color:hsl(0deg,0%,4%);border-color:transparent;color:hsl(0deg,0%,100%)}.button.is-black:hover,.button.is-black.is-hovered{background-color:#040404;border-color:transparent;color:hsl(0deg,0%,100%)}.button.is-black:focus,.button.is-black.is-focused{border-color:transparent;color:hsl(0deg,0%,100%)}.button.is-black:focus:not(:active),.button.is-black.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.button.is-black:active,.button.is-black.is-active{background-color:#000;border-color:transparent;color:hsl(0deg,0%,100%)}.button.is-black[disabled],fieldset[disabled] .button.is-black{background-color:hsl(0deg,0%,4%);border-color:hsl(0deg,0%,4%);box-shadow:none}.button.is-black.is-inverted{background-color:hsl(0deg,0%,100%);color:hsl(0deg,0%,4%)}.button.is-black.is-inverted:hover,.button.is-black.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-black.is-inverted[disabled],fieldset[disabled] .button.is-black.is-inverted{background-color:hsl(0deg,0%,100%);border-color:transparent;box-shadow:none;color:hsl(0deg,0%,4%)}.button.is-black.is-loading::after{border-color:transparent transparent hsl(0deg,0%,100%) hsl(0deg,0%,100%)!important}.button.is-black.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,4%);color:hsl(0deg,0%,4%)}.button.is-black.is-outlined:hover,.button.is-black.is-outlined.is-hovered,.button.is-black.is-outlined:focus,.button.is-black.is-outlined.is-focused{background-color:hsl(0deg,0%,4%);border-color:hsl(0deg,0%,4%);color:hsl(0deg,0%,100%)}.button.is-black.is-outlined.is-loading::after{border-color:transparent transparent hsl(0deg,0%,4%) hsl(0deg,0%,4%)!important}.button.is-black.is-outlined.is-loading:hover::after,.button.is-black.is-outlined.is-loading.is-hovered::after,.button.is-black.is-outlined.is-loading:focus::after,.button.is-black.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(0deg,0%,100%) hsl(0deg,0%,100%)!important}.button.is-black.is-outlined[disabled],fieldset[disabled] .button.is-black.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,4%);box-shadow:none;color:hsl(0deg,0%,4%)}.button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,100%);color:hsl(0deg,0%,100%)}.button.is-black.is-inverted.is-outlined:hover,.button.is-black.is-inverted.is-outlined.is-hovered,.button.is-black.is-inverted.is-outlined:focus,.button.is-black.is-inverted.is-outlined.is-focused{background-color:hsl(0deg,0%,100%);color:hsl(0deg,0%,4%)}.button.is-black.is-inverted.is-outlined.is-loading:hover::after,.button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-black.is-inverted.is-outlined.is-loading:focus::after,.button.is-black.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(0deg,0%,4%) hsl(0deg,0%,4%)!important}.button.is-black.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,100%);box-shadow:none;color:hsl(0deg,0%,100%)}.button.is-light{background-color:hsl(0deg,0%,96%);border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light:hover,.button.is-light.is-hovered{background-color:#eee;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light:focus,.button.is-light.is-focused{border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light:focus:not(:active),.button.is-light.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(245,245,245,.25)}.button.is-light:active,.button.is-light.is-active{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light[disabled],fieldset[disabled] .button.is-light{background-color:hsl(0deg,0%,96%);border-color:hsl(0deg,0%,96%);box-shadow:none}.button.is-light.is-inverted{background-color:rgba(0,0,0,.7);color:hsl(0deg,0%,96%)}.button.is-light.is-inverted:hover,.button.is-light.is-inverted.is-hovered{background-color:rgba(0,0,0,.7)}.button.is-light.is-inverted[disabled],fieldset[disabled] .button.is-light.is-inverted{background-color:rgba(0,0,0,.7);border-color:transparent;box-shadow:none;color:hsl(0deg,0%,96%)}.button.is-light.is-loading::after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-light.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,96%);color:hsl(0deg,0%,96%)}.button.is-light.is-outlined:hover,.button.is-light.is-outlined.is-hovered,.button.is-light.is-outlined:focus,.button.is-light.is-outlined.is-focused{background-color:hsl(0deg,0%,96%);border-color:hsl(0deg,0%,96%);color:rgba(0,0,0,.7)}.button.is-light.is-outlined.is-loading::after{border-color:transparent transparent hsl(0deg,0%,96%) hsl(0deg,0%,96%)!important}.button.is-light.is-outlined.is-loading:hover::after,.button.is-light.is-outlined.is-loading.is-hovered::after,.button.is-light.is-outlined.is-loading:focus::after,.button.is-light.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-light.is-outlined[disabled],fieldset[disabled] .button.is-light.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,96%);box-shadow:none;color:hsl(0deg,0%,96%)}.button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);color:rgba(0,0,0,.7)}.button.is-light.is-inverted.is-outlined:hover,.button.is-light.is-inverted.is-outlined.is-hovered,.button.is-light.is-inverted.is-outlined:focus,.button.is-light.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,.7);color:hsl(0deg,0%,96%)}.button.is-light.is-inverted.is-outlined.is-loading:hover::after,.button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-light.is-inverted.is-outlined.is-loading:focus::after,.button.is-light.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(0deg,0%,96%) hsl(0deg,0%,96%)!important}.button.is-light.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);box-shadow:none;color:rgba(0,0,0,.7)}.button.is-dark{background-color:hsl(0deg,0%,21%);border-color:transparent;color:#fff}.button.is-dark:hover,.button.is-dark.is-hovered{background-color:#2f2f2f;border-color:transparent;color:#fff}.button.is-dark:focus,.button.is-dark.is-focused{border-color:transparent;color:#fff}.button.is-dark:focus:not(:active),.button.is-dark.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.button.is-dark:active,.button.is-dark.is-active{background-color:#292929;border-color:transparent;color:#fff}.button.is-dark[disabled],fieldset[disabled] .button.is-dark{background-color:hsl(0deg,0%,21%);border-color:hsl(0deg,0%,21%);box-shadow:none}.button.is-dark.is-inverted{background-color:#fff;color:hsl(0deg,0%,21%)}.button.is-dark.is-inverted:hover,.button.is-dark.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-dark.is-inverted[disabled],fieldset[disabled] .button.is-dark.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:hsl(0deg,0%,21%)}.button.is-dark.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-dark.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,21%);color:hsl(0deg,0%,21%)}.button.is-dark.is-outlined:hover,.button.is-dark.is-outlined.is-hovered,.button.is-dark.is-outlined:focus,.button.is-dark.is-outlined.is-focused{background-color:hsl(0deg,0%,21%);border-color:hsl(0deg,0%,21%);color:#fff}.button.is-dark.is-outlined.is-loading::after{border-color:transparent transparent hsl(0deg,0%,21%) hsl(0deg,0%,21%)!important}.button.is-dark.is-outlined.is-loading:hover::after,.button.is-dark.is-outlined.is-loading.is-hovered::after,.button.is-dark.is-outlined.is-loading:focus::after,.button.is-dark.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff!important}.button.is-dark.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,21%);box-shadow:none;color:hsl(0deg,0%,21%)}.button.is-dark.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-dark.is-inverted.is-outlined:hover,.button.is-dark.is-inverted.is-outlined.is-hovered,.button.is-dark.is-inverted.is-outlined:focus,.button.is-dark.is-inverted.is-outlined.is-focused{background-color:#fff;color:hsl(0deg,0%,21%)}.button.is-dark.is-inverted.is-outlined.is-loading:hover::after,.button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-dark.is-inverted.is-outlined.is-loading:focus::after,.button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(0deg,0%,21%) hsl(0deg,0%,21%)!important}.button.is-dark.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary{background-color:hsl(171deg,100%,41%);border-color:transparent;color:#fff}.button.is-primary:hover,.button.is-primary.is-hovered{background-color:#00c4a7;border-color:transparent;color:#fff}.button.is-primary:focus,.button.is-primary.is-focused{border-color:transparent;color:#fff}.button.is-primary:focus:not(:active),.button.is-primary.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.button.is-primary:active,.button.is-primary.is-active{background-color:#00b89c;border-color:transparent;color:#fff}.button.is-primary[disabled],fieldset[disabled] .button.is-primary{background-color:hsl(171deg,100%,41%);border-color:hsl(171deg,100%,41%);box-shadow:none}.button.is-primary.is-inverted{background-color:#fff;color:hsl(171deg,100%,41%)}.button.is-primary.is-inverted:hover,.button.is-primary.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-primary.is-inverted[disabled],fieldset[disabled] .button.is-primary.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:hsl(171deg,100%,41%)}.button.is-primary.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-primary.is-outlined{background-color:transparent;border-color:hsl(171deg,100%,41%);color:hsl(171deg,100%,41%)}.button.is-primary.is-outlined:hover,.button.is-primary.is-outlined.is-hovered,.button.is-primary.is-outlined:focus,.button.is-primary.is-outlined.is-focused{background-color:hsl(171deg,100%,41%);border-color:hsl(171deg,100%,41%);color:#fff}.button.is-primary.is-outlined.is-loading::after{border-color:transparent transparent hsl(171deg,100%,41%) hsl(171deg,100%,41%)!important}.button.is-primary.is-outlined.is-loading:hover::after,.button.is-primary.is-outlined.is-loading.is-hovered::after,.button.is-primary.is-outlined.is-loading:focus::after,.button.is-primary.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff!important}.button.is-primary.is-outlined[disabled],fieldset[disabled] .button.is-primary.is-outlined{background-color:transparent;border-color:hsl(171deg,100%,41%);box-shadow:none;color:hsl(171deg,100%,41%)}.button.is-primary.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-primary.is-inverted.is-outlined:hover,.button.is-primary.is-inverted.is-outlined.is-hovered,.button.is-primary.is-inverted.is-outlined:focus,.button.is-primary.is-inverted.is-outlined.is-focused{background-color:#fff;color:hsl(171deg,100%,41%)}.button.is-primary.is-inverted.is-outlined.is-loading:hover::after,.button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-primary.is-inverted.is-outlined.is-loading:focus::after,.button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(171deg,100%,41%) hsl(171deg,100%,41%)!important}.button.is-primary.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-primary.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary.is-light{background-color:#ebfffc;color:#00947e}.button.is-primary.is-light:hover,.button.is-primary.is-light.is-hovered{background-color:#defffa;border-color:transparent;color:#00947e}.button.is-primary.is-light:active,.button.is-primary.is-light.is-active{background-color:#d1fff8;border-color:transparent;color:#00947e}.button.is-link{background-color:hsl(229deg,53%,53%);border-color:transparent;color:#fff}.button.is-link:hover,.button.is-link.is-hovered{background-color:#3e56c4;border-color:transparent;color:#fff}.button.is-link:focus,.button.is-link.is-focused{border-color:transparent;color:#fff}.button.is-link:focus:not(:active),.button.is-link.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(72,95,199,.25)}.button.is-link:active,.button.is-link.is-active{background-color:#3a51bb;border-color:transparent;color:#fff}.button.is-link[disabled],fieldset[disabled] .button.is-link{background-color:hsl(229deg,53%,53%);border-color:hsl(229deg,53%,53%);box-shadow:none}.button.is-link.is-inverted{background-color:#fff;color:hsl(229deg,53%,53%)}.button.is-link.is-inverted:hover,.button.is-link.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-link.is-inverted[disabled],fieldset[disabled] .button.is-link.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:hsl(229deg,53%,53%)}.button.is-link.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-link.is-outlined{background-color:transparent;border-color:hsl(229deg,53%,53%);color:hsl(229deg,53%,53%)}.button.is-link.is-outlined:hover,.button.is-link.is-outlined.is-hovered,.button.is-link.is-outlined:focus,.button.is-link.is-outlined.is-focused{background-color:hsl(229deg,53%,53%);border-color:hsl(229deg,53%,53%);color:#fff}.button.is-link.is-outlined.is-loading::after{border-color:transparent transparent hsl(229deg,53%,53%) hsl(229deg,53%,53%)!important}.button.is-link.is-outlined.is-loading:hover::after,.button.is-link.is-outlined.is-loading.is-hovered::after,.button.is-link.is-outlined.is-loading:focus::after,.button.is-link.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff!important}.button.is-link.is-outlined[disabled],fieldset[disabled] .button.is-link.is-outlined{background-color:transparent;border-color:hsl(229deg,53%,53%);box-shadow:none;color:hsl(229deg,53%,53%)}.button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-link.is-inverted.is-outlined:hover,.button.is-link.is-inverted.is-outlined.is-hovered,.button.is-link.is-inverted.is-outlined:focus,.button.is-link.is-inverted.is-outlined.is-focused{background-color:#fff;color:hsl(229deg,53%,53%)}.button.is-link.is-inverted.is-outlined.is-loading:hover::after,.button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-link.is-inverted.is-outlined.is-loading:focus::after,.button.is-link.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(229deg,53%,53%) hsl(229deg,53%,53%)!important}.button.is-link.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-link.is-light{background-color:#eff1fa;color:#3850b7}.button.is-link.is-light:hover,.button.is-link.is-light.is-hovered{background-color:#e6e9f7;border-color:transparent;color:#3850b7}.button.is-link.is-light:active,.button.is-link.is-light.is-active{background-color:#dce0f4;border-color:transparent;color:#3850b7}.button.is-info{background-color:hsl(207deg,61%,53%);border-color:transparent;color:#fff}.button.is-info:hover,.button.is-info.is-hovered{background-color:#3488ce;border-color:transparent;color:#fff}.button.is-info:focus,.button.is-info.is-focused{border-color:transparent;color:#fff}.button.is-info:focus:not(:active),.button.is-info.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(62,142,208,.25)}.button.is-info:active,.button.is-info.is-active{background-color:#3082c5;border-color:transparent;color:#fff}.button.is-info[disabled],fieldset[disabled] .button.is-info{background-color:hsl(207deg,61%,53%);border-color:hsl(207deg,61%,53%);box-shadow:none}.button.is-info.is-inverted{background-color:#fff;color:hsl(207deg,61%,53%)}.button.is-info.is-inverted:hover,.button.is-info.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-info.is-inverted[disabled],fieldset[disabled] .button.is-info.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:hsl(207deg,61%,53%)}.button.is-info.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-info.is-outlined{background-color:transparent;border-color:hsl(207deg,61%,53%);color:hsl(207deg,61%,53%)}.button.is-info.is-outlined:hover,.button.is-info.is-outlined.is-hovered,.button.is-info.is-outlined:focus,.button.is-info.is-outlined.is-focused{background-color:hsl(207deg,61%,53%);border-color:hsl(207deg,61%,53%);color:#fff}.button.is-info.is-outlined.is-loading::after{border-color:transparent transparent hsl(207deg,61%,53%) hsl(207deg,61%,53%)!important}.button.is-info.is-outlined.is-loading:hover::after,.button.is-info.is-outlined.is-loading.is-hovered::after,.button.is-info.is-outlined.is-loading:focus::after,.button.is-info.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff!important}.button.is-info.is-outlined[disabled],fieldset[disabled] .button.is-info.is-outlined{background-color:transparent;border-color:hsl(207deg,61%,53%);box-shadow:none;color:hsl(207deg,61%,53%)}.button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-info.is-inverted.is-outlined:hover,.button.is-info.is-inverted.is-outlined.is-hovered,.button.is-info.is-inverted.is-outlined:focus,.button.is-info.is-inverted.is-outlined.is-focused{background-color:#fff;color:hsl(207deg,61%,53%)}.button.is-info.is-inverted.is-outlined.is-loading:hover::after,.button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-info.is-inverted.is-outlined.is-loading:focus::after,.button.is-info.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(207deg,61%,53%) hsl(207deg,61%,53%)!important}.button.is-info.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-info.is-light{background-color:#eff5fb;color:#296fa8}.button.is-info.is-light:hover,.button.is-info.is-light.is-hovered{background-color:#e4eff9;border-color:transparent;color:#296fa8}.button.is-info.is-light:active,.button.is-info.is-light.is-active{background-color:#dae9f6;border-color:transparent;color:#296fa8}.button.is-success{background-color:hsl(153deg,53%,53%);border-color:transparent;color:#fff}.button.is-success:hover,.button.is-success.is-hovered{background-color:#3ec487;border-color:transparent;color:#fff}.button.is-success:focus,.button.is-success.is-focused{border-color:transparent;color:#fff}.button.is-success:focus:not(:active),.button.is-success.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(72,199,142,.25)}.button.is-success:active,.button.is-success.is-active{background-color:#3abb81;border-color:transparent;color:#fff}.button.is-success[disabled],fieldset[disabled] .button.is-success{background-color:hsl(153deg,53%,53%);border-color:hsl(153deg,53%,53%);box-shadow:none}.button.is-success.is-inverted{background-color:#fff;color:hsl(153deg,53%,53%)}.button.is-success.is-inverted:hover,.button.is-success.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-success.is-inverted[disabled],fieldset[disabled] .button.is-success.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:hsl(153deg,53%,53%)}.button.is-success.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-success.is-outlined{background-color:transparent;border-color:hsl(153deg,53%,53%);color:hsl(153deg,53%,53%)}.button.is-success.is-outlined:hover,.button.is-success.is-outlined.is-hovered,.button.is-success.is-outlined:focus,.button.is-success.is-outlined.is-focused{background-color:hsl(153deg,53%,53%);border-color:hsl(153deg,53%,53%);color:#fff}.button.is-success.is-outlined.is-loading::after{border-color:transparent transparent hsl(153deg,53%,53%) hsl(153deg,53%,53%)!important}.button.is-success.is-outlined.is-loading:hover::after,.button.is-success.is-outlined.is-loading.is-hovered::after,.button.is-success.is-outlined.is-loading:focus::after,.button.is-success.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff!important}.button.is-success.is-outlined[disabled],fieldset[disabled] .button.is-success.is-outlined{background-color:transparent;border-color:hsl(153deg,53%,53%);box-shadow:none;color:hsl(153deg,53%,53%)}.button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-success.is-inverted.is-outlined:hover,.button.is-success.is-inverted.is-outlined.is-hovered,.button.is-success.is-inverted.is-outlined:focus,.button.is-success.is-inverted.is-outlined.is-focused{background-color:#fff;color:hsl(153deg,53%,53%)}.button.is-success.is-inverted.is-outlined.is-loading:hover::after,.button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-success.is-inverted.is-outlined.is-loading:focus::after,.button.is-success.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(153deg,53%,53%) hsl(153deg,53%,53%)!important}.button.is-success.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-success.is-light{background-color:#effaf5;color:#257953}.button.is-success.is-light:hover,.button.is-success.is-light.is-hovered{background-color:#e6f7ef;border-color:transparent;color:#257953}.button.is-success.is-light:active,.button.is-success.is-light.is-active{background-color:#dcf4e9;border-color:transparent;color:#257953}.button.is-warning{background-color:hsl(44deg,100%,77%);border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning:hover,.button.is-warning.is-hovered{background-color:#ffdc7d;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning:focus,.button.is-warning.is-focused{border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning:focus:not(:active),.button.is-warning.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(255,224,138,.25)}.button.is-warning:active,.button.is-warning.is-active{background-color:#ffd970;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning[disabled],fieldset[disabled] .button.is-warning{background-color:hsl(44deg,100%,77%);border-color:hsl(44deg,100%,77%);box-shadow:none}.button.is-warning.is-inverted{background-color:rgba(0,0,0,.7);color:hsl(44deg,100%,77%)}.button.is-warning.is-inverted:hover,.button.is-warning.is-inverted.is-hovered{background-color:rgba(0,0,0,.7)}.button.is-warning.is-inverted[disabled],fieldset[disabled] .button.is-warning.is-inverted{background-color:rgba(0,0,0,.7);border-color:transparent;box-shadow:none;color:hsl(44deg,100%,77%)}.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:hsl(44deg,100%,77%);color:hsl(44deg,100%,77%)}.button.is-warning.is-outlined:hover,.button.is-warning.is-outlined.is-hovered,.button.is-warning.is-outlined:focus,.button.is-warning.is-outlined.is-focused{background-color:hsl(44deg,100%,77%);border-color:hsl(44deg,100%,77%);color:rgba(0,0,0,.7)}.button.is-warning.is-outlined.is-loading::after{border-color:transparent transparent hsl(44deg,100%,77%) hsl(44deg,100%,77%)!important}.button.is-warning.is-outlined.is-loading:hover::after,.button.is-warning.is-outlined.is-loading.is-hovered::after,.button.is-warning.is-outlined.is-loading:focus::after,.button.is-warning.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-warning.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-outlined{background-color:transparent;border-color:hsl(44deg,100%,77%);box-shadow:none;color:hsl(44deg,100%,77%)}.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:hover,.button.is-warning.is-inverted.is-outlined.is-hovered,.button.is-warning.is-inverted.is-outlined:focus,.button.is-warning.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,.7);color:hsl(44deg,100%,77%)}.button.is-warning.is-inverted.is-outlined.is-loading:hover::after,.button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-warning.is-inverted.is-outlined.is-loading:focus::after,.button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(44deg,100%,77%) hsl(44deg,100%,77%)!important}.button.is-warning.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);box-shadow:none;color:rgba(0,0,0,.7)}.button.is-warning.is-light{background-color:#fffaeb;color:#946c00}.button.is-warning.is-light:hover,.button.is-warning.is-light.is-hovered{background-color:#fff6de;border-color:transparent;color:#946c00}.button.is-warning.is-light:active,.button.is-warning.is-light.is-active{background-color:#fff3d1;border-color:transparent;color:#946c00}.button.is-danger{background-color:hsl(348deg,86%,61%);border-color:transparent;color:#fff}.button.is-danger:hover,.button.is-danger.is-hovered{background-color:#f03a5f;border-color:transparent;color:#fff}.button.is-danger:focus,.button.is-danger.is-focused{border-color:transparent;color:#fff}.button.is-danger:focus:not(:active),.button.is-danger.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(241,70,104,.25)}.button.is-danger:active,.button.is-danger.is-active{background-color:#ef2e55;border-color:transparent;color:#fff}.button.is-danger[disabled],fieldset[disabled] .button.is-danger{background-color:hsl(348deg,86%,61%);border-color:hsl(348deg,86%,61%);box-shadow:none}.button.is-danger.is-inverted{background-color:#fff;color:hsl(348deg,86%,61%)}.button.is-danger.is-inverted:hover,.button.is-danger.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-danger.is-inverted[disabled],fieldset[disabled] .button.is-danger.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:hsl(348deg,86%,61%)}.button.is-danger.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-danger.is-outlined{background-color:transparent;border-color:hsl(348deg,86%,61%);color:hsl(348deg,86%,61%)}.button.is-danger.is-outlined:hover,.button.is-danger.is-outlined.is-hovered,.button.is-danger.is-outlined:focus,.button.is-danger.is-outlined.is-focused{background-color:hsl(348deg,86%,61%);border-color:hsl(348deg,86%,61%);color:#fff}.button.is-danger.is-outlined.is-loading::after{border-color:transparent transparent hsl(348deg,86%,61%) hsl(348deg,86%,61%)!important}.button.is-danger.is-outlined.is-loading:hover::after,.button.is-danger.is-outlined.is-loading.is-hovered::after,.button.is-danger.is-outlined.is-loading:focus::after,.button.is-danger.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff!important}.button.is-danger.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-outlined{background-color:transparent;border-color:hsl(348deg,86%,61%);box-shadow:none;color:hsl(348deg,86%,61%)}.button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-danger.is-inverted.is-outlined:hover,.button.is-danger.is-inverted.is-outlined.is-hovered,.button.is-danger.is-inverted.is-outlined:focus,.button.is-danger.is-inverted.is-outlined.is-focused{background-color:#fff;color:hsl(348deg,86%,61%)}.button.is-danger.is-inverted.is-outlined.is-loading:hover::after,.button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-danger.is-inverted.is-outlined.is-loading:focus::after,.button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(348deg,86%,61%) hsl(348deg,86%,61%)!important}.button.is-danger.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-danger.is-light{background-color:#feecf0;color:#cc0f35}.button.is-danger.is-light:hover,.button.is-danger.is-light.is-hovered{background-color:#fde0e6;border-color:transparent;color:#cc0f35}.button.is-danger.is-light:active,.button.is-danger.is-light.is-active{background-color:#fcd4dc;border-color:transparent;color:#cc0f35}.button.is-small{font-size:.75rem}.button.is-small:not(.is-rounded){border-radius:2px}.button.is-normal{font-size:1rem}.button.is-medium{font-size:1.25rem}.button.is-large{font-size:1.5rem}.button[disabled],fieldset[disabled] .button{background-color:hsl(0deg,0%,100%);border-color:hsl(0deg,0%,86%);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*.5));top:calc(50% - (1em*.5));position:absolute!important}.button.is-static{background-color:hsl(0deg,0%,96%);border-color:hsl(0deg,0%,86%);color:hsl(0deg,0%,48%);box-shadow:none;pointer-events:none}.button.is-rounded{border-radius:9999px;padding-left:calc(1em + .25em);padding-right:calc(1em + .25em)}.buttons{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.buttons .button{margin-bottom:.5rem}.buttons .button:not(:last-child):not(.is-fullwidth){margin-right:.5rem}.buttons:last-child{margin-bottom:-.5rem}.buttons:not(:last-child){margin-bottom:1rem}.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large){font-size:.75rem}.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large):not(.is-rounded){border-radius:2px}.buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large){font-size:1.25rem}.buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium){font-size:1.5rem}.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:hover,.buttons.has-addons .button.is-hovered{z-index:2}.buttons.has-addons .button:focus,.buttons.has-addons .button.is-focused,.buttons.has-addons .button:active,.buttons.has-addons .button.is-active,.buttons.has-addons .button.is-selected{z-index:3}.buttons.has-addons .button:focus:hover,.buttons.has-addons .button.is-focused:hover,.buttons.has-addons .button:active:hover,.buttons.has-addons .button.is-active:hover,.buttons.has-addons .button.is-selected:hover{z-index:4}.buttons.has-addons .button.is-expanded{flex-grow:1;flex-shrink:1}.buttons.is-centered{justify-content:center}.buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth){margin-left:.25rem;margin-right:.25rem}.buttons.is-right{justify-content:flex-end}.buttons.is-right:not(.has-addons) .button:not(.is-fullwidth){margin-left:.25rem;margin-right:.25rem}@media screen and (max-width:768px){.button.is-responsive.is-small{font-size:.5625rem}.button.is-responsive,.button.is-responsive.is-normal{font-size:.65625rem}.button.is-responsive.is-medium{font-size:.75rem}.button.is-responsive.is-large{font-size:1rem}}@media screen and (min-width:769px) and (max-width:1023px){.button.is-responsive.is-small{font-size:.65625rem}.button.is-responsive,.button.is-responsive.is-normal{font-size:.75rem}.button.is-responsive.is-medium{font-size:1rem}.button.is-responsive.is-large{font-size:1.25rem}}.content li+li{margin-top:.25em}.content p:not(:last-child),.content dl:not(:last-child),.content ol:not(:last-child),.content ul:not(:last-child),.content blockquote:not(:last-child),.content pre:not(:last-child),.content table:not(:last-child){margin-bottom:1em}.content h1,.content h2,.content h3,.content h4,.content h5,.content h6{color:hsl(0deg,0%,21%);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:hsl(0deg,0%,96%);border-left:5px solid hsl(0deg,0%,86%);padding:1.25em 1.5em}.content ol{list-style-position:outside;margin-left:2em;margin-top:1em}.content ol:not([type]){list-style-type:decimal}.content ol:not([type]).is-lower-alpha{list-style-type:lower-alpha}.content ol:not([type]).is-lower-roman{list-style-type:lower-roman}.content ol:not([type]).is-upper-alpha{list-style-type:upper-alpha}.content ol:not([type]).is-upper-roman{list-style-type:upper-roman}.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 sup,.content sub{font-size:75%}.content table{width:100%}.content table td,.content table th{border:1px solid hsl(0deg,0%,86%);border-width:0 0 1px;padding:.5em .75em;vertical-align:top}.content table th{color:hsl(0deg,0%,21%)}.content table th:not([align]){text-align:inherit}.content table thead td,.content table thead th{border-width:0 0 2px;color:hsl(0deg,0%,21%)}.content table tfoot td,.content table tfoot th{border-width:2px 0 0;color:hsl(0deg,0%,21%)}.content table tbody tr:last-child td,.content table tbody tr:last-child th{border-bottom-width:0}.content .tabs li+li{margin-top:0}.content.is-small{font-size:.75rem}.content.is-normal{font-size:1rem}.content.is-medium{font-size:1.25rem}.content.is-large{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}.icon-text{align-items:flex-start;color:inherit;display:inline-flex;flex-wrap:wrap;line-height:1.5rem;vertical-align:top}.icon-text .icon{flex-grow:0;flex-shrink:0}.icon-text .icon:not(:last-child){margin-right:.25em}.icon-text .icon:not(:first-child){margin-left:.25em}div.icon-text{display:flex}.image{display:block;position:relative}.image img{display:block;height:auto;width:100%}.image img.is-rounded{border-radius:9999px}.image.is-fullwidth{width:100%}.image.is-square img,.image.is-square .has-ratio,.image.is-1by1 img,.image.is-1by1 .has-ratio,.image.is-5by4 img,.image.is-5by4 .has-ratio,.image.is-4by3 img,.image.is-4by3 .has-ratio,.image.is-3by2 img,.image.is-3by2 .has-ratio,.image.is-5by3 img,.image.is-5by3 .has-ratio,.image.is-16by9 img,.image.is-16by9 .has-ratio,.image.is-2by1 img,.image.is-2by1 .has-ratio,.image.is-3by1 img,.image.is-3by1 .has-ratio,.image.is-4by5 img,.image.is-4by5 .has-ratio,.image.is-3by4 img,.image.is-3by4 .has-ratio,.image.is-2by3 img,.image.is-2by3 .has-ratio,.image.is-3by5 img,.image.is-3by5 .has-ratio,.image.is-9by16 img,.image.is-9by16 .has-ratio,.image.is-1by2 img,.image.is-1by2 .has-ratio,.image.is-1by3 img,.image.is-1by3 .has-ratio{height:100%;width:100%}.image.is-square,.image.is-1by1{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:hsl(0deg,0%,96%);border-radius:4px;position:relative;padding:1.25rem 2.5rem 1.25rem 1.5rem}.notification a:not(.button):not(.dropdown-item){color:currentColor;text-decoration:underline}.notification strong{color:currentColor}.notification code,.notification pre{background:hsl(0deg,0%,100%)}.notification pre code{background:transparent}.notification>.delete{right:.5rem;position:absolute;top:.5rem}.notification .title,.notification .subtitle,.notification .content{color:currentColor}.notification.is-white{background-color:hsl(0deg,0%,100%);color:hsl(0deg,0%,4%)}.notification.is-black{background-color:hsl(0deg,0%,4%);color:hsl(0deg,0%,100%)}.notification.is-light{background-color:hsl(0deg,0%,96%);color:rgba(0,0,0,.7)}.notification.is-dark{background-color:hsl(0deg,0%,21%);color:#fff}.notification.is-primary{background-color:hsl(171deg,100%,41%);color:#fff}.notification.is-primary.is-light{background-color:#ebfffc;color:#00947e}.notification.is-link{background-color:hsl(229deg,53%,53%);color:#fff}.notification.is-link.is-light{background-color:#eff1fa;color:#3850b7}.notification.is-info{background-color:hsl(207deg,61%,53%);color:#fff}.notification.is-info.is-light{background-color:#eff5fb;color:#296fa8}.notification.is-success{background-color:hsl(153deg,53%,53%);color:#fff}.notification.is-success.is-light{background-color:#effaf5;color:#257953}.notification.is-warning{background-color:hsl(44deg,100%,77%);color:rgba(0,0,0,.7)}.notification.is-warning.is-light{background-color:#fffaeb;color:#946c00}.notification.is-danger{background-color:hsl(348deg,86%,61%);color:#fff}.notification.is-danger.is-light{background-color:#feecf0;color:#cc0f35}.progress{-moz-appearance:none;-webkit-appearance:none;border:0;border-radius:9999px;display:block;height:1rem;overflow:hidden;padding:0;width:100%}.progress::-webkit-progress-bar{background-color:hsl(0deg,0%,93%)}.progress::-webkit-progress-value{background-color:hsl(0deg,0%,29%)}.progress::-moz-progress-bar{background-color:hsl(0deg,0%,29%)}.progress::-ms-fill{background-color:hsl(0deg,0%,29%);border:0}.progress.is-white::-webkit-progress-value{background-color:hsl(0deg,0%,100%)}.progress.is-white::-moz-progress-bar{background-color:hsl(0deg,0%,100%)}.progress.is-white::-ms-fill{background-color:hsl(0deg,0%,100%)}.progress.is-white:indeterminate{background-image:linear-gradient(to right,hsl(0deg,0%,100%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-black::-webkit-progress-value{background-color:hsl(0deg,0%,4%)}.progress.is-black::-moz-progress-bar{background-color:hsl(0deg,0%,4%)}.progress.is-black::-ms-fill{background-color:hsl(0deg,0%,4%)}.progress.is-black:indeterminate{background-image:linear-gradient(to right,hsl(0deg,0%,4%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-light::-webkit-progress-value{background-color:hsl(0deg,0%,96%)}.progress.is-light::-moz-progress-bar{background-color:hsl(0deg,0%,96%)}.progress.is-light::-ms-fill{background-color:hsl(0deg,0%,96%)}.progress.is-light:indeterminate{background-image:linear-gradient(to right,hsl(0deg,0%,96%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-dark::-webkit-progress-value{background-color:hsl(0deg,0%,21%)}.progress.is-dark::-moz-progress-bar{background-color:hsl(0deg,0%,21%)}.progress.is-dark::-ms-fill{background-color:hsl(0deg,0%,21%)}.progress.is-dark:indeterminate{background-image:linear-gradient(to right,hsl(0deg,0%,21%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-primary::-webkit-progress-value{background-color:hsl(171deg,100%,41%)}.progress.is-primary::-moz-progress-bar{background-color:hsl(171deg,100%,41%)}.progress.is-primary::-ms-fill{background-color:hsl(171deg,100%,41%)}.progress.is-primary:indeterminate{background-image:linear-gradient(to right,hsl(171deg,100%,41%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-link::-webkit-progress-value{background-color:hsl(229deg,53%,53%)}.progress.is-link::-moz-progress-bar{background-color:hsl(229deg,53%,53%)}.progress.is-link::-ms-fill{background-color:hsl(229deg,53%,53%)}.progress.is-link:indeterminate{background-image:linear-gradient(to right,hsl(229deg,53%,53%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-info::-webkit-progress-value{background-color:hsl(207deg,61%,53%)}.progress.is-info::-moz-progress-bar{background-color:hsl(207deg,61%,53%)}.progress.is-info::-ms-fill{background-color:hsl(207deg,61%,53%)}.progress.is-info:indeterminate{background-image:linear-gradient(to right,hsl(207deg,61%,53%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-success::-webkit-progress-value{background-color:hsl(153deg,53%,53%)}.progress.is-success::-moz-progress-bar{background-color:hsl(153deg,53%,53%)}.progress.is-success::-ms-fill{background-color:hsl(153deg,53%,53%)}.progress.is-success:indeterminate{background-image:linear-gradient(to right,hsl(153deg,53%,53%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-warning::-webkit-progress-value{background-color:hsl(44deg,100%,77%)}.progress.is-warning::-moz-progress-bar{background-color:hsl(44deg,100%,77%)}.progress.is-warning::-ms-fill{background-color:hsl(44deg,100%,77%)}.progress.is-warning:indeterminate{background-image:linear-gradient(to right,hsl(44deg,100%,77%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-danger::-webkit-progress-value{background-color:hsl(348deg,86%,61%)}.progress.is-danger::-moz-progress-bar{background-color:hsl(348deg,86%,61%)}.progress.is-danger::-ms-fill{background-color:hsl(348deg,86%,61%)}.progress.is-danger:indeterminate{background-image:linear-gradient(to right,hsl(348deg,86%,61%) 30%,hsl(0deg,0%,93%) 30%)}.progress:indeterminate{animation-duration:1.5s;animation-iteration-count:infinite;animation-name:moveIndeterminate;animation-timing-function:linear;background-color:hsl(0deg,0%,93%);background-image:linear-gradient(to right,hsl(0deg,0%,29%) 30%,hsl(0deg,0%,93%) 30%);background-position:top left;background-repeat:no-repeat;background-size:150% 150%}.progress:indeterminate::-webkit-progress-bar{background-color:transparent}.progress:indeterminate::-moz-progress-bar{background-color:transparent}.progress:indeterminate::-ms-fill{animation-name:none}.progress.is-small{height:.75rem}.progress.is-medium{height:1.25rem}.progress.is-large{height:1.5rem}@keyframes moveIndeterminate{from{background-position:200% 0}to{background-position:-200% 0}}.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.are-medium .tag:not(.is-normal):not(.is-large){font-size:1rem}.tags.are-large .tag:not(.is-normal):not(.is-medium){font-size:1.25rem}.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}.tags.has-addons .tag{margin-right:0}.tags.has-addons .tag:not(:first-child){margin-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.tags.has-addons .tag:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.tag:not(body){align-items:center;background-color:hsl(0deg,0%,96%);border-radius:4px;color:hsl(0deg,0%,29%);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:hsl(0deg,0%,100%);color:hsl(0deg,0%,4%)}.tag:not(body).is-black{background-color:hsl(0deg,0%,4%);color:hsl(0deg,0%,100%)}.tag:not(body).is-light{background-color:hsl(0deg,0%,96%);color:rgba(0,0,0,.7)}.tag:not(body).is-dark{background-color:hsl(0deg,0%,21%);color:#fff}.tag:not(body).is-primary{background-color:hsl(171deg,100%,41%);color:#fff}.tag:not(body).is-primary.is-light{background-color:#ebfffc;color:#00947e}.tag:not(body).is-link{background-color:hsl(229deg,53%,53%);color:#fff}.tag:not(body).is-link.is-light{background-color:#eff1fa;color:#3850b7}.tag:not(body).is-info{background-color:hsl(207deg,61%,53%);color:#fff}.tag:not(body).is-info.is-light{background-color:#eff5fb;color:#296fa8}.tag:not(body).is-success{background-color:hsl(153deg,53%,53%);color:#fff}.tag:not(body).is-success.is-light{background-color:#effaf5;color:#257953}.tag:not(body).is-warning{background-color:hsl(44deg,100%,77%);color:rgba(0,0,0,.7)}.tag:not(body).is-warning.is-light{background-color:#fffaeb;color:#946c00}.tag:not(body).is-danger{background-color:hsl(348deg,86%,61%);color:#fff}.tag:not(body).is-danger.is-light{background-color:#feecf0;color:#cc0f35}.tag:not(body).is-normal{font-size:.75rem}.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::before,.tag:not(body).is-delete::after{background-color:currentColor;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);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:hover,.tag:not(body).is-delete:focus{background-color:#e8e8e8}.tag:not(body).is-delete:active{background-color:#dbdbdb}.tag:not(body).is-rounded{border-radius:9999px}a.tag:hover{text-decoration:underline}.heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}.number{align-items:center;background-color:hsl(0deg,0%,96%);border-radius:9999px;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}.select select,.textarea,.input{background-color:hsl(0deg,0%,100%);border-color:hsl(0deg,0%,86%);border-radius:4px;color:hsl(0deg,0%,21%)}.select select::-moz-placeholder,.textarea::-moz-placeholder,.input::-moz-placeholder{color:rgba(54,54,54,.3)}.select select::-webkit-input-placeholder,.textarea::-webkit-input-placeholder,.input::-webkit-input-placeholder{color:rgba(54,54,54,.3)}.select select:-moz-placeholder,.textarea:-moz-placeholder,.input:-moz-placeholder{color:rgba(54,54,54,.3)}.select select:-ms-input-placeholder,.textarea:-ms-input-placeholder,.input:-ms-input-placeholder{color:rgba(54,54,54,.3)}.select select:hover,.textarea:hover,.input:hover,.select select.is-hovered,.is-hovered.textarea,.is-hovered.input{border-color:hsl(0deg,0%,71%)}.select select:focus,.textarea:focus,.input:focus,.select select.is-focused,.is-focused.textarea,.is-focused.input,.select select:active,.textarea:active,.input:active,.select select.is-active,.is-active.textarea,.is-active.input{border-color:hsl(229deg,53%,53%);box-shadow:0 0 0 .125em rgba(72,95,199,.25)}.select select[disabled],[disabled].textarea,[disabled].input,fieldset[disabled] .select select,.select fieldset[disabled] select,fieldset[disabled] .textarea,fieldset[disabled] .input{background-color:hsl(0deg,0%,96%);border-color:hsl(0deg,0%,96%);box-shadow:none;color:hsl(0deg,0%,48%)}.select select[disabled]::-moz-placeholder,[disabled].textarea::-moz-placeholder,[disabled].input::-moz-placeholder,fieldset[disabled] .select select::-moz-placeholder,.select fieldset[disabled] select::-moz-placeholder,fieldset[disabled] .textarea::-moz-placeholder,fieldset[disabled] .input::-moz-placeholder{color:rgba(122,122,122,.3)}.select select[disabled]::-webkit-input-placeholder,[disabled].textarea::-webkit-input-placeholder,[disabled].input::-webkit-input-placeholder,fieldset[disabled] .select select::-webkit-input-placeholder,.select fieldset[disabled] select::-webkit-input-placeholder,fieldset[disabled] .textarea::-webkit-input-placeholder,fieldset[disabled] .input::-webkit-input-placeholder{color:rgba(122,122,122,.3)}.select select[disabled]:-moz-placeholder,[disabled].textarea:-moz-placeholder,[disabled].input:-moz-placeholder,fieldset[disabled] .select select:-moz-placeholder,.select fieldset[disabled] select:-moz-placeholder,fieldset[disabled] .textarea:-moz-placeholder,fieldset[disabled] .input:-moz-placeholder{color:rgba(122,122,122,.3)}.select select[disabled]:-ms-input-placeholder,[disabled].textarea:-ms-input-placeholder,[disabled].input:-ms-input-placeholder,fieldset[disabled] .select select:-ms-input-placeholder,.select fieldset[disabled] select:-ms-input-placeholder,fieldset[disabled] .textarea:-ms-input-placeholder,fieldset[disabled] .input:-ms-input-placeholder{color:rgba(122,122,122,.3)}.textarea,.input{box-shadow:inset 0 .0625em .125em rgba(10,10,10,.05);max-width:100%;width:100%}[readonly].textarea,[readonly].input{box-shadow:none}.is-white.textarea,.is-white.input{border-color:hsl(0deg,0%,100%)}.is-white.textarea:focus,.is-white.input:focus,.is-white.is-focused.textarea,.is-white.is-focused.input,.is-white.textarea:active,.is-white.input:active,.is-white.is-active.textarea,.is-white.is-active.input{box-shadow:0 0 0 .125em rgba(255,255,255,.25)}.is-black.textarea,.is-black.input{border-color:hsl(0deg,0%,4%)}.is-black.textarea:focus,.is-black.input:focus,.is-black.is-focused.textarea,.is-black.is-focused.input,.is-black.textarea:active,.is-black.input:active,.is-black.is-active.textarea,.is-black.is-active.input{box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.is-light.textarea,.is-light.input{border-color:hsl(0deg,0%,96%)}.is-light.textarea:focus,.is-light.input:focus,.is-light.is-focused.textarea,.is-light.is-focused.input,.is-light.textarea:active,.is-light.input:active,.is-light.is-active.textarea,.is-light.is-active.input{box-shadow:0 0 0 .125em rgba(245,245,245,.25)}.is-dark.textarea,.is-dark.input{border-color:hsl(0deg,0%,21%)}.is-dark.textarea:focus,.is-dark.input:focus,.is-dark.is-focused.textarea,.is-dark.is-focused.input,.is-dark.textarea:active,.is-dark.input:active,.is-dark.is-active.textarea,.is-dark.is-active.input{box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.is-primary.textarea,.is-primary.input{border-color:hsl(171deg,100%,41%)}.is-primary.textarea:focus,.is-primary.input:focus,.is-primary.is-focused.textarea,.is-primary.is-focused.input,.is-primary.textarea:active,.is-primary.input:active,.is-primary.is-active.textarea,.is-primary.is-active.input{box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.is-link.textarea,.is-link.input{border-color:hsl(229deg,53%,53%)}.is-link.textarea:focus,.is-link.input:focus,.is-link.is-focused.textarea,.is-link.is-focused.input,.is-link.textarea:active,.is-link.input:active,.is-link.is-active.textarea,.is-link.is-active.input{box-shadow:0 0 0 .125em rgba(72,95,199,.25)}.is-info.textarea,.is-info.input{border-color:hsl(207deg,61%,53%)}.is-info.textarea:focus,.is-info.input:focus,.is-info.is-focused.textarea,.is-info.is-focused.input,.is-info.textarea:active,.is-info.input:active,.is-info.is-active.textarea,.is-info.is-active.input{box-shadow:0 0 0 .125em rgba(62,142,208,.25)}.is-success.textarea,.is-success.input{border-color:hsl(153deg,53%,53%)}.is-success.textarea:focus,.is-success.input:focus,.is-success.is-focused.textarea,.is-success.is-focused.input,.is-success.textarea:active,.is-success.input:active,.is-success.is-active.textarea,.is-success.is-active.input{box-shadow:0 0 0 .125em rgba(72,199,142,.25)}.is-warning.textarea,.is-warning.input{border-color:hsl(44deg,100%,77%)}.is-warning.textarea:focus,.is-warning.input:focus,.is-warning.is-focused.textarea,.is-warning.is-focused.input,.is-warning.textarea:active,.is-warning.input:active,.is-warning.is-active.textarea,.is-warning.is-active.input{box-shadow:0 0 0 .125em rgba(255,224,138,.25)}.is-danger.textarea,.is-danger.input{border-color:hsl(348deg,86%,61%)}.is-danger.textarea:focus,.is-danger.input:focus,.is-danger.is-focused.textarea,.is-danger.is-focused.input,.is-danger.textarea:active,.is-danger.input:active,.is-danger.is-active.textarea,.is-danger.is-active.input{box-shadow:0 0 0 .125em rgba(241,70,104,.25)}.is-small.textarea,.is-small.input{border-radius:2px;font-size:.75rem}.is-medium.textarea,.is-medium.input{font-size:1.25rem}.is-large.textarea,.is-large.input{font-size:1.5rem}.is-fullwidth.textarea,.is-fullwidth.input{display:block;width:100%}.is-inline.textarea,.is-inline.input{display:inline;width:auto}.input.is-rounded{border-radius:9999px;padding-left:calc(calc(.75em - 1px) + .375em);padding-right:calc(calc(.75em - 1px) + .375em)}.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:calc(.75em - 1px);resize:vertical}.textarea:not([rows]){max-height:40em;min-height:8em}.textarea[rows]{height:initial}.textarea.has-fixed-size{resize:none}.radio,.checkbox{cursor:pointer;display:inline-block;line-height:1.25;position:relative}.radio input,.checkbox input{cursor:pointer}.radio:hover,.checkbox:hover{color:hsl(0deg,0%,21%)}[disabled].radio,[disabled].checkbox,fieldset[disabled] .radio,fieldset[disabled] .checkbox,.radio input[disabled],.checkbox input[disabled]{color:hsl(0deg,0%,48%);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.5em}.select:not(.is-multiple):not(.is-loading)::after{border-color:hsl(229deg,53%,53%);right:1.125em;z-index:4}.select.is-rounded select{border-radius:9999px;padding-left:1em}.select select{cursor:pointer;display:block;font-size:1em;max-width:100%;outline:0}.select select::-ms-expand{display:none}.select select[disabled]:hover,fieldset[disabled] .select select:hover{border-color:hsl(0deg,0%,96%)}.select select:not([multiple]){padding-right:2.5em}.select select[multiple]{height:auto;padding:0}.select select[multiple] option{padding:.5em 1em}.select:not(.is-multiple):not(.is-loading):hover::after{border-color:hsl(0deg,0%,21%)}.select.is-white:not(:hover)::after{border-color:hsl(0deg,0%,100%)}.select.is-white select{border-color:hsl(0deg,0%,100%)}.select.is-white select:hover,.select.is-white select.is-hovered{border-color:#f2f2f2}.select.is-white select:focus,.select.is-white select.is-focused,.select.is-white select:active,.select.is-white select.is-active{box-shadow:0 0 0 .125em rgba(255,255,255,.25)}.select.is-black:not(:hover)::after{border-color:hsl(0deg,0%,4%)}.select.is-black select{border-color:hsl(0deg,0%,4%)}.select.is-black select:hover,.select.is-black select.is-hovered{border-color:#000}.select.is-black select:focus,.select.is-black select.is-focused,.select.is-black select:active,.select.is-black select.is-active{box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.select.is-light:not(:hover)::after{border-color:hsl(0deg,0%,96%)}.select.is-light select{border-color:hsl(0deg,0%,96%)}.select.is-light select:hover,.select.is-light select.is-hovered{border-color:#e8e8e8}.select.is-light select:focus,.select.is-light select.is-focused,.select.is-light select:active,.select.is-light select.is-active{box-shadow:0 0 0 .125em rgba(245,245,245,.25)}.select.is-dark:not(:hover)::after{border-color:hsl(0deg,0%,21%)}.select.is-dark select{border-color:hsl(0deg,0%,21%)}.select.is-dark select:hover,.select.is-dark select.is-hovered{border-color:#292929}.select.is-dark select:focus,.select.is-dark select.is-focused,.select.is-dark select:active,.select.is-dark select.is-active{box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.select.is-primary:not(:hover)::after{border-color:hsl(171deg,100%,41%)}.select.is-primary select{border-color:hsl(171deg,100%,41%)}.select.is-primary select:hover,.select.is-primary select.is-hovered{border-color:#00b89c}.select.is-primary select:focus,.select.is-primary select.is-focused,.select.is-primary select:active,.select.is-primary select.is-active{box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.select.is-link:not(:hover)::after{border-color:hsl(229deg,53%,53%)}.select.is-link select{border-color:hsl(229deg,53%,53%)}.select.is-link select:hover,.select.is-link select.is-hovered{border-color:#3a51bb}.select.is-link select:focus,.select.is-link select.is-focused,.select.is-link select:active,.select.is-link select.is-active{box-shadow:0 0 0 .125em rgba(72,95,199,.25)}.select.is-info:not(:hover)::after{border-color:hsl(207deg,61%,53%)}.select.is-info select{border-color:hsl(207deg,61%,53%)}.select.is-info select:hover,.select.is-info select.is-hovered{border-color:#3082c5}.select.is-info select:focus,.select.is-info select.is-focused,.select.is-info select:active,.select.is-info select.is-active{box-shadow:0 0 0 .125em rgba(62,142,208,.25)}.select.is-success:not(:hover)::after{border-color:hsl(153deg,53%,53%)}.select.is-success select{border-color:hsl(153deg,53%,53%)}.select.is-success select:hover,.select.is-success select.is-hovered{border-color:#3abb81}.select.is-success select:focus,.select.is-success select.is-focused,.select.is-success select:active,.select.is-success select.is-active{box-shadow:0 0 0 .125em rgba(72,199,142,.25)}.select.is-warning:not(:hover)::after{border-color:hsl(44deg,100%,77%)}.select.is-warning select{border-color:hsl(44deg,100%,77%)}.select.is-warning select:hover,.select.is-warning select.is-hovered{border-color:#ffd970}.select.is-warning select:focus,.select.is-warning select.is-focused,.select.is-warning select:active,.select.is-warning select.is-active{box-shadow:0 0 0 .125em rgba(255,224,138,.25)}.select.is-danger:not(:hover)::after{border-color:hsl(348deg,86%,61%)}.select.is-danger select{border-color:hsl(348deg,86%,61%)}.select.is-danger select:hover,.select.is-danger select.is-hovered{border-color:#ef2e55}.select.is-danger select:focus,.select.is-danger select.is-focused,.select.is-danger select:active,.select.is-danger select.is-active{box-shadow:0 0 0 .125em rgba(241,70,104,.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:hsl(0deg,0%,48%)!important;opacity:.5}.select.is-fullwidth{width:100%}.select.is-fullwidth select{width:100%}.select.is-loading::after{margin-top:0;position:absolute;right:.625em;top:.625em;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:hsl(0deg,0%,100%);border-color:transparent;color:hsl(0deg,0%,4%)}.file.is-white:hover .file-cta,.file.is-white.is-hovered .file-cta{background-color:#f9f9f9;border-color:transparent;color:hsl(0deg,0%,4%)}.file.is-white:focus .file-cta,.file.is-white.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(255,255,255,.25);color:hsl(0deg,0%,4%)}.file.is-white:active .file-cta,.file.is-white.is-active .file-cta{background-color:#f2f2f2;border-color:transparent;color:hsl(0deg,0%,4%)}.file.is-black .file-cta{background-color:hsl(0deg,0%,4%);border-color:transparent;color:hsl(0deg,0%,100%)}.file.is-black:hover .file-cta,.file.is-black.is-hovered .file-cta{background-color:#040404;border-color:transparent;color:hsl(0deg,0%,100%)}.file.is-black:focus .file-cta,.file.is-black.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(10,10,10,.25);color:hsl(0deg,0%,100%)}.file.is-black:active .file-cta,.file.is-black.is-active .file-cta{background-color:#000;border-color:transparent;color:hsl(0deg,0%,100%)}.file.is-light .file-cta{background-color:hsl(0deg,0%,96%);border-color:transparent;color:rgba(0,0,0,.7)}.file.is-light:hover .file-cta,.file.is-light.is-hovered .file-cta{background-color:#eee;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-light:focus .file-cta,.file.is-light.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(245,245,245,.25);color:rgba(0,0,0,.7)}.file.is-light:active .file-cta,.file.is-light.is-active .file-cta{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-dark .file-cta{background-color:hsl(0deg,0%,21%);border-color:transparent;color:#fff}.file.is-dark:hover .file-cta,.file.is-dark.is-hovered .file-cta{background-color:#2f2f2f;border-color:transparent;color:#fff}.file.is-dark:focus .file-cta,.file.is-dark.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(54,54,54,.25);color:#fff}.file.is-dark:active .file-cta,.file.is-dark.is-active .file-cta{background-color:#292929;border-color:transparent;color:#fff}.file.is-primary .file-cta{background-color:hsl(171deg,100%,41%);border-color:transparent;color:#fff}.file.is-primary:hover .file-cta,.file.is-primary.is-hovered .file-cta{background-color:#00c4a7;border-color:transparent;color:#fff}.file.is-primary:focus .file-cta,.file.is-primary.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(0,209,178,.25);color:#fff}.file.is-primary:active .file-cta,.file.is-primary.is-active .file-cta{background-color:#00b89c;border-color:transparent;color:#fff}.file.is-link .file-cta{background-color:hsl(229deg,53%,53%);border-color:transparent;color:#fff}.file.is-link:hover .file-cta,.file.is-link.is-hovered .file-cta{background-color:#3e56c4;border-color:transparent;color:#fff}.file.is-link:focus .file-cta,.file.is-link.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(72,95,199,.25);color:#fff}.file.is-link:active .file-cta,.file.is-link.is-active .file-cta{background-color:#3a51bb;border-color:transparent;color:#fff}.file.is-info .file-cta{background-color:hsl(207deg,61%,53%);border-color:transparent;color:#fff}.file.is-info:hover .file-cta,.file.is-info.is-hovered .file-cta{background-color:#3488ce;border-color:transparent;color:#fff}.file.is-info:focus .file-cta,.file.is-info.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(62,142,208,.25);color:#fff}.file.is-info:active .file-cta,.file.is-info.is-active .file-cta{background-color:#3082c5;border-color:transparent;color:#fff}.file.is-success .file-cta{background-color:hsl(153deg,53%,53%);border-color:transparent;color:#fff}.file.is-success:hover .file-cta,.file.is-success.is-hovered .file-cta{background-color:#3ec487;border-color:transparent;color:#fff}.file.is-success:focus .file-cta,.file.is-success.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(72,199,142,.25);color:#fff}.file.is-success:active .file-cta,.file.is-success.is-active .file-cta{background-color:#3abb81;border-color:transparent;color:#fff}.file.is-warning .file-cta{background-color:hsl(44deg,100%,77%);border-color:transparent;color:rgba(0,0,0,.7)}.file.is-warning:hover .file-cta,.file.is-warning.is-hovered .file-cta{background-color:#ffdc7d;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-warning:focus .file-cta,.file.is-warning.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(255,224,138,.25);color:rgba(0,0,0,.7)}.file.is-warning:active .file-cta,.file.is-warning.is-active .file-cta{background-color:#ffd970;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-danger .file-cta{background-color:hsl(348deg,86%,61%);border-color:transparent;color:#fff}.file.is-danger:hover .file-cta,.file.is-danger.is-hovered .file-cta{background-color:#f03a5f;border-color:transparent;color:#fff}.file.is-danger:focus .file-cta,.file.is-danger.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(241,70,104,.25);color:#fff}.file.is-danger:active .file-cta,.file.is-danger.is-active .file-cta{background-color:#ef2e55;border-color:transparent;color:#fff}.file.is-small{font-size:.75rem}.file.is-normal{font-size:1rem}.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:hsl(0deg,0%,21%)}.file-label:hover .file-name{border-color:#d5d5d5}.file-label:active .file-cta{background-color:#e8e8e8;color:hsl(0deg,0%,21%)}.file-label:active .file-name{border-color:#cfcfcf}.file-input{height:100%;left:0;opacity:0;outline:0;position:absolute;top:0;width:100%}.file-cta,.file-name{border-color:hsl(0deg,0%,86%);border-radius:4px;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}.file-cta{background-color:hsl(0deg,0%,96%);color:hsl(0deg,0%,29%)}.file-name{border-color:hsl(0deg,0%,86%);border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:inherit;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:hsl(0deg,0%,21%);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:hsl(0deg,0%,100%)}.help.is-black{color:hsl(0deg,0%,4%)}.help.is-light{color:hsl(0deg,0%,96%)}.help.is-dark{color:hsl(0deg,0%,21%)}.help.is-primary{color:hsl(171deg,100%,41%)}.help.is-link{color:hsl(229deg,53%,53%)}.help.is-info{color:hsl(207deg,61%,53%)}.help.is-success{color:hsl(153deg,53%,53%)}.help.is-warning{color:hsl(44deg,100%,77%)}.help.is-danger{color:hsl(348deg,86%,61%)}.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:not(:only-child) .button,.field.has-addons .control:first-child:not(:only-child) .input,.field.has-addons .control:first-child:not(:only-child) .select select{border-bottom-right-radius:0;border-top-right-radius:0}.field.has-addons .control:last-child:not(:only-child) .button,.field.has-addons .control:last-child:not(:only-child) .input,.field.has-addons .control:last-child:not(:only-child) .select select{border-bottom-left-radius:0;border-top-left-radius:0}.field.has-addons .control .button:not([disabled]):hover,.field.has-addons .control .button:not([disabled]).is-hovered,.field.has-addons .control .input:not([disabled]):hover,.field.has-addons .control .input:not([disabled]).is-hovered,.field.has-addons .control .select select:not([disabled]):hover,.field.has-addons .control .select select:not([disabled]).is-hovered{z-index:2}.field.has-addons .control .button:not([disabled]):focus,.field.has-addons .control .button:not([disabled]).is-focused,.field.has-addons .control .button:not([disabled]):active,.field.has-addons .control .button:not([disabled]).is-active,.field.has-addons .control .input:not([disabled]):focus,.field.has-addons .control .input:not([disabled]).is-focused,.field.has-addons .control .input:not([disabled]):active,.field.has-addons .control .input:not([disabled]).is-active,.field.has-addons .control .select select:not([disabled]):focus,.field.has-addons .control .select select:not([disabled]).is-focused,.field.has-addons .control .select select:not([disabled]):active,.field.has-addons .control .select select:not([disabled]).is-active{z-index:3}.field.has-addons .control .button:not([disabled]):focus:hover,.field.has-addons .control .button:not([disabled]).is-focused:hover,.field.has-addons .control .button:not([disabled]):active:hover,.field.has-addons .control .button:not([disabled]).is-active:hover,.field.has-addons .control .input:not([disabled]):focus:hover,.field.has-addons .control .input:not([disabled]).is-focused:hover,.field.has-addons .control .input:not([disabled]):active:hover,.field.has-addons .control .input:not([disabled]).is-active:hover,.field.has-addons .control .select select:not([disabled]):focus:hover,.field.has-addons .control .select select:not([disabled]).is-focused:hover,.field.has-addons .control .select select:not([disabled]):active:hover,.field.has-addons .control .select select:not([disabled]).is-active:hover{z-index:4}.field.has-addons .control.is-expanded{flex-grow:1;flex-shrink: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{box-sizing:border-box;clear:both;font-size:1rem;position:relative;text-align:inherit}.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:hsl(0deg,0%,29%)}.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:hsl(0deg,0%,86%);height:2.5em;pointer-events:none;position:absolute;top:0;width:2.5em;z-index:4}.control.has-icons-left .input,.control.has-icons-left .select select{padding-left:2.5em}.control.has-icons-left .icon.is-left{left:0}.control.has-icons-right .input,.control.has-icons-right .select select{padding-right:2.5em}.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}.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:hsl(0deg,0%,100%);border-radius:4px;box-shadow:0 .5em 1em -.125em rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.02);padding-bottom:.5rem;padding-top:.5rem}.dropdown-item{color:hsl(0deg,0%,29%);display:block;font-size:.875rem;line-height:1.5;padding:.375rem 1rem;position:relative}a.dropdown-item,button.dropdown-item{padding-right:3rem;text-align:inherit;white-space:nowrap;width:100%}a.dropdown-item:hover,button.dropdown-item:hover{background-color:hsl(0deg,0%,96%);color:hsl(0deg,0%,4%)}a.dropdown-item.is-active,button.dropdown-item.is-active{background-color:hsl(229deg,53%,53%);color:#fff}.dropdown-divider{background-color:hsl(0deg,0%,93%);border:0;display:block;height:1px;margin:.5rem 0}.message{background-color:hsl(0deg,0%,96%);border-radius:4px;font-size:1rem}.message strong{color:currentColor}.message a:not(.button):not(.tag):not(.dropdown-item){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:hsl(0deg,0%,100%);color:hsl(0deg,0%,4%)}.message.is-white .message-body{border-color:hsl(0deg,0%,100%)}.message.is-black{background-color:#fafafa}.message.is-black .message-header{background-color:hsl(0deg,0%,4%);color:hsl(0deg,0%,100%)}.message.is-black .message-body{border-color:hsl(0deg,0%,4%)}.message.is-light{background-color:#fafafa}.message.is-light .message-header{background-color:hsl(0deg,0%,96%);color:rgba(0,0,0,.7)}.message.is-light .message-body{border-color:hsl(0deg,0%,96%)}.message.is-dark{background-color:#fafafa}.message.is-dark .message-header{background-color:hsl(0deg,0%,21%);color:#fff}.message.is-dark .message-body{border-color:hsl(0deg,0%,21%)}.message.is-primary{background-color:#ebfffc}.message.is-primary .message-header{background-color:hsl(171deg,100%,41%);color:#fff}.message.is-primary .message-body{border-color:hsl(171deg,100%,41%);color:#00947e}.message.is-link{background-color:#eff1fa}.message.is-link .message-header{background-color:hsl(229deg,53%,53%);color:#fff}.message.is-link .message-body{border-color:hsl(229deg,53%,53%);color:#3850b7}.message.is-info{background-color:#eff5fb}.message.is-info .message-header{background-color:hsl(207deg,61%,53%);color:#fff}.message.is-info .message-body{border-color:hsl(207deg,61%,53%);color:#296fa8}.message.is-success{background-color:#effaf5}.message.is-success .message-header{background-color:hsl(153deg,53%,53%);color:#fff}.message.is-success .message-body{border-color:hsl(153deg,53%,53%);color:#257953}.message.is-warning{background-color:#fffaeb}.message.is-warning .message-header{background-color:hsl(44deg,100%,77%);color:rgba(0,0,0,.7)}.message.is-warning .message-body{border-color:hsl(44deg,100%,77%);color:#946c00}.message.is-danger{background-color:#feecf0}.message.is-danger .message-header{background-color:hsl(348deg,86%,61%);color:#fff}.message.is-danger .message-body{border-color:hsl(348deg,86%,61%);color:#cc0f35}.message-header{align-items:center;background-color:hsl(0deg,0%,29%);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:hsl(0deg,0%,86%);border-radius:4px;border-style:solid;border-width:0 0 0 4px;color:hsl(0deg,0%,29%);padding:1.25em 1.5em}.message-body code,.message-body pre{background-color:hsl(0deg,0%,100%)}.message-body pre code{background-color:transparent}.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-previous,.pagination.is-rounded .pagination-next{padding-left:1em;padding-right:1em;border-radius:9999px}.pagination.is-rounded .pagination-link{border-radius:9999px}.pagination,.pagination-list{align-items:center;display:flex;justify-content:center;text-align:center}.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis{font-size:1em;justify-content:center;margin:.25rem;padding-left:.5em;padding-right:.5em;text-align:center}.pagination-previous,.pagination-next,.pagination-link{border-color:hsl(0deg,0%,86%);color:hsl(0deg,0%,21%);min-width:2.5em}.pagination-previous:hover,.pagination-next:hover,.pagination-link:hover{border-color:hsl(0deg,0%,71%);color:hsl(0deg,0%,21%)}.pagination-previous:focus,.pagination-next:focus,.pagination-link:focus{border-color:hsl(229deg,53%,53%)}.pagination-previous:active,.pagination-next:active,.pagination-link:active{box-shadow:inset 0 1px 2px rgba(10,10,10,.2)}.pagination-previous[disabled],.pagination-previous.is-disabled,.pagination-next[disabled],.pagination-next.is-disabled,.pagination-link[disabled],.pagination-link.is-disabled{background-color:hsl(0deg,0%,86%);border-color:hsl(0deg,0%,86%);box-shadow:none;color:hsl(0deg,0%,48%);opacity:.5}.pagination-previous,.pagination-next{padding-left:.75em;padding-right:.75em;white-space:nowrap}.pagination-link.is-current{background-color:hsl(229deg,53%,53%);border-color:hsl(229deg,53%,53%);color:#fff}.pagination-ellipsis{color:hsl(0deg,0%,71%);pointer-events:none}.pagination-list{flex-wrap:wrap}.pagination-list li{list-style:none}@media screen and (max-width:768px){.pagination{flex-wrap:wrap}.pagination-previous,.pagination-next{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,.pagination-next,.pagination-link,.pagination-ellipsis{margin-bottom:0;margin-top:0}.pagination-previous{order:2}.pagination-next{order:3}.pagination{justify-content:space-between;margin-bottom:0;margin-top:0}.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}} -:root{--background:hsl(25,84%,88%);--text-color:hsl(25,84%,26.4%);--placeholder-text-color:hsla(25,84%,26.4%,.3);--black:hsl(0,0%,4%);--black-bis:hsl(0,0%,7%);--black-ter:hsl(0,0%,14%);--white:hsl(0,4%,99.8%);--primary-color:hsl(25,84%,88%);--primary-color-light:hsl(25,84%,100%);--primary-color-dark:hsl(25,84%,66%);--primary-gradiend-light:hsl(25,84%,92%);--primary-gradiend-dark:hsl(25,84%,84%);--primary-gradiend-lighter:hsl(25,84%,96%);--primary-gradiend-darker:hsl(25,84%,80%);--secondary-color:hsl(205,84%,88%);--secondary-color-light:hsl(205,84%,100%);--secondary-color-dark:hsl(205,84%,84%);--light-shadow:hsla(25,84%,100%,.5);--dark-shadow:hsla(25,84%,66%,.5);--fa-primary-color:hsl(205,84%,26.4%);--fa-secondary-color:hsl(205,84%,66%);--fa-primary-opacity:.8;--fa-secondary-opacity:.8;--danger-color:hsl(0,82%,91%);--warning-color:hsl(48,82%,91%);--info-color:hsl(196,82%,91%);--plus-green:hsl(96,49%,49%);--plus-gold:hsl(51,72%,46%)}:root{--shadow-offset:8px;--blur-radius:16px;--is-inset:inherit}.neomorph{box-shadow:calc(-1*var(--shadow-offset)) calc(-1*var(--shadow-offset)) var(--blur-radius) var(--light-shadow),var(--shadow-offset) var(--shadow-offset) var(--blur-radius) var(--dark-shadow);background-color:var(--background)}.neomorphInset{box-shadow:inset var(--shadow-offset) var(--shadow-offset) var(--blur-radius) var(--dark-shadow),inset calc(-1*var(--shadow-offset)) calc(-1*var(--shadow-offset)) var(--blur-radius) var(--light-shadow);background-color:var(--background)}.neomorphInset.is-nxxsmall{--shadow-offset:2px;--blur-radius:4px}@media(min-width:640px){.neomorphInset.is-nxxsmall-sm{--shadow-offset:2px;--blur-radius:4px}}@media(min-width:768px){.neomorphInset.is-nxxsmall-md{--shadow-offset:2px;--blur-radius:4px}}@media(min-width:1024px){.neomorphInset.is-nxxsmall-lg{--shadow-offset:2px;--blur-radius:4px}}@media(min-width:1280px){.neomorphInset.is-nxxsmall-xl{--shadow-offset:2px;--blur-radius:4px}}.neomorphInset.is-nxsmall{--shadow-offset:3px;--blur-radius:6px}@media(min-width:640px){.neomorphInset.is-nxsmall-sm{--shadow-offset:3px;--blur-radius:6px}}@media(min-width:768px){.neomorphInset.is-nxsmall-md{--shadow-offset:3px;--blur-radius:6px}}@media(min-width:1024px){.neomorphInset.is-nxsmall-lg{--shadow-offset:3px;--blur-radius:6px}}@media(min-width:1280px){.neomorphInset.is-nxsmall-xl{--shadow-offset:3px;--blur-radius:6px}}.neomorphInset.is-nsmall{--shadow-offset:6px;--blur-radius:12px}@media(min-width:640px){.neomorphInset.is-nsmall-sm{--shadow-offset:6px;--blur-radius:12px}}@media(min-width:768px){.neomorphInset.is-nsmall-md{--shadow-offset:6px;--blur-radius:12px}}@media(min-width:1024px){.neomorphInset.is-nsmall-lg{--shadow-offset:6px;--blur-radius:12px}}@media(min-width:1280px){.neomorphInset.is-nsmall-xl{--shadow-offset:6px;--blur-radius:12px}}.neomorph.is-nxxsmall{--shadow-offset:2px;--blur-radius:4px}@media(min-width:640px){.neomorph.is-nxxsmall-sm{--shadow-offset:2px;--blur-radius:4px}}@media(min-width:768px){.neomorph.is-nxxsmall-md{--shadow-offset:2px;--blur-radius:4px}}@media(min-width:1024px){.neomorph.is-nxxsmall-lg{--shadow-offset:2px;--blur-radius:4px}}@media(min-width:1280px){.neomorph.is-nxxsmall-xl{--shadow-offset:2px;--blur-radius:4px}}.neomorph.is-nxsmall{--shadow-offset:3px;--blur-radius:6px}@media(min-width:640px){.neomorph.is-nxsmall-sm{--shadow-offset:3px;--blur-radius:6px}}@media(min-width:768px){.neomorph.is-nxsmall-md{--shadow-offset:3px;--blur-radius:6px}}@media(min-width:1024px){.neomorph.is-nxsmall-lg{--shadow-offset:3px;--blur-radius:6px}}@media(min-width:1280px){.neomorph.is-nxsmall-xl{--shadow-offset:3px;--blur-radius:6px}}.neomorph.is-nsmall{--shadow-offset:6px;--blur-radius:12px}@media(min-width:640px){.neomorph.is-nsmall-sm{--shadow-offset:6px;--blur-radius:12px}}@media(min-width:768px){.neomorph.is-nsmall-md{--shadow-offset:6px;--blur-radius:12px}}@media(min-width:1024px){.neomorph.is-nsmall-lg{--shadow-offset:6px;--blur-radius:12px}}@media(min-width:1280px){.neomorph.is-nsmall-xl{--shadow-offset:6px;--blur-radius:12px}}.neomorph.is-nnormal{--shadow-offset:8px;--blur-radius:16px}@media(min-width:640px){.neomorph.is-nnormal-sm{--shadow-offset:8px;--blur-radius:16px}}@media(min-width:768px){.neomorph.is-nnormal-md{--shadow-offset:8px;--blur-radius:16px}}@media(min-width:1024px){.neomorph.is-nnormal-lg{--shadow-offset:8px;--blur-radius:16px}}@media(min-width:1280px){.neomorph.is-nnormal-xl{--shadow-offset:8px;--blur-radius:16px}}button.neoBtn,.neoBtn{background-image:linear-gradient(145deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:-3px -3px 6px var(--light-shadow),3px 3px 6px var(--dark-shadow);border:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}button.neoBtn:focus,.neoBtn:focus{background-image:linear-gradient(-45deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:-3px -3px 6px var(--light-shadow),3px 3px 6px var(--dark-shadow);border:0}button.neoBtnSmall,.neoBtnSmall{background-image:linear-gradient(145deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:-2px -2px 4px var(--light-shadow),2px 2px 4px var(--dark-shadow);border:0}button.neoBtnSmall:focus,.neoBtnSmall:focus{background-image:linear-gradient(-45deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:-2px -2px 4px var(--light-shadow),2px 2px 4px var(--dark-shadow);border:0}button.neoBtnSmall:focus:not(:active),.neoBtnSmall:focus:not(:active){background-image:linear-gradient(-45deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:-2px -2px 4px var(--light-shadow),2px 2px 4px var(--dark-shadow)}button.neoBtnSmall:focus input[type=file],.neoBtnSmall:focus input[type=file]{background-image:linear-gradient(-45deg,var(--primary-gradiend-light),var(--primary-gradiend-dark))}button.neoBtnSmallPlain,.neoBtnSmallPlain{background:var(--background);box-shadow:-3px -3px 6px var(--light-shadow),3px 3px 6px var(--dark-shadow);border:0}button.neoBtnSmallPlain:focus,.neoBtnSmallPlain:focus{box-shadow:-3px -3px 6px var(--light-shadow),3px 3px 6px var(--dark-shadow);border:0}button.neoBtnSmallInsetPlain,.neoBtnSmallInsetPlain{background-image:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow);border:0}button.neoBtnSmallInsetPlain:focus,.neoBtnSmallInsetPlain:focus{background-image:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow);border:0}button.neoBtnSmallXInsetPlain,.neoBtnSmallXInsetPlain{background-image:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light));box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);border:0}button.neoBtnSmallXInsetPlain:focus,.neoBtnSmallXInsetPlain:focus{background-image:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter));box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);border:0}button.neoBtnInsetPlain,.neoBtnInsetPlain{background-image:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow);border:0}button.neoBtnInsetPlain:focus,.neoBtnInsetPlain:focus{background-image:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow);border:0}button.neoBtnInsetPlain:focus:not(:active),.neoBtnInsetPlain:focus:not(:active){background-image:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow)}button.neoFile,.neoFile{box-shadow:0 0 0 var(--light-shadow),0 0 0 var(--dark-shadow);transition:all .2s linear;-webkit-backface-visibility:hidden;backface-visibility:hidden}button.neoFile:hover,.neoFile:hover{box-shadow:-3px -3px 6px var(--light-shadow),3px 3px 6px var(--dark-shadow)}button.neoFile:focus-visible,.neoFile:focus-visible{background:linear-gradient(-45deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow);outline:0}button.neoFile.isSelected,.neoFile.isSelected{background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow)}button.neoFile.isSelected:focus-visible,.neoFile.isSelected:focus-visible{background:linear-gradient(-45deg,var(--primary-gradiend-lighter),var(--primary-gradiend-darker));outline:0}button.neoFile.is-active,button.neoFile.active,.neoFile.is-active,.neoFile.active{box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow);color:var(--black)}button.neoInput,.neoInput{box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light));border:0}button.neoInput:focus,.neoInput:focus{background:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter));border:0}button.neoSelect>select,.neoSelect>select{box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light));border:0}button.neoSelect>select:focus,.neoSelect>select:focus{background:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter));border:0}.neoCheckbox{opacity:0;width:0}.neoCheckbox:focus+label:before{background:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter))!important}.neoCheckboxContainer{position:relative}.neoCheckbox+label{padding:.15rem .15rem .15rem 2rem;cursor:pointer;font-size:1rem;line-height:1.5}.neoCheckbox+label:before{animation-name:none;width:1.5rem;height:1.5rem;border-radius:100px;position:absolute;left:0;top:0;content:"";border:0;box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light))!important}.neoCheckbox:checked.is-checked-bold+label{font-weight:bold}.neoCheckbox:checked+label:after{display:inline-block;width:.375rem;height:.6rem;top:.35rem;left:.55rem;transform:translateY(0) rotate(45deg);border-width:.1rem;border-top-width:.1rem;border-left-width:.1rem;border-style:solid;border-top-style:solid;border-left-style:solid;border-color:var(--text-color);border-top:0;border-left:0;position:absolute;content:""}hr.neoSeparatorFlat{height:10px;border:0;border-radius:20px;box-shadow:-2px -2px 4px var(--light-shadow),2px 2px 4px var(--dark-shadow);background:var(--background)}hr.neoSeparatorPressed{height:10px;border:0;border-radius:20px;box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light))}input.neoRange[type=range]{height:30px;-webkit-appearance:none;width:100%;background:transparent}input.neoRange[type=range]:focus{outline:0}input.neoRange[type=range]::-webkit-slider-runnable-track{width:100%;height:20px;cursor:pointer;animate:.2s;border-radius:20px;box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(90deg,hsl(0deg,90%,80%),hsl(10deg,90%,80%),hsl(20deg,90%,80%),hsl(30deg,90%,80%),hsl(40deg,90%,80%),hsl(50deg,90%,80%),hsl(60deg,90%,80%),hsl(70deg,90%,80%),hsl(80deg,90%,80%),hsl(90deg,90%,80%),hsl(100deg,90%,80%),hsl(110deg,90%,80%),hsl(120deg,90%,80%),hsl(130deg,90%,80%),hsl(140deg,90%,80%),hsl(150deg,90%,80%),hsl(160deg,90%,80%),hsl(170deg,90%,80%),hsl(180deg,90%,80%),hsl(190deg,90%,80%),hsl(200deg,90%,80%),hsl(210deg,90%,80%),hsl(220deg,90%,80%),hsl(230deg,90%,80%),hsl(240deg,90%,80%),hsl(250deg,90%,80%),hsl(260deg,90%,80%),hsl(270deg,90%,80%),hsl(280deg,90%,80%),hsl(290deg,90%,80%),hsl(300deg,90%,80%),hsl(310deg,90%,80%),hsl(320deg,90%,80%),hsl(330deg,90%,80%),hsl(340deg,90%,80%),hsl(350deg,90%,80%),hsl(359deg,90%,80%))!important}input.neoRange[type=range]::-webkit-slider-thumb{border:0;height:26px;width:26px;border-radius:20px;box-shadow:2px 2px 4px var(--dark-shadow),-2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-light),var(--primary-gradiend-dark))!important;cursor:pointer;-webkit-appearance:none;margin-top:-3px}input.neoRange[type=range]:focus::-webkit-slider-runnable-track{background:linear-gradient(90deg,hsl(0deg,90%,80%),hsl(10deg,90%,80%),hsl(20deg,90%,80%),hsl(30deg,90%,80%),hsl(40deg,90%,80%),hsl(50deg,90%,80%),hsl(60deg,90%,80%),hsl(70deg,90%,80%),hsl(80deg,90%,80%),hsl(90deg,90%,80%),hsl(100deg,90%,80%),hsl(110deg,90%,80%),hsl(120deg,90%,80%),hsl(130deg,90%,80%),hsl(140deg,90%,80%),hsl(150deg,90%,80%),hsl(160deg,90%,80%),hsl(170deg,90%,80%),hsl(180deg,90%,80%),hsl(190deg,90%,80%),hsl(200deg,90%,80%),hsl(210deg,90%,80%),hsl(220deg,90%,80%),hsl(230deg,90%,80%),hsl(240deg,90%,80%),hsl(250deg,90%,80%),hsl(260deg,90%,80%),hsl(270deg,90%,80%),hsl(280deg,90%,80%),hsl(290deg,90%,80%),hsl(300deg,90%,80%),hsl(310deg,90%,80%),hsl(320deg,90%,80%),hsl(330deg,90%,80%),hsl(340deg,90%,80%),hsl(350deg,90%,80%),hsl(359deg,90%,80%))!important}input.neoRange[type=range]::-moz-range-track{width:100%;height:20px;cursor:pointer;border-radius:20px;box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(90deg,hsl(0deg,90%,80%),hsl(10deg,90%,80%),hsl(20deg,90%,80%),hsl(30deg,90%,80%),hsl(40deg,90%,80%),hsl(50deg,90%,80%),hsl(60deg,90%,80%),hsl(70deg,90%,80%),hsl(80deg,90%,80%),hsl(90deg,90%,80%),hsl(100deg,90%,80%),hsl(110deg,90%,80%),hsl(120deg,90%,80%),hsl(130deg,90%,80%),hsl(140deg,90%,80%),hsl(150deg,90%,80%),hsl(160deg,90%,80%),hsl(170deg,90%,80%),hsl(180deg,90%,80%),hsl(190deg,90%,80%),hsl(200deg,90%,80%),hsl(210deg,90%,80%),hsl(220deg,90%,80%),hsl(230deg,90%,80%),hsl(240deg,90%,80%),hsl(250deg,90%,80%),hsl(260deg,90%,80%),hsl(270deg,90%,80%),hsl(280deg,90%,80%),hsl(290deg,90%,80%),hsl(300deg,90%,80%),hsl(310deg,90%,80%),hsl(320deg,90%,80%),hsl(330deg,90%,80%),hsl(340deg,90%,80%),hsl(350deg,90%,80%),hsl(359deg,90%,80%))!important;border:0}input.neoRange[type=range]::-moz-range-thumb{border:0;height:26px;width:26px;border-radius:20px;box-shadow:2px 2px 4px var(--dark-shadow),-2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-light),var(--primary-gradiend-dark))!important;cursor:pointer}body{color:var(--text-color);background-color:var(--background)}.background{background-color:var(--background)}details>summary::-webkit-details-marker{color:var(--text-color)}:focus-visible{outline:0}*,::after,::before{scrollbar-color:inherit;scrollbar-width:inherit}::-webkit-scrollbar{width:8px}::-webkit-scrollbar-button{width:8px;height:5px}::-webkit-scrollbar-track{background:transparent;border:thin solid transparent;box-shadow:none;border-radius:10px}::-webkit-scrollbar-thumb{background:var(--primary-color-dark);border:thin solid transparent;border-radius:10px}::-webkit-scrollbar-thumb:hover{background:var(--primary-color-dark)}::-moz-selection{color:var(--primary-color);background:var(--primary-color-dark)}::selection{color:var(--primary-color);background:var(--primary-color-dark)}.flex.flex-col-reverse>div:first-child{margin-top:1rem}.loadAnimation span{animation-name:blink;animation-duration:1.4s;animation-iteration-count:infinite;animation-fill-mode:both}.loadAnimation span:nth-child(1){animation-delay:.4s}.loadAnimation span:nth-child(2){animation-delay:.3s}.loadAnimation span:nth-child(3){animation-delay:.2s}.loadAnimation span:nth-child(4){animation-delay:.2s}.loadAnimation span:nth-child(5){animation-delay:.3s}.loadAnimation span:nth-child(6){animation-delay:.4s} +/* Bulma Utilities */ +.pagination-previous, +.pagination-next, +.pagination-link, +.pagination-ellipsis, .file-cta, +.file-name, .select select, .textarea, .input, .button { + -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.5em; + justify-content: flex-start; + line-height: 1.5; + padding-bottom: calc(0.5em - 1px); + padding-left: calc(0.75em - 1px); + padding-right: calc(0.75em - 1px); + padding-top: calc(0.5em - 1px); + position: relative; + vertical-align: top; +} +.pagination-previous:focus, +.pagination-next:focus, +.pagination-link:focus, +.pagination-ellipsis:focus, .file-cta:focus, +.file-name:focus, .select select:focus, .textarea:focus, .input:focus, .button:focus, .is-focused.pagination-previous, +.is-focused.pagination-next, +.is-focused.pagination-link, +.is-focused.pagination-ellipsis, .is-focused.file-cta, +.is-focused.file-name, .select select.is-focused, .is-focused.textarea, .is-focused.input, .is-focused.button, .pagination-previous:active, +.pagination-next:active, +.pagination-link:active, +.pagination-ellipsis:active, .file-cta:active, +.file-name:active, .select select:active, .textarea:active, .input:active, .button:active, .is-active.pagination-previous, +.is-active.pagination-next, +.is-active.pagination-link, +.is-active.pagination-ellipsis, .is-active.file-cta, +.is-active.file-name, .select select.is-active, .is-active.textarea, .is-active.input, .is-active.button { + outline: none; +} +[disabled].pagination-previous, +[disabled].pagination-next, +[disabled].pagination-link, +[disabled].pagination-ellipsis, [disabled].file-cta, +[disabled].file-name, .select select[disabled], [disabled].textarea, [disabled].input, [disabled].button, fieldset[disabled] .pagination-previous, +fieldset[disabled] .pagination-next, +fieldset[disabled] .pagination-link, +fieldset[disabled] .pagination-ellipsis, fieldset[disabled] .file-cta, +fieldset[disabled] .file-name, fieldset[disabled] .select select, .select fieldset[disabled] select, fieldset[disabled] .textarea, fieldset[disabled] .input, fieldset[disabled] .button { + cursor: not-allowed; +} + +.pagination-previous, +.pagination-next, +.pagination-link, +.pagination-ellipsis, .file, .button { + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.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: 0.625em; + margin-top: -0.4375em; + pointer-events: none; + position: absolute; + top: 50%; + transform: rotate(-45deg); + transform-origin: center; + width: 0.625em; +} + +.pagination:not(:last-child), .message:not(:last-child), .progress:not(:last-child), .notification:not(:last-child), .content:not(:last-child) { + margin-bottom: 1.5rem; +} + +.delete { + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + -moz-appearance: none; + -webkit-appearance: none; + background-color: rgba(10, 10, 10, 0.2); + border: none; + border-radius: 9999px; + 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: none; + position: relative; + vertical-align: top; + width: 20px; +} +.delete::before, .delete::after { + background-color: hsl(0deg, 0%, 100%); + content: ""; + display: block; + left: 50%; + position: absolute; + top: 50%; + transform: translateX(-50%) translateY(-50%) rotate(45deg); + transform-origin: center center; +} +.delete::before { + height: 2px; + width: 50%; +} +.delete::after { + height: 50%; + width: 2px; +} +.delete:hover, .delete:focus { + background-color: rgba(10, 10, 10, 0.3); +} +.delete:active { + background-color: rgba(10, 10, 10, 0.4); +} +.is-small.delete { + height: 16px; + max-height: 16px; + max-width: 16px; + min-height: 16px; + min-width: 16px; + width: 16px; +} +.is-medium.delete { + height: 24px; + max-height: 24px; + max-width: 24px; + min-height: 24px; + min-width: 24px; + width: 24px; +} +.is-large.delete { + height: 32px; + max-height: 32px; + max-width: 32px; + min-height: 32px; + min-width: 32px; + width: 32px; +} + +.control.is-loading::after, .select.is-loading::after, .loader, .button.is-loading::after { + animation: spinAround 500ms infinite linear; + border: 2px solid hsl(0deg, 0%, 86%); + border-radius: 9999px; + border-right-color: transparent; + border-top-color: transparent; + content: ""; + display: block; + height: 1em; + position: relative; + width: 1em; +} + +.image.is-square img, +.image.is-square .has-ratio, .image.is-1by1 img, +.image.is-1by1 .has-ratio, .image.is-5by4 img, +.image.is-5by4 .has-ratio, .image.is-4by3 img, +.image.is-4by3 .has-ratio, .image.is-3by2 img, +.image.is-3by2 .has-ratio, .image.is-5by3 img, +.image.is-5by3 .has-ratio, .image.is-16by9 img, +.image.is-16by9 .has-ratio, .image.is-2by1 img, +.image.is-2by1 .has-ratio, .image.is-3by1 img, +.image.is-3by1 .has-ratio, .image.is-4by5 img, +.image.is-4by5 .has-ratio, .image.is-3by4 img, +.image.is-3by4 .has-ratio, .image.is-2by3 img, +.image.is-2by3 .has-ratio, .image.is-3by5 img, +.image.is-3by5 .has-ratio, .image.is-9by16 img, +.image.is-9by16 .has-ratio, .image.is-1by2 img, +.image.is-1by2 .has-ratio, .image.is-1by3 img, +.image.is-1by3 .has-ratio { + bottom: 0; + left: 0; + position: absolute; + right: 0; + top: 0; +} + +/* Bulma Base */ +html { + background-color: hsl(0deg, 0%, 100%); + font-size: 16px; + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + min-width: 300px; + overflow-x: hidden; + overflow-y: scroll; + text-rendering: optimizeLegibility; + text-size-adjust: 100%; +} + +article, +aside, +figure, +footer, +header, +hgroup, +section { + display: block; +} + +body, +button, +input, +optgroup, +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: hsl(0deg, 0%, 29%); + font-size: 1em; + font-weight: 400; + line-height: 1.5; +} + +a { + cursor: pointer; + text-decoration: none; +} + +code { + background-color: hsl(0deg, 0%, 96%); + color: #da1039; + font-size: 0.875em; + font-weight: normal; + padding: 0.25em 0.5em 0.25em; +} + +hr { + background-color: hsl(0deg, 0%, 96%); + 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: 0.875em; +} + +span { + font-style: inherit; + font-weight: inherit; +} + +strong { + color: hsl(0deg, 0%, 21%); + font-weight: 700; +} + +fieldset { + border: none; +} + +pre { + -webkit-overflow-scrolling: touch; + background-color: hsl(0deg, 0%, 96%); + color: hsl(0deg, 0%, 29%); + font-size: 0.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 { + vertical-align: top; +} +table td:not([align]), +table th:not([align]) { + text-align: inherit; +} +table th { + color: hsl(0deg, 0%, 21%); +} + +@keyframes spinAround { + from { + transform: rotate(0deg); + } + to { + transform: rotate(359deg); + } +} +/* Bulma Elements */ +.button { + cursor: pointer; + justify-content: center; + padding-bottom: calc(0.5em - 1px); + padding-left: 1em; + padding-right: 1em; + padding-top: calc(0.5em - 1px); + text-align: center; + white-space: nowrap; +} +.button .icon, .button .icon.is-small, .button .icon.is-medium, .button .icon.is-large { + height: 1.5em; + width: 1.5em; +} +.button .icon:first-child:not(:last-child) { + margin-left: calc(-0.5em - 1px); + margin-right: 0.25em; +} +.button .icon:last-child:not(:first-child) { + margin-left: 0.25em; + margin-right: calc(-0.5em - 1px); +} +.button .icon:first-child:last-child { + margin-left: calc(-0.5em - 1px); + margin-right: calc(-0.5em - 1px); +} +.button.is-text { + background-color: transparent; + border-color: transparent; + color: hsl(0deg, 0%, 29%); + text-decoration: underline; +} +.button.is-text:hover, .button.is-text.is-hovered, .button.is-text:focus, .button.is-text.is-focused { + background-color: hsl(0deg, 0%, 96%); + color: hsl(0deg, 0%, 21%); +} +.button.is-text:active, .button.is-text.is-active { + background-color: #e8e8e8; + color: hsl(0deg, 0%, 21%); +} +.button.is-text[disabled], fieldset[disabled] .button.is-text { + background-color: transparent; + border-color: transparent; + box-shadow: none; +} +.button.is-ghost { + background: none; + border-color: transparent; + color: hsl(229deg, 53%, 53%); + text-decoration: none; +} +.button.is-ghost:hover, .button.is-ghost.is-hovered { + color: hsl(229deg, 53%, 53%); + text-decoration: underline; +} +.button.is-white { + background-color: hsl(0deg, 0%, 100%); + border-color: transparent; + color: hsl(0deg, 0%, 4%); +} +.button.is-white:hover, .button.is-white.is-hovered { + background-color: #f9f9f9; + border-color: transparent; + color: hsl(0deg, 0%, 4%); +} +.button.is-white:focus, .button.is-white.is-focused { + border-color: transparent; + color: hsl(0deg, 0%, 4%); +} +.button.is-white:focus:not(:active), .button.is-white.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); +} +.button.is-white:active, .button.is-white.is-active { + background-color: #f2f2f2; + border-color: transparent; + color: hsl(0deg, 0%, 4%); +} +.button.is-white[disabled], fieldset[disabled] .button.is-white { + background-color: hsl(0deg, 0%, 100%); + border-color: hsl(0deg, 0%, 100%); + box-shadow: none; +} +.button.is-white.is-inverted { + background-color: hsl(0deg, 0%, 4%); + color: hsl(0deg, 0%, 100%); +} +.button.is-white.is-inverted:hover, .button.is-white.is-inverted.is-hovered { + background-color: black; +} +.button.is-white.is-inverted[disabled], fieldset[disabled] .button.is-white.is-inverted { + background-color: hsl(0deg, 0%, 4%); + border-color: transparent; + box-shadow: none; + color: hsl(0deg, 0%, 100%); +} +.button.is-white.is-loading::after { + border-color: transparent transparent hsl(0deg, 0%, 4%) hsl(0deg, 0%, 4%) !important; +} +.button.is-white.is-outlined { + background-color: transparent; + border-color: hsl(0deg, 0%, 100%); + color: hsl(0deg, 0%, 100%); +} +.button.is-white.is-outlined:hover, .button.is-white.is-outlined.is-hovered, .button.is-white.is-outlined:focus, .button.is-white.is-outlined.is-focused { + background-color: hsl(0deg, 0%, 100%); + border-color: hsl(0deg, 0%, 100%); + color: hsl(0deg, 0%, 4%); +} +.button.is-white.is-outlined.is-loading::after { + border-color: transparent transparent hsl(0deg, 0%, 100%) hsl(0deg, 0%, 100%) !important; +} +.button.is-white.is-outlined.is-loading:hover::after, .button.is-white.is-outlined.is-loading.is-hovered::after, .button.is-white.is-outlined.is-loading:focus::after, .button.is-white.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent hsl(0deg, 0%, 4%) hsl(0deg, 0%, 4%) !important; +} +.button.is-white.is-outlined[disabled], fieldset[disabled] .button.is-white.is-outlined { + background-color: transparent; + border-color: hsl(0deg, 0%, 100%); + box-shadow: none; + color: hsl(0deg, 0%, 100%); +} +.button.is-white.is-inverted.is-outlined { + background-color: transparent; + border-color: hsl(0deg, 0%, 4%); + color: hsl(0deg, 0%, 4%); +} +.button.is-white.is-inverted.is-outlined:hover, .button.is-white.is-inverted.is-outlined.is-hovered, .button.is-white.is-inverted.is-outlined:focus, .button.is-white.is-inverted.is-outlined.is-focused { + background-color: hsl(0deg, 0%, 4%); + color: hsl(0deg, 0%, 100%); +} +.button.is-white.is-inverted.is-outlined.is-loading:hover::after, .button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-white.is-inverted.is-outlined.is-loading:focus::after, .button.is-white.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent hsl(0deg, 0%, 100%) hsl(0deg, 0%, 100%) !important; +} +.button.is-white.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-white.is-inverted.is-outlined { + background-color: transparent; + border-color: hsl(0deg, 0%, 4%); + box-shadow: none; + color: hsl(0deg, 0%, 4%); +} +.button.is-black { + background-color: hsl(0deg, 0%, 4%); + border-color: transparent; + color: hsl(0deg, 0%, 100%); +} +.button.is-black:hover, .button.is-black.is-hovered { + background-color: #040404; + border-color: transparent; + color: hsl(0deg, 0%, 100%); +} +.button.is-black:focus, .button.is-black.is-focused { + border-color: transparent; + color: hsl(0deg, 0%, 100%); +} +.button.is-black:focus:not(:active), .button.is-black.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); +} +.button.is-black:active, .button.is-black.is-active { + background-color: black; + border-color: transparent; + color: hsl(0deg, 0%, 100%); +} +.button.is-black[disabled], fieldset[disabled] .button.is-black { + background-color: hsl(0deg, 0%, 4%); + border-color: hsl(0deg, 0%, 4%); + box-shadow: none; +} +.button.is-black.is-inverted { + background-color: hsl(0deg, 0%, 100%); + color: hsl(0deg, 0%, 4%); +} +.button.is-black.is-inverted:hover, .button.is-black.is-inverted.is-hovered { + background-color: #f2f2f2; +} +.button.is-black.is-inverted[disabled], fieldset[disabled] .button.is-black.is-inverted { + background-color: hsl(0deg, 0%, 100%); + border-color: transparent; + box-shadow: none; + color: hsl(0deg, 0%, 4%); +} +.button.is-black.is-loading::after { + border-color: transparent transparent hsl(0deg, 0%, 100%) hsl(0deg, 0%, 100%) !important; +} +.button.is-black.is-outlined { + background-color: transparent; + border-color: hsl(0deg, 0%, 4%); + color: hsl(0deg, 0%, 4%); +} +.button.is-black.is-outlined:hover, .button.is-black.is-outlined.is-hovered, .button.is-black.is-outlined:focus, .button.is-black.is-outlined.is-focused { + background-color: hsl(0deg, 0%, 4%); + border-color: hsl(0deg, 0%, 4%); + color: hsl(0deg, 0%, 100%); +} +.button.is-black.is-outlined.is-loading::after { + border-color: transparent transparent hsl(0deg, 0%, 4%) hsl(0deg, 0%, 4%) !important; +} +.button.is-black.is-outlined.is-loading:hover::after, .button.is-black.is-outlined.is-loading.is-hovered::after, .button.is-black.is-outlined.is-loading:focus::after, .button.is-black.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent hsl(0deg, 0%, 100%) hsl(0deg, 0%, 100%) !important; +} +.button.is-black.is-outlined[disabled], fieldset[disabled] .button.is-black.is-outlined { + background-color: transparent; + border-color: hsl(0deg, 0%, 4%); + box-shadow: none; + color: hsl(0deg, 0%, 4%); +} +.button.is-black.is-inverted.is-outlined { + background-color: transparent; + border-color: hsl(0deg, 0%, 100%); + color: hsl(0deg, 0%, 100%); +} +.button.is-black.is-inverted.is-outlined:hover, .button.is-black.is-inverted.is-outlined.is-hovered, .button.is-black.is-inverted.is-outlined:focus, .button.is-black.is-inverted.is-outlined.is-focused { + background-color: hsl(0deg, 0%, 100%); + color: hsl(0deg, 0%, 4%); +} +.button.is-black.is-inverted.is-outlined.is-loading:hover::after, .button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-black.is-inverted.is-outlined.is-loading:focus::after, .button.is-black.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent hsl(0deg, 0%, 4%) hsl(0deg, 0%, 4%) !important; +} +.button.is-black.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-black.is-inverted.is-outlined { + background-color: transparent; + border-color: hsl(0deg, 0%, 100%); + box-shadow: none; + color: hsl(0deg, 0%, 100%); +} +.button.is-light { + background-color: hsl(0deg, 0%, 96%); + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} +.button.is-light:hover, .button.is-light.is-hovered { + background-color: #eeeeee; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} +.button.is-light:focus, .button.is-light.is-focused { + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} +.button.is-light:focus:not(:active), .button.is-light.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25); +} +.button.is-light:active, .button.is-light.is-active { + background-color: #e8e8e8; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} +.button.is-light[disabled], fieldset[disabled] .button.is-light { + background-color: hsl(0deg, 0%, 96%); + border-color: hsl(0deg, 0%, 96%); + box-shadow: none; +} +.button.is-light.is-inverted { + background-color: rgba(0, 0, 0, 0.7); + color: hsl(0deg, 0%, 96%); +} +.button.is-light.is-inverted:hover, .button.is-light.is-inverted.is-hovered { + background-color: rgba(0, 0, 0, 0.7); +} +.button.is-light.is-inverted[disabled], fieldset[disabled] .button.is-light.is-inverted { + background-color: rgba(0, 0, 0, 0.7); + border-color: transparent; + box-shadow: none; + color: hsl(0deg, 0%, 96%); +} +.button.is-light.is-loading::after { + border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important; +} +.button.is-light.is-outlined { + background-color: transparent; + border-color: hsl(0deg, 0%, 96%); + color: hsl(0deg, 0%, 96%); +} +.button.is-light.is-outlined:hover, .button.is-light.is-outlined.is-hovered, .button.is-light.is-outlined:focus, .button.is-light.is-outlined.is-focused { + background-color: hsl(0deg, 0%, 96%); + border-color: hsl(0deg, 0%, 96%); + color: rgba(0, 0, 0, 0.7); +} +.button.is-light.is-outlined.is-loading::after { + border-color: transparent transparent hsl(0deg, 0%, 96%) hsl(0deg, 0%, 96%) !important; +} +.button.is-light.is-outlined.is-loading:hover::after, .button.is-light.is-outlined.is-loading.is-hovered::after, .button.is-light.is-outlined.is-loading:focus::after, .button.is-light.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important; +} +.button.is-light.is-outlined[disabled], fieldset[disabled] .button.is-light.is-outlined { + background-color: transparent; + border-color: hsl(0deg, 0%, 96%); + box-shadow: none; + color: hsl(0deg, 0%, 96%); +} +.button.is-light.is-inverted.is-outlined { + background-color: transparent; + border-color: rgba(0, 0, 0, 0.7); + color: rgba(0, 0, 0, 0.7); +} +.button.is-light.is-inverted.is-outlined:hover, .button.is-light.is-inverted.is-outlined.is-hovered, .button.is-light.is-inverted.is-outlined:focus, .button.is-light.is-inverted.is-outlined.is-focused { + background-color: rgba(0, 0, 0, 0.7); + color: hsl(0deg, 0%, 96%); +} +.button.is-light.is-inverted.is-outlined.is-loading:hover::after, .button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-light.is-inverted.is-outlined.is-loading:focus::after, .button.is-light.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent hsl(0deg, 0%, 96%) hsl(0deg, 0%, 96%) !important; +} +.button.is-light.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-light.is-inverted.is-outlined { + background-color: transparent; + border-color: rgba(0, 0, 0, 0.7); + box-shadow: none; + color: rgba(0, 0, 0, 0.7); +} +.button.is-dark { + background-color: hsl(0deg, 0%, 21%); + border-color: transparent; + color: #fff; +} +.button.is-dark:hover, .button.is-dark.is-hovered { + background-color: #2f2f2f; + border-color: transparent; + color: #fff; +} +.button.is-dark:focus, .button.is-dark.is-focused { + border-color: transparent; + color: #fff; +} +.button.is-dark:focus:not(:active), .button.is-dark.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25); +} +.button.is-dark:active, .button.is-dark.is-active { + background-color: #292929; + border-color: transparent; + color: #fff; +} +.button.is-dark[disabled], fieldset[disabled] .button.is-dark { + background-color: hsl(0deg, 0%, 21%); + border-color: hsl(0deg, 0%, 21%); + box-shadow: none; +} +.button.is-dark.is-inverted { + background-color: #fff; + color: hsl(0deg, 0%, 21%); +} +.button.is-dark.is-inverted:hover, .button.is-dark.is-inverted.is-hovered { + background-color: #f2f2f2; +} +.button.is-dark.is-inverted[disabled], fieldset[disabled] .button.is-dark.is-inverted { + background-color: #fff; + border-color: transparent; + box-shadow: none; + color: hsl(0deg, 0%, 21%); +} +.button.is-dark.is-loading::after { + border-color: transparent transparent #fff #fff !important; +} +.button.is-dark.is-outlined { + background-color: transparent; + border-color: hsl(0deg, 0%, 21%); + color: hsl(0deg, 0%, 21%); +} +.button.is-dark.is-outlined:hover, .button.is-dark.is-outlined.is-hovered, .button.is-dark.is-outlined:focus, .button.is-dark.is-outlined.is-focused { + background-color: hsl(0deg, 0%, 21%); + border-color: hsl(0deg, 0%, 21%); + color: #fff; +} +.button.is-dark.is-outlined.is-loading::after { + border-color: transparent transparent hsl(0deg, 0%, 21%) hsl(0deg, 0%, 21%) !important; +} +.button.is-dark.is-outlined.is-loading:hover::after, .button.is-dark.is-outlined.is-loading.is-hovered::after, .button.is-dark.is-outlined.is-loading:focus::after, .button.is-dark.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #fff #fff !important; +} +.button.is-dark.is-outlined[disabled], fieldset[disabled] .button.is-dark.is-outlined { + background-color: transparent; + border-color: hsl(0deg, 0%, 21%); + box-shadow: none; + color: hsl(0deg, 0%, 21%); +} +.button.is-dark.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + color: #fff; +} +.button.is-dark.is-inverted.is-outlined:hover, .button.is-dark.is-inverted.is-outlined.is-hovered, .button.is-dark.is-inverted.is-outlined:focus, .button.is-dark.is-inverted.is-outlined.is-focused { + background-color: #fff; + color: hsl(0deg, 0%, 21%); +} +.button.is-dark.is-inverted.is-outlined.is-loading:hover::after, .button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-dark.is-inverted.is-outlined.is-loading:focus::after, .button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent hsl(0deg, 0%, 21%) hsl(0deg, 0%, 21%) !important; +} +.button.is-dark.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-dark.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + box-shadow: none; + color: #fff; +} +.button.is-primary { + background-color: hsl(171deg, 100%, 41%); + border-color: transparent; + color: #fff; +} +.button.is-primary:hover, .button.is-primary.is-hovered { + background-color: #00c4a7; + border-color: transparent; + color: #fff; +} +.button.is-primary:focus, .button.is-primary.is-focused { + border-color: transparent; + color: #fff; +} +.button.is-primary:focus:not(:active), .button.is-primary.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25); +} +.button.is-primary:active, .button.is-primary.is-active { + background-color: #00b89c; + border-color: transparent; + color: #fff; +} +.button.is-primary[disabled], fieldset[disabled] .button.is-primary { + background-color: hsl(171deg, 100%, 41%); + border-color: hsl(171deg, 100%, 41%); + box-shadow: none; +} +.button.is-primary.is-inverted { + background-color: #fff; + color: hsl(171deg, 100%, 41%); +} +.button.is-primary.is-inverted:hover, .button.is-primary.is-inverted.is-hovered { + background-color: #f2f2f2; +} +.button.is-primary.is-inverted[disabled], fieldset[disabled] .button.is-primary.is-inverted { + background-color: #fff; + border-color: transparent; + box-shadow: none; + color: hsl(171deg, 100%, 41%); +} +.button.is-primary.is-loading::after { + border-color: transparent transparent #fff #fff !important; +} +.button.is-primary.is-outlined { + background-color: transparent; + border-color: hsl(171deg, 100%, 41%); + color: hsl(171deg, 100%, 41%); +} +.button.is-primary.is-outlined:hover, .button.is-primary.is-outlined.is-hovered, .button.is-primary.is-outlined:focus, .button.is-primary.is-outlined.is-focused { + background-color: hsl(171deg, 100%, 41%); + border-color: hsl(171deg, 100%, 41%); + color: #fff; +} +.button.is-primary.is-outlined.is-loading::after { + border-color: transparent transparent hsl(171deg, 100%, 41%) hsl(171deg, 100%, 41%) !important; +} +.button.is-primary.is-outlined.is-loading:hover::after, .button.is-primary.is-outlined.is-loading.is-hovered::after, .button.is-primary.is-outlined.is-loading:focus::after, .button.is-primary.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #fff #fff !important; +} +.button.is-primary.is-outlined[disabled], fieldset[disabled] .button.is-primary.is-outlined { + background-color: transparent; + border-color: hsl(171deg, 100%, 41%); + box-shadow: none; + color: hsl(171deg, 100%, 41%); +} +.button.is-primary.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + color: #fff; +} +.button.is-primary.is-inverted.is-outlined:hover, .button.is-primary.is-inverted.is-outlined.is-hovered, .button.is-primary.is-inverted.is-outlined:focus, .button.is-primary.is-inverted.is-outlined.is-focused { + background-color: #fff; + color: hsl(171deg, 100%, 41%); +} +.button.is-primary.is-inverted.is-outlined.is-loading:hover::after, .button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-primary.is-inverted.is-outlined.is-loading:focus::after, .button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent hsl(171deg, 100%, 41%) hsl(171deg, 100%, 41%) !important; +} +.button.is-primary.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-primary.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + box-shadow: none; + color: #fff; +} +.button.is-primary.is-light { + background-color: #ebfffc; + color: #00947e; +} +.button.is-primary.is-light:hover, .button.is-primary.is-light.is-hovered { + background-color: #defffa; + border-color: transparent; + color: #00947e; +} +.button.is-primary.is-light:active, .button.is-primary.is-light.is-active { + background-color: #d1fff8; + border-color: transparent; + color: #00947e; +} +.button.is-link { + background-color: hsl(229deg, 53%, 53%); + border-color: transparent; + color: #fff; +} +.button.is-link:hover, .button.is-link.is-hovered { + background-color: #3e56c4; + border-color: transparent; + color: #fff; +} +.button.is-link:focus, .button.is-link.is-focused { + border-color: transparent; + color: #fff; +} +.button.is-link:focus:not(:active), .button.is-link.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(72, 95, 199, 0.25); +} +.button.is-link:active, .button.is-link.is-active { + background-color: #3a51bb; + border-color: transparent; + color: #fff; +} +.button.is-link[disabled], fieldset[disabled] .button.is-link { + background-color: hsl(229deg, 53%, 53%); + border-color: hsl(229deg, 53%, 53%); + box-shadow: none; +} +.button.is-link.is-inverted { + background-color: #fff; + color: hsl(229deg, 53%, 53%); +} +.button.is-link.is-inverted:hover, .button.is-link.is-inverted.is-hovered { + background-color: #f2f2f2; +} +.button.is-link.is-inverted[disabled], fieldset[disabled] .button.is-link.is-inverted { + background-color: #fff; + border-color: transparent; + box-shadow: none; + color: hsl(229deg, 53%, 53%); +} +.button.is-link.is-loading::after { + border-color: transparent transparent #fff #fff !important; +} +.button.is-link.is-outlined { + background-color: transparent; + border-color: hsl(229deg, 53%, 53%); + color: hsl(229deg, 53%, 53%); +} +.button.is-link.is-outlined:hover, .button.is-link.is-outlined.is-hovered, .button.is-link.is-outlined:focus, .button.is-link.is-outlined.is-focused { + background-color: hsl(229deg, 53%, 53%); + border-color: hsl(229deg, 53%, 53%); + color: #fff; +} +.button.is-link.is-outlined.is-loading::after { + border-color: transparent transparent hsl(229deg, 53%, 53%) hsl(229deg, 53%, 53%) !important; +} +.button.is-link.is-outlined.is-loading:hover::after, .button.is-link.is-outlined.is-loading.is-hovered::after, .button.is-link.is-outlined.is-loading:focus::after, .button.is-link.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #fff #fff !important; +} +.button.is-link.is-outlined[disabled], fieldset[disabled] .button.is-link.is-outlined { + background-color: transparent; + border-color: hsl(229deg, 53%, 53%); + box-shadow: none; + color: hsl(229deg, 53%, 53%); +} +.button.is-link.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + color: #fff; +} +.button.is-link.is-inverted.is-outlined:hover, .button.is-link.is-inverted.is-outlined.is-hovered, .button.is-link.is-inverted.is-outlined:focus, .button.is-link.is-inverted.is-outlined.is-focused { + background-color: #fff; + color: hsl(229deg, 53%, 53%); +} +.button.is-link.is-inverted.is-outlined.is-loading:hover::after, .button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-link.is-inverted.is-outlined.is-loading:focus::after, .button.is-link.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent hsl(229deg, 53%, 53%) hsl(229deg, 53%, 53%) !important; +} +.button.is-link.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-link.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + box-shadow: none; + color: #fff; +} +.button.is-link.is-light { + background-color: #eff1fa; + color: #3850b7; +} +.button.is-link.is-light:hover, .button.is-link.is-light.is-hovered { + background-color: #e6e9f7; + border-color: transparent; + color: #3850b7; +} +.button.is-link.is-light:active, .button.is-link.is-light.is-active { + background-color: #dce0f4; + border-color: transparent; + color: #3850b7; +} +.button.is-info { + background-color: hsl(207deg, 61%, 53%); + border-color: transparent; + color: #fff; +} +.button.is-info:hover, .button.is-info.is-hovered { + background-color: #3488ce; + border-color: transparent; + color: #fff; +} +.button.is-info:focus, .button.is-info.is-focused { + border-color: transparent; + color: #fff; +} +.button.is-info:focus:not(:active), .button.is-info.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(62, 142, 208, 0.25); +} +.button.is-info:active, .button.is-info.is-active { + background-color: #3082c5; + border-color: transparent; + color: #fff; +} +.button.is-info[disabled], fieldset[disabled] .button.is-info { + background-color: hsl(207deg, 61%, 53%); + border-color: hsl(207deg, 61%, 53%); + box-shadow: none; +} +.button.is-info.is-inverted { + background-color: #fff; + color: hsl(207deg, 61%, 53%); +} +.button.is-info.is-inverted:hover, .button.is-info.is-inverted.is-hovered { + background-color: #f2f2f2; +} +.button.is-info.is-inverted[disabled], fieldset[disabled] .button.is-info.is-inverted { + background-color: #fff; + border-color: transparent; + box-shadow: none; + color: hsl(207deg, 61%, 53%); +} +.button.is-info.is-loading::after { + border-color: transparent transparent #fff #fff !important; +} +.button.is-info.is-outlined { + background-color: transparent; + border-color: hsl(207deg, 61%, 53%); + color: hsl(207deg, 61%, 53%); +} +.button.is-info.is-outlined:hover, .button.is-info.is-outlined.is-hovered, .button.is-info.is-outlined:focus, .button.is-info.is-outlined.is-focused { + background-color: hsl(207deg, 61%, 53%); + border-color: hsl(207deg, 61%, 53%); + color: #fff; +} +.button.is-info.is-outlined.is-loading::after { + border-color: transparent transparent hsl(207deg, 61%, 53%) hsl(207deg, 61%, 53%) !important; +} +.button.is-info.is-outlined.is-loading:hover::after, .button.is-info.is-outlined.is-loading.is-hovered::after, .button.is-info.is-outlined.is-loading:focus::after, .button.is-info.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #fff #fff !important; +} +.button.is-info.is-outlined[disabled], fieldset[disabled] .button.is-info.is-outlined { + background-color: transparent; + border-color: hsl(207deg, 61%, 53%); + box-shadow: none; + color: hsl(207deg, 61%, 53%); +} +.button.is-info.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + color: #fff; +} +.button.is-info.is-inverted.is-outlined:hover, .button.is-info.is-inverted.is-outlined.is-hovered, .button.is-info.is-inverted.is-outlined:focus, .button.is-info.is-inverted.is-outlined.is-focused { + background-color: #fff; + color: hsl(207deg, 61%, 53%); +} +.button.is-info.is-inverted.is-outlined.is-loading:hover::after, .button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-info.is-inverted.is-outlined.is-loading:focus::after, .button.is-info.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent hsl(207deg, 61%, 53%) hsl(207deg, 61%, 53%) !important; +} +.button.is-info.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-info.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + box-shadow: none; + color: #fff; +} +.button.is-info.is-light { + background-color: #eff5fb; + color: #296fa8; +} +.button.is-info.is-light:hover, .button.is-info.is-light.is-hovered { + background-color: #e4eff9; + border-color: transparent; + color: #296fa8; +} +.button.is-info.is-light:active, .button.is-info.is-light.is-active { + background-color: #dae9f6; + border-color: transparent; + color: #296fa8; +} +.button.is-success { + background-color: hsl(153deg, 53%, 53%); + border-color: transparent; + color: #fff; +} +.button.is-success:hover, .button.is-success.is-hovered { + background-color: #3ec487; + border-color: transparent; + color: #fff; +} +.button.is-success:focus, .button.is-success.is-focused { + border-color: transparent; + color: #fff; +} +.button.is-success:focus:not(:active), .button.is-success.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(72, 199, 142, 0.25); +} +.button.is-success:active, .button.is-success.is-active { + background-color: #3abb81; + border-color: transparent; + color: #fff; +} +.button.is-success[disabled], fieldset[disabled] .button.is-success { + background-color: hsl(153deg, 53%, 53%); + border-color: hsl(153deg, 53%, 53%); + box-shadow: none; +} +.button.is-success.is-inverted { + background-color: #fff; + color: hsl(153deg, 53%, 53%); +} +.button.is-success.is-inverted:hover, .button.is-success.is-inverted.is-hovered { + background-color: #f2f2f2; +} +.button.is-success.is-inverted[disabled], fieldset[disabled] .button.is-success.is-inverted { + background-color: #fff; + border-color: transparent; + box-shadow: none; + color: hsl(153deg, 53%, 53%); +} +.button.is-success.is-loading::after { + border-color: transparent transparent #fff #fff !important; +} +.button.is-success.is-outlined { + background-color: transparent; + border-color: hsl(153deg, 53%, 53%); + color: hsl(153deg, 53%, 53%); +} +.button.is-success.is-outlined:hover, .button.is-success.is-outlined.is-hovered, .button.is-success.is-outlined:focus, .button.is-success.is-outlined.is-focused { + background-color: hsl(153deg, 53%, 53%); + border-color: hsl(153deg, 53%, 53%); + color: #fff; +} +.button.is-success.is-outlined.is-loading::after { + border-color: transparent transparent hsl(153deg, 53%, 53%) hsl(153deg, 53%, 53%) !important; +} +.button.is-success.is-outlined.is-loading:hover::after, .button.is-success.is-outlined.is-loading.is-hovered::after, .button.is-success.is-outlined.is-loading:focus::after, .button.is-success.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #fff #fff !important; +} +.button.is-success.is-outlined[disabled], fieldset[disabled] .button.is-success.is-outlined { + background-color: transparent; + border-color: hsl(153deg, 53%, 53%); + box-shadow: none; + color: hsl(153deg, 53%, 53%); +} +.button.is-success.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + color: #fff; +} +.button.is-success.is-inverted.is-outlined:hover, .button.is-success.is-inverted.is-outlined.is-hovered, .button.is-success.is-inverted.is-outlined:focus, .button.is-success.is-inverted.is-outlined.is-focused { + background-color: #fff; + color: hsl(153deg, 53%, 53%); +} +.button.is-success.is-inverted.is-outlined.is-loading:hover::after, .button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-success.is-inverted.is-outlined.is-loading:focus::after, .button.is-success.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent hsl(153deg, 53%, 53%) hsl(153deg, 53%, 53%) !important; +} +.button.is-success.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-success.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + box-shadow: none; + color: #fff; +} +.button.is-success.is-light { + background-color: #effaf5; + color: #257953; +} +.button.is-success.is-light:hover, .button.is-success.is-light.is-hovered { + background-color: #e6f7ef; + border-color: transparent; + color: #257953; +} +.button.is-success.is-light:active, .button.is-success.is-light.is-active { + background-color: #dcf4e9; + border-color: transparent; + color: #257953; +} +.button.is-warning { + background-color: hsl(44deg, 100%, 77%); + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} +.button.is-warning:hover, .button.is-warning.is-hovered { + background-color: #ffdc7d; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} +.button.is-warning:focus, .button.is-warning.is-focused { + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} +.button.is-warning:focus:not(:active), .button.is-warning.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(255, 224, 138, 0.25); +} +.button.is-warning:active, .button.is-warning.is-active { + background-color: #ffd970; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} +.button.is-warning[disabled], fieldset[disabled] .button.is-warning { + background-color: hsl(44deg, 100%, 77%); + border-color: hsl(44deg, 100%, 77%); + box-shadow: none; +} +.button.is-warning.is-inverted { + background-color: rgba(0, 0, 0, 0.7); + color: hsl(44deg, 100%, 77%); +} +.button.is-warning.is-inverted:hover, .button.is-warning.is-inverted.is-hovered { + background-color: rgba(0, 0, 0, 0.7); +} +.button.is-warning.is-inverted[disabled], fieldset[disabled] .button.is-warning.is-inverted { + background-color: rgba(0, 0, 0, 0.7); + border-color: transparent; + box-shadow: none; + color: hsl(44deg, 100%, 77%); +} +.button.is-warning.is-loading::after { + border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important; +} +.button.is-warning.is-outlined { + background-color: transparent; + border-color: hsl(44deg, 100%, 77%); + color: hsl(44deg, 100%, 77%); +} +.button.is-warning.is-outlined:hover, .button.is-warning.is-outlined.is-hovered, .button.is-warning.is-outlined:focus, .button.is-warning.is-outlined.is-focused { + background-color: hsl(44deg, 100%, 77%); + border-color: hsl(44deg, 100%, 77%); + color: rgba(0, 0, 0, 0.7); +} +.button.is-warning.is-outlined.is-loading::after { + border-color: transparent transparent hsl(44deg, 100%, 77%) hsl(44deg, 100%, 77%) !important; +} +.button.is-warning.is-outlined.is-loading:hover::after, .button.is-warning.is-outlined.is-loading.is-hovered::after, .button.is-warning.is-outlined.is-loading:focus::after, .button.is-warning.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important; +} +.button.is-warning.is-outlined[disabled], fieldset[disabled] .button.is-warning.is-outlined { + background-color: transparent; + border-color: hsl(44deg, 100%, 77%); + box-shadow: none; + color: hsl(44deg, 100%, 77%); +} +.button.is-warning.is-inverted.is-outlined { + background-color: transparent; + border-color: rgba(0, 0, 0, 0.7); + color: rgba(0, 0, 0, 0.7); +} +.button.is-warning.is-inverted.is-outlined:hover, .button.is-warning.is-inverted.is-outlined.is-hovered, .button.is-warning.is-inverted.is-outlined:focus, .button.is-warning.is-inverted.is-outlined.is-focused { + background-color: rgba(0, 0, 0, 0.7); + color: hsl(44deg, 100%, 77%); +} +.button.is-warning.is-inverted.is-outlined.is-loading:hover::after, .button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-warning.is-inverted.is-outlined.is-loading:focus::after, .button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent hsl(44deg, 100%, 77%) hsl(44deg, 100%, 77%) !important; +} +.button.is-warning.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-warning.is-inverted.is-outlined { + background-color: transparent; + border-color: rgba(0, 0, 0, 0.7); + box-shadow: none; + color: rgba(0, 0, 0, 0.7); +} +.button.is-warning.is-light { + background-color: #fffaeb; + color: #946c00; +} +.button.is-warning.is-light:hover, .button.is-warning.is-light.is-hovered { + background-color: #fff6de; + border-color: transparent; + color: #946c00; +} +.button.is-warning.is-light:active, .button.is-warning.is-light.is-active { + background-color: #fff3d1; + border-color: transparent; + color: #946c00; +} +.button.is-danger { + background-color: hsl(348deg, 86%, 61%); + border-color: transparent; + color: #fff; +} +.button.is-danger:hover, .button.is-danger.is-hovered { + background-color: #f03a5f; + border-color: transparent; + color: #fff; +} +.button.is-danger:focus, .button.is-danger.is-focused { + border-color: transparent; + color: #fff; +} +.button.is-danger:focus:not(:active), .button.is-danger.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(241, 70, 104, 0.25); +} +.button.is-danger:active, .button.is-danger.is-active { + background-color: #ef2e55; + border-color: transparent; + color: #fff; +} +.button.is-danger[disabled], fieldset[disabled] .button.is-danger { + background-color: hsl(348deg, 86%, 61%); + border-color: hsl(348deg, 86%, 61%); + box-shadow: none; +} +.button.is-danger.is-inverted { + background-color: #fff; + color: hsl(348deg, 86%, 61%); +} +.button.is-danger.is-inverted:hover, .button.is-danger.is-inverted.is-hovered { + background-color: #f2f2f2; +} +.button.is-danger.is-inverted[disabled], fieldset[disabled] .button.is-danger.is-inverted { + background-color: #fff; + border-color: transparent; + box-shadow: none; + color: hsl(348deg, 86%, 61%); +} +.button.is-danger.is-loading::after { + border-color: transparent transparent #fff #fff !important; +} +.button.is-danger.is-outlined { + background-color: transparent; + border-color: hsl(348deg, 86%, 61%); + color: hsl(348deg, 86%, 61%); +} +.button.is-danger.is-outlined:hover, .button.is-danger.is-outlined.is-hovered, .button.is-danger.is-outlined:focus, .button.is-danger.is-outlined.is-focused { + background-color: hsl(348deg, 86%, 61%); + border-color: hsl(348deg, 86%, 61%); + color: #fff; +} +.button.is-danger.is-outlined.is-loading::after { + border-color: transparent transparent hsl(348deg, 86%, 61%) hsl(348deg, 86%, 61%) !important; +} +.button.is-danger.is-outlined.is-loading:hover::after, .button.is-danger.is-outlined.is-loading.is-hovered::after, .button.is-danger.is-outlined.is-loading:focus::after, .button.is-danger.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #fff #fff !important; +} +.button.is-danger.is-outlined[disabled], fieldset[disabled] .button.is-danger.is-outlined { + background-color: transparent; + border-color: hsl(348deg, 86%, 61%); + box-shadow: none; + color: hsl(348deg, 86%, 61%); +} +.button.is-danger.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + color: #fff; +} +.button.is-danger.is-inverted.is-outlined:hover, .button.is-danger.is-inverted.is-outlined.is-hovered, .button.is-danger.is-inverted.is-outlined:focus, .button.is-danger.is-inverted.is-outlined.is-focused { + background-color: #fff; + color: hsl(348deg, 86%, 61%); +} +.button.is-danger.is-inverted.is-outlined.is-loading:hover::after, .button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-danger.is-inverted.is-outlined.is-loading:focus::after, .button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent hsl(348deg, 86%, 61%) hsl(348deg, 86%, 61%) !important; +} +.button.is-danger.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-danger.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + box-shadow: none; + color: #fff; +} +.button.is-danger.is-light { + background-color: #feecf0; + color: #cc0f35; +} +.button.is-danger.is-light:hover, .button.is-danger.is-light.is-hovered { + background-color: #fde0e6; + border-color: transparent; + color: #cc0f35; +} +.button.is-danger.is-light:active, .button.is-danger.is-light.is-active { + background-color: #fcd4dc; + border-color: transparent; + color: #cc0f35; +} +.button.is-small { + font-size: 0.75rem; +} +.button.is-small:not(.is-rounded) { + border-radius: 2px; +} +.button.is-normal { + font-size: 1rem; +} +.button.is-medium { + font-size: 1.25rem; +} +.button.is-large { + font-size: 1.5rem; +} +.button[disabled], fieldset[disabled] .button { + background-color: hsl(0deg, 0%, 100%); + border-color: hsl(0deg, 0%, 86%); + box-shadow: none; + opacity: 0.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 * 0.5)); + top: calc(50% - (1em * 0.5)); + position: absolute !important; +} +.button.is-static { + background-color: hsl(0deg, 0%, 96%); + border-color: hsl(0deg, 0%, 86%); + color: hsl(0deg, 0%, 48%); + box-shadow: none; + pointer-events: none; +} +.button.is-rounded { + border-radius: 9999px; + padding-left: calc(1em + 0.25em); + padding-right: calc(1em + 0.25em); +} + +.buttons { + align-items: center; + display: flex; + flex-wrap: wrap; + justify-content: flex-start; +} +.buttons .button { + margin-bottom: 0.5rem; +} +.buttons .button:not(:last-child):not(.is-fullwidth) { + margin-right: 0.5rem; +} +.buttons:last-child { + margin-bottom: -0.5rem; +} +.buttons:not(:last-child) { + margin-bottom: 1rem; +} +.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large) { + font-size: 0.75rem; +} +.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large):not(.is-rounded) { + border-radius: 2px; +} +.buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large) { + font-size: 1.25rem; +} +.buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium) { + font-size: 1.5rem; +} +.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:hover, .buttons.has-addons .button.is-hovered { + z-index: 2; +} +.buttons.has-addons .button:focus, .buttons.has-addons .button.is-focused, .buttons.has-addons .button:active, .buttons.has-addons .button.is-active, .buttons.has-addons .button.is-selected { + z-index: 3; +} +.buttons.has-addons .button:focus:hover, .buttons.has-addons .button.is-focused:hover, .buttons.has-addons .button:active:hover, .buttons.has-addons .button.is-active:hover, .buttons.has-addons .button.is-selected:hover { + z-index: 4; +} +.buttons.has-addons .button.is-expanded { + flex-grow: 1; + flex-shrink: 1; +} +.buttons.is-centered { + justify-content: center; +} +.buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth) { + margin-left: 0.25rem; + margin-right: 0.25rem; +} +.buttons.is-right { + justify-content: flex-end; +} +.buttons.is-right:not(.has-addons) .button:not(.is-fullwidth) { + margin-left: 0.25rem; + margin-right: 0.25rem; +} + +@media screen and (max-width: 768px) { + .button.is-responsive.is-small { + font-size: 0.5625rem; + } + .button.is-responsive, + .button.is-responsive.is-normal { + font-size: 0.65625rem; + } + .button.is-responsive.is-medium { + font-size: 0.75rem; + } + .button.is-responsive.is-large { + font-size: 1rem; + } +} +@media screen and (min-width: 769px) and (max-width: 1023px) { + .button.is-responsive.is-small { + font-size: 0.65625rem; + } + .button.is-responsive, + .button.is-responsive.is-normal { + font-size: 0.75rem; + } + .button.is-responsive.is-medium { + font-size: 1rem; + } + .button.is-responsive.is-large { + font-size: 1.25rem; + } +} +.content li + li { + margin-top: 0.25em; +} +.content p:not(:last-child), +.content dl:not(:last-child), +.content ol:not(:last-child), +.content ul:not(:last-child), +.content blockquote:not(:last-child), +.content pre:not(:last-child), +.content table:not(:last-child) { + margin-bottom: 1em; +} +.content h1, +.content h2, +.content h3, +.content h4, +.content h5, +.content h6 { + color: hsl(0deg, 0%, 21%); + font-weight: 600; + line-height: 1.125; +} +.content h1 { + font-size: 2em; + margin-bottom: 0.5em; +} +.content h1:not(:first-child) { + margin-top: 1em; +} +.content h2 { + font-size: 1.75em; + margin-bottom: 0.5714em; +} +.content h2:not(:first-child) { + margin-top: 1.1428em; +} +.content h3 { + font-size: 1.5em; + margin-bottom: 0.6666em; +} +.content h3:not(:first-child) { + margin-top: 1.3333em; +} +.content h4 { + font-size: 1.25em; + margin-bottom: 0.8em; +} +.content h5 { + font-size: 1.125em; + margin-bottom: 0.8888em; +} +.content h6 { + font-size: 1em; + margin-bottom: 1em; +} +.content blockquote { + background-color: hsl(0deg, 0%, 96%); + border-left: 5px solid hsl(0deg, 0%, 86%); + padding: 1.25em 1.5em; +} +.content ol { + list-style-position: outside; + margin-left: 2em; + margin-top: 1em; +} +.content ol:not([type]) { + list-style-type: decimal; +} +.content ol:not([type]).is-lower-alpha { + list-style-type: lower-alpha; +} +.content ol:not([type]).is-lower-roman { + list-style-type: lower-roman; +} +.content ol:not([type]).is-upper-alpha { + list-style-type: upper-alpha; +} +.content ol:not([type]).is-upper-roman { + list-style-type: upper-roman; +} +.content ul { + list-style: disc outside; + margin-left: 2em; + margin-top: 1em; +} +.content ul ul { + list-style-type: circle; + margin-top: 0.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 sup, +.content sub { + font-size: 75%; +} +.content table { + width: 100%; +} +.content table td, +.content table th { + border: 1px solid hsl(0deg, 0%, 86%); + border-width: 0 0 1px; + padding: 0.5em 0.75em; + vertical-align: top; +} +.content table th { + color: hsl(0deg, 0%, 21%); +} +.content table th:not([align]) { + text-align: inherit; +} +.content table thead td, +.content table thead th { + border-width: 0 0 2px; + color: hsl(0deg, 0%, 21%); +} +.content table tfoot td, +.content table tfoot th { + border-width: 2px 0 0; + color: hsl(0deg, 0%, 21%); +} +.content table tbody tr:last-child td, +.content table tbody tr:last-child th { + border-bottom-width: 0; +} +.content .tabs li + li { + margin-top: 0; +} +.content.is-small { + font-size: 0.75rem; +} +.content.is-normal { + font-size: 1rem; +} +.content.is-medium { + font-size: 1.25rem; +} +.content.is-large { + 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; +} + +.icon-text { + align-items: flex-start; + color: inherit; + display: inline-flex; + flex-wrap: wrap; + line-height: 1.5rem; + vertical-align: top; +} +.icon-text .icon { + flex-grow: 0; + flex-shrink: 0; +} +.icon-text .icon:not(:last-child) { + margin-right: 0.25em; +} +.icon-text .icon:not(:first-child) { + margin-left: 0.25em; +} + +div.icon-text { + display: flex; +} + +.image { + display: block; + position: relative; +} +.image img { + display: block; + height: auto; + width: 100%; +} +.image img.is-rounded { + border-radius: 9999px; +} +.image.is-fullwidth { + width: 100%; +} +.image.is-square img, +.image.is-square .has-ratio, .image.is-1by1 img, +.image.is-1by1 .has-ratio, .image.is-5by4 img, +.image.is-5by4 .has-ratio, .image.is-4by3 img, +.image.is-4by3 .has-ratio, .image.is-3by2 img, +.image.is-3by2 .has-ratio, .image.is-5by3 img, +.image.is-5by3 .has-ratio, .image.is-16by9 img, +.image.is-16by9 .has-ratio, .image.is-2by1 img, +.image.is-2by1 .has-ratio, .image.is-3by1 img, +.image.is-3by1 .has-ratio, .image.is-4by5 img, +.image.is-4by5 .has-ratio, .image.is-3by4 img, +.image.is-3by4 .has-ratio, .image.is-2by3 img, +.image.is-2by3 .has-ratio, .image.is-3by5 img, +.image.is-3by5 .has-ratio, .image.is-9by16 img, +.image.is-9by16 .has-ratio, .image.is-1by2 img, +.image.is-1by2 .has-ratio, .image.is-1by3 img, +.image.is-1by3 .has-ratio { + height: 100%; + width: 100%; +} +.image.is-square, .image.is-1by1 { + 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: hsl(0deg, 0%, 96%); + border-radius: 4px; + position: relative; + padding: 1.25rem 2.5rem 1.25rem 1.5rem; +} +.notification a:not(.button):not(.dropdown-item) { + color: currentColor; + text-decoration: underline; +} +.notification strong { + color: currentColor; +} +.notification code, +.notification pre { + background: hsl(0deg, 0%, 100%); +} +.notification pre code { + background: transparent; +} +.notification > .delete { + right: 0.5rem; + position: absolute; + top: 0.5rem; +} +.notification .title, +.notification .subtitle, +.notification .content { + color: currentColor; +} +.notification.is-white { + background-color: hsl(0deg, 0%, 100%); + color: hsl(0deg, 0%, 4%); +} +.notification.is-black { + background-color: hsl(0deg, 0%, 4%); + color: hsl(0deg, 0%, 100%); +} +.notification.is-light { + background-color: hsl(0deg, 0%, 96%); + color: rgba(0, 0, 0, 0.7); +} +.notification.is-dark { + background-color: hsl(0deg, 0%, 21%); + color: #fff; +} +.notification.is-primary { + background-color: hsl(171deg, 100%, 41%); + color: #fff; +} +.notification.is-primary.is-light { + background-color: #ebfffc; + color: #00947e; +} +.notification.is-link { + background-color: hsl(229deg, 53%, 53%); + color: #fff; +} +.notification.is-link.is-light { + background-color: #eff1fa; + color: #3850b7; +} +.notification.is-info { + background-color: hsl(207deg, 61%, 53%); + color: #fff; +} +.notification.is-info.is-light { + background-color: #eff5fb; + color: #296fa8; +} +.notification.is-success { + background-color: hsl(153deg, 53%, 53%); + color: #fff; +} +.notification.is-success.is-light { + background-color: #effaf5; + color: #257953; +} +.notification.is-warning { + background-color: hsl(44deg, 100%, 77%); + color: rgba(0, 0, 0, 0.7); +} +.notification.is-warning.is-light { + background-color: #fffaeb; + color: #946c00; +} +.notification.is-danger { + background-color: hsl(348deg, 86%, 61%); + color: #fff; +} +.notification.is-danger.is-light { + background-color: #feecf0; + color: #cc0f35; +} + +.progress { + -moz-appearance: none; + -webkit-appearance: none; + border: none; + border-radius: 9999px; + display: block; + height: 1rem; + overflow: hidden; + padding: 0; + width: 100%; +} +.progress::-webkit-progress-bar { + background-color: hsl(0deg, 0%, 93%); +} +.progress::-webkit-progress-value { + background-color: hsl(0deg, 0%, 29%); +} +.progress::-moz-progress-bar { + background-color: hsl(0deg, 0%, 29%); +} +.progress::-ms-fill { + background-color: hsl(0deg, 0%, 29%); + border: none; +} +.progress.is-white::-webkit-progress-value { + background-color: hsl(0deg, 0%, 100%); +} +.progress.is-white::-moz-progress-bar { + background-color: hsl(0deg, 0%, 100%); +} +.progress.is-white::-ms-fill { + background-color: hsl(0deg, 0%, 100%); +} +.progress.is-white:indeterminate { + background-image: linear-gradient(to right, hsl(0deg, 0%, 100%) 30%, hsl(0deg, 0%, 93%) 30%); +} +.progress.is-black::-webkit-progress-value { + background-color: hsl(0deg, 0%, 4%); +} +.progress.is-black::-moz-progress-bar { + background-color: hsl(0deg, 0%, 4%); +} +.progress.is-black::-ms-fill { + background-color: hsl(0deg, 0%, 4%); +} +.progress.is-black:indeterminate { + background-image: linear-gradient(to right, hsl(0deg, 0%, 4%) 30%, hsl(0deg, 0%, 93%) 30%); +} +.progress.is-light::-webkit-progress-value { + background-color: hsl(0deg, 0%, 96%); +} +.progress.is-light::-moz-progress-bar { + background-color: hsl(0deg, 0%, 96%); +} +.progress.is-light::-ms-fill { + background-color: hsl(0deg, 0%, 96%); +} +.progress.is-light:indeterminate { + background-image: linear-gradient(to right, hsl(0deg, 0%, 96%) 30%, hsl(0deg, 0%, 93%) 30%); +} +.progress.is-dark::-webkit-progress-value { + background-color: hsl(0deg, 0%, 21%); +} +.progress.is-dark::-moz-progress-bar { + background-color: hsl(0deg, 0%, 21%); +} +.progress.is-dark::-ms-fill { + background-color: hsl(0deg, 0%, 21%); +} +.progress.is-dark:indeterminate { + background-image: linear-gradient(to right, hsl(0deg, 0%, 21%) 30%, hsl(0deg, 0%, 93%) 30%); +} +.progress.is-primary::-webkit-progress-value { + background-color: hsl(171deg, 100%, 41%); +} +.progress.is-primary::-moz-progress-bar { + background-color: hsl(171deg, 100%, 41%); +} +.progress.is-primary::-ms-fill { + background-color: hsl(171deg, 100%, 41%); +} +.progress.is-primary:indeterminate { + background-image: linear-gradient(to right, hsl(171deg, 100%, 41%) 30%, hsl(0deg, 0%, 93%) 30%); +} +.progress.is-link::-webkit-progress-value { + background-color: hsl(229deg, 53%, 53%); +} +.progress.is-link::-moz-progress-bar { + background-color: hsl(229deg, 53%, 53%); +} +.progress.is-link::-ms-fill { + background-color: hsl(229deg, 53%, 53%); +} +.progress.is-link:indeterminate { + background-image: linear-gradient(to right, hsl(229deg, 53%, 53%) 30%, hsl(0deg, 0%, 93%) 30%); +} +.progress.is-info::-webkit-progress-value { + background-color: hsl(207deg, 61%, 53%); +} +.progress.is-info::-moz-progress-bar { + background-color: hsl(207deg, 61%, 53%); +} +.progress.is-info::-ms-fill { + background-color: hsl(207deg, 61%, 53%); +} +.progress.is-info:indeterminate { + background-image: linear-gradient(to right, hsl(207deg, 61%, 53%) 30%, hsl(0deg, 0%, 93%) 30%); +} +.progress.is-success::-webkit-progress-value { + background-color: hsl(153deg, 53%, 53%); +} +.progress.is-success::-moz-progress-bar { + background-color: hsl(153deg, 53%, 53%); +} +.progress.is-success::-ms-fill { + background-color: hsl(153deg, 53%, 53%); +} +.progress.is-success:indeterminate { + background-image: linear-gradient(to right, hsl(153deg, 53%, 53%) 30%, hsl(0deg, 0%, 93%) 30%); +} +.progress.is-warning::-webkit-progress-value { + background-color: hsl(44deg, 100%, 77%); +} +.progress.is-warning::-moz-progress-bar { + background-color: hsl(44deg, 100%, 77%); +} +.progress.is-warning::-ms-fill { + background-color: hsl(44deg, 100%, 77%); +} +.progress.is-warning:indeterminate { + background-image: linear-gradient(to right, hsl(44deg, 100%, 77%) 30%, hsl(0deg, 0%, 93%) 30%); +} +.progress.is-danger::-webkit-progress-value { + background-color: hsl(348deg, 86%, 61%); +} +.progress.is-danger::-moz-progress-bar { + background-color: hsl(348deg, 86%, 61%); +} +.progress.is-danger::-ms-fill { + background-color: hsl(348deg, 86%, 61%); +} +.progress.is-danger:indeterminate { + background-image: linear-gradient(to right, hsl(348deg, 86%, 61%) 30%, hsl(0deg, 0%, 93%) 30%); +} +.progress:indeterminate { + animation-duration: 1.5s; + animation-iteration-count: infinite; + animation-name: moveIndeterminate; + animation-timing-function: linear; + background-color: hsl(0deg, 0%, 93%); + background-image: linear-gradient(to right, hsl(0deg, 0%, 29%) 30%, hsl(0deg, 0%, 93%) 30%); + background-position: top left; + background-repeat: no-repeat; + background-size: 150% 150%; +} +.progress:indeterminate::-webkit-progress-bar { + background-color: transparent; +} +.progress:indeterminate::-moz-progress-bar { + background-color: transparent; +} +.progress:indeterminate::-ms-fill { + animation-name: none; +} +.progress.is-small { + height: 0.75rem; +} +.progress.is-medium { + height: 1.25rem; +} +.progress.is-large { + height: 1.5rem; +} + +@keyframes moveIndeterminate { + from { + background-position: 200% 0; + } + to { + background-position: -200% 0; + } +} +.tags { + align-items: center; + display: flex; + flex-wrap: wrap; + justify-content: flex-start; +} +.tags .tag { + margin-bottom: 0.5rem; +} +.tags .tag:not(:last-child) { + margin-right: 0.5rem; +} +.tags:last-child { + margin-bottom: -0.5rem; +} +.tags:not(:last-child) { + margin-bottom: 1rem; +} +.tags.are-medium .tag:not(.is-normal):not(.is-large) { + font-size: 1rem; +} +.tags.are-large .tag:not(.is-normal):not(.is-medium) { + font-size: 1.25rem; +} +.tags.is-centered { + justify-content: center; +} +.tags.is-centered .tag { + margin-right: 0.25rem; + margin-left: 0.25rem; +} +.tags.is-right { + justify-content: flex-end; +} +.tags.is-right .tag:not(:first-child) { + margin-left: 0.5rem; +} +.tags.is-right .tag:not(:last-child) { + margin-right: 0; +} +.tags.has-addons .tag { + margin-right: 0; +} +.tags.has-addons .tag:not(:first-child) { + margin-left: 0; + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} +.tags.has-addons .tag:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.tag:not(body) { + align-items: center; + background-color: hsl(0deg, 0%, 96%); + border-radius: 4px; + color: hsl(0deg, 0%, 29%); + display: inline-flex; + font-size: 0.75rem; + height: 2em; + justify-content: center; + line-height: 1.5; + padding-left: 0.75em; + padding-right: 0.75em; + white-space: nowrap; +} +.tag:not(body) .delete { + margin-left: 0.25rem; + margin-right: -0.375rem; +} +.tag:not(body).is-white { + background-color: hsl(0deg, 0%, 100%); + color: hsl(0deg, 0%, 4%); +} +.tag:not(body).is-black { + background-color: hsl(0deg, 0%, 4%); + color: hsl(0deg, 0%, 100%); +} +.tag:not(body).is-light { + background-color: hsl(0deg, 0%, 96%); + color: rgba(0, 0, 0, 0.7); +} +.tag:not(body).is-dark { + background-color: hsl(0deg, 0%, 21%); + color: #fff; +} +.tag:not(body).is-primary { + background-color: hsl(171deg, 100%, 41%); + color: #fff; +} +.tag:not(body).is-primary.is-light { + background-color: #ebfffc; + color: #00947e; +} +.tag:not(body).is-link { + background-color: hsl(229deg, 53%, 53%); + color: #fff; +} +.tag:not(body).is-link.is-light { + background-color: #eff1fa; + color: #3850b7; +} +.tag:not(body).is-info { + background-color: hsl(207deg, 61%, 53%); + color: #fff; +} +.tag:not(body).is-info.is-light { + background-color: #eff5fb; + color: #296fa8; +} +.tag:not(body).is-success { + background-color: hsl(153deg, 53%, 53%); + color: #fff; +} +.tag:not(body).is-success.is-light { + background-color: #effaf5; + color: #257953; +} +.tag:not(body).is-warning { + background-color: hsl(44deg, 100%, 77%); + color: rgba(0, 0, 0, 0.7); +} +.tag:not(body).is-warning.is-light { + background-color: #fffaeb; + color: #946c00; +} +.tag:not(body).is-danger { + background-color: hsl(348deg, 86%, 61%); + color: #fff; +} +.tag:not(body).is-danger.is-light { + background-color: #feecf0; + color: #cc0f35; +} +.tag:not(body).is-normal { + font-size: 0.75rem; +} +.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: -0.375em; + margin-right: 0.1875em; +} +.tag:not(body) .icon:last-child:not(:first-child) { + margin-left: 0.1875em; + margin-right: -0.375em; +} +.tag:not(body) .icon:first-child:last-child { + margin-left: -0.375em; + margin-right: -0.375em; +} +.tag:not(body).is-delete { + margin-left: 1px; + padding: 0; + position: relative; + width: 2em; +} +.tag:not(body).is-delete::before, .tag:not(body).is-delete::after { + background-color: currentColor; + content: ""; + display: block; + left: 50%; + position: absolute; + top: 50%; + transform: translateX(-50%) translateY(-50%) rotate(45deg); + 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:hover, .tag:not(body).is-delete:focus { + background-color: #e8e8e8; +} +.tag:not(body).is-delete:active { + background-color: #dbdbdb; +} +.tag:not(body).is-rounded { + border-radius: 9999px; +} + +a.tag:hover { + text-decoration: underline; +} + +.heading { + display: block; + font-size: 11px; + letter-spacing: 1px; + margin-bottom: 5px; + text-transform: uppercase; +} + +.number { + align-items: center; + background-color: hsl(0deg, 0%, 96%); + border-radius: 9999px; + display: inline-flex; + font-size: 1.25rem; + height: 2em; + justify-content: center; + margin-right: 1.5rem; + min-width: 2.5em; + padding: 0.25rem 0.5rem; + text-align: center; + vertical-align: top; +} + +/* Bulma Form */ +.select select, .textarea, .input { + background-color: hsl(0deg, 0%, 100%); + border-color: hsl(0deg, 0%, 86%); + border-radius: 4px; +} +.select select::-moz-placeholder, .textarea::-moz-placeholder, .input::-moz-placeholder { + color: var(--placeholder-text-color); +} +.select select::-webkit-input-placeholder, .textarea::-webkit-input-placeholder, .input::-webkit-input-placeholder { + color: var(--placeholder-text-color); +} +.select select:-moz-placeholder, .textarea:-moz-placeholder, .input:-moz-placeholder { + color: var(--placeholder-text-color); +} +.select select:-ms-input-placeholder, .textarea:-ms-input-placeholder, .input:-ms-input-placeholder { + color: var(--placeholder-text-color); +} +.select select:hover, .textarea:hover, .input:hover, .select select.is-hovered, .is-hovered.textarea, .is-hovered.input { + border-color: hsl(0deg, 0%, 71%); +} +.select select:focus, .textarea:focus, .input:focus, .select select.is-focused, .is-focused.textarea, .is-focused.input, .select select:active, .textarea:active, .input:active, .select select.is-active, .is-active.textarea, .is-active.input { + border-color: hsl(229deg, 53%, 53%); + box-shadow: 0 0 0 0.125em rgba(72, 95, 199, 0.25); +} +.select select[disabled], [disabled].textarea, [disabled].input, fieldset[disabled] .select select, .select fieldset[disabled] select, fieldset[disabled] .textarea, fieldset[disabled] .input { + background-color: hsl(0deg, 0%, 96%); + border-color: hsl(0deg, 0%, 96%); + box-shadow: none; + color: var(--placeholder-text-color); +} +.select select[disabled]::-moz-placeholder, [disabled].textarea::-moz-placeholder, [disabled].input::-moz-placeholder, fieldset[disabled] .select select::-moz-placeholder, .select fieldset[disabled] select::-moz-placeholder, fieldset[disabled] .textarea::-moz-placeholder, fieldset[disabled] .input::-moz-placeholder { + color: var(--placeholder-text-color); +} +.select select[disabled]::-webkit-input-placeholder, [disabled].textarea::-webkit-input-placeholder, [disabled].input::-webkit-input-placeholder, fieldset[disabled] .select select::-webkit-input-placeholder, .select fieldset[disabled] select::-webkit-input-placeholder, fieldset[disabled] .textarea::-webkit-input-placeholder, fieldset[disabled] .input::-webkit-input-placeholder { + color: var(--placeholder-text-color); +} +.select select[disabled]:-moz-placeholder, [disabled].textarea:-moz-placeholder, [disabled].input:-moz-placeholder, fieldset[disabled] .select select:-moz-placeholder, .select fieldset[disabled] select:-moz-placeholder, fieldset[disabled] .textarea:-moz-placeholder, fieldset[disabled] .input:-moz-placeholder { + color: var(--placeholder-text-color); +} +.select select[disabled]:-ms-input-placeholder, [disabled].textarea:-ms-input-placeholder, [disabled].input:-ms-input-placeholder, fieldset[disabled] .select select:-ms-input-placeholder, .select fieldset[disabled] select:-ms-input-placeholder, fieldset[disabled] .textarea:-ms-input-placeholder, fieldset[disabled] .input:-ms-input-placeholder { + color: var(--placeholder-text-color); +} + +.textarea, .input { + box-shadow: inset 0 0.0625em 0.125em rgba(10, 10, 10, 0.05); + max-width: 100%; + width: 100%; +} +[readonly].textarea, [readonly].input { + box-shadow: none; +} +.is-white.textarea, .is-white.input { + border-color: hsl(0deg, 0%, 100%); +} +.is-white.textarea:focus, .is-white.input:focus, .is-white.is-focused.textarea, .is-white.is-focused.input, .is-white.textarea:active, .is-white.input:active, .is-white.is-active.textarea, .is-white.is-active.input { + box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); +} +.is-black.textarea, .is-black.input { + border-color: hsl(0deg, 0%, 4%); +} +.is-black.textarea:focus, .is-black.input:focus, .is-black.is-focused.textarea, .is-black.is-focused.input, .is-black.textarea:active, .is-black.input:active, .is-black.is-active.textarea, .is-black.is-active.input { + box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); +} +.is-light.textarea, .is-light.input { + border-color: hsl(0deg, 0%, 96%); +} +.is-light.textarea:focus, .is-light.input:focus, .is-light.is-focused.textarea, .is-light.is-focused.input, .is-light.textarea:active, .is-light.input:active, .is-light.is-active.textarea, .is-light.is-active.input { + box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25); +} +.is-dark.textarea, .is-dark.input { + border-color: hsl(0deg, 0%, 21%); +} +.is-dark.textarea:focus, .is-dark.input:focus, .is-dark.is-focused.textarea, .is-dark.is-focused.input, .is-dark.textarea:active, .is-dark.input:active, .is-dark.is-active.textarea, .is-dark.is-active.input { + box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25); +} +.is-primary.textarea, .is-primary.input { + border-color: hsl(171deg, 100%, 41%); +} +.is-primary.textarea:focus, .is-primary.input:focus, .is-primary.is-focused.textarea, .is-primary.is-focused.input, .is-primary.textarea:active, .is-primary.input:active, .is-primary.is-active.textarea, .is-primary.is-active.input { + box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25); +} +.is-link.textarea, .is-link.input { + border-color: hsl(229deg, 53%, 53%); +} +.is-link.textarea:focus, .is-link.input:focus, .is-link.is-focused.textarea, .is-link.is-focused.input, .is-link.textarea:active, .is-link.input:active, .is-link.is-active.textarea, .is-link.is-active.input { + box-shadow: 0 0 0 0.125em rgba(72, 95, 199, 0.25); +} +.is-info.textarea, .is-info.input { + border-color: hsl(207deg, 61%, 53%); +} +.is-info.textarea:focus, .is-info.input:focus, .is-info.is-focused.textarea, .is-info.is-focused.input, .is-info.textarea:active, .is-info.input:active, .is-info.is-active.textarea, .is-info.is-active.input { + box-shadow: 0 0 0 0.125em rgba(62, 142, 208, 0.25); +} +.is-success.textarea, .is-success.input { + border-color: hsl(153deg, 53%, 53%); +} +.is-success.textarea:focus, .is-success.input:focus, .is-success.is-focused.textarea, .is-success.is-focused.input, .is-success.textarea:active, .is-success.input:active, .is-success.is-active.textarea, .is-success.is-active.input { + box-shadow: 0 0 0 0.125em rgba(72, 199, 142, 0.25); +} +.is-warning.textarea, .is-warning.input { + border-color: hsl(44deg, 100%, 77%); +} +.is-warning.textarea:focus, .is-warning.input:focus, .is-warning.is-focused.textarea, .is-warning.is-focused.input, .is-warning.textarea:active, .is-warning.input:active, .is-warning.is-active.textarea, .is-warning.is-active.input { + box-shadow: 0 0 0 0.125em rgba(255, 224, 138, 0.25); +} +.is-danger.textarea, .is-danger.input { + border-color: hsl(348deg, 86%, 61%); +} +.is-danger.textarea:focus, .is-danger.input:focus, .is-danger.is-focused.textarea, .is-danger.is-focused.input, .is-danger.textarea:active, .is-danger.input:active, .is-danger.is-active.textarea, .is-danger.is-active.input { + box-shadow: 0 0 0 0.125em rgba(241, 70, 104, 0.25); +} +.is-small.textarea, .is-small.input { + border-radius: 2px; + font-size: 0.75rem; +} +.is-medium.textarea, .is-medium.input { + font-size: 1.25rem; +} +.is-large.textarea, .is-large.input { + font-size: 1.5rem; +} +.is-fullwidth.textarea, .is-fullwidth.input { + display: block; + width: 100%; +} +.is-inline.textarea, .is-inline.input { + display: inline; + width: auto; +} + +.input.is-rounded { + border-radius: 9999px; + padding-left: calc(calc(0.75em - 1px) + 0.375em); + padding-right: calc(calc(0.75em - 1px) + 0.375em); +} +.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: calc(0.75em - 1px); + resize: vertical; +} +.textarea:not([rows]) { + max-height: 40em; + min-height: 8em; +} +.textarea[rows] { + height: initial; +} +.textarea.has-fixed-size { + resize: none; +} + +.radio, .checkbox { + cursor: pointer; + display: inline-block; + line-height: 1.25; + position: relative; +} +.radio input, .checkbox input { + cursor: pointer; +} +.radio:hover, .checkbox:hover { + color: hsl(0deg, 0%, 21%); +} +[disabled].radio, [disabled].checkbox, fieldset[disabled] .radio, fieldset[disabled] .checkbox, +.radio input[disabled], +.checkbox input[disabled] { + color: hsl(0deg, 0%, 48%); + cursor: not-allowed; +} + +.radio + .radio { + margin-left: 0.5em; +} + +.select { + display: inline-block; + max-width: 100%; + position: relative; + vertical-align: top; +} +.select:not(.is-multiple) { + height: 2.5em; +} +.select:not(.is-multiple):not(.is-loading)::after { + border-color: hsl(229deg, 53%, 53%); + right: 1.125em; + z-index: 4; +} +.select.is-rounded select { + border-radius: 9999px; + padding-left: 1em; +} +.select select { + cursor: pointer; + display: block; + font-size: 1em; + max-width: 100%; + outline: none; +} +.select select::-ms-expand { + display: none; +} +.select select[disabled]:hover, fieldset[disabled] .select select:hover { + border-color: hsl(0deg, 0%, 96%); +} +.select select:not([multiple]) { + padding-right: 2.5em; +} +.select select[multiple] { + height: auto; + padding: 0; +} +.select select[multiple] option { + padding: 0.5em 1em; +} +.select:not(.is-multiple):not(.is-loading):hover::after { + border-color: hsl(0deg, 0%, 21%); +} +.select.is-white:not(:hover)::after { + border-color: hsl(0deg, 0%, 100%); +} +.select.is-white select { + border-color: hsl(0deg, 0%, 100%); +} +.select.is-white select:hover, .select.is-white select.is-hovered { + border-color: #f2f2f2; +} +.select.is-white select:focus, .select.is-white select.is-focused, .select.is-white select:active, .select.is-white select.is-active { + box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); +} +.select.is-black:not(:hover)::after { + border-color: hsl(0deg, 0%, 4%); +} +.select.is-black select { + border-color: hsl(0deg, 0%, 4%); +} +.select.is-black select:hover, .select.is-black select.is-hovered { + border-color: black; +} +.select.is-black select:focus, .select.is-black select.is-focused, .select.is-black select:active, .select.is-black select.is-active { + box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); +} +.select.is-light:not(:hover)::after { + border-color: hsl(0deg, 0%, 96%); +} +.select.is-light select { + border-color: hsl(0deg, 0%, 96%); +} +.select.is-light select:hover, .select.is-light select.is-hovered { + border-color: #e8e8e8; +} +.select.is-light select:focus, .select.is-light select.is-focused, .select.is-light select:active, .select.is-light select.is-active { + box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25); +} +.select.is-dark:not(:hover)::after { + border-color: hsl(0deg, 0%, 21%); +} +.select.is-dark select { + border-color: hsl(0deg, 0%, 21%); +} +.select.is-dark select:hover, .select.is-dark select.is-hovered { + border-color: #292929; +} +.select.is-dark select:focus, .select.is-dark select.is-focused, .select.is-dark select:active, .select.is-dark select.is-active { + box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25); +} +.select.is-primary:not(:hover)::after { + border-color: hsl(171deg, 100%, 41%); +} +.select.is-primary select { + border-color: hsl(171deg, 100%, 41%); +} +.select.is-primary select:hover, .select.is-primary select.is-hovered { + border-color: #00b89c; +} +.select.is-primary select:focus, .select.is-primary select.is-focused, .select.is-primary select:active, .select.is-primary select.is-active { + box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25); +} +.select.is-link:not(:hover)::after { + border-color: hsl(229deg, 53%, 53%); +} +.select.is-link select { + border-color: hsl(229deg, 53%, 53%); +} +.select.is-link select:hover, .select.is-link select.is-hovered { + border-color: #3a51bb; +} +.select.is-link select:focus, .select.is-link select.is-focused, .select.is-link select:active, .select.is-link select.is-active { + box-shadow: 0 0 0 0.125em rgba(72, 95, 199, 0.25); +} +.select.is-info:not(:hover)::after { + border-color: hsl(207deg, 61%, 53%); +} +.select.is-info select { + border-color: hsl(207deg, 61%, 53%); +} +.select.is-info select:hover, .select.is-info select.is-hovered { + border-color: #3082c5; +} +.select.is-info select:focus, .select.is-info select.is-focused, .select.is-info select:active, .select.is-info select.is-active { + box-shadow: 0 0 0 0.125em rgba(62, 142, 208, 0.25); +} +.select.is-success:not(:hover)::after { + border-color: hsl(153deg, 53%, 53%); +} +.select.is-success select { + border-color: hsl(153deg, 53%, 53%); +} +.select.is-success select:hover, .select.is-success select.is-hovered { + border-color: #3abb81; +} +.select.is-success select:focus, .select.is-success select.is-focused, .select.is-success select:active, .select.is-success select.is-active { + box-shadow: 0 0 0 0.125em rgba(72, 199, 142, 0.25); +} +.select.is-warning:not(:hover)::after { + border-color: hsl(44deg, 100%, 77%); +} +.select.is-warning select { + border-color: hsl(44deg, 100%, 77%); +} +.select.is-warning select:hover, .select.is-warning select.is-hovered { + border-color: #ffd970; +} +.select.is-warning select:focus, .select.is-warning select.is-focused, .select.is-warning select:active, .select.is-warning select.is-active { + box-shadow: 0 0 0 0.125em rgba(255, 224, 138, 0.25); +} +.select.is-danger:not(:hover)::after { + border-color: hsl(348deg, 86%, 61%); +} +.select.is-danger select { + border-color: hsl(348deg, 86%, 61%); +} +.select.is-danger select:hover, .select.is-danger select.is-hovered { + border-color: #ef2e55; +} +.select.is-danger select:focus, .select.is-danger select.is-focused, .select.is-danger select:active, .select.is-danger select.is-active { + box-shadow: 0 0 0 0.125em rgba(241, 70, 104, 0.25); +} +.select.is-small { + border-radius: 2px; + font-size: 0.75rem; +} +.select.is-medium { + font-size: 1.25rem; +} +.select.is-large { + font-size: 1.5rem; +} +.select.is-disabled::after { + border-color: hsl(0deg, 0%, 48%) !important; + opacity: 0.5; +} +.select.is-fullwidth { + width: 100%; +} +.select.is-fullwidth select { + width: 100%; +} +.select.is-loading::after { + margin-top: 0; + position: absolute; + right: 0.625em; + top: 0.625em; + transform: none; +} +.select.is-loading.is-small:after { + font-size: 0.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: hsl(0deg, 0%, 100%); + border-color: transparent; + color: hsl(0deg, 0%, 4%); +} +.file.is-white:hover .file-cta, .file.is-white.is-hovered .file-cta { + background-color: #f9f9f9; + border-color: transparent; + color: hsl(0deg, 0%, 4%); +} +.file.is-white:focus .file-cta, .file.is-white.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.25); + color: hsl(0deg, 0%, 4%); +} +.file.is-white:active .file-cta, .file.is-white.is-active .file-cta { + background-color: #f2f2f2; + border-color: transparent; + color: hsl(0deg, 0%, 4%); +} +.file.is-black .file-cta { + background-color: hsl(0deg, 0%, 4%); + border-color: transparent; + color: hsl(0deg, 0%, 100%); +} +.file.is-black:hover .file-cta, .file.is-black.is-hovered .file-cta { + background-color: #040404; + border-color: transparent; + color: hsl(0deg, 0%, 100%); +} +.file.is-black:focus .file-cta, .file.is-black.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.25); + color: hsl(0deg, 0%, 100%); +} +.file.is-black:active .file-cta, .file.is-black.is-active .file-cta { + background-color: black; + border-color: transparent; + color: hsl(0deg, 0%, 100%); +} +.file.is-light .file-cta { + background-color: hsl(0deg, 0%, 96%); + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} +.file.is-light:hover .file-cta, .file.is-light.is-hovered .file-cta { + background-color: #eeeeee; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} +.file.is-light:focus .file-cta, .file.is-light.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.25); + color: rgba(0, 0, 0, 0.7); +} +.file.is-light:active .file-cta, .file.is-light.is-active .file-cta { + background-color: #e8e8e8; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} +.file.is-dark .file-cta { + background-color: hsl(0deg, 0%, 21%); + border-color: transparent; + color: #fff; +} +.file.is-dark:hover .file-cta, .file.is-dark.is-hovered .file-cta { + background-color: #2f2f2f; + border-color: transparent; + color: #fff; +} +.file.is-dark:focus .file-cta, .file.is-dark.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.25); + color: #fff; +} +.file.is-dark:active .file-cta, .file.is-dark.is-active .file-cta { + background-color: #292929; + border-color: transparent; + color: #fff; +} +.file.is-primary .file-cta { + background-color: hsl(171deg, 100%, 41%); + border-color: transparent; + color: #fff; +} +.file.is-primary:hover .file-cta, .file.is-primary.is-hovered .file-cta { + background-color: #00c4a7; + border-color: transparent; + color: #fff; +} +.file.is-primary:focus .file-cta, .file.is-primary.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(0, 209, 178, 0.25); + color: #fff; +} +.file.is-primary:active .file-cta, .file.is-primary.is-active .file-cta { + background-color: #00b89c; + border-color: transparent; + color: #fff; +} +.file.is-link .file-cta { + background-color: hsl(229deg, 53%, 53%); + border-color: transparent; + color: #fff; +} +.file.is-link:hover .file-cta, .file.is-link.is-hovered .file-cta { + background-color: #3e56c4; + border-color: transparent; + color: #fff; +} +.file.is-link:focus .file-cta, .file.is-link.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(72, 95, 199, 0.25); + color: #fff; +} +.file.is-link:active .file-cta, .file.is-link.is-active .file-cta { + background-color: #3a51bb; + border-color: transparent; + color: #fff; +} +.file.is-info .file-cta { + background-color: hsl(207deg, 61%, 53%); + border-color: transparent; + color: #fff; +} +.file.is-info:hover .file-cta, .file.is-info.is-hovered .file-cta { + background-color: #3488ce; + border-color: transparent; + color: #fff; +} +.file.is-info:focus .file-cta, .file.is-info.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(62, 142, 208, 0.25); + color: #fff; +} +.file.is-info:active .file-cta, .file.is-info.is-active .file-cta { + background-color: #3082c5; + border-color: transparent; + color: #fff; +} +.file.is-success .file-cta { + background-color: hsl(153deg, 53%, 53%); + border-color: transparent; + color: #fff; +} +.file.is-success:hover .file-cta, .file.is-success.is-hovered .file-cta { + background-color: #3ec487; + border-color: transparent; + color: #fff; +} +.file.is-success:focus .file-cta, .file.is-success.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(72, 199, 142, 0.25); + color: #fff; +} +.file.is-success:active .file-cta, .file.is-success.is-active .file-cta { + background-color: #3abb81; + border-color: transparent; + color: #fff; +} +.file.is-warning .file-cta { + background-color: hsl(44deg, 100%, 77%); + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} +.file.is-warning:hover .file-cta, .file.is-warning.is-hovered .file-cta { + background-color: #ffdc7d; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} +.file.is-warning:focus .file-cta, .file.is-warning.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(255, 224, 138, 0.25); + color: rgba(0, 0, 0, 0.7); +} +.file.is-warning:active .file-cta, .file.is-warning.is-active .file-cta { + background-color: #ffd970; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} +.file.is-danger .file-cta { + background-color: hsl(348deg, 86%, 61%); + border-color: transparent; + color: #fff; +} +.file.is-danger:hover .file-cta, .file.is-danger.is-hovered .file-cta { + background-color: #f03a5f; + border-color: transparent; + color: #fff; +} +.file.is-danger:focus .file-cta, .file.is-danger.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(241, 70, 104, 0.25); + color: #fff; +} +.file.is-danger:active .file-cta, .file.is-danger.is-active .file-cta { + background-color: #ef2e55; + border-color: transparent; + color: #fff; +} +.file.is-small { + font-size: 0.75rem; +} +.file.is-normal { + font-size: 1rem; +} +.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: #eeeeee; + color: hsl(0deg, 0%, 21%); +} +.file-label:hover .file-name { + border-color: #d5d5d5; +} +.file-label:active .file-cta { + background-color: #e8e8e8; + color: hsl(0deg, 0%, 21%); +} +.file-label:active .file-name { + border-color: #cfcfcf; +} + +.file-input { + height: 100%; + left: 0; + opacity: 0; + outline: none; + position: absolute; + top: 0; + width: 100%; +} + +.file-cta, +.file-name { + border-color: hsl(0deg, 0%, 86%); + border-radius: 4px; + font-size: 1em; + padding-left: 1em; + padding-right: 1em; + white-space: nowrap; +} + +.file-cta { + background-color: hsl(0deg, 0%, 96%); + color: hsl(0deg, 0%, 29%); +} + +.file-name { + border-color: hsl(0deg, 0%, 86%); + border-style: solid; + border-width: 1px 1px 1px 0; + display: block; + max-width: 16em; + overflow: hidden; + text-align: inherit; + text-overflow: ellipsis; +} + +.file-icon { + align-items: center; + display: flex; + height: 1em; + justify-content: center; + margin-right: 0.5em; + width: 1em; +} +.file-icon .fa { + font-size: 14px; +} + +.label { + color: hsl(0deg, 0%, 21%); + display: block; + font-size: 1rem; + font-weight: 700; +} +.label:not(:last-child) { + margin-bottom: 0.5em; +} +.label.is-small { + font-size: 0.75rem; +} +.label.is-medium { + font-size: 1.25rem; +} +.label.is-large { + font-size: 1.5rem; +} + +.help { + display: block; + font-size: 0.75rem; + margin-top: 0.25rem; +} +.help.is-white { + color: hsl(0deg, 0%, 100%); +} +.help.is-black { + color: hsl(0deg, 0%, 4%); +} +.help.is-light { + color: hsl(0deg, 0%, 96%); +} +.help.is-dark { + color: hsl(0deg, 0%, 21%); +} +.help.is-primary { + color: hsl(171deg, 100%, 41%); +} +.help.is-link { + color: hsl(229deg, 53%, 53%); +} +.help.is-info { + color: hsl(207deg, 61%, 53%); +} +.help.is-success { + color: hsl(153deg, 53%, 53%); +} +.help.is-warning { + color: hsl(44deg, 100%, 77%); +} +.help.is-danger { + color: hsl(348deg, 86%, 61%); +} + +.field:not(:last-child) { + margin-bottom: 0.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:not(:only-child) .button, +.field.has-addons .control:first-child:not(:only-child) .input, +.field.has-addons .control:first-child:not(:only-child) .select select { + border-bottom-right-radius: 0; + border-top-right-radius: 0; +} +.field.has-addons .control:last-child:not(:only-child) .button, +.field.has-addons .control:last-child:not(:only-child) .input, +.field.has-addons .control:last-child:not(:only-child) .select select { + border-bottom-left-radius: 0; + border-top-left-radius: 0; +} +.field.has-addons .control .button:not([disabled]):hover, .field.has-addons .control .button:not([disabled]).is-hovered, +.field.has-addons .control .input:not([disabled]):hover, +.field.has-addons .control .input:not([disabled]).is-hovered, +.field.has-addons .control .select select:not([disabled]):hover, +.field.has-addons .control .select select:not([disabled]).is-hovered { + z-index: 2; +} +.field.has-addons .control .button:not([disabled]):focus, .field.has-addons .control .button:not([disabled]).is-focused, .field.has-addons .control .button:not([disabled]):active, .field.has-addons .control .button:not([disabled]).is-active, +.field.has-addons .control .input:not([disabled]):focus, +.field.has-addons .control .input:not([disabled]).is-focused, +.field.has-addons .control .input:not([disabled]):active, +.field.has-addons .control .input:not([disabled]).is-active, +.field.has-addons .control .select select:not([disabled]):focus, +.field.has-addons .control .select select:not([disabled]).is-focused, +.field.has-addons .control .select select:not([disabled]):active, +.field.has-addons .control .select select:not([disabled]).is-active { + z-index: 3; +} +.field.has-addons .control .button:not([disabled]):focus:hover, .field.has-addons .control .button:not([disabled]).is-focused:hover, .field.has-addons .control .button:not([disabled]):active:hover, .field.has-addons .control .button:not([disabled]).is-active:hover, +.field.has-addons .control .input:not([disabled]):focus:hover, +.field.has-addons .control .input:not([disabled]).is-focused:hover, +.field.has-addons .control .input:not([disabled]):active:hover, +.field.has-addons .control .input:not([disabled]).is-active:hover, +.field.has-addons .control .select select:not([disabled]):focus:hover, +.field.has-addons .control .select select:not([disabled]).is-focused:hover, +.field.has-addons .control .select select:not([disabled]):active:hover, +.field.has-addons .control .select select:not([disabled]).is-active:hover { + z-index: 4; +} +.field.has-addons .control.is-expanded { + flex-grow: 1; + flex-shrink: 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: 0.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: 0.75rem; +} +.field.is-grouped.is-grouped-multiline:last-child { + margin-bottom: -0.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: 0.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: 0.75rem; + padding-top: 0.375em; + } + .field-label.is-normal { + padding-top: 0.375em; + } + .field-label.is-medium { + font-size: 1.25rem; + padding-top: 0.375em; + } + .field-label.is-large { + font-size: 1.5rem; + padding-top: 0.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: 0.75rem; + } +} + +.control { + box-sizing: border-box; + clear: both; + font-size: 1rem; + position: relative; + text-align: inherit; +} +.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: hsl(0deg, 0%, 29%); +} +.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: 0.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: hsl(0deg, 0%, 86%); + height: 2.5em; + pointer-events: none; + position: absolute; + top: 0; + width: 2.5em; + z-index: 4; +} +.control.has-icons-left .input, +.control.has-icons-left .select select { + padding-left: 2.5em; +} +.control.has-icons-left .icon.is-left { + left: 0; +} +.control.has-icons-right .input, +.control.has-icons-right .select select { + padding-right: 2.5em; +} +.control.has-icons-right .icon.is-right { + right: 0; +} +.control.is-loading::after { + position: absolute !important; + right: 0.625em; + top: 0.625em; + z-index: 4; +} +.control.is-loading.is-small:after { + font-size: 0.75rem; +} +.control.is-loading.is-medium:after { + font-size: 1.25rem; +} +.control.is-loading.is-large:after { + font-size: 1.5rem; +} + +/* Bulma Components */ +.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: hsl(0deg, 0%, 100%); + border-radius: 4px; + box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02); + padding-bottom: 0.5rem; + padding-top: 0.5rem; +} + +.dropdown-item { + display: block; + font-size: 0.875rem; + line-height: 1.5; + padding: 0.375rem 1rem; + position: relative; +} + +a.dropdown-item, +button.dropdown-item { + padding-right: 3rem; + text-align: inherit; + white-space: nowrap; + width: 100%; +} +a.dropdown-item:hover, +button.dropdown-item:hover { + background-color: hsl(0deg, 0%, 96%); + color: hsl(0deg, 0%, 4%); +} +a.dropdown-item.is-active, +button.dropdown-item.is-active { + background-color: hsl(229deg, 53%, 53%); + color: #fff; +} + +.dropdown-divider { + background-color: hsl(0deg, 0%, 93%); + border: none; + display: block; + height: 1px; + margin: 0.5rem 0; +} + +.message { + background-color: hsl(0deg, 0%, 96%); + border-radius: 4px; + font-size: 1rem; +} +.message strong { + color: currentColor; +} +.message a:not(.button):not(.tag):not(.dropdown-item) { + color: currentColor; + text-decoration: underline; +} +.message.is-small { + font-size: 0.75rem; +} +.message.is-medium { + font-size: 1.25rem; +} +.message.is-large { + font-size: 1.5rem; +} +.message.is-white { + background-color: white; +} +.message.is-white .message-header { + background-color: hsl(0deg, 0%, 100%); + color: hsl(0deg, 0%, 4%); +} +.message.is-white .message-body { + border-color: hsl(0deg, 0%, 100%); +} +.message.is-black { + background-color: #fafafa; +} +.message.is-black .message-header { + background-color: hsl(0deg, 0%, 4%); + color: hsl(0deg, 0%, 100%); +} +.message.is-black .message-body { + border-color: hsl(0deg, 0%, 4%); +} +.message.is-light { + background-color: #fafafa; +} +.message.is-light .message-header { + background-color: hsl(0deg, 0%, 96%); + color: rgba(0, 0, 0, 0.7); +} +.message.is-light .message-body { + border-color: hsl(0deg, 0%, 96%); +} +.message.is-dark { + background-color: #fafafa; +} +.message.is-dark .message-header { + background-color: hsl(0deg, 0%, 21%); + color: #fff; +} +.message.is-dark .message-body { + border-color: hsl(0deg, 0%, 21%); +} +.message.is-primary { + background-color: #ebfffc; +} +.message.is-primary .message-header { + background-color: hsl(171deg, 100%, 41%); + color: #fff; +} +.message.is-primary .message-body { + border-color: hsl(171deg, 100%, 41%); + color: #00947e; +} +.message.is-link { + background-color: #eff1fa; +} +.message.is-link .message-header { + background-color: hsl(229deg, 53%, 53%); + color: #fff; +} +.message.is-link .message-body { + border-color: hsl(229deg, 53%, 53%); + color: #3850b7; +} +.message.is-info { + background-color: #eff5fb; +} +.message.is-info .message-header { + background-color: hsl(207deg, 61%, 53%); + color: #fff; +} +.message.is-info .message-body { + border-color: hsl(207deg, 61%, 53%); + color: #296fa8; +} +.message.is-success { + background-color: #effaf5; +} +.message.is-success .message-header { + background-color: hsl(153deg, 53%, 53%); + color: #fff; +} +.message.is-success .message-body { + border-color: hsl(153deg, 53%, 53%); + color: #257953; +} +.message.is-warning { + background-color: #fffaeb; +} +.message.is-warning .message-header { + background-color: hsl(44deg, 100%, 77%); + color: rgba(0, 0, 0, 0.7); +} +.message.is-warning .message-body { + border-color: hsl(44deg, 100%, 77%); + color: #946c00; +} +.message.is-danger { + background-color: #feecf0; +} +.message.is-danger .message-header { + background-color: hsl(348deg, 86%, 61%); + color: #fff; +} +.message.is-danger .message-body { + border-color: hsl(348deg, 86%, 61%); + color: #cc0f35; +} + +.message-header { + align-items: center; + background-color: hsl(0deg, 0%, 29%); + border-radius: 4px 4px 0 0; + color: #fff; + display: flex; + font-weight: 700; + justify-content: space-between; + line-height: 1.25; + padding: 0.75em 1em; + position: relative; +} +.message-header .delete { + flex-grow: 0; + flex-shrink: 0; + margin-left: 0.75em; +} +.message-header + .message-body { + border-width: 0; + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.message-body { + border-color: hsl(0deg, 0%, 86%); + border-radius: 4px; + border-style: solid; + border-width: 0 0 0 4px; + color: hsl(0deg, 0%, 29%); + padding: 1.25em 1.5em; +} +.message-body code, +.message-body pre { + background-color: hsl(0deg, 0%, 100%); +} +.message-body pre code { + background-color: transparent; +} + +.pagination { + font-size: 1rem; + margin: -0.25rem; +} +.pagination.is-small { + font-size: 0.75rem; +} +.pagination.is-medium { + font-size: 1.25rem; +} +.pagination.is-large { + font-size: 1.5rem; +} +.pagination.is-rounded .pagination-previous, +.pagination.is-rounded .pagination-next { + padding-left: 1em; + padding-right: 1em; + border-radius: 9999px; +} +.pagination.is-rounded .pagination-link { + border-radius: 9999px; +} + +.pagination, +.pagination-list { + align-items: center; + display: flex; + justify-content: center; + text-align: center; +} + +.pagination-previous, +.pagination-next, +.pagination-link, +.pagination-ellipsis { + font-size: 1em; + justify-content: center; + margin: 0.25rem; + padding-left: 0.5em; + padding-right: 0.5em; + text-align: center; +} + +.pagination-previous, +.pagination-next, +.pagination-link { + border-color: hsl(0deg, 0%, 86%); + color: hsl(0deg, 0%, 21%); + min-width: 2.5em; +} +.pagination-previous:hover, +.pagination-next:hover, +.pagination-link:hover { + border-color: hsl(0deg, 0%, 71%); + color: hsl(0deg, 0%, 21%); +} +.pagination-previous:focus, +.pagination-next:focus, +.pagination-link:focus { + border-color: hsl(229deg, 53%, 53%); +} +.pagination-previous:active, +.pagination-next:active, +.pagination-link:active { + box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2); +} +.pagination-previous[disabled], .pagination-previous.is-disabled, +.pagination-next[disabled], +.pagination-next.is-disabled, +.pagination-link[disabled], +.pagination-link.is-disabled { + background-color: hsl(0deg, 0%, 86%); + border-color: hsl(0deg, 0%, 86%); + box-shadow: none; + color: hsl(0deg, 0%, 48%); + opacity: 0.5; +} + +.pagination-previous, +.pagination-next { + padding-left: 0.75em; + padding-right: 0.75em; + white-space: nowrap; +} + +.pagination-link.is-current { + background-color: hsl(229deg, 53%, 53%); + border-color: hsl(229deg, 53%, 53%); + color: #fff; +} + +.pagination-ellipsis { + color: hsl(0deg, 0%, 71%); + pointer-events: none; +} + +.pagination-list { + flex-wrap: wrap; +} +.pagination-list li { + list-style: none; +} + +@media screen and (max-width: 768px) { + .pagination { + flex-wrap: wrap; + } + .pagination-previous, + .pagination-next { + 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, + .pagination-next, + .pagination-link, + .pagination-ellipsis { + margin-bottom: 0; + margin-top: 0; + } + .pagination-previous { + order: 2; + } + .pagination-next { + order: 3; + } + .pagination { + justify-content: space-between; + margin-bottom: 0; + margin-top: 0; + } + .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; + } +} + +:root{--background:hsl(25,84%,88%);--text-color:hsl(25,84%,26.4%);--placeholder-text-color:hsla(25,84%,26.4%,.3);--black:hsl(0,0%,4%);--black-bis:hsl(0,0%,7%);--black-ter:hsl(0,0%,14%);--white:hsl(0,4%,99.8%);--primary-color:hsl(25,84%,88%);--primary-color-light:hsl(25,84%,100%);--primary-color-dark:hsl(25,84%,66%);--primary-gradiend-light:hsl(25,84%,92%);--primary-gradiend-dark:hsl(25,84%,84%);--primary-gradiend-lighter:hsl(25,84%,96%);--primary-gradiend-darker:hsl(25,84%,80%);--secondary-color:hsl(205,84%,88%);--secondary-color-light:hsl(205,84%,100%);--secondary-color-dark:hsl(205,84%,84%);--light-shadow:hsla(25,84%,100%,.5);--dark-shadow:hsla(25,84%,66%,.5);--fa-primary-color:hsl(205,84%,26.4%);--fa-secondary-color:hsl(205,84%,66%);--fa-primary-opacity:.8;--fa-secondary-opacity:.8;--danger-color:hsl(0,82%,91%);--warning-color:hsl(48,82%,91%);--info-color:hsl(196,82%,91%)}:root{--shadow-offset:8px;--blur-radius:16px;--is-inset:inherit}.neomorph{box-shadow:calc(-1*var(--shadow-offset)) calc(-1*var(--shadow-offset)) var(--blur-radius) var(--light-shadow),var(--shadow-offset) var(--shadow-offset) var(--blur-radius) var(--dark-shadow);background-color:var(--background)}.neomorphInset{box-shadow:inset var(--shadow-offset) var(--shadow-offset) var(--blur-radius) var(--dark-shadow),inset calc(-1*var(--shadow-offset)) calc(-1*var(--shadow-offset)) var(--blur-radius) var(--light-shadow);background-color:var(--background)}.neomorphInset.is-nxxsmall{--shadow-offset:2px;--blur-radius:4px}@media(min-width:640px){.neomorphInset.is-nxxsmall-sm{--shadow-offset:2px;--blur-radius:4px}}@media(min-width:768px){.neomorphInset.is-nxxsmall-md{--shadow-offset:2px;--blur-radius:4px}}@media(min-width:1024px){.neomorphInset.is-nxxsmall-lg{--shadow-offset:2px;--blur-radius:4px}}@media(min-width:1280px){.neomorphInset.is-nxxsmall-xl{--shadow-offset:2px;--blur-radius:4px}}.neomorphInset.is-nxsmall{--shadow-offset:3px;--blur-radius:6px}@media(min-width:640px){.neomorphInset.is-nxsmall-sm{--shadow-offset:3px;--blur-radius:6px}}@media(min-width:768px){.neomorphInset.is-nxsmall-md{--shadow-offset:3px;--blur-radius:6px}}@media(min-width:1024px){.neomorphInset.is-nxsmall-lg{--shadow-offset:3px;--blur-radius:6px}}@media(min-width:1280px){.neomorphInset.is-nxsmall-xl{--shadow-offset:3px;--blur-radius:6px}}.neomorphInset.is-nsmall{--shadow-offset:6px;--blur-radius:12px}@media(min-width:640px){.neomorphInset.is-nsmall-sm{--shadow-offset:6px;--blur-radius:12px}}@media(min-width:768px){.neomorphInset.is-nsmall-md{--shadow-offset:6px;--blur-radius:12px}}@media(min-width:1024px){.neomorphInset.is-nsmall-lg{--shadow-offset:6px;--blur-radius:12px}}@media(min-width:1280px){.neomorphInset.is-nsmall-xl{--shadow-offset:6px;--blur-radius:12px}}.neomorph.is-nxxsmall{--shadow-offset:2px;--blur-radius:4px}@media(min-width:640px){.neomorph.is-nxxsmall-sm{--shadow-offset:2px;--blur-radius:4px}}@media(min-width:768px){.neomorph.is-nxxsmall-md{--shadow-offset:2px;--blur-radius:4px}}@media(min-width:1024px){.neomorph.is-nxxsmall-lg{--shadow-offset:2px;--blur-radius:4px}}@media(min-width:1280px){.neomorph.is-nxxsmall-xl{--shadow-offset:2px;--blur-radius:4px}}.neomorph.is-nxsmall{--shadow-offset:3px;--blur-radius:6px}@media(min-width:640px){.neomorph.is-nxsmall-sm{--shadow-offset:3px;--blur-radius:6px}}@media(min-width:768px){.neomorph.is-nxsmall-md{--shadow-offset:3px;--blur-radius:6px}}@media(min-width:1024px){.neomorph.is-nxsmall-lg{--shadow-offset:3px;--blur-radius:6px}}@media(min-width:1280px){.neomorph.is-nxsmall-xl{--shadow-offset:3px;--blur-radius:6px}}.neomorph.is-nsmall{--shadow-offset:6px;--blur-radius:12px}@media(min-width:640px){.neomorph.is-nsmall-sm{--shadow-offset:6px;--blur-radius:12px}}@media(min-width:768px){.neomorph.is-nsmall-md{--shadow-offset:6px;--blur-radius:12px}}@media(min-width:1024px){.neomorph.is-nsmall-lg{--shadow-offset:6px;--blur-radius:12px}}@media(min-width:1280px){.neomorph.is-nsmall-xl{--shadow-offset:6px;--blur-radius:12px}}.neomorph.is-nnormal{--shadow-offset:8px;--blur-radius:16px}@media(min-width:640px){.neomorph.is-nnormal-sm{--shadow-offset:8px;--blur-radius:16px}}@media(min-width:768px){.neomorph.is-nnormal-md{--shadow-offset:8px;--blur-radius:16px}}@media(min-width:1024px){.neomorph.is-nnormal-lg{--shadow-offset:8px;--blur-radius:16px}}@media(min-width:1280px){.neomorph.is-nnormal-xl{--shadow-offset:8px;--blur-radius:16px}}button.neoBtn,.neoBtn{background-image:linear-gradient(145deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:-3px -3px 6px var(--light-shadow),3px 3px 6px var(--dark-shadow);border:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}button.neoBtn:focus,.neoBtn:focus{background-image:linear-gradient(-45deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:-3px -3px 6px var(--light-shadow),3px 3px 6px var(--dark-shadow);border:0}button.neoBtnSmall,.neoBtnSmall{background-image:linear-gradient(145deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:-2px -2px 4px var(--light-shadow),2px 2px 4px var(--dark-shadow);border:0}button.neoBtnSmall:focus,.neoBtnSmall:focus{background-image:linear-gradient(-45deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:-2px -2px 4px var(--light-shadow),2px 2px 4px var(--dark-shadow);border:0}button.neoBtnSmall:focus:not(:active),.neoBtnSmall:focus:not(:active){background-image:linear-gradient(-45deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:-2px -2px 4px var(--light-shadow),2px 2px 4px var(--dark-shadow)}button.neoBtnSmall:focus input[type=file],.neoBtnSmall:focus input[type=file]{background-image:linear-gradient(-45deg,var(--primary-gradiend-light),var(--primary-gradiend-dark))}button.neoBtnSmallPlain,.neoBtnSmallPlain{background:var(--background);box-shadow:-3px -3px 6px var(--light-shadow),3px 3px 6px var(--dark-shadow);border:0}button.neoBtnSmallPlain:focus,.neoBtnSmallPlain:focus{box-shadow:-3px -3px 6px var(--light-shadow),3px 3px 6px var(--dark-shadow);border:0}button.neoBtnSmallInsetPlain,.neoBtnSmallInsetPlain{background-image:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow);border:0}button.neoBtnSmallInsetPlain:focus,.neoBtnSmallInsetPlain:focus{background-image:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow);border:0}button.neoBtnSmallXInsetPlain,.neoBtnSmallXInsetPlain{background-image:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light));box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);border:0}button.neoBtnSmallXInsetPlain:focus,.neoBtnSmallXInsetPlain:focus{background-image:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter));box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);border:0}button.neoBtnInsetPlain,.neoBtnInsetPlain{background-image:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow);border:0}button.neoBtnInsetPlain:focus,.neoBtnInsetPlain:focus{background-image:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow);border:0}button.neoBtnInsetPlain:focus:not(:active),.neoBtnInsetPlain:focus:not(:active){background-image:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow)}button.neoFile,.neoFile{box-shadow:0 0 0 var(--light-shadow),0 0 0 var(--dark-shadow);transition:all .2s linear;-webkit-backface-visibility:hidden;backface-visibility:hidden}button.neoFile:hover,.neoFile:hover{box-shadow:-3px -3px 6px var(--light-shadow),3px 3px 6px var(--dark-shadow)}button.neoFile:focus-visible,.neoFile:focus-visible{background:linear-gradient(-45deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow);outline:0}button.neoFile.isSelected,.neoFile.isSelected{background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow)}button.neoFile.isSelected:focus-visible,.neoFile.isSelected:focus-visible{background:linear-gradient(-45deg,var(--primary-gradiend-lighter),var(--primary-gradiend-darker));outline:0}button.neoFile.is-active,button.neoFile.active,.neoFile.is-active,.neoFile.active{box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow);color:var(--black)}button.neoInput,.neoInput{box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light));border:0}button.neoInput:focus,.neoInput:focus{background:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter));border:0}button.neoSelect>select,.neoSelect>select{box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light));border:0}button.neoSelect>select:focus,.neoSelect>select:focus{background:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter));border:0}.neoCheckbox{opacity:0;width:0}.neoCheckbox:focus+label:before{background:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter))!important}.neoCheckboxContainer{position:relative}.neoCheckbox+label{padding:.15rem .15rem .15rem 2rem;cursor:pointer;font-size:1rem;line-height:1.5}.neoCheckbox+label:before{animation-name:none;width:1.5rem;height:1.5rem;border-radius:100px;position:absolute;left:0;top:0;content:"";border:0;box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light))!important}.neoCheckbox:checked.is-checked-bold+label{font-weight:bold}.neoCheckbox:checked+label:after{display:inline-block;width:.375rem;height:.6rem;top:.35rem;left:.55rem;transform:translateY(0) rotate(45deg);border-width:.1rem;border-top-width:.1rem;border-left-width:.1rem;border-style:solid;border-top-style:solid;border-left-style:solid;border-color:var(--text-color);border-top:0;border-left:0;position:absolute;content:""}hr.neoSeparatorFlat{height:10px;border:0;border-radius:20px;box-shadow:-2px -2px 4px var(--light-shadow),2px 2px 4px var(--dark-shadow);background:var(--background)}hr.neoSeparatorPressed{height:10px;border:0;border-radius:20px;box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light))}input.neoRange[type=range]{height:30px;-webkit-appearance:none;width:100%;background:transparent}input.neoRange[type=range]:focus{outline:0}input.neoRange[type=range]::-webkit-slider-runnable-track{width:100%;height:20px;cursor:pointer;animate:.2s;border-radius:20px;box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(90deg,hsl(0deg,90%,80%),hsl(10deg,90%,80%),hsl(20deg,90%,80%),hsl(30deg,90%,80%),hsl(40deg,90%,80%),hsl(50deg,90%,80%),hsl(60deg,90%,80%),hsl(70deg,90%,80%),hsl(80deg,90%,80%),hsl(90deg,90%,80%),hsl(100deg,90%,80%),hsl(110deg,90%,80%),hsl(120deg,90%,80%),hsl(130deg,90%,80%),hsl(140deg,90%,80%),hsl(150deg,90%,80%),hsl(160deg,90%,80%),hsl(170deg,90%,80%),hsl(180deg,90%,80%),hsl(190deg,90%,80%),hsl(200deg,90%,80%),hsl(210deg,90%,80%),hsl(220deg,90%,80%),hsl(230deg,90%,80%),hsl(240deg,90%,80%),hsl(250deg,90%,80%),hsl(260deg,90%,80%),hsl(270deg,90%,80%),hsl(280deg,90%,80%),hsl(290deg,90%,80%),hsl(300deg,90%,80%),hsl(310deg,90%,80%),hsl(320deg,90%,80%),hsl(330deg,90%,80%),hsl(340deg,90%,80%),hsl(350deg,90%,80%),hsl(359deg,90%,80%))!important}input.neoRange[type=range]::-webkit-slider-thumb{border:0;height:26px;width:26px;border-radius:20px;box-shadow:2px 2px 4px var(--dark-shadow),-2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-light),var(--primary-gradiend-dark))!important;cursor:pointer;-webkit-appearance:none;margin-top:-3px}input.neoRange[type=range]:focus::-webkit-slider-runnable-track{background:linear-gradient(90deg,hsl(0deg,90%,80%),hsl(10deg,90%,80%),hsl(20deg,90%,80%),hsl(30deg,90%,80%),hsl(40deg,90%,80%),hsl(50deg,90%,80%),hsl(60deg,90%,80%),hsl(70deg,90%,80%),hsl(80deg,90%,80%),hsl(90deg,90%,80%),hsl(100deg,90%,80%),hsl(110deg,90%,80%),hsl(120deg,90%,80%),hsl(130deg,90%,80%),hsl(140deg,90%,80%),hsl(150deg,90%,80%),hsl(160deg,90%,80%),hsl(170deg,90%,80%),hsl(180deg,90%,80%),hsl(190deg,90%,80%),hsl(200deg,90%,80%),hsl(210deg,90%,80%),hsl(220deg,90%,80%),hsl(230deg,90%,80%),hsl(240deg,90%,80%),hsl(250deg,90%,80%),hsl(260deg,90%,80%),hsl(270deg,90%,80%),hsl(280deg,90%,80%),hsl(290deg,90%,80%),hsl(300deg,90%,80%),hsl(310deg,90%,80%),hsl(320deg,90%,80%),hsl(330deg,90%,80%),hsl(340deg,90%,80%),hsl(350deg,90%,80%),hsl(359deg,90%,80%))!important}input.neoRange[type=range]::-moz-range-track{width:100%;height:20px;cursor:pointer;border-radius:20px;box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(90deg,hsl(0deg,90%,80%),hsl(10deg,90%,80%),hsl(20deg,90%,80%),hsl(30deg,90%,80%),hsl(40deg,90%,80%),hsl(50deg,90%,80%),hsl(60deg,90%,80%),hsl(70deg,90%,80%),hsl(80deg,90%,80%),hsl(90deg,90%,80%),hsl(100deg,90%,80%),hsl(110deg,90%,80%),hsl(120deg,90%,80%),hsl(130deg,90%,80%),hsl(140deg,90%,80%),hsl(150deg,90%,80%),hsl(160deg,90%,80%),hsl(170deg,90%,80%),hsl(180deg,90%,80%),hsl(190deg,90%,80%),hsl(200deg,90%,80%),hsl(210deg,90%,80%),hsl(220deg,90%,80%),hsl(230deg,90%,80%),hsl(240deg,90%,80%),hsl(250deg,90%,80%),hsl(260deg,90%,80%),hsl(270deg,90%,80%),hsl(280deg,90%,80%),hsl(290deg,90%,80%),hsl(300deg,90%,80%),hsl(310deg,90%,80%),hsl(320deg,90%,80%),hsl(330deg,90%,80%),hsl(340deg,90%,80%),hsl(350deg,90%,80%),hsl(359deg,90%,80%))!important;border:0}input.neoRange[type=range]::-moz-range-thumb{border:0;height:26px;width:26px;border-radius:20px;box-shadow:2px 2px 4px var(--dark-shadow),-2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-light),var(--primary-gradiend-dark))!important;cursor:pointer}body{color:var(--text-color);background-color:var(--background)}.background{background-color:var(--background)}details>summary::-webkit-details-marker{color:var(--text-color)}:focus-visible{outline:0}*,::after,::before{scrollbar-color:inherit;scrollbar-width:inherit}::-webkit-scrollbar{width:8px}::-webkit-scrollbar-button{width:8px;height:5px}::-webkit-scrollbar-track{background:transparent;border:thin solid transparent;box-shadow:none;border-radius:10px}::-webkit-scrollbar-thumb{background:var(--primary-color-dark);border:thin solid transparent;border-radius:10px}::-webkit-scrollbar-thumb:hover{background:var(--primary-color-dark)}::-moz-selection{color:var(--primary-color);background:var(--primary-color-dark)}::selection{color:var(--primary-color);background:var(--primary-color-dark)}.flex.flex-col-reverse>div:first-child{margin-top:1rem}.loadAnimation span{animation-name:blink;animation-duration:1.4s;animation-iteration-count:infinite;animation-fill-mode:both}.loadAnimation span:nth-child(1){animation-delay:.4s}.loadAnimation span:nth-child(2){animation-delay:.3s}.loadAnimation span:nth-child(3){animation-delay:.2s}.loadAnimation span:nth-child(4){animation-delay:.2s}.loadAnimation span:nth-child(5){animation-delay:.3s}.loadAnimation span:nth-child(6){animation-delay:.4s} /* ! tailwindcss v3.1.7 | MIT License | https://tailwindcss.com */ diff --git a/wwwroot/css/style.min.css.gz b/wwwroot/css/style.min.css.gz index 0c58f8a3e32db90a05e5523b6333f46718fc0ef0..9aae4c81a3fb96265d940b90b304b832a0fa4a76 100644 GIT binary patch literal 28371 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 literal 28247 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 diff --git a/wwwroot/fonts/ionicons.eot b/wwwroot/fonts/ionicons.eot index a0e37e22d97a5f0e7ceef7e9bf29230fe97a4b2a..579c1e19fc63d8eacfbc509bab0a9fef00d19b0e 100644 GIT binary patch delta 271 zcmeDCz}EGFjg@N$BSXYQR&$nXM!%vbIy7;#dRQAUFmAV*c*M9Hmz#14BSQt1M#i49g z1_4GVD4Pu^o;v-^EJj^*4~A(B%nXbyoIu3_jI2;LD}w@~0+h`L6c3)RFq`o_s|kZH dgX#2dvl%s*O>|ACE6rgn*ghFZNOL1O1OSfEJKg{Q delta 274 zcmeDBz}EMHjg@Z)BSXwYR&$oWmG+hs9hx}WRm-*wVi8Z#=)vR|ak-pa28I%|FYwLFw(yn;5rmVr2Y0LtT~O5m*BQ0}BHOqZE|Q z${@h#3T3ka#WSX#nZ>B9?!_>Tfti7kg%hY)fRO{rW@S)dREDzIfZ}1(6=pM@XE$Wf iWiVtgoc?7tqXvtiuA$*{`8kXQ+xzA)7D{s?xdi|<6+~tL diff --git a/wwwroot/fonts/ionicons.svg b/wwwroot/fonts/ionicons.svg index bd3fabd..43bbea8 100644 --- a/wwwroot/fonts/ionicons.svg +++ b/wwwroot/fonts/ionicons.svg @@ -1,713 +1,2090 @@ - - + + -Created by FontForge 20160407 at Thu Nov 21 14:40:23 2019 +Created by FontForge 20160407 at Fri May 24 15:45:40 2019 By Adam Bradley Copyright (c) 2019, Adam Bradley - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + diff --git a/wwwroot/fonts/ionicons.ttf b/wwwroot/fonts/ionicons.ttf index 42926d2f8aa1dbd371073c85cbf988ff3e4ad218..ffd7d6fb9780bb4c7c994c66c33ac479777b703d 100644 GIT binary patch delta 267 zcmccfj_t-fHVFns1_lORh6V;^h5$FW5Z_i0YXb(x?KTr7>}5@WQXJ_ym1#c=Cw^mK zkjPGqppPvjI-}BFi1y$4F(z> z{mbZDJipCX25u&xaSRMM`8bN9bV(EAHb%zJGt^ZW9)OiIFt9LiFp5LjtPBE-PEa-* zP&{?I)GS6_bq|JVK*ut&Z~_$zFtS3~tPBc_3Q#s1P&{~g-YmxRtR@V)45rgvW;1Fq Vo9LQOFPP0(u>B#Bkmg2m1_12FHmLvr delta 270 zcmccdj_uAnHVFns1_lORh6V;^h5$FW5Z`vy@@))^+Z`rK*vnb~r8v@aD${-#PW;Be zAd$ns*cg(LnwTQW)B9>-iI0Q$>dM^=j57}~Ffhp%d@%%Pl8Mv8%#xXG5{IhHul-}ONxQ&tV^9*%WhDTuK3=Av`9E?&>HYD$t3{Y;XjxF diff --git a/wwwroot/fonts/ionicons.woff b/wwwroot/fonts/ionicons.woff index 096517daacbe5345488d41a4f7bd908718ad37a0..8708d82b21750575dae633c6490017b4b048bdc1 100644 GIT binary patch delta 486 zcmey-#PX$y#i88a&5ePPfq{XMv4nvaL~oA(l30P8TZk`E9Y|gph-F$mtPLhQI5P%J zY%yRF)(=dXxFgz6hk=1fri)`*QbB%k2?N8oISdS3n}8Z3B8|EhR@_QXNJ&Uwc=RIP z?fRpix%-R?j13zO_}cX)X~cf||M&l2pEW(~jWK*|8%!9?8My;CCo+nCsdo@)d49;> zL-^v-yGpDc39@1$0jv`OE~yFaO`YGP`q;T$GvgD7=4Xk@Wj0>Nj$d4I;8Ny(>G$XQ zcpnJb2kfwE3QcI0^J{!x(7*nGuFYff0%_Z?B0HM*?K)SsQo3x_H|Bi(x>bp-c9#y6 z-}x=MqcyySJ@4{z;T_C@LOZ>=qTaV{~JKRx`(?kKjG0ZFzq`%`ABR!8ns(dMd7B% zRax2fYW7n(6CX!s$IDvx_zN5MCmj5I|I?ylGm?5F&zoABZCho2?Wx-%kJC=;R(F0Z zQMZvcugq7wQ?z|?$d7QR`^PLlZS`zkTX_6X*rKm0m!eMVZnu}c738sb!MD>~ylV39 PhEwzy8T6j8STFzp+&98) delta 490 zcmey;#PXww#i88a&5ePPfq{XMv4VjYL~oA)l30P8TZk`E9Y|gph-KPU%ePH*aApjd z*kZsU%G3L5;*MxPT?PgwdGXbiy9@G*OBfiwEnr~a+62@P5oy%5u;Ny7LP|mcLz4IJ zQ~N*uF^iYnF;l|f!L#|Pw-ua)R=wq`-<-%O_NCrHq_zL2 zcC6MjzwlLBjV?;+(mt#qOUm9HkW&p5(mZmarEzKhg^m3e+h0xoa%9F*=81ED|NQam z&SZv)1NCXQ2KUH!GYvgSC4FlKDbHCzUw(6j5x&FJb<6Oc^ z=2g%6{c>l2c}=z4h4eR-9D)8o73DYT4?Jiv*3lBtxM=io$~@z15>kR6RI%wY(+eGm*$F!LLy82mXwlIc&-cSeP!m>lW)Fz3s + diff --git a/wwwroot/vendor/bulma.css b/wwwroot/vendor/bulma.css index 54cf00f..fc61caf 100644 --- a/wwwroot/vendor/bulma.css +++ b/wwwroot/vendor/bulma.css @@ -246,16 +246,9 @@ body { } a { - color: hsl(229deg, 53%, 53%); cursor: pointer; text-decoration: none; } -a strong { - color: currentColor; -} -a:hover { - color: hsl(0deg, 0%, 21%); -} code { background-color: hsl(0deg, 0%, 96%); @@ -340,10 +333,6 @@ table th { } /* Bulma Elements */ .button { - background-color: hsl(0deg, 0%, 100%); - border-color: hsl(0deg, 0%, 86%); - border-width: 1px; - color: hsl(0deg, 0%, 21%); cursor: pointer; justify-content: center; padding-bottom: calc(0.5em - 1px); @@ -353,9 +342,6 @@ table th { text-align: center; white-space: nowrap; } -.button strong { - color: inherit; -} .button .icon, .button .icon.is-small, .button .icon.is-medium, .button .icon.is-large { height: 1.5em; width: 1.5em; @@ -372,21 +358,6 @@ table th { margin-left: calc(-0.5em - 1px); margin-right: calc(-0.5em - 1px); } -.button:hover, .button.is-hovered { - border-color: hsl(0deg, 0%, 71%); - color: hsl(0deg, 0%, 21%); -} -.button:focus, .button.is-focused { - border-color: hsl(229deg, 53%, 53%); - color: hsl(0deg, 0%, 21%); -} -.button:focus:not(:active), .button.is-focused:not(:active) { - box-shadow: 0 0 0 0.125em rgba(72, 95, 199, 0.25); -} -.button:active, .button.is-active { - border-color: hsl(0deg, 0%, 29%); - color: hsl(0deg, 0%, 21%); -} .button.is-text { background-color: transparent; border-color: transparent; @@ -2298,19 +2269,18 @@ a.tag:hover { background-color: hsl(0deg, 0%, 100%); border-color: hsl(0deg, 0%, 86%); border-radius: 4px; - color: hsl(0deg, 0%, 21%); } .select select::-moz-placeholder, .textarea::-moz-placeholder, .input::-moz-placeholder { - color: rgba(54, 54, 54, 0.3); + color: var(--placeholder-text-color); } .select select::-webkit-input-placeholder, .textarea::-webkit-input-placeholder, .input::-webkit-input-placeholder { - color: rgba(54, 54, 54, 0.3); + color: var(--placeholder-text-color); } .select select:-moz-placeholder, .textarea:-moz-placeholder, .input:-moz-placeholder { - color: rgba(54, 54, 54, 0.3); + color: var(--placeholder-text-color); } .select select:-ms-input-placeholder, .textarea:-ms-input-placeholder, .input:-ms-input-placeholder { - color: rgba(54, 54, 54, 0.3); + color: var(--placeholder-text-color); } .select select:hover, .textarea:hover, .input:hover, .select select.is-hovered, .is-hovered.textarea, .is-hovered.input { border-color: hsl(0deg, 0%, 71%); @@ -2323,19 +2293,19 @@ a.tag:hover { background-color: hsl(0deg, 0%, 96%); border-color: hsl(0deg, 0%, 96%); box-shadow: none; - color: hsl(0deg, 0%, 48%); + color: var(--placeholder-text-color); } .select select[disabled]::-moz-placeholder, [disabled].textarea::-moz-placeholder, [disabled].input::-moz-placeholder, fieldset[disabled] .select select::-moz-placeholder, .select fieldset[disabled] select::-moz-placeholder, fieldset[disabled] .textarea::-moz-placeholder, fieldset[disabled] .input::-moz-placeholder { - color: rgba(122, 122, 122, 0.3); + color: var(--placeholder-text-color); } .select select[disabled]::-webkit-input-placeholder, [disabled].textarea::-webkit-input-placeholder, [disabled].input::-webkit-input-placeholder, fieldset[disabled] .select select::-webkit-input-placeholder, .select fieldset[disabled] select::-webkit-input-placeholder, fieldset[disabled] .textarea::-webkit-input-placeholder, fieldset[disabled] .input::-webkit-input-placeholder { - color: rgba(122, 122, 122, 0.3); + color: var(--placeholder-text-color); } .select select[disabled]:-moz-placeholder, [disabled].textarea:-moz-placeholder, [disabled].input:-moz-placeholder, fieldset[disabled] .select select:-moz-placeholder, .select fieldset[disabled] select:-moz-placeholder, fieldset[disabled] .textarea:-moz-placeholder, fieldset[disabled] .input:-moz-placeholder { - color: rgba(122, 122, 122, 0.3); + color: var(--placeholder-text-color); } .select select[disabled]:-ms-input-placeholder, [disabled].textarea:-ms-input-placeholder, [disabled].input:-ms-input-placeholder, fieldset[disabled] .select select:-ms-input-placeholder, .select fieldset[disabled] select:-ms-input-placeholder, fieldset[disabled] .textarea:-ms-input-placeholder, fieldset[disabled] .input:-ms-input-placeholder { - color: rgba(122, 122, 122, 0.3); + color: var(--placeholder-text-color); } .textarea, .input { @@ -3371,7 +3341,6 @@ a.tag:hover { } .dropdown-item { - color: hsl(0deg, 0%, 29%); display: block; font-size: 0.875rem; line-height: 1.5; diff --git a/wwwroot/vendor/bulma.min.css b/wwwroot/vendor/bulma.min.css index 9b67c4e..095630e 100644 --- a/wwwroot/vendor/bulma.min.css +++ b/wwwroot/vendor/bulma.min.css @@ -1,2 +1,2 @@ /*! bulma.io v0.9.4 | MIT License | github.com/jgthms/bulma */ -.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis,.file-cta,.file-name,.select select,.textarea,.input,.button{-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.5em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(.5em - 1px);padding-left:calc(.75em - 1px);padding-right:calc(.75em - 1px);padding-top:calc(.5em - 1px);position:relative;vertical-align:top}.pagination-previous:focus,.pagination-next:focus,.pagination-link:focus,.pagination-ellipsis:focus,.file-cta:focus,.file-name:focus,.select select:focus,.textarea:focus,.input:focus,.button:focus,.is-focused.pagination-previous,.is-focused.pagination-next,.is-focused.pagination-link,.is-focused.pagination-ellipsis,.is-focused.file-cta,.is-focused.file-name,.select select.is-focused,.is-focused.textarea,.is-focused.input,.is-focused.button,.pagination-previous:active,.pagination-next:active,.pagination-link:active,.pagination-ellipsis:active,.file-cta:active,.file-name:active,.select select:active,.textarea:active,.input:active,.button:active,.is-active.pagination-previous,.is-active.pagination-next,.is-active.pagination-link,.is-active.pagination-ellipsis,.is-active.file-cta,.is-active.file-name,.select select.is-active,.is-active.textarea,.is-active.input,.is-active.button{outline:0}[disabled].pagination-previous,[disabled].pagination-next,[disabled].pagination-link,[disabled].pagination-ellipsis,[disabled].file-cta,[disabled].file-name,.select select[disabled],[disabled].textarea,[disabled].input,[disabled].button,fieldset[disabled] .pagination-previous,fieldset[disabled] .pagination-next,fieldset[disabled] .pagination-link,fieldset[disabled] .pagination-ellipsis,fieldset[disabled] .file-cta,fieldset[disabled] .file-name,fieldset[disabled] .select select,.select fieldset[disabled] select,fieldset[disabled] .textarea,fieldset[disabled] .input,fieldset[disabled] .button{cursor:not-allowed}.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis,.file,.button{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.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%;transform:rotate(-45deg);transform-origin:center;width:.625em}.pagination:not(:last-child),.message:not(:last-child),.progress:not(:last-child),.notification:not(:last-child),.content:not(:last-child){margin-bottom:1.5rem}.delete{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-moz-appearance:none;-webkit-appearance:none;background-color:rgba(10,10,10,.2);border:0;border-radius:9999px;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::before,.delete::after{background-color:hsl(0deg,0%,100%);content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}.delete::before{height:2px;width:50%}.delete::after{height:50%;width:2px}.delete:hover,.delete:focus{background-color:rgba(10,10,10,.3)}.delete:active{background-color:rgba(10,10,10,.4)}.is-small.delete{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}.is-medium.delete{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}.is-large.delete{height:32px;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}.control.is-loading::after,.select.is-loading::after,.loader,.button.is-loading::after{animation:spinAround 500ms infinite linear;border:2px solid hsl(0deg,0%,86%);border-radius:9999px;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1em;position:relative;width:1em}.image.is-square img,.image.is-square .has-ratio,.image.is-1by1 img,.image.is-1by1 .has-ratio,.image.is-5by4 img,.image.is-5by4 .has-ratio,.image.is-4by3 img,.image.is-4by3 .has-ratio,.image.is-3by2 img,.image.is-3by2 .has-ratio,.image.is-5by3 img,.image.is-5by3 .has-ratio,.image.is-16by9 img,.image.is-16by9 .has-ratio,.image.is-2by1 img,.image.is-2by1 .has-ratio,.image.is-3by1 img,.image.is-3by1 .has-ratio,.image.is-4by5 img,.image.is-4by5 .has-ratio,.image.is-3by4 img,.image.is-3by4 .has-ratio,.image.is-2by3 img,.image.is-2by3 .has-ratio,.image.is-3by5 img,.image.is-3by5 .has-ratio,.image.is-9by16 img,.image.is-9by16 .has-ratio,.image.is-1by2 img,.image.is-1by2 .has-ratio,.image.is-1by3 img,.image.is-1by3 .has-ratio{bottom:0;left:0;position:absolute;right:0;top:0}html{background-color:hsl(0deg,0%,100%);font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:hidden;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}article,aside,figure,footer,header,hgroup,section{display:block}body,button,input,optgroup,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:hsl(0deg,0%,29%);font-size:1em;font-weight:400;line-height:1.5}a{color:hsl(229deg,53%,53%);cursor:pointer;text-decoration:none}a strong{color:currentColor}a:hover{color:hsl(0deg,0%,21%)}code{background-color:hsl(0deg,0%,96%);color:#da1039;font-size:.875em;font-weight:normal;padding:.25em .5em .25em}hr{background-color:hsl(0deg,0%,96%);border:0;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:hsl(0deg,0%,21%);font-weight:700}fieldset{border:0}pre{-webkit-overflow-scrolling:touch;background-color:hsl(0deg,0%,96%);color:hsl(0deg,0%,29%);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{vertical-align:top}table td:not([align]),table th:not([align]){text-align:inherit}table th{color:hsl(0deg,0%,21%)}@keyframes spinAround{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}.button{background-color:hsl(0deg,0%,100%);border-color:hsl(0deg,0%,86%);border-width:1px;color:hsl(0deg,0%,21%);cursor:pointer;justify-content:center;padding-bottom:calc(.5em - 1px);padding-left:1em;padding-right:1em;padding-top:calc(.5em - 1px);text-align:center;white-space:nowrap}.button strong{color:inherit}.button .icon,.button .icon.is-small,.button .icon.is-medium,.button .icon.is-large{height:1.5em;width:1.5em}.button .icon:first-child:not(:last-child){margin-left:calc(-.5em - 1px);margin-right:.25em}.button .icon:last-child:not(:first-child){margin-left:.25em;margin-right:calc(-.5em - 1px)}.button .icon:first-child:last-child{margin-left:calc(-.5em - 1px);margin-right:calc(-.5em - 1px)}.button:hover,.button.is-hovered{border-color:hsl(0deg,0%,71%);color:hsl(0deg,0%,21%)}.button:focus,.button.is-focused{border-color:hsl(229deg,53%,53%);color:hsl(0deg,0%,21%)}.button:focus:not(:active),.button.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(72,95,199,.25)}.button:active,.button.is-active{border-color:hsl(0deg,0%,29%);color:hsl(0deg,0%,21%)}.button.is-text{background-color:transparent;border-color:transparent;color:hsl(0deg,0%,29%);text-decoration:underline}.button.is-text:hover,.button.is-text.is-hovered,.button.is-text:focus,.button.is-text.is-focused{background-color:hsl(0deg,0%,96%);color:hsl(0deg,0%,21%)}.button.is-text:active,.button.is-text.is-active{background-color:#e8e8e8;color:hsl(0deg,0%,21%)}.button.is-text[disabled],fieldset[disabled] .button.is-text{background-color:transparent;border-color:transparent;box-shadow:none}.button.is-ghost{background:none;border-color:transparent;color:hsl(229deg,53%,53%);text-decoration:none}.button.is-ghost:hover,.button.is-ghost.is-hovered{color:hsl(229deg,53%,53%);text-decoration:underline}.button.is-white{background-color:hsl(0deg,0%,100%);border-color:transparent;color:hsl(0deg,0%,4%)}.button.is-white:hover,.button.is-white.is-hovered{background-color:#f9f9f9;border-color:transparent;color:hsl(0deg,0%,4%)}.button.is-white:focus,.button.is-white.is-focused{border-color:transparent;color:hsl(0deg,0%,4%)}.button.is-white:focus:not(:active),.button.is-white.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(255,255,255,.25)}.button.is-white:active,.button.is-white.is-active{background-color:#f2f2f2;border-color:transparent;color:hsl(0deg,0%,4%)}.button.is-white[disabled],fieldset[disabled] .button.is-white{background-color:hsl(0deg,0%,100%);border-color:hsl(0deg,0%,100%);box-shadow:none}.button.is-white.is-inverted{background-color:hsl(0deg,0%,4%);color:hsl(0deg,0%,100%)}.button.is-white.is-inverted:hover,.button.is-white.is-inverted.is-hovered{background-color:#000}.button.is-white.is-inverted[disabled],fieldset[disabled] .button.is-white.is-inverted{background-color:hsl(0deg,0%,4%);border-color:transparent;box-shadow:none;color:hsl(0deg,0%,100%)}.button.is-white.is-loading::after{border-color:transparent transparent hsl(0deg,0%,4%) hsl(0deg,0%,4%)!important}.button.is-white.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,100%);color:hsl(0deg,0%,100%)}.button.is-white.is-outlined:hover,.button.is-white.is-outlined.is-hovered,.button.is-white.is-outlined:focus,.button.is-white.is-outlined.is-focused{background-color:hsl(0deg,0%,100%);border-color:hsl(0deg,0%,100%);color:hsl(0deg,0%,4%)}.button.is-white.is-outlined.is-loading::after{border-color:transparent transparent hsl(0deg,0%,100%) hsl(0deg,0%,100%)!important}.button.is-white.is-outlined.is-loading:hover::after,.button.is-white.is-outlined.is-loading.is-hovered::after,.button.is-white.is-outlined.is-loading:focus::after,.button.is-white.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(0deg,0%,4%) hsl(0deg,0%,4%)!important}.button.is-white.is-outlined[disabled],fieldset[disabled] .button.is-white.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,100%);box-shadow:none;color:hsl(0deg,0%,100%)}.button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,4%);color:hsl(0deg,0%,4%)}.button.is-white.is-inverted.is-outlined:hover,.button.is-white.is-inverted.is-outlined.is-hovered,.button.is-white.is-inverted.is-outlined:focus,.button.is-white.is-inverted.is-outlined.is-focused{background-color:hsl(0deg,0%,4%);color:hsl(0deg,0%,100%)}.button.is-white.is-inverted.is-outlined.is-loading:hover::after,.button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-white.is-inverted.is-outlined.is-loading:focus::after,.button.is-white.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(0deg,0%,100%) hsl(0deg,0%,100%)!important}.button.is-white.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,4%);box-shadow:none;color:hsl(0deg,0%,4%)}.button.is-black{background-color:hsl(0deg,0%,4%);border-color:transparent;color:hsl(0deg,0%,100%)}.button.is-black:hover,.button.is-black.is-hovered{background-color:#040404;border-color:transparent;color:hsl(0deg,0%,100%)}.button.is-black:focus,.button.is-black.is-focused{border-color:transparent;color:hsl(0deg,0%,100%)}.button.is-black:focus:not(:active),.button.is-black.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.button.is-black:active,.button.is-black.is-active{background-color:#000;border-color:transparent;color:hsl(0deg,0%,100%)}.button.is-black[disabled],fieldset[disabled] .button.is-black{background-color:hsl(0deg,0%,4%);border-color:hsl(0deg,0%,4%);box-shadow:none}.button.is-black.is-inverted{background-color:hsl(0deg,0%,100%);color:hsl(0deg,0%,4%)}.button.is-black.is-inverted:hover,.button.is-black.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-black.is-inverted[disabled],fieldset[disabled] .button.is-black.is-inverted{background-color:hsl(0deg,0%,100%);border-color:transparent;box-shadow:none;color:hsl(0deg,0%,4%)}.button.is-black.is-loading::after{border-color:transparent transparent hsl(0deg,0%,100%) hsl(0deg,0%,100%)!important}.button.is-black.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,4%);color:hsl(0deg,0%,4%)}.button.is-black.is-outlined:hover,.button.is-black.is-outlined.is-hovered,.button.is-black.is-outlined:focus,.button.is-black.is-outlined.is-focused{background-color:hsl(0deg,0%,4%);border-color:hsl(0deg,0%,4%);color:hsl(0deg,0%,100%)}.button.is-black.is-outlined.is-loading::after{border-color:transparent transparent hsl(0deg,0%,4%) hsl(0deg,0%,4%)!important}.button.is-black.is-outlined.is-loading:hover::after,.button.is-black.is-outlined.is-loading.is-hovered::after,.button.is-black.is-outlined.is-loading:focus::after,.button.is-black.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(0deg,0%,100%) hsl(0deg,0%,100%)!important}.button.is-black.is-outlined[disabled],fieldset[disabled] .button.is-black.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,4%);box-shadow:none;color:hsl(0deg,0%,4%)}.button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,100%);color:hsl(0deg,0%,100%)}.button.is-black.is-inverted.is-outlined:hover,.button.is-black.is-inverted.is-outlined.is-hovered,.button.is-black.is-inverted.is-outlined:focus,.button.is-black.is-inverted.is-outlined.is-focused{background-color:hsl(0deg,0%,100%);color:hsl(0deg,0%,4%)}.button.is-black.is-inverted.is-outlined.is-loading:hover::after,.button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-black.is-inverted.is-outlined.is-loading:focus::after,.button.is-black.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(0deg,0%,4%) hsl(0deg,0%,4%)!important}.button.is-black.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,100%);box-shadow:none;color:hsl(0deg,0%,100%)}.button.is-light{background-color:hsl(0deg,0%,96%);border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light:hover,.button.is-light.is-hovered{background-color:#eee;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light:focus,.button.is-light.is-focused{border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light:focus:not(:active),.button.is-light.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(245,245,245,.25)}.button.is-light:active,.button.is-light.is-active{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light[disabled],fieldset[disabled] .button.is-light{background-color:hsl(0deg,0%,96%);border-color:hsl(0deg,0%,96%);box-shadow:none}.button.is-light.is-inverted{background-color:rgba(0,0,0,.7);color:hsl(0deg,0%,96%)}.button.is-light.is-inverted:hover,.button.is-light.is-inverted.is-hovered{background-color:rgba(0,0,0,.7)}.button.is-light.is-inverted[disabled],fieldset[disabled] .button.is-light.is-inverted{background-color:rgba(0,0,0,.7);border-color:transparent;box-shadow:none;color:hsl(0deg,0%,96%)}.button.is-light.is-loading::after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-light.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,96%);color:hsl(0deg,0%,96%)}.button.is-light.is-outlined:hover,.button.is-light.is-outlined.is-hovered,.button.is-light.is-outlined:focus,.button.is-light.is-outlined.is-focused{background-color:hsl(0deg,0%,96%);border-color:hsl(0deg,0%,96%);color:rgba(0,0,0,.7)}.button.is-light.is-outlined.is-loading::after{border-color:transparent transparent hsl(0deg,0%,96%) hsl(0deg,0%,96%)!important}.button.is-light.is-outlined.is-loading:hover::after,.button.is-light.is-outlined.is-loading.is-hovered::after,.button.is-light.is-outlined.is-loading:focus::after,.button.is-light.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-light.is-outlined[disabled],fieldset[disabled] .button.is-light.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,96%);box-shadow:none;color:hsl(0deg,0%,96%)}.button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);color:rgba(0,0,0,.7)}.button.is-light.is-inverted.is-outlined:hover,.button.is-light.is-inverted.is-outlined.is-hovered,.button.is-light.is-inverted.is-outlined:focus,.button.is-light.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,.7);color:hsl(0deg,0%,96%)}.button.is-light.is-inverted.is-outlined.is-loading:hover::after,.button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-light.is-inverted.is-outlined.is-loading:focus::after,.button.is-light.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(0deg,0%,96%) hsl(0deg,0%,96%)!important}.button.is-light.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);box-shadow:none;color:rgba(0,0,0,.7)}.button.is-dark{background-color:hsl(0deg,0%,21%);border-color:transparent;color:#fff}.button.is-dark:hover,.button.is-dark.is-hovered{background-color:#2f2f2f;border-color:transparent;color:#fff}.button.is-dark:focus,.button.is-dark.is-focused{border-color:transparent;color:#fff}.button.is-dark:focus:not(:active),.button.is-dark.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.button.is-dark:active,.button.is-dark.is-active{background-color:#292929;border-color:transparent;color:#fff}.button.is-dark[disabled],fieldset[disabled] .button.is-dark{background-color:hsl(0deg,0%,21%);border-color:hsl(0deg,0%,21%);box-shadow:none}.button.is-dark.is-inverted{background-color:#fff;color:hsl(0deg,0%,21%)}.button.is-dark.is-inverted:hover,.button.is-dark.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-dark.is-inverted[disabled],fieldset[disabled] .button.is-dark.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:hsl(0deg,0%,21%)}.button.is-dark.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-dark.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,21%);color:hsl(0deg,0%,21%)}.button.is-dark.is-outlined:hover,.button.is-dark.is-outlined.is-hovered,.button.is-dark.is-outlined:focus,.button.is-dark.is-outlined.is-focused{background-color:hsl(0deg,0%,21%);border-color:hsl(0deg,0%,21%);color:#fff}.button.is-dark.is-outlined.is-loading::after{border-color:transparent transparent hsl(0deg,0%,21%) hsl(0deg,0%,21%)!important}.button.is-dark.is-outlined.is-loading:hover::after,.button.is-dark.is-outlined.is-loading.is-hovered::after,.button.is-dark.is-outlined.is-loading:focus::after,.button.is-dark.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff!important}.button.is-dark.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,21%);box-shadow:none;color:hsl(0deg,0%,21%)}.button.is-dark.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-dark.is-inverted.is-outlined:hover,.button.is-dark.is-inverted.is-outlined.is-hovered,.button.is-dark.is-inverted.is-outlined:focus,.button.is-dark.is-inverted.is-outlined.is-focused{background-color:#fff;color:hsl(0deg,0%,21%)}.button.is-dark.is-inverted.is-outlined.is-loading:hover::after,.button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-dark.is-inverted.is-outlined.is-loading:focus::after,.button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(0deg,0%,21%) hsl(0deg,0%,21%)!important}.button.is-dark.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary{background-color:hsl(171deg,100%,41%);border-color:transparent;color:#fff}.button.is-primary:hover,.button.is-primary.is-hovered{background-color:#00c4a7;border-color:transparent;color:#fff}.button.is-primary:focus,.button.is-primary.is-focused{border-color:transparent;color:#fff}.button.is-primary:focus:not(:active),.button.is-primary.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.button.is-primary:active,.button.is-primary.is-active{background-color:#00b89c;border-color:transparent;color:#fff}.button.is-primary[disabled],fieldset[disabled] .button.is-primary{background-color:hsl(171deg,100%,41%);border-color:hsl(171deg,100%,41%);box-shadow:none}.button.is-primary.is-inverted{background-color:#fff;color:hsl(171deg,100%,41%)}.button.is-primary.is-inverted:hover,.button.is-primary.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-primary.is-inverted[disabled],fieldset[disabled] .button.is-primary.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:hsl(171deg,100%,41%)}.button.is-primary.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-primary.is-outlined{background-color:transparent;border-color:hsl(171deg,100%,41%);color:hsl(171deg,100%,41%)}.button.is-primary.is-outlined:hover,.button.is-primary.is-outlined.is-hovered,.button.is-primary.is-outlined:focus,.button.is-primary.is-outlined.is-focused{background-color:hsl(171deg,100%,41%);border-color:hsl(171deg,100%,41%);color:#fff}.button.is-primary.is-outlined.is-loading::after{border-color:transparent transparent hsl(171deg,100%,41%) hsl(171deg,100%,41%)!important}.button.is-primary.is-outlined.is-loading:hover::after,.button.is-primary.is-outlined.is-loading.is-hovered::after,.button.is-primary.is-outlined.is-loading:focus::after,.button.is-primary.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff!important}.button.is-primary.is-outlined[disabled],fieldset[disabled] .button.is-primary.is-outlined{background-color:transparent;border-color:hsl(171deg,100%,41%);box-shadow:none;color:hsl(171deg,100%,41%)}.button.is-primary.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-primary.is-inverted.is-outlined:hover,.button.is-primary.is-inverted.is-outlined.is-hovered,.button.is-primary.is-inverted.is-outlined:focus,.button.is-primary.is-inverted.is-outlined.is-focused{background-color:#fff;color:hsl(171deg,100%,41%)}.button.is-primary.is-inverted.is-outlined.is-loading:hover::after,.button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-primary.is-inverted.is-outlined.is-loading:focus::after,.button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(171deg,100%,41%) hsl(171deg,100%,41%)!important}.button.is-primary.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-primary.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary.is-light{background-color:#ebfffc;color:#00947e}.button.is-primary.is-light:hover,.button.is-primary.is-light.is-hovered{background-color:#defffa;border-color:transparent;color:#00947e}.button.is-primary.is-light:active,.button.is-primary.is-light.is-active{background-color:#d1fff8;border-color:transparent;color:#00947e}.button.is-link{background-color:hsl(229deg,53%,53%);border-color:transparent;color:#fff}.button.is-link:hover,.button.is-link.is-hovered{background-color:#3e56c4;border-color:transparent;color:#fff}.button.is-link:focus,.button.is-link.is-focused{border-color:transparent;color:#fff}.button.is-link:focus:not(:active),.button.is-link.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(72,95,199,.25)}.button.is-link:active,.button.is-link.is-active{background-color:#3a51bb;border-color:transparent;color:#fff}.button.is-link[disabled],fieldset[disabled] .button.is-link{background-color:hsl(229deg,53%,53%);border-color:hsl(229deg,53%,53%);box-shadow:none}.button.is-link.is-inverted{background-color:#fff;color:hsl(229deg,53%,53%)}.button.is-link.is-inverted:hover,.button.is-link.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-link.is-inverted[disabled],fieldset[disabled] .button.is-link.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:hsl(229deg,53%,53%)}.button.is-link.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-link.is-outlined{background-color:transparent;border-color:hsl(229deg,53%,53%);color:hsl(229deg,53%,53%)}.button.is-link.is-outlined:hover,.button.is-link.is-outlined.is-hovered,.button.is-link.is-outlined:focus,.button.is-link.is-outlined.is-focused{background-color:hsl(229deg,53%,53%);border-color:hsl(229deg,53%,53%);color:#fff}.button.is-link.is-outlined.is-loading::after{border-color:transparent transparent hsl(229deg,53%,53%) hsl(229deg,53%,53%)!important}.button.is-link.is-outlined.is-loading:hover::after,.button.is-link.is-outlined.is-loading.is-hovered::after,.button.is-link.is-outlined.is-loading:focus::after,.button.is-link.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff!important}.button.is-link.is-outlined[disabled],fieldset[disabled] .button.is-link.is-outlined{background-color:transparent;border-color:hsl(229deg,53%,53%);box-shadow:none;color:hsl(229deg,53%,53%)}.button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-link.is-inverted.is-outlined:hover,.button.is-link.is-inverted.is-outlined.is-hovered,.button.is-link.is-inverted.is-outlined:focus,.button.is-link.is-inverted.is-outlined.is-focused{background-color:#fff;color:hsl(229deg,53%,53%)}.button.is-link.is-inverted.is-outlined.is-loading:hover::after,.button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-link.is-inverted.is-outlined.is-loading:focus::after,.button.is-link.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(229deg,53%,53%) hsl(229deg,53%,53%)!important}.button.is-link.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-link.is-light{background-color:#eff1fa;color:#3850b7}.button.is-link.is-light:hover,.button.is-link.is-light.is-hovered{background-color:#e6e9f7;border-color:transparent;color:#3850b7}.button.is-link.is-light:active,.button.is-link.is-light.is-active{background-color:#dce0f4;border-color:transparent;color:#3850b7}.button.is-info{background-color:hsl(207deg,61%,53%);border-color:transparent;color:#fff}.button.is-info:hover,.button.is-info.is-hovered{background-color:#3488ce;border-color:transparent;color:#fff}.button.is-info:focus,.button.is-info.is-focused{border-color:transparent;color:#fff}.button.is-info:focus:not(:active),.button.is-info.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(62,142,208,.25)}.button.is-info:active,.button.is-info.is-active{background-color:#3082c5;border-color:transparent;color:#fff}.button.is-info[disabled],fieldset[disabled] .button.is-info{background-color:hsl(207deg,61%,53%);border-color:hsl(207deg,61%,53%);box-shadow:none}.button.is-info.is-inverted{background-color:#fff;color:hsl(207deg,61%,53%)}.button.is-info.is-inverted:hover,.button.is-info.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-info.is-inverted[disabled],fieldset[disabled] .button.is-info.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:hsl(207deg,61%,53%)}.button.is-info.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-info.is-outlined{background-color:transparent;border-color:hsl(207deg,61%,53%);color:hsl(207deg,61%,53%)}.button.is-info.is-outlined:hover,.button.is-info.is-outlined.is-hovered,.button.is-info.is-outlined:focus,.button.is-info.is-outlined.is-focused{background-color:hsl(207deg,61%,53%);border-color:hsl(207deg,61%,53%);color:#fff}.button.is-info.is-outlined.is-loading::after{border-color:transparent transparent hsl(207deg,61%,53%) hsl(207deg,61%,53%)!important}.button.is-info.is-outlined.is-loading:hover::after,.button.is-info.is-outlined.is-loading.is-hovered::after,.button.is-info.is-outlined.is-loading:focus::after,.button.is-info.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff!important}.button.is-info.is-outlined[disabled],fieldset[disabled] .button.is-info.is-outlined{background-color:transparent;border-color:hsl(207deg,61%,53%);box-shadow:none;color:hsl(207deg,61%,53%)}.button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-info.is-inverted.is-outlined:hover,.button.is-info.is-inverted.is-outlined.is-hovered,.button.is-info.is-inverted.is-outlined:focus,.button.is-info.is-inverted.is-outlined.is-focused{background-color:#fff;color:hsl(207deg,61%,53%)}.button.is-info.is-inverted.is-outlined.is-loading:hover::after,.button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-info.is-inverted.is-outlined.is-loading:focus::after,.button.is-info.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(207deg,61%,53%) hsl(207deg,61%,53%)!important}.button.is-info.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-info.is-light{background-color:#eff5fb;color:#296fa8}.button.is-info.is-light:hover,.button.is-info.is-light.is-hovered{background-color:#e4eff9;border-color:transparent;color:#296fa8}.button.is-info.is-light:active,.button.is-info.is-light.is-active{background-color:#dae9f6;border-color:transparent;color:#296fa8}.button.is-success{background-color:hsl(153deg,53%,53%);border-color:transparent;color:#fff}.button.is-success:hover,.button.is-success.is-hovered{background-color:#3ec487;border-color:transparent;color:#fff}.button.is-success:focus,.button.is-success.is-focused{border-color:transparent;color:#fff}.button.is-success:focus:not(:active),.button.is-success.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(72,199,142,.25)}.button.is-success:active,.button.is-success.is-active{background-color:#3abb81;border-color:transparent;color:#fff}.button.is-success[disabled],fieldset[disabled] .button.is-success{background-color:hsl(153deg,53%,53%);border-color:hsl(153deg,53%,53%);box-shadow:none}.button.is-success.is-inverted{background-color:#fff;color:hsl(153deg,53%,53%)}.button.is-success.is-inverted:hover,.button.is-success.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-success.is-inverted[disabled],fieldset[disabled] .button.is-success.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:hsl(153deg,53%,53%)}.button.is-success.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-success.is-outlined{background-color:transparent;border-color:hsl(153deg,53%,53%);color:hsl(153deg,53%,53%)}.button.is-success.is-outlined:hover,.button.is-success.is-outlined.is-hovered,.button.is-success.is-outlined:focus,.button.is-success.is-outlined.is-focused{background-color:hsl(153deg,53%,53%);border-color:hsl(153deg,53%,53%);color:#fff}.button.is-success.is-outlined.is-loading::after{border-color:transparent transparent hsl(153deg,53%,53%) hsl(153deg,53%,53%)!important}.button.is-success.is-outlined.is-loading:hover::after,.button.is-success.is-outlined.is-loading.is-hovered::after,.button.is-success.is-outlined.is-loading:focus::after,.button.is-success.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff!important}.button.is-success.is-outlined[disabled],fieldset[disabled] .button.is-success.is-outlined{background-color:transparent;border-color:hsl(153deg,53%,53%);box-shadow:none;color:hsl(153deg,53%,53%)}.button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-success.is-inverted.is-outlined:hover,.button.is-success.is-inverted.is-outlined.is-hovered,.button.is-success.is-inverted.is-outlined:focus,.button.is-success.is-inverted.is-outlined.is-focused{background-color:#fff;color:hsl(153deg,53%,53%)}.button.is-success.is-inverted.is-outlined.is-loading:hover::after,.button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-success.is-inverted.is-outlined.is-loading:focus::after,.button.is-success.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(153deg,53%,53%) hsl(153deg,53%,53%)!important}.button.is-success.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-success.is-light{background-color:#effaf5;color:#257953}.button.is-success.is-light:hover,.button.is-success.is-light.is-hovered{background-color:#e6f7ef;border-color:transparent;color:#257953}.button.is-success.is-light:active,.button.is-success.is-light.is-active{background-color:#dcf4e9;border-color:transparent;color:#257953}.button.is-warning{background-color:hsl(44deg,100%,77%);border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning:hover,.button.is-warning.is-hovered{background-color:#ffdc7d;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning:focus,.button.is-warning.is-focused{border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning:focus:not(:active),.button.is-warning.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(255,224,138,.25)}.button.is-warning:active,.button.is-warning.is-active{background-color:#ffd970;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning[disabled],fieldset[disabled] .button.is-warning{background-color:hsl(44deg,100%,77%);border-color:hsl(44deg,100%,77%);box-shadow:none}.button.is-warning.is-inverted{background-color:rgba(0,0,0,.7);color:hsl(44deg,100%,77%)}.button.is-warning.is-inverted:hover,.button.is-warning.is-inverted.is-hovered{background-color:rgba(0,0,0,.7)}.button.is-warning.is-inverted[disabled],fieldset[disabled] .button.is-warning.is-inverted{background-color:rgba(0,0,0,.7);border-color:transparent;box-shadow:none;color:hsl(44deg,100%,77%)}.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:hsl(44deg,100%,77%);color:hsl(44deg,100%,77%)}.button.is-warning.is-outlined:hover,.button.is-warning.is-outlined.is-hovered,.button.is-warning.is-outlined:focus,.button.is-warning.is-outlined.is-focused{background-color:hsl(44deg,100%,77%);border-color:hsl(44deg,100%,77%);color:rgba(0,0,0,.7)}.button.is-warning.is-outlined.is-loading::after{border-color:transparent transparent hsl(44deg,100%,77%) hsl(44deg,100%,77%)!important}.button.is-warning.is-outlined.is-loading:hover::after,.button.is-warning.is-outlined.is-loading.is-hovered::after,.button.is-warning.is-outlined.is-loading:focus::after,.button.is-warning.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-warning.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-outlined{background-color:transparent;border-color:hsl(44deg,100%,77%);box-shadow:none;color:hsl(44deg,100%,77%)}.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:hover,.button.is-warning.is-inverted.is-outlined.is-hovered,.button.is-warning.is-inverted.is-outlined:focus,.button.is-warning.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,.7);color:hsl(44deg,100%,77%)}.button.is-warning.is-inverted.is-outlined.is-loading:hover::after,.button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-warning.is-inverted.is-outlined.is-loading:focus::after,.button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(44deg,100%,77%) hsl(44deg,100%,77%)!important}.button.is-warning.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);box-shadow:none;color:rgba(0,0,0,.7)}.button.is-warning.is-light{background-color:#fffaeb;color:#946c00}.button.is-warning.is-light:hover,.button.is-warning.is-light.is-hovered{background-color:#fff6de;border-color:transparent;color:#946c00}.button.is-warning.is-light:active,.button.is-warning.is-light.is-active{background-color:#fff3d1;border-color:transparent;color:#946c00}.button.is-danger{background-color:hsl(348deg,86%,61%);border-color:transparent;color:#fff}.button.is-danger:hover,.button.is-danger.is-hovered{background-color:#f03a5f;border-color:transparent;color:#fff}.button.is-danger:focus,.button.is-danger.is-focused{border-color:transparent;color:#fff}.button.is-danger:focus:not(:active),.button.is-danger.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(241,70,104,.25)}.button.is-danger:active,.button.is-danger.is-active{background-color:#ef2e55;border-color:transparent;color:#fff}.button.is-danger[disabled],fieldset[disabled] .button.is-danger{background-color:hsl(348deg,86%,61%);border-color:hsl(348deg,86%,61%);box-shadow:none}.button.is-danger.is-inverted{background-color:#fff;color:hsl(348deg,86%,61%)}.button.is-danger.is-inverted:hover,.button.is-danger.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-danger.is-inverted[disabled],fieldset[disabled] .button.is-danger.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:hsl(348deg,86%,61%)}.button.is-danger.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-danger.is-outlined{background-color:transparent;border-color:hsl(348deg,86%,61%);color:hsl(348deg,86%,61%)}.button.is-danger.is-outlined:hover,.button.is-danger.is-outlined.is-hovered,.button.is-danger.is-outlined:focus,.button.is-danger.is-outlined.is-focused{background-color:hsl(348deg,86%,61%);border-color:hsl(348deg,86%,61%);color:#fff}.button.is-danger.is-outlined.is-loading::after{border-color:transparent transparent hsl(348deg,86%,61%) hsl(348deg,86%,61%)!important}.button.is-danger.is-outlined.is-loading:hover::after,.button.is-danger.is-outlined.is-loading.is-hovered::after,.button.is-danger.is-outlined.is-loading:focus::after,.button.is-danger.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff!important}.button.is-danger.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-outlined{background-color:transparent;border-color:hsl(348deg,86%,61%);box-shadow:none;color:hsl(348deg,86%,61%)}.button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-danger.is-inverted.is-outlined:hover,.button.is-danger.is-inverted.is-outlined.is-hovered,.button.is-danger.is-inverted.is-outlined:focus,.button.is-danger.is-inverted.is-outlined.is-focused{background-color:#fff;color:hsl(348deg,86%,61%)}.button.is-danger.is-inverted.is-outlined.is-loading:hover::after,.button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-danger.is-inverted.is-outlined.is-loading:focus::after,.button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(348deg,86%,61%) hsl(348deg,86%,61%)!important}.button.is-danger.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-danger.is-light{background-color:#feecf0;color:#cc0f35}.button.is-danger.is-light:hover,.button.is-danger.is-light.is-hovered{background-color:#fde0e6;border-color:transparent;color:#cc0f35}.button.is-danger.is-light:active,.button.is-danger.is-light.is-active{background-color:#fcd4dc;border-color:transparent;color:#cc0f35}.button.is-small{font-size:.75rem}.button.is-small:not(.is-rounded){border-radius:2px}.button.is-normal{font-size:1rem}.button.is-medium{font-size:1.25rem}.button.is-large{font-size:1.5rem}.button[disabled],fieldset[disabled] .button{background-color:hsl(0deg,0%,100%);border-color:hsl(0deg,0%,86%);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*.5));top:calc(50% - (1em*.5));position:absolute!important}.button.is-static{background-color:hsl(0deg,0%,96%);border-color:hsl(0deg,0%,86%);color:hsl(0deg,0%,48%);box-shadow:none;pointer-events:none}.button.is-rounded{border-radius:9999px;padding-left:calc(1em + .25em);padding-right:calc(1em + .25em)}.buttons{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.buttons .button{margin-bottom:.5rem}.buttons .button:not(:last-child):not(.is-fullwidth){margin-right:.5rem}.buttons:last-child{margin-bottom:-.5rem}.buttons:not(:last-child){margin-bottom:1rem}.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large){font-size:.75rem}.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large):not(.is-rounded){border-radius:2px}.buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large){font-size:1.25rem}.buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium){font-size:1.5rem}.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:hover,.buttons.has-addons .button.is-hovered{z-index:2}.buttons.has-addons .button:focus,.buttons.has-addons .button.is-focused,.buttons.has-addons .button:active,.buttons.has-addons .button.is-active,.buttons.has-addons .button.is-selected{z-index:3}.buttons.has-addons .button:focus:hover,.buttons.has-addons .button.is-focused:hover,.buttons.has-addons .button:active:hover,.buttons.has-addons .button.is-active:hover,.buttons.has-addons .button.is-selected:hover{z-index:4}.buttons.has-addons .button.is-expanded{flex-grow:1;flex-shrink:1}.buttons.is-centered{justify-content:center}.buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth){margin-left:.25rem;margin-right:.25rem}.buttons.is-right{justify-content:flex-end}.buttons.is-right:not(.has-addons) .button:not(.is-fullwidth){margin-left:.25rem;margin-right:.25rem}@media screen and (max-width:768px){.button.is-responsive.is-small{font-size:.5625rem}.button.is-responsive,.button.is-responsive.is-normal{font-size:.65625rem}.button.is-responsive.is-medium{font-size:.75rem}.button.is-responsive.is-large{font-size:1rem}}@media screen and (min-width:769px) and (max-width:1023px){.button.is-responsive.is-small{font-size:.65625rem}.button.is-responsive,.button.is-responsive.is-normal{font-size:.75rem}.button.is-responsive.is-medium{font-size:1rem}.button.is-responsive.is-large{font-size:1.25rem}}.content li+li{margin-top:.25em}.content p:not(:last-child),.content dl:not(:last-child),.content ol:not(:last-child),.content ul:not(:last-child),.content blockquote:not(:last-child),.content pre:not(:last-child),.content table:not(:last-child){margin-bottom:1em}.content h1,.content h2,.content h3,.content h4,.content h5,.content h6{color:hsl(0deg,0%,21%);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:hsl(0deg,0%,96%);border-left:5px solid hsl(0deg,0%,86%);padding:1.25em 1.5em}.content ol{list-style-position:outside;margin-left:2em;margin-top:1em}.content ol:not([type]){list-style-type:decimal}.content ol:not([type]).is-lower-alpha{list-style-type:lower-alpha}.content ol:not([type]).is-lower-roman{list-style-type:lower-roman}.content ol:not([type]).is-upper-alpha{list-style-type:upper-alpha}.content ol:not([type]).is-upper-roman{list-style-type:upper-roman}.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 sup,.content sub{font-size:75%}.content table{width:100%}.content table td,.content table th{border:1px solid hsl(0deg,0%,86%);border-width:0 0 1px;padding:.5em .75em;vertical-align:top}.content table th{color:hsl(0deg,0%,21%)}.content table th:not([align]){text-align:inherit}.content table thead td,.content table thead th{border-width:0 0 2px;color:hsl(0deg,0%,21%)}.content table tfoot td,.content table tfoot th{border-width:2px 0 0;color:hsl(0deg,0%,21%)}.content table tbody tr:last-child td,.content table tbody tr:last-child th{border-bottom-width:0}.content .tabs li+li{margin-top:0}.content.is-small{font-size:.75rem}.content.is-normal{font-size:1rem}.content.is-medium{font-size:1.25rem}.content.is-large{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}.icon-text{align-items:flex-start;color:inherit;display:inline-flex;flex-wrap:wrap;line-height:1.5rem;vertical-align:top}.icon-text .icon{flex-grow:0;flex-shrink:0}.icon-text .icon:not(:last-child){margin-right:.25em}.icon-text .icon:not(:first-child){margin-left:.25em}div.icon-text{display:flex}.image{display:block;position:relative}.image img{display:block;height:auto;width:100%}.image img.is-rounded{border-radius:9999px}.image.is-fullwidth{width:100%}.image.is-square img,.image.is-square .has-ratio,.image.is-1by1 img,.image.is-1by1 .has-ratio,.image.is-5by4 img,.image.is-5by4 .has-ratio,.image.is-4by3 img,.image.is-4by3 .has-ratio,.image.is-3by2 img,.image.is-3by2 .has-ratio,.image.is-5by3 img,.image.is-5by3 .has-ratio,.image.is-16by9 img,.image.is-16by9 .has-ratio,.image.is-2by1 img,.image.is-2by1 .has-ratio,.image.is-3by1 img,.image.is-3by1 .has-ratio,.image.is-4by5 img,.image.is-4by5 .has-ratio,.image.is-3by4 img,.image.is-3by4 .has-ratio,.image.is-2by3 img,.image.is-2by3 .has-ratio,.image.is-3by5 img,.image.is-3by5 .has-ratio,.image.is-9by16 img,.image.is-9by16 .has-ratio,.image.is-1by2 img,.image.is-1by2 .has-ratio,.image.is-1by3 img,.image.is-1by3 .has-ratio{height:100%;width:100%}.image.is-square,.image.is-1by1{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:hsl(0deg,0%,96%);border-radius:4px;position:relative;padding:1.25rem 2.5rem 1.25rem 1.5rem}.notification a:not(.button):not(.dropdown-item){color:currentColor;text-decoration:underline}.notification strong{color:currentColor}.notification code,.notification pre{background:hsl(0deg,0%,100%)}.notification pre code{background:transparent}.notification>.delete{right:.5rem;position:absolute;top:.5rem}.notification .title,.notification .subtitle,.notification .content{color:currentColor}.notification.is-white{background-color:hsl(0deg,0%,100%);color:hsl(0deg,0%,4%)}.notification.is-black{background-color:hsl(0deg,0%,4%);color:hsl(0deg,0%,100%)}.notification.is-light{background-color:hsl(0deg,0%,96%);color:rgba(0,0,0,.7)}.notification.is-dark{background-color:hsl(0deg,0%,21%);color:#fff}.notification.is-primary{background-color:hsl(171deg,100%,41%);color:#fff}.notification.is-primary.is-light{background-color:#ebfffc;color:#00947e}.notification.is-link{background-color:hsl(229deg,53%,53%);color:#fff}.notification.is-link.is-light{background-color:#eff1fa;color:#3850b7}.notification.is-info{background-color:hsl(207deg,61%,53%);color:#fff}.notification.is-info.is-light{background-color:#eff5fb;color:#296fa8}.notification.is-success{background-color:hsl(153deg,53%,53%);color:#fff}.notification.is-success.is-light{background-color:#effaf5;color:#257953}.notification.is-warning{background-color:hsl(44deg,100%,77%);color:rgba(0,0,0,.7)}.notification.is-warning.is-light{background-color:#fffaeb;color:#946c00}.notification.is-danger{background-color:hsl(348deg,86%,61%);color:#fff}.notification.is-danger.is-light{background-color:#feecf0;color:#cc0f35}.progress{-moz-appearance:none;-webkit-appearance:none;border:0;border-radius:9999px;display:block;height:1rem;overflow:hidden;padding:0;width:100%}.progress::-webkit-progress-bar{background-color:hsl(0deg,0%,93%)}.progress::-webkit-progress-value{background-color:hsl(0deg,0%,29%)}.progress::-moz-progress-bar{background-color:hsl(0deg,0%,29%)}.progress::-ms-fill{background-color:hsl(0deg,0%,29%);border:0}.progress.is-white::-webkit-progress-value{background-color:hsl(0deg,0%,100%)}.progress.is-white::-moz-progress-bar{background-color:hsl(0deg,0%,100%)}.progress.is-white::-ms-fill{background-color:hsl(0deg,0%,100%)}.progress.is-white:indeterminate{background-image:linear-gradient(to right,hsl(0deg,0%,100%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-black::-webkit-progress-value{background-color:hsl(0deg,0%,4%)}.progress.is-black::-moz-progress-bar{background-color:hsl(0deg,0%,4%)}.progress.is-black::-ms-fill{background-color:hsl(0deg,0%,4%)}.progress.is-black:indeterminate{background-image:linear-gradient(to right,hsl(0deg,0%,4%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-light::-webkit-progress-value{background-color:hsl(0deg,0%,96%)}.progress.is-light::-moz-progress-bar{background-color:hsl(0deg,0%,96%)}.progress.is-light::-ms-fill{background-color:hsl(0deg,0%,96%)}.progress.is-light:indeterminate{background-image:linear-gradient(to right,hsl(0deg,0%,96%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-dark::-webkit-progress-value{background-color:hsl(0deg,0%,21%)}.progress.is-dark::-moz-progress-bar{background-color:hsl(0deg,0%,21%)}.progress.is-dark::-ms-fill{background-color:hsl(0deg,0%,21%)}.progress.is-dark:indeterminate{background-image:linear-gradient(to right,hsl(0deg,0%,21%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-primary::-webkit-progress-value{background-color:hsl(171deg,100%,41%)}.progress.is-primary::-moz-progress-bar{background-color:hsl(171deg,100%,41%)}.progress.is-primary::-ms-fill{background-color:hsl(171deg,100%,41%)}.progress.is-primary:indeterminate{background-image:linear-gradient(to right,hsl(171deg,100%,41%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-link::-webkit-progress-value{background-color:hsl(229deg,53%,53%)}.progress.is-link::-moz-progress-bar{background-color:hsl(229deg,53%,53%)}.progress.is-link::-ms-fill{background-color:hsl(229deg,53%,53%)}.progress.is-link:indeterminate{background-image:linear-gradient(to right,hsl(229deg,53%,53%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-info::-webkit-progress-value{background-color:hsl(207deg,61%,53%)}.progress.is-info::-moz-progress-bar{background-color:hsl(207deg,61%,53%)}.progress.is-info::-ms-fill{background-color:hsl(207deg,61%,53%)}.progress.is-info:indeterminate{background-image:linear-gradient(to right,hsl(207deg,61%,53%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-success::-webkit-progress-value{background-color:hsl(153deg,53%,53%)}.progress.is-success::-moz-progress-bar{background-color:hsl(153deg,53%,53%)}.progress.is-success::-ms-fill{background-color:hsl(153deg,53%,53%)}.progress.is-success:indeterminate{background-image:linear-gradient(to right,hsl(153deg,53%,53%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-warning::-webkit-progress-value{background-color:hsl(44deg,100%,77%)}.progress.is-warning::-moz-progress-bar{background-color:hsl(44deg,100%,77%)}.progress.is-warning::-ms-fill{background-color:hsl(44deg,100%,77%)}.progress.is-warning:indeterminate{background-image:linear-gradient(to right,hsl(44deg,100%,77%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-danger::-webkit-progress-value{background-color:hsl(348deg,86%,61%)}.progress.is-danger::-moz-progress-bar{background-color:hsl(348deg,86%,61%)}.progress.is-danger::-ms-fill{background-color:hsl(348deg,86%,61%)}.progress.is-danger:indeterminate{background-image:linear-gradient(to right,hsl(348deg,86%,61%) 30%,hsl(0deg,0%,93%) 30%)}.progress:indeterminate{animation-duration:1.5s;animation-iteration-count:infinite;animation-name:moveIndeterminate;animation-timing-function:linear;background-color:hsl(0deg,0%,93%);background-image:linear-gradient(to right,hsl(0deg,0%,29%) 30%,hsl(0deg,0%,93%) 30%);background-position:top left;background-repeat:no-repeat;background-size:150% 150%}.progress:indeterminate::-webkit-progress-bar{background-color:transparent}.progress:indeterminate::-moz-progress-bar{background-color:transparent}.progress:indeterminate::-ms-fill{animation-name:none}.progress.is-small{height:.75rem}.progress.is-medium{height:1.25rem}.progress.is-large{height:1.5rem}@keyframes moveIndeterminate{from{background-position:200% 0}to{background-position:-200% 0}}.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.are-medium .tag:not(.is-normal):not(.is-large){font-size:1rem}.tags.are-large .tag:not(.is-normal):not(.is-medium){font-size:1.25rem}.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}.tags.has-addons .tag{margin-right:0}.tags.has-addons .tag:not(:first-child){margin-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.tags.has-addons .tag:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.tag:not(body){align-items:center;background-color:hsl(0deg,0%,96%);border-radius:4px;color:hsl(0deg,0%,29%);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:hsl(0deg,0%,100%);color:hsl(0deg,0%,4%)}.tag:not(body).is-black{background-color:hsl(0deg,0%,4%);color:hsl(0deg,0%,100%)}.tag:not(body).is-light{background-color:hsl(0deg,0%,96%);color:rgba(0,0,0,.7)}.tag:not(body).is-dark{background-color:hsl(0deg,0%,21%);color:#fff}.tag:not(body).is-primary{background-color:hsl(171deg,100%,41%);color:#fff}.tag:not(body).is-primary.is-light{background-color:#ebfffc;color:#00947e}.tag:not(body).is-link{background-color:hsl(229deg,53%,53%);color:#fff}.tag:not(body).is-link.is-light{background-color:#eff1fa;color:#3850b7}.tag:not(body).is-info{background-color:hsl(207deg,61%,53%);color:#fff}.tag:not(body).is-info.is-light{background-color:#eff5fb;color:#296fa8}.tag:not(body).is-success{background-color:hsl(153deg,53%,53%);color:#fff}.tag:not(body).is-success.is-light{background-color:#effaf5;color:#257953}.tag:not(body).is-warning{background-color:hsl(44deg,100%,77%);color:rgba(0,0,0,.7)}.tag:not(body).is-warning.is-light{background-color:#fffaeb;color:#946c00}.tag:not(body).is-danger{background-color:hsl(348deg,86%,61%);color:#fff}.tag:not(body).is-danger.is-light{background-color:#feecf0;color:#cc0f35}.tag:not(body).is-normal{font-size:.75rem}.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::before,.tag:not(body).is-delete::after{background-color:currentColor;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);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:hover,.tag:not(body).is-delete:focus{background-color:#e8e8e8}.tag:not(body).is-delete:active{background-color:#dbdbdb}.tag:not(body).is-rounded{border-radius:9999px}a.tag:hover{text-decoration:underline}.heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}.number{align-items:center;background-color:hsl(0deg,0%,96%);border-radius:9999px;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}.select select,.textarea,.input{background-color:hsl(0deg,0%,100%);border-color:hsl(0deg,0%,86%);border-radius:4px;color:hsl(0deg,0%,21%)}.select select::-moz-placeholder,.textarea::-moz-placeholder,.input::-moz-placeholder{color:rgba(54,54,54,.3)}.select select::-webkit-input-placeholder,.textarea::-webkit-input-placeholder,.input::-webkit-input-placeholder{color:rgba(54,54,54,.3)}.select select:-moz-placeholder,.textarea:-moz-placeholder,.input:-moz-placeholder{color:rgba(54,54,54,.3)}.select select:-ms-input-placeholder,.textarea:-ms-input-placeholder,.input:-ms-input-placeholder{color:rgba(54,54,54,.3)}.select select:hover,.textarea:hover,.input:hover,.select select.is-hovered,.is-hovered.textarea,.is-hovered.input{border-color:hsl(0deg,0%,71%)}.select select:focus,.textarea:focus,.input:focus,.select select.is-focused,.is-focused.textarea,.is-focused.input,.select select:active,.textarea:active,.input:active,.select select.is-active,.is-active.textarea,.is-active.input{border-color:hsl(229deg,53%,53%);box-shadow:0 0 0 .125em rgba(72,95,199,.25)}.select select[disabled],[disabled].textarea,[disabled].input,fieldset[disabled] .select select,.select fieldset[disabled] select,fieldset[disabled] .textarea,fieldset[disabled] .input{background-color:hsl(0deg,0%,96%);border-color:hsl(0deg,0%,96%);box-shadow:none;color:hsl(0deg,0%,48%)}.select select[disabled]::-moz-placeholder,[disabled].textarea::-moz-placeholder,[disabled].input::-moz-placeholder,fieldset[disabled] .select select::-moz-placeholder,.select fieldset[disabled] select::-moz-placeholder,fieldset[disabled] .textarea::-moz-placeholder,fieldset[disabled] .input::-moz-placeholder{color:rgba(122,122,122,.3)}.select select[disabled]::-webkit-input-placeholder,[disabled].textarea::-webkit-input-placeholder,[disabled].input::-webkit-input-placeholder,fieldset[disabled] .select select::-webkit-input-placeholder,.select fieldset[disabled] select::-webkit-input-placeholder,fieldset[disabled] .textarea::-webkit-input-placeholder,fieldset[disabled] .input::-webkit-input-placeholder{color:rgba(122,122,122,.3)}.select select[disabled]:-moz-placeholder,[disabled].textarea:-moz-placeholder,[disabled].input:-moz-placeholder,fieldset[disabled] .select select:-moz-placeholder,.select fieldset[disabled] select:-moz-placeholder,fieldset[disabled] .textarea:-moz-placeholder,fieldset[disabled] .input:-moz-placeholder{color:rgba(122,122,122,.3)}.select select[disabled]:-ms-input-placeholder,[disabled].textarea:-ms-input-placeholder,[disabled].input:-ms-input-placeholder,fieldset[disabled] .select select:-ms-input-placeholder,.select fieldset[disabled] select:-ms-input-placeholder,fieldset[disabled] .textarea:-ms-input-placeholder,fieldset[disabled] .input:-ms-input-placeholder{color:rgba(122,122,122,.3)}.textarea,.input{box-shadow:inset 0 .0625em .125em rgba(10,10,10,.05);max-width:100%;width:100%}[readonly].textarea,[readonly].input{box-shadow:none}.is-white.textarea,.is-white.input{border-color:hsl(0deg,0%,100%)}.is-white.textarea:focus,.is-white.input:focus,.is-white.is-focused.textarea,.is-white.is-focused.input,.is-white.textarea:active,.is-white.input:active,.is-white.is-active.textarea,.is-white.is-active.input{box-shadow:0 0 0 .125em rgba(255,255,255,.25)}.is-black.textarea,.is-black.input{border-color:hsl(0deg,0%,4%)}.is-black.textarea:focus,.is-black.input:focus,.is-black.is-focused.textarea,.is-black.is-focused.input,.is-black.textarea:active,.is-black.input:active,.is-black.is-active.textarea,.is-black.is-active.input{box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.is-light.textarea,.is-light.input{border-color:hsl(0deg,0%,96%)}.is-light.textarea:focus,.is-light.input:focus,.is-light.is-focused.textarea,.is-light.is-focused.input,.is-light.textarea:active,.is-light.input:active,.is-light.is-active.textarea,.is-light.is-active.input{box-shadow:0 0 0 .125em rgba(245,245,245,.25)}.is-dark.textarea,.is-dark.input{border-color:hsl(0deg,0%,21%)}.is-dark.textarea:focus,.is-dark.input:focus,.is-dark.is-focused.textarea,.is-dark.is-focused.input,.is-dark.textarea:active,.is-dark.input:active,.is-dark.is-active.textarea,.is-dark.is-active.input{box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.is-primary.textarea,.is-primary.input{border-color:hsl(171deg,100%,41%)}.is-primary.textarea:focus,.is-primary.input:focus,.is-primary.is-focused.textarea,.is-primary.is-focused.input,.is-primary.textarea:active,.is-primary.input:active,.is-primary.is-active.textarea,.is-primary.is-active.input{box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.is-link.textarea,.is-link.input{border-color:hsl(229deg,53%,53%)}.is-link.textarea:focus,.is-link.input:focus,.is-link.is-focused.textarea,.is-link.is-focused.input,.is-link.textarea:active,.is-link.input:active,.is-link.is-active.textarea,.is-link.is-active.input{box-shadow:0 0 0 .125em rgba(72,95,199,.25)}.is-info.textarea,.is-info.input{border-color:hsl(207deg,61%,53%)}.is-info.textarea:focus,.is-info.input:focus,.is-info.is-focused.textarea,.is-info.is-focused.input,.is-info.textarea:active,.is-info.input:active,.is-info.is-active.textarea,.is-info.is-active.input{box-shadow:0 0 0 .125em rgba(62,142,208,.25)}.is-success.textarea,.is-success.input{border-color:hsl(153deg,53%,53%)}.is-success.textarea:focus,.is-success.input:focus,.is-success.is-focused.textarea,.is-success.is-focused.input,.is-success.textarea:active,.is-success.input:active,.is-success.is-active.textarea,.is-success.is-active.input{box-shadow:0 0 0 .125em rgba(72,199,142,.25)}.is-warning.textarea,.is-warning.input{border-color:hsl(44deg,100%,77%)}.is-warning.textarea:focus,.is-warning.input:focus,.is-warning.is-focused.textarea,.is-warning.is-focused.input,.is-warning.textarea:active,.is-warning.input:active,.is-warning.is-active.textarea,.is-warning.is-active.input{box-shadow:0 0 0 .125em rgba(255,224,138,.25)}.is-danger.textarea,.is-danger.input{border-color:hsl(348deg,86%,61%)}.is-danger.textarea:focus,.is-danger.input:focus,.is-danger.is-focused.textarea,.is-danger.is-focused.input,.is-danger.textarea:active,.is-danger.input:active,.is-danger.is-active.textarea,.is-danger.is-active.input{box-shadow:0 0 0 .125em rgba(241,70,104,.25)}.is-small.textarea,.is-small.input{border-radius:2px;font-size:.75rem}.is-medium.textarea,.is-medium.input{font-size:1.25rem}.is-large.textarea,.is-large.input{font-size:1.5rem}.is-fullwidth.textarea,.is-fullwidth.input{display:block;width:100%}.is-inline.textarea,.is-inline.input{display:inline;width:auto}.input.is-rounded{border-radius:9999px;padding-left:calc(calc(.75em - 1px) + .375em);padding-right:calc(calc(.75em - 1px) + .375em)}.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:calc(.75em - 1px);resize:vertical}.textarea:not([rows]){max-height:40em;min-height:8em}.textarea[rows]{height:initial}.textarea.has-fixed-size{resize:none}.radio,.checkbox{cursor:pointer;display:inline-block;line-height:1.25;position:relative}.radio input,.checkbox input{cursor:pointer}.radio:hover,.checkbox:hover{color:hsl(0deg,0%,21%)}[disabled].radio,[disabled].checkbox,fieldset[disabled] .radio,fieldset[disabled] .checkbox,.radio input[disabled],.checkbox input[disabled]{color:hsl(0deg,0%,48%);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.5em}.select:not(.is-multiple):not(.is-loading)::after{border-color:hsl(229deg,53%,53%);right:1.125em;z-index:4}.select.is-rounded select{border-radius:9999px;padding-left:1em}.select select{cursor:pointer;display:block;font-size:1em;max-width:100%;outline:0}.select select::-ms-expand{display:none}.select select[disabled]:hover,fieldset[disabled] .select select:hover{border-color:hsl(0deg,0%,96%)}.select select:not([multiple]){padding-right:2.5em}.select select[multiple]{height:auto;padding:0}.select select[multiple] option{padding:.5em 1em}.select:not(.is-multiple):not(.is-loading):hover::after{border-color:hsl(0deg,0%,21%)}.select.is-white:not(:hover)::after{border-color:hsl(0deg,0%,100%)}.select.is-white select{border-color:hsl(0deg,0%,100%)}.select.is-white select:hover,.select.is-white select.is-hovered{border-color:#f2f2f2}.select.is-white select:focus,.select.is-white select.is-focused,.select.is-white select:active,.select.is-white select.is-active{box-shadow:0 0 0 .125em rgba(255,255,255,.25)}.select.is-black:not(:hover)::after{border-color:hsl(0deg,0%,4%)}.select.is-black select{border-color:hsl(0deg,0%,4%)}.select.is-black select:hover,.select.is-black select.is-hovered{border-color:#000}.select.is-black select:focus,.select.is-black select.is-focused,.select.is-black select:active,.select.is-black select.is-active{box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.select.is-light:not(:hover)::after{border-color:hsl(0deg,0%,96%)}.select.is-light select{border-color:hsl(0deg,0%,96%)}.select.is-light select:hover,.select.is-light select.is-hovered{border-color:#e8e8e8}.select.is-light select:focus,.select.is-light select.is-focused,.select.is-light select:active,.select.is-light select.is-active{box-shadow:0 0 0 .125em rgba(245,245,245,.25)}.select.is-dark:not(:hover)::after{border-color:hsl(0deg,0%,21%)}.select.is-dark select{border-color:hsl(0deg,0%,21%)}.select.is-dark select:hover,.select.is-dark select.is-hovered{border-color:#292929}.select.is-dark select:focus,.select.is-dark select.is-focused,.select.is-dark select:active,.select.is-dark select.is-active{box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.select.is-primary:not(:hover)::after{border-color:hsl(171deg,100%,41%)}.select.is-primary select{border-color:hsl(171deg,100%,41%)}.select.is-primary select:hover,.select.is-primary select.is-hovered{border-color:#00b89c}.select.is-primary select:focus,.select.is-primary select.is-focused,.select.is-primary select:active,.select.is-primary select.is-active{box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.select.is-link:not(:hover)::after{border-color:hsl(229deg,53%,53%)}.select.is-link select{border-color:hsl(229deg,53%,53%)}.select.is-link select:hover,.select.is-link select.is-hovered{border-color:#3a51bb}.select.is-link select:focus,.select.is-link select.is-focused,.select.is-link select:active,.select.is-link select.is-active{box-shadow:0 0 0 .125em rgba(72,95,199,.25)}.select.is-info:not(:hover)::after{border-color:hsl(207deg,61%,53%)}.select.is-info select{border-color:hsl(207deg,61%,53%)}.select.is-info select:hover,.select.is-info select.is-hovered{border-color:#3082c5}.select.is-info select:focus,.select.is-info select.is-focused,.select.is-info select:active,.select.is-info select.is-active{box-shadow:0 0 0 .125em rgba(62,142,208,.25)}.select.is-success:not(:hover)::after{border-color:hsl(153deg,53%,53%)}.select.is-success select{border-color:hsl(153deg,53%,53%)}.select.is-success select:hover,.select.is-success select.is-hovered{border-color:#3abb81}.select.is-success select:focus,.select.is-success select.is-focused,.select.is-success select:active,.select.is-success select.is-active{box-shadow:0 0 0 .125em rgba(72,199,142,.25)}.select.is-warning:not(:hover)::after{border-color:hsl(44deg,100%,77%)}.select.is-warning select{border-color:hsl(44deg,100%,77%)}.select.is-warning select:hover,.select.is-warning select.is-hovered{border-color:#ffd970}.select.is-warning select:focus,.select.is-warning select.is-focused,.select.is-warning select:active,.select.is-warning select.is-active{box-shadow:0 0 0 .125em rgba(255,224,138,.25)}.select.is-danger:not(:hover)::after{border-color:hsl(348deg,86%,61%)}.select.is-danger select{border-color:hsl(348deg,86%,61%)}.select.is-danger select:hover,.select.is-danger select.is-hovered{border-color:#ef2e55}.select.is-danger select:focus,.select.is-danger select.is-focused,.select.is-danger select:active,.select.is-danger select.is-active{box-shadow:0 0 0 .125em rgba(241,70,104,.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:hsl(0deg,0%,48%)!important;opacity:.5}.select.is-fullwidth{width:100%}.select.is-fullwidth select{width:100%}.select.is-loading::after{margin-top:0;position:absolute;right:.625em;top:.625em;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:hsl(0deg,0%,100%);border-color:transparent;color:hsl(0deg,0%,4%)}.file.is-white:hover .file-cta,.file.is-white.is-hovered .file-cta{background-color:#f9f9f9;border-color:transparent;color:hsl(0deg,0%,4%)}.file.is-white:focus .file-cta,.file.is-white.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(255,255,255,.25);color:hsl(0deg,0%,4%)}.file.is-white:active .file-cta,.file.is-white.is-active .file-cta{background-color:#f2f2f2;border-color:transparent;color:hsl(0deg,0%,4%)}.file.is-black .file-cta{background-color:hsl(0deg,0%,4%);border-color:transparent;color:hsl(0deg,0%,100%)}.file.is-black:hover .file-cta,.file.is-black.is-hovered .file-cta{background-color:#040404;border-color:transparent;color:hsl(0deg,0%,100%)}.file.is-black:focus .file-cta,.file.is-black.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(10,10,10,.25);color:hsl(0deg,0%,100%)}.file.is-black:active .file-cta,.file.is-black.is-active .file-cta{background-color:#000;border-color:transparent;color:hsl(0deg,0%,100%)}.file.is-light .file-cta{background-color:hsl(0deg,0%,96%);border-color:transparent;color:rgba(0,0,0,.7)}.file.is-light:hover .file-cta,.file.is-light.is-hovered .file-cta{background-color:#eee;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-light:focus .file-cta,.file.is-light.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(245,245,245,.25);color:rgba(0,0,0,.7)}.file.is-light:active .file-cta,.file.is-light.is-active .file-cta{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-dark .file-cta{background-color:hsl(0deg,0%,21%);border-color:transparent;color:#fff}.file.is-dark:hover .file-cta,.file.is-dark.is-hovered .file-cta{background-color:#2f2f2f;border-color:transparent;color:#fff}.file.is-dark:focus .file-cta,.file.is-dark.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(54,54,54,.25);color:#fff}.file.is-dark:active .file-cta,.file.is-dark.is-active .file-cta{background-color:#292929;border-color:transparent;color:#fff}.file.is-primary .file-cta{background-color:hsl(171deg,100%,41%);border-color:transparent;color:#fff}.file.is-primary:hover .file-cta,.file.is-primary.is-hovered .file-cta{background-color:#00c4a7;border-color:transparent;color:#fff}.file.is-primary:focus .file-cta,.file.is-primary.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(0,209,178,.25);color:#fff}.file.is-primary:active .file-cta,.file.is-primary.is-active .file-cta{background-color:#00b89c;border-color:transparent;color:#fff}.file.is-link .file-cta{background-color:hsl(229deg,53%,53%);border-color:transparent;color:#fff}.file.is-link:hover .file-cta,.file.is-link.is-hovered .file-cta{background-color:#3e56c4;border-color:transparent;color:#fff}.file.is-link:focus .file-cta,.file.is-link.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(72,95,199,.25);color:#fff}.file.is-link:active .file-cta,.file.is-link.is-active .file-cta{background-color:#3a51bb;border-color:transparent;color:#fff}.file.is-info .file-cta{background-color:hsl(207deg,61%,53%);border-color:transparent;color:#fff}.file.is-info:hover .file-cta,.file.is-info.is-hovered .file-cta{background-color:#3488ce;border-color:transparent;color:#fff}.file.is-info:focus .file-cta,.file.is-info.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(62,142,208,.25);color:#fff}.file.is-info:active .file-cta,.file.is-info.is-active .file-cta{background-color:#3082c5;border-color:transparent;color:#fff}.file.is-success .file-cta{background-color:hsl(153deg,53%,53%);border-color:transparent;color:#fff}.file.is-success:hover .file-cta,.file.is-success.is-hovered .file-cta{background-color:#3ec487;border-color:transparent;color:#fff}.file.is-success:focus .file-cta,.file.is-success.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(72,199,142,.25);color:#fff}.file.is-success:active .file-cta,.file.is-success.is-active .file-cta{background-color:#3abb81;border-color:transparent;color:#fff}.file.is-warning .file-cta{background-color:hsl(44deg,100%,77%);border-color:transparent;color:rgba(0,0,0,.7)}.file.is-warning:hover .file-cta,.file.is-warning.is-hovered .file-cta{background-color:#ffdc7d;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-warning:focus .file-cta,.file.is-warning.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(255,224,138,.25);color:rgba(0,0,0,.7)}.file.is-warning:active .file-cta,.file.is-warning.is-active .file-cta{background-color:#ffd970;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-danger .file-cta{background-color:hsl(348deg,86%,61%);border-color:transparent;color:#fff}.file.is-danger:hover .file-cta,.file.is-danger.is-hovered .file-cta{background-color:#f03a5f;border-color:transparent;color:#fff}.file.is-danger:focus .file-cta,.file.is-danger.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(241,70,104,.25);color:#fff}.file.is-danger:active .file-cta,.file.is-danger.is-active .file-cta{background-color:#ef2e55;border-color:transparent;color:#fff}.file.is-small{font-size:.75rem}.file.is-normal{font-size:1rem}.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:hsl(0deg,0%,21%)}.file-label:hover .file-name{border-color:#d5d5d5}.file-label:active .file-cta{background-color:#e8e8e8;color:hsl(0deg,0%,21%)}.file-label:active .file-name{border-color:#cfcfcf}.file-input{height:100%;left:0;opacity:0;outline:0;position:absolute;top:0;width:100%}.file-cta,.file-name{border-color:hsl(0deg,0%,86%);border-radius:4px;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}.file-cta{background-color:hsl(0deg,0%,96%);color:hsl(0deg,0%,29%)}.file-name{border-color:hsl(0deg,0%,86%);border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:inherit;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:hsl(0deg,0%,21%);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:hsl(0deg,0%,100%)}.help.is-black{color:hsl(0deg,0%,4%)}.help.is-light{color:hsl(0deg,0%,96%)}.help.is-dark{color:hsl(0deg,0%,21%)}.help.is-primary{color:hsl(171deg,100%,41%)}.help.is-link{color:hsl(229deg,53%,53%)}.help.is-info{color:hsl(207deg,61%,53%)}.help.is-success{color:hsl(153deg,53%,53%)}.help.is-warning{color:hsl(44deg,100%,77%)}.help.is-danger{color:hsl(348deg,86%,61%)}.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:not(:only-child) .button,.field.has-addons .control:first-child:not(:only-child) .input,.field.has-addons .control:first-child:not(:only-child) .select select{border-bottom-right-radius:0;border-top-right-radius:0}.field.has-addons .control:last-child:not(:only-child) .button,.field.has-addons .control:last-child:not(:only-child) .input,.field.has-addons .control:last-child:not(:only-child) .select select{border-bottom-left-radius:0;border-top-left-radius:0}.field.has-addons .control .button:not([disabled]):hover,.field.has-addons .control .button:not([disabled]).is-hovered,.field.has-addons .control .input:not([disabled]):hover,.field.has-addons .control .input:not([disabled]).is-hovered,.field.has-addons .control .select select:not([disabled]):hover,.field.has-addons .control .select select:not([disabled]).is-hovered{z-index:2}.field.has-addons .control .button:not([disabled]):focus,.field.has-addons .control .button:not([disabled]).is-focused,.field.has-addons .control .button:not([disabled]):active,.field.has-addons .control .button:not([disabled]).is-active,.field.has-addons .control .input:not([disabled]):focus,.field.has-addons .control .input:not([disabled]).is-focused,.field.has-addons .control .input:not([disabled]):active,.field.has-addons .control .input:not([disabled]).is-active,.field.has-addons .control .select select:not([disabled]):focus,.field.has-addons .control .select select:not([disabled]).is-focused,.field.has-addons .control .select select:not([disabled]):active,.field.has-addons .control .select select:not([disabled]).is-active{z-index:3}.field.has-addons .control .button:not([disabled]):focus:hover,.field.has-addons .control .button:not([disabled]).is-focused:hover,.field.has-addons .control .button:not([disabled]):active:hover,.field.has-addons .control .button:not([disabled]).is-active:hover,.field.has-addons .control .input:not([disabled]):focus:hover,.field.has-addons .control .input:not([disabled]).is-focused:hover,.field.has-addons .control .input:not([disabled]):active:hover,.field.has-addons .control .input:not([disabled]).is-active:hover,.field.has-addons .control .select select:not([disabled]):focus:hover,.field.has-addons .control .select select:not([disabled]).is-focused:hover,.field.has-addons .control .select select:not([disabled]):active:hover,.field.has-addons .control .select select:not([disabled]).is-active:hover{z-index:4}.field.has-addons .control.is-expanded{flex-grow:1;flex-shrink: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{box-sizing:border-box;clear:both;font-size:1rem;position:relative;text-align:inherit}.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:hsl(0deg,0%,29%)}.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:hsl(0deg,0%,86%);height:2.5em;pointer-events:none;position:absolute;top:0;width:2.5em;z-index:4}.control.has-icons-left .input,.control.has-icons-left .select select{padding-left:2.5em}.control.has-icons-left .icon.is-left{left:0}.control.has-icons-right .input,.control.has-icons-right .select select{padding-right:2.5em}.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}.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:hsl(0deg,0%,100%);border-radius:4px;box-shadow:0 .5em 1em -.125em rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.02);padding-bottom:.5rem;padding-top:.5rem}.dropdown-item{color:hsl(0deg,0%,29%);display:block;font-size:.875rem;line-height:1.5;padding:.375rem 1rem;position:relative}a.dropdown-item,button.dropdown-item{padding-right:3rem;text-align:inherit;white-space:nowrap;width:100%}a.dropdown-item:hover,button.dropdown-item:hover{background-color:hsl(0deg,0%,96%);color:hsl(0deg,0%,4%)}a.dropdown-item.is-active,button.dropdown-item.is-active{background-color:hsl(229deg,53%,53%);color:#fff}.dropdown-divider{background-color:hsl(0deg,0%,93%);border:0;display:block;height:1px;margin:.5rem 0}.message{background-color:hsl(0deg,0%,96%);border-radius:4px;font-size:1rem}.message strong{color:currentColor}.message a:not(.button):not(.tag):not(.dropdown-item){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:hsl(0deg,0%,100%);color:hsl(0deg,0%,4%)}.message.is-white .message-body{border-color:hsl(0deg,0%,100%)}.message.is-black{background-color:#fafafa}.message.is-black .message-header{background-color:hsl(0deg,0%,4%);color:hsl(0deg,0%,100%)}.message.is-black .message-body{border-color:hsl(0deg,0%,4%)}.message.is-light{background-color:#fafafa}.message.is-light .message-header{background-color:hsl(0deg,0%,96%);color:rgba(0,0,0,.7)}.message.is-light .message-body{border-color:hsl(0deg,0%,96%)}.message.is-dark{background-color:#fafafa}.message.is-dark .message-header{background-color:hsl(0deg,0%,21%);color:#fff}.message.is-dark .message-body{border-color:hsl(0deg,0%,21%)}.message.is-primary{background-color:#ebfffc}.message.is-primary .message-header{background-color:hsl(171deg,100%,41%);color:#fff}.message.is-primary .message-body{border-color:hsl(171deg,100%,41%);color:#00947e}.message.is-link{background-color:#eff1fa}.message.is-link .message-header{background-color:hsl(229deg,53%,53%);color:#fff}.message.is-link .message-body{border-color:hsl(229deg,53%,53%);color:#3850b7}.message.is-info{background-color:#eff5fb}.message.is-info .message-header{background-color:hsl(207deg,61%,53%);color:#fff}.message.is-info .message-body{border-color:hsl(207deg,61%,53%);color:#296fa8}.message.is-success{background-color:#effaf5}.message.is-success .message-header{background-color:hsl(153deg,53%,53%);color:#fff}.message.is-success .message-body{border-color:hsl(153deg,53%,53%);color:#257953}.message.is-warning{background-color:#fffaeb}.message.is-warning .message-header{background-color:hsl(44deg,100%,77%);color:rgba(0,0,0,.7)}.message.is-warning .message-body{border-color:hsl(44deg,100%,77%);color:#946c00}.message.is-danger{background-color:#feecf0}.message.is-danger .message-header{background-color:hsl(348deg,86%,61%);color:#fff}.message.is-danger .message-body{border-color:hsl(348deg,86%,61%);color:#cc0f35}.message-header{align-items:center;background-color:hsl(0deg,0%,29%);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:hsl(0deg,0%,86%);border-radius:4px;border-style:solid;border-width:0 0 0 4px;color:hsl(0deg,0%,29%);padding:1.25em 1.5em}.message-body code,.message-body pre{background-color:hsl(0deg,0%,100%)}.message-body pre code{background-color:transparent}.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-previous,.pagination.is-rounded .pagination-next{padding-left:1em;padding-right:1em;border-radius:9999px}.pagination.is-rounded .pagination-link{border-radius:9999px}.pagination,.pagination-list{align-items:center;display:flex;justify-content:center;text-align:center}.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis{font-size:1em;justify-content:center;margin:.25rem;padding-left:.5em;padding-right:.5em;text-align:center}.pagination-previous,.pagination-next,.pagination-link{border-color:hsl(0deg,0%,86%);color:hsl(0deg,0%,21%);min-width:2.5em}.pagination-previous:hover,.pagination-next:hover,.pagination-link:hover{border-color:hsl(0deg,0%,71%);color:hsl(0deg,0%,21%)}.pagination-previous:focus,.pagination-next:focus,.pagination-link:focus{border-color:hsl(229deg,53%,53%)}.pagination-previous:active,.pagination-next:active,.pagination-link:active{box-shadow:inset 0 1px 2px rgba(10,10,10,.2)}.pagination-previous[disabled],.pagination-previous.is-disabled,.pagination-next[disabled],.pagination-next.is-disabled,.pagination-link[disabled],.pagination-link.is-disabled{background-color:hsl(0deg,0%,86%);border-color:hsl(0deg,0%,86%);box-shadow:none;color:hsl(0deg,0%,48%);opacity:.5}.pagination-previous,.pagination-next{padding-left:.75em;padding-right:.75em;white-space:nowrap}.pagination-link.is-current{background-color:hsl(229deg,53%,53%);border-color:hsl(229deg,53%,53%);color:#fff}.pagination-ellipsis{color:hsl(0deg,0%,71%);pointer-events:none}.pagination-list{flex-wrap:wrap}.pagination-list li{list-style:none}@media screen and (max-width:768px){.pagination{flex-wrap:wrap}.pagination-previous,.pagination-next{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,.pagination-next,.pagination-link,.pagination-ellipsis{margin-bottom:0;margin-top:0}.pagination-previous{order:2}.pagination-next{order:3}.pagination{justify-content:space-between;margin-bottom:0;margin-top:0}.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}} \ No newline at end of file +.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis,.file-cta,.file-name,.select select,.textarea,.input,.button{-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.5em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(.5em - 1px);padding-left:calc(.75em - 1px);padding-right:calc(.75em - 1px);padding-top:calc(.5em - 1px);position:relative;vertical-align:top}.pagination-previous:focus,.pagination-next:focus,.pagination-link:focus,.pagination-ellipsis:focus,.file-cta:focus,.file-name:focus,.select select:focus,.textarea:focus,.input:focus,.button:focus,.is-focused.pagination-previous,.is-focused.pagination-next,.is-focused.pagination-link,.is-focused.pagination-ellipsis,.is-focused.file-cta,.is-focused.file-name,.select select.is-focused,.is-focused.textarea,.is-focused.input,.is-focused.button,.pagination-previous:active,.pagination-next:active,.pagination-link:active,.pagination-ellipsis:active,.file-cta:active,.file-name:active,.select select:active,.textarea:active,.input:active,.button:active,.is-active.pagination-previous,.is-active.pagination-next,.is-active.pagination-link,.is-active.pagination-ellipsis,.is-active.file-cta,.is-active.file-name,.select select.is-active,.is-active.textarea,.is-active.input,.is-active.button{outline:0}[disabled].pagination-previous,[disabled].pagination-next,[disabled].pagination-link,[disabled].pagination-ellipsis,[disabled].file-cta,[disabled].file-name,.select select[disabled],[disabled].textarea,[disabled].input,[disabled].button,fieldset[disabled] .pagination-previous,fieldset[disabled] .pagination-next,fieldset[disabled] .pagination-link,fieldset[disabled] .pagination-ellipsis,fieldset[disabled] .file-cta,fieldset[disabled] .file-name,fieldset[disabled] .select select,.select fieldset[disabled] select,fieldset[disabled] .textarea,fieldset[disabled] .input,fieldset[disabled] .button{cursor:not-allowed}.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis,.file,.button{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.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%;transform:rotate(-45deg);transform-origin:center;width:.625em}.pagination:not(:last-child),.message:not(:last-child),.progress:not(:last-child),.notification:not(:last-child),.content:not(:last-child){margin-bottom:1.5rem}.delete{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-moz-appearance:none;-webkit-appearance:none;background-color:rgba(10,10,10,.2);border:0;border-radius:9999px;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::before,.delete::after{background-color:hsl(0deg,0%,100%);content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}.delete::before{height:2px;width:50%}.delete::after{height:50%;width:2px}.delete:hover,.delete:focus{background-color:rgba(10,10,10,.3)}.delete:active{background-color:rgba(10,10,10,.4)}.is-small.delete{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}.is-medium.delete{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}.is-large.delete{height:32px;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}.control.is-loading::after,.select.is-loading::after,.loader,.button.is-loading::after{animation:spinAround 500ms infinite linear;border:2px solid hsl(0deg,0%,86%);border-radius:9999px;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1em;position:relative;width:1em}.image.is-square img,.image.is-square .has-ratio,.image.is-1by1 img,.image.is-1by1 .has-ratio,.image.is-5by4 img,.image.is-5by4 .has-ratio,.image.is-4by3 img,.image.is-4by3 .has-ratio,.image.is-3by2 img,.image.is-3by2 .has-ratio,.image.is-5by3 img,.image.is-5by3 .has-ratio,.image.is-16by9 img,.image.is-16by9 .has-ratio,.image.is-2by1 img,.image.is-2by1 .has-ratio,.image.is-3by1 img,.image.is-3by1 .has-ratio,.image.is-4by5 img,.image.is-4by5 .has-ratio,.image.is-3by4 img,.image.is-3by4 .has-ratio,.image.is-2by3 img,.image.is-2by3 .has-ratio,.image.is-3by5 img,.image.is-3by5 .has-ratio,.image.is-9by16 img,.image.is-9by16 .has-ratio,.image.is-1by2 img,.image.is-1by2 .has-ratio,.image.is-1by3 img,.image.is-1by3 .has-ratio{bottom:0;left:0;position:absolute;right:0;top:0}html{background-color:hsl(0deg,0%,100%);font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:hidden;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}article,aside,figure,footer,header,hgroup,section{display:block}body,button,input,optgroup,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:hsl(0deg,0%,29%);font-size:1em;font-weight:400;line-height:1.5}a{cursor:pointer;text-decoration:none}code{background-color:hsl(0deg,0%,96%);color:#da1039;font-size:.875em;font-weight:normal;padding:.25em .5em .25em}hr{background-color:hsl(0deg,0%,96%);border:0;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:hsl(0deg,0%,21%);font-weight:700}fieldset{border:0}pre{-webkit-overflow-scrolling:touch;background-color:hsl(0deg,0%,96%);color:hsl(0deg,0%,29%);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{vertical-align:top}table td:not([align]),table th:not([align]){text-align:inherit}table th{color:hsl(0deg,0%,21%)}@keyframes spinAround{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}.button{cursor:pointer;justify-content:center;padding-bottom:calc(.5em - 1px);padding-left:1em;padding-right:1em;padding-top:calc(.5em - 1px);text-align:center;white-space:nowrap}.button .icon,.button .icon.is-small,.button .icon.is-medium,.button .icon.is-large{height:1.5em;width:1.5em}.button .icon:first-child:not(:last-child){margin-left:calc(-.5em - 1px);margin-right:.25em}.button .icon:last-child:not(:first-child){margin-left:.25em;margin-right:calc(-.5em - 1px)}.button .icon:first-child:last-child{margin-left:calc(-.5em - 1px);margin-right:calc(-.5em - 1px)}.button.is-text{background-color:transparent;border-color:transparent;color:hsl(0deg,0%,29%);text-decoration:underline}.button.is-text:hover,.button.is-text.is-hovered,.button.is-text:focus,.button.is-text.is-focused{background-color:hsl(0deg,0%,96%);color:hsl(0deg,0%,21%)}.button.is-text:active,.button.is-text.is-active{background-color:#e8e8e8;color:hsl(0deg,0%,21%)}.button.is-text[disabled],fieldset[disabled] .button.is-text{background-color:transparent;border-color:transparent;box-shadow:none}.button.is-ghost{background:none;border-color:transparent;color:hsl(229deg,53%,53%);text-decoration:none}.button.is-ghost:hover,.button.is-ghost.is-hovered{color:hsl(229deg,53%,53%);text-decoration:underline}.button.is-white{background-color:hsl(0deg,0%,100%);border-color:transparent;color:hsl(0deg,0%,4%)}.button.is-white:hover,.button.is-white.is-hovered{background-color:#f9f9f9;border-color:transparent;color:hsl(0deg,0%,4%)}.button.is-white:focus,.button.is-white.is-focused{border-color:transparent;color:hsl(0deg,0%,4%)}.button.is-white:focus:not(:active),.button.is-white.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(255,255,255,.25)}.button.is-white:active,.button.is-white.is-active{background-color:#f2f2f2;border-color:transparent;color:hsl(0deg,0%,4%)}.button.is-white[disabled],fieldset[disabled] .button.is-white{background-color:hsl(0deg,0%,100%);border-color:hsl(0deg,0%,100%);box-shadow:none}.button.is-white.is-inverted{background-color:hsl(0deg,0%,4%);color:hsl(0deg,0%,100%)}.button.is-white.is-inverted:hover,.button.is-white.is-inverted.is-hovered{background-color:#000}.button.is-white.is-inverted[disabled],fieldset[disabled] .button.is-white.is-inverted{background-color:hsl(0deg,0%,4%);border-color:transparent;box-shadow:none;color:hsl(0deg,0%,100%)}.button.is-white.is-loading::after{border-color:transparent transparent hsl(0deg,0%,4%) hsl(0deg,0%,4%)!important}.button.is-white.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,100%);color:hsl(0deg,0%,100%)}.button.is-white.is-outlined:hover,.button.is-white.is-outlined.is-hovered,.button.is-white.is-outlined:focus,.button.is-white.is-outlined.is-focused{background-color:hsl(0deg,0%,100%);border-color:hsl(0deg,0%,100%);color:hsl(0deg,0%,4%)}.button.is-white.is-outlined.is-loading::after{border-color:transparent transparent hsl(0deg,0%,100%) hsl(0deg,0%,100%)!important}.button.is-white.is-outlined.is-loading:hover::after,.button.is-white.is-outlined.is-loading.is-hovered::after,.button.is-white.is-outlined.is-loading:focus::after,.button.is-white.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(0deg,0%,4%) hsl(0deg,0%,4%)!important}.button.is-white.is-outlined[disabled],fieldset[disabled] .button.is-white.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,100%);box-shadow:none;color:hsl(0deg,0%,100%)}.button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,4%);color:hsl(0deg,0%,4%)}.button.is-white.is-inverted.is-outlined:hover,.button.is-white.is-inverted.is-outlined.is-hovered,.button.is-white.is-inverted.is-outlined:focus,.button.is-white.is-inverted.is-outlined.is-focused{background-color:hsl(0deg,0%,4%);color:hsl(0deg,0%,100%)}.button.is-white.is-inverted.is-outlined.is-loading:hover::after,.button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-white.is-inverted.is-outlined.is-loading:focus::after,.button.is-white.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(0deg,0%,100%) hsl(0deg,0%,100%)!important}.button.is-white.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,4%);box-shadow:none;color:hsl(0deg,0%,4%)}.button.is-black{background-color:hsl(0deg,0%,4%);border-color:transparent;color:hsl(0deg,0%,100%)}.button.is-black:hover,.button.is-black.is-hovered{background-color:#040404;border-color:transparent;color:hsl(0deg,0%,100%)}.button.is-black:focus,.button.is-black.is-focused{border-color:transparent;color:hsl(0deg,0%,100%)}.button.is-black:focus:not(:active),.button.is-black.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.button.is-black:active,.button.is-black.is-active{background-color:#000;border-color:transparent;color:hsl(0deg,0%,100%)}.button.is-black[disabled],fieldset[disabled] .button.is-black{background-color:hsl(0deg,0%,4%);border-color:hsl(0deg,0%,4%);box-shadow:none}.button.is-black.is-inverted{background-color:hsl(0deg,0%,100%);color:hsl(0deg,0%,4%)}.button.is-black.is-inverted:hover,.button.is-black.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-black.is-inverted[disabled],fieldset[disabled] .button.is-black.is-inverted{background-color:hsl(0deg,0%,100%);border-color:transparent;box-shadow:none;color:hsl(0deg,0%,4%)}.button.is-black.is-loading::after{border-color:transparent transparent hsl(0deg,0%,100%) hsl(0deg,0%,100%)!important}.button.is-black.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,4%);color:hsl(0deg,0%,4%)}.button.is-black.is-outlined:hover,.button.is-black.is-outlined.is-hovered,.button.is-black.is-outlined:focus,.button.is-black.is-outlined.is-focused{background-color:hsl(0deg,0%,4%);border-color:hsl(0deg,0%,4%);color:hsl(0deg,0%,100%)}.button.is-black.is-outlined.is-loading::after{border-color:transparent transparent hsl(0deg,0%,4%) hsl(0deg,0%,4%)!important}.button.is-black.is-outlined.is-loading:hover::after,.button.is-black.is-outlined.is-loading.is-hovered::after,.button.is-black.is-outlined.is-loading:focus::after,.button.is-black.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(0deg,0%,100%) hsl(0deg,0%,100%)!important}.button.is-black.is-outlined[disabled],fieldset[disabled] .button.is-black.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,4%);box-shadow:none;color:hsl(0deg,0%,4%)}.button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,100%);color:hsl(0deg,0%,100%)}.button.is-black.is-inverted.is-outlined:hover,.button.is-black.is-inverted.is-outlined.is-hovered,.button.is-black.is-inverted.is-outlined:focus,.button.is-black.is-inverted.is-outlined.is-focused{background-color:hsl(0deg,0%,100%);color:hsl(0deg,0%,4%)}.button.is-black.is-inverted.is-outlined.is-loading:hover::after,.button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-black.is-inverted.is-outlined.is-loading:focus::after,.button.is-black.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(0deg,0%,4%) hsl(0deg,0%,4%)!important}.button.is-black.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,100%);box-shadow:none;color:hsl(0deg,0%,100%)}.button.is-light{background-color:hsl(0deg,0%,96%);border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light:hover,.button.is-light.is-hovered{background-color:#eee;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light:focus,.button.is-light.is-focused{border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light:focus:not(:active),.button.is-light.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(245,245,245,.25)}.button.is-light:active,.button.is-light.is-active{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light[disabled],fieldset[disabled] .button.is-light{background-color:hsl(0deg,0%,96%);border-color:hsl(0deg,0%,96%);box-shadow:none}.button.is-light.is-inverted{background-color:rgba(0,0,0,.7);color:hsl(0deg,0%,96%)}.button.is-light.is-inverted:hover,.button.is-light.is-inverted.is-hovered{background-color:rgba(0,0,0,.7)}.button.is-light.is-inverted[disabled],fieldset[disabled] .button.is-light.is-inverted{background-color:rgba(0,0,0,.7);border-color:transparent;box-shadow:none;color:hsl(0deg,0%,96%)}.button.is-light.is-loading::after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-light.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,96%);color:hsl(0deg,0%,96%)}.button.is-light.is-outlined:hover,.button.is-light.is-outlined.is-hovered,.button.is-light.is-outlined:focus,.button.is-light.is-outlined.is-focused{background-color:hsl(0deg,0%,96%);border-color:hsl(0deg,0%,96%);color:rgba(0,0,0,.7)}.button.is-light.is-outlined.is-loading::after{border-color:transparent transparent hsl(0deg,0%,96%) hsl(0deg,0%,96%)!important}.button.is-light.is-outlined.is-loading:hover::after,.button.is-light.is-outlined.is-loading.is-hovered::after,.button.is-light.is-outlined.is-loading:focus::after,.button.is-light.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-light.is-outlined[disabled],fieldset[disabled] .button.is-light.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,96%);box-shadow:none;color:hsl(0deg,0%,96%)}.button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);color:rgba(0,0,0,.7)}.button.is-light.is-inverted.is-outlined:hover,.button.is-light.is-inverted.is-outlined.is-hovered,.button.is-light.is-inverted.is-outlined:focus,.button.is-light.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,.7);color:hsl(0deg,0%,96%)}.button.is-light.is-inverted.is-outlined.is-loading:hover::after,.button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-light.is-inverted.is-outlined.is-loading:focus::after,.button.is-light.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(0deg,0%,96%) hsl(0deg,0%,96%)!important}.button.is-light.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);box-shadow:none;color:rgba(0,0,0,.7)}.button.is-dark{background-color:hsl(0deg,0%,21%);border-color:transparent;color:#fff}.button.is-dark:hover,.button.is-dark.is-hovered{background-color:#2f2f2f;border-color:transparent;color:#fff}.button.is-dark:focus,.button.is-dark.is-focused{border-color:transparent;color:#fff}.button.is-dark:focus:not(:active),.button.is-dark.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.button.is-dark:active,.button.is-dark.is-active{background-color:#292929;border-color:transparent;color:#fff}.button.is-dark[disabled],fieldset[disabled] .button.is-dark{background-color:hsl(0deg,0%,21%);border-color:hsl(0deg,0%,21%);box-shadow:none}.button.is-dark.is-inverted{background-color:#fff;color:hsl(0deg,0%,21%)}.button.is-dark.is-inverted:hover,.button.is-dark.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-dark.is-inverted[disabled],fieldset[disabled] .button.is-dark.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:hsl(0deg,0%,21%)}.button.is-dark.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-dark.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,21%);color:hsl(0deg,0%,21%)}.button.is-dark.is-outlined:hover,.button.is-dark.is-outlined.is-hovered,.button.is-dark.is-outlined:focus,.button.is-dark.is-outlined.is-focused{background-color:hsl(0deg,0%,21%);border-color:hsl(0deg,0%,21%);color:#fff}.button.is-dark.is-outlined.is-loading::after{border-color:transparent transparent hsl(0deg,0%,21%) hsl(0deg,0%,21%)!important}.button.is-dark.is-outlined.is-loading:hover::after,.button.is-dark.is-outlined.is-loading.is-hovered::after,.button.is-dark.is-outlined.is-loading:focus::after,.button.is-dark.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff!important}.button.is-dark.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-outlined{background-color:transparent;border-color:hsl(0deg,0%,21%);box-shadow:none;color:hsl(0deg,0%,21%)}.button.is-dark.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-dark.is-inverted.is-outlined:hover,.button.is-dark.is-inverted.is-outlined.is-hovered,.button.is-dark.is-inverted.is-outlined:focus,.button.is-dark.is-inverted.is-outlined.is-focused{background-color:#fff;color:hsl(0deg,0%,21%)}.button.is-dark.is-inverted.is-outlined.is-loading:hover::after,.button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-dark.is-inverted.is-outlined.is-loading:focus::after,.button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(0deg,0%,21%) hsl(0deg,0%,21%)!important}.button.is-dark.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary{background-color:hsl(171deg,100%,41%);border-color:transparent;color:#fff}.button.is-primary:hover,.button.is-primary.is-hovered{background-color:#00c4a7;border-color:transparent;color:#fff}.button.is-primary:focus,.button.is-primary.is-focused{border-color:transparent;color:#fff}.button.is-primary:focus:not(:active),.button.is-primary.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.button.is-primary:active,.button.is-primary.is-active{background-color:#00b89c;border-color:transparent;color:#fff}.button.is-primary[disabled],fieldset[disabled] .button.is-primary{background-color:hsl(171deg,100%,41%);border-color:hsl(171deg,100%,41%);box-shadow:none}.button.is-primary.is-inverted{background-color:#fff;color:hsl(171deg,100%,41%)}.button.is-primary.is-inverted:hover,.button.is-primary.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-primary.is-inverted[disabled],fieldset[disabled] .button.is-primary.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:hsl(171deg,100%,41%)}.button.is-primary.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-primary.is-outlined{background-color:transparent;border-color:hsl(171deg,100%,41%);color:hsl(171deg,100%,41%)}.button.is-primary.is-outlined:hover,.button.is-primary.is-outlined.is-hovered,.button.is-primary.is-outlined:focus,.button.is-primary.is-outlined.is-focused{background-color:hsl(171deg,100%,41%);border-color:hsl(171deg,100%,41%);color:#fff}.button.is-primary.is-outlined.is-loading::after{border-color:transparent transparent hsl(171deg,100%,41%) hsl(171deg,100%,41%)!important}.button.is-primary.is-outlined.is-loading:hover::after,.button.is-primary.is-outlined.is-loading.is-hovered::after,.button.is-primary.is-outlined.is-loading:focus::after,.button.is-primary.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff!important}.button.is-primary.is-outlined[disabled],fieldset[disabled] .button.is-primary.is-outlined{background-color:transparent;border-color:hsl(171deg,100%,41%);box-shadow:none;color:hsl(171deg,100%,41%)}.button.is-primary.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-primary.is-inverted.is-outlined:hover,.button.is-primary.is-inverted.is-outlined.is-hovered,.button.is-primary.is-inverted.is-outlined:focus,.button.is-primary.is-inverted.is-outlined.is-focused{background-color:#fff;color:hsl(171deg,100%,41%)}.button.is-primary.is-inverted.is-outlined.is-loading:hover::after,.button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-primary.is-inverted.is-outlined.is-loading:focus::after,.button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(171deg,100%,41%) hsl(171deg,100%,41%)!important}.button.is-primary.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-primary.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary.is-light{background-color:#ebfffc;color:#00947e}.button.is-primary.is-light:hover,.button.is-primary.is-light.is-hovered{background-color:#defffa;border-color:transparent;color:#00947e}.button.is-primary.is-light:active,.button.is-primary.is-light.is-active{background-color:#d1fff8;border-color:transparent;color:#00947e}.button.is-link{background-color:hsl(229deg,53%,53%);border-color:transparent;color:#fff}.button.is-link:hover,.button.is-link.is-hovered{background-color:#3e56c4;border-color:transparent;color:#fff}.button.is-link:focus,.button.is-link.is-focused{border-color:transparent;color:#fff}.button.is-link:focus:not(:active),.button.is-link.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(72,95,199,.25)}.button.is-link:active,.button.is-link.is-active{background-color:#3a51bb;border-color:transparent;color:#fff}.button.is-link[disabled],fieldset[disabled] .button.is-link{background-color:hsl(229deg,53%,53%);border-color:hsl(229deg,53%,53%);box-shadow:none}.button.is-link.is-inverted{background-color:#fff;color:hsl(229deg,53%,53%)}.button.is-link.is-inverted:hover,.button.is-link.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-link.is-inverted[disabled],fieldset[disabled] .button.is-link.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:hsl(229deg,53%,53%)}.button.is-link.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-link.is-outlined{background-color:transparent;border-color:hsl(229deg,53%,53%);color:hsl(229deg,53%,53%)}.button.is-link.is-outlined:hover,.button.is-link.is-outlined.is-hovered,.button.is-link.is-outlined:focus,.button.is-link.is-outlined.is-focused{background-color:hsl(229deg,53%,53%);border-color:hsl(229deg,53%,53%);color:#fff}.button.is-link.is-outlined.is-loading::after{border-color:transparent transparent hsl(229deg,53%,53%) hsl(229deg,53%,53%)!important}.button.is-link.is-outlined.is-loading:hover::after,.button.is-link.is-outlined.is-loading.is-hovered::after,.button.is-link.is-outlined.is-loading:focus::after,.button.is-link.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff!important}.button.is-link.is-outlined[disabled],fieldset[disabled] .button.is-link.is-outlined{background-color:transparent;border-color:hsl(229deg,53%,53%);box-shadow:none;color:hsl(229deg,53%,53%)}.button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-link.is-inverted.is-outlined:hover,.button.is-link.is-inverted.is-outlined.is-hovered,.button.is-link.is-inverted.is-outlined:focus,.button.is-link.is-inverted.is-outlined.is-focused{background-color:#fff;color:hsl(229deg,53%,53%)}.button.is-link.is-inverted.is-outlined.is-loading:hover::after,.button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-link.is-inverted.is-outlined.is-loading:focus::after,.button.is-link.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(229deg,53%,53%) hsl(229deg,53%,53%)!important}.button.is-link.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-link.is-light{background-color:#eff1fa;color:#3850b7}.button.is-link.is-light:hover,.button.is-link.is-light.is-hovered{background-color:#e6e9f7;border-color:transparent;color:#3850b7}.button.is-link.is-light:active,.button.is-link.is-light.is-active{background-color:#dce0f4;border-color:transparent;color:#3850b7}.button.is-info{background-color:hsl(207deg,61%,53%);border-color:transparent;color:#fff}.button.is-info:hover,.button.is-info.is-hovered{background-color:#3488ce;border-color:transparent;color:#fff}.button.is-info:focus,.button.is-info.is-focused{border-color:transparent;color:#fff}.button.is-info:focus:not(:active),.button.is-info.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(62,142,208,.25)}.button.is-info:active,.button.is-info.is-active{background-color:#3082c5;border-color:transparent;color:#fff}.button.is-info[disabled],fieldset[disabled] .button.is-info{background-color:hsl(207deg,61%,53%);border-color:hsl(207deg,61%,53%);box-shadow:none}.button.is-info.is-inverted{background-color:#fff;color:hsl(207deg,61%,53%)}.button.is-info.is-inverted:hover,.button.is-info.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-info.is-inverted[disabled],fieldset[disabled] .button.is-info.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:hsl(207deg,61%,53%)}.button.is-info.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-info.is-outlined{background-color:transparent;border-color:hsl(207deg,61%,53%);color:hsl(207deg,61%,53%)}.button.is-info.is-outlined:hover,.button.is-info.is-outlined.is-hovered,.button.is-info.is-outlined:focus,.button.is-info.is-outlined.is-focused{background-color:hsl(207deg,61%,53%);border-color:hsl(207deg,61%,53%);color:#fff}.button.is-info.is-outlined.is-loading::after{border-color:transparent transparent hsl(207deg,61%,53%) hsl(207deg,61%,53%)!important}.button.is-info.is-outlined.is-loading:hover::after,.button.is-info.is-outlined.is-loading.is-hovered::after,.button.is-info.is-outlined.is-loading:focus::after,.button.is-info.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff!important}.button.is-info.is-outlined[disabled],fieldset[disabled] .button.is-info.is-outlined{background-color:transparent;border-color:hsl(207deg,61%,53%);box-shadow:none;color:hsl(207deg,61%,53%)}.button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-info.is-inverted.is-outlined:hover,.button.is-info.is-inverted.is-outlined.is-hovered,.button.is-info.is-inverted.is-outlined:focus,.button.is-info.is-inverted.is-outlined.is-focused{background-color:#fff;color:hsl(207deg,61%,53%)}.button.is-info.is-inverted.is-outlined.is-loading:hover::after,.button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-info.is-inverted.is-outlined.is-loading:focus::after,.button.is-info.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(207deg,61%,53%) hsl(207deg,61%,53%)!important}.button.is-info.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-info.is-light{background-color:#eff5fb;color:#296fa8}.button.is-info.is-light:hover,.button.is-info.is-light.is-hovered{background-color:#e4eff9;border-color:transparent;color:#296fa8}.button.is-info.is-light:active,.button.is-info.is-light.is-active{background-color:#dae9f6;border-color:transparent;color:#296fa8}.button.is-success{background-color:hsl(153deg,53%,53%);border-color:transparent;color:#fff}.button.is-success:hover,.button.is-success.is-hovered{background-color:#3ec487;border-color:transparent;color:#fff}.button.is-success:focus,.button.is-success.is-focused{border-color:transparent;color:#fff}.button.is-success:focus:not(:active),.button.is-success.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(72,199,142,.25)}.button.is-success:active,.button.is-success.is-active{background-color:#3abb81;border-color:transparent;color:#fff}.button.is-success[disabled],fieldset[disabled] .button.is-success{background-color:hsl(153deg,53%,53%);border-color:hsl(153deg,53%,53%);box-shadow:none}.button.is-success.is-inverted{background-color:#fff;color:hsl(153deg,53%,53%)}.button.is-success.is-inverted:hover,.button.is-success.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-success.is-inverted[disabled],fieldset[disabled] .button.is-success.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:hsl(153deg,53%,53%)}.button.is-success.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-success.is-outlined{background-color:transparent;border-color:hsl(153deg,53%,53%);color:hsl(153deg,53%,53%)}.button.is-success.is-outlined:hover,.button.is-success.is-outlined.is-hovered,.button.is-success.is-outlined:focus,.button.is-success.is-outlined.is-focused{background-color:hsl(153deg,53%,53%);border-color:hsl(153deg,53%,53%);color:#fff}.button.is-success.is-outlined.is-loading::after{border-color:transparent transparent hsl(153deg,53%,53%) hsl(153deg,53%,53%)!important}.button.is-success.is-outlined.is-loading:hover::after,.button.is-success.is-outlined.is-loading.is-hovered::after,.button.is-success.is-outlined.is-loading:focus::after,.button.is-success.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff!important}.button.is-success.is-outlined[disabled],fieldset[disabled] .button.is-success.is-outlined{background-color:transparent;border-color:hsl(153deg,53%,53%);box-shadow:none;color:hsl(153deg,53%,53%)}.button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-success.is-inverted.is-outlined:hover,.button.is-success.is-inverted.is-outlined.is-hovered,.button.is-success.is-inverted.is-outlined:focus,.button.is-success.is-inverted.is-outlined.is-focused{background-color:#fff;color:hsl(153deg,53%,53%)}.button.is-success.is-inverted.is-outlined.is-loading:hover::after,.button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-success.is-inverted.is-outlined.is-loading:focus::after,.button.is-success.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(153deg,53%,53%) hsl(153deg,53%,53%)!important}.button.is-success.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-success.is-light{background-color:#effaf5;color:#257953}.button.is-success.is-light:hover,.button.is-success.is-light.is-hovered{background-color:#e6f7ef;border-color:transparent;color:#257953}.button.is-success.is-light:active,.button.is-success.is-light.is-active{background-color:#dcf4e9;border-color:transparent;color:#257953}.button.is-warning{background-color:hsl(44deg,100%,77%);border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning:hover,.button.is-warning.is-hovered{background-color:#ffdc7d;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning:focus,.button.is-warning.is-focused{border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning:focus:not(:active),.button.is-warning.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(255,224,138,.25)}.button.is-warning:active,.button.is-warning.is-active{background-color:#ffd970;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning[disabled],fieldset[disabled] .button.is-warning{background-color:hsl(44deg,100%,77%);border-color:hsl(44deg,100%,77%);box-shadow:none}.button.is-warning.is-inverted{background-color:rgba(0,0,0,.7);color:hsl(44deg,100%,77%)}.button.is-warning.is-inverted:hover,.button.is-warning.is-inverted.is-hovered{background-color:rgba(0,0,0,.7)}.button.is-warning.is-inverted[disabled],fieldset[disabled] .button.is-warning.is-inverted{background-color:rgba(0,0,0,.7);border-color:transparent;box-shadow:none;color:hsl(44deg,100%,77%)}.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:hsl(44deg,100%,77%);color:hsl(44deg,100%,77%)}.button.is-warning.is-outlined:hover,.button.is-warning.is-outlined.is-hovered,.button.is-warning.is-outlined:focus,.button.is-warning.is-outlined.is-focused{background-color:hsl(44deg,100%,77%);border-color:hsl(44deg,100%,77%);color:rgba(0,0,0,.7)}.button.is-warning.is-outlined.is-loading::after{border-color:transparent transparent hsl(44deg,100%,77%) hsl(44deg,100%,77%)!important}.button.is-warning.is-outlined.is-loading:hover::after,.button.is-warning.is-outlined.is-loading.is-hovered::after,.button.is-warning.is-outlined.is-loading:focus::after,.button.is-warning.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-warning.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-outlined{background-color:transparent;border-color:hsl(44deg,100%,77%);box-shadow:none;color:hsl(44deg,100%,77%)}.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:hover,.button.is-warning.is-inverted.is-outlined.is-hovered,.button.is-warning.is-inverted.is-outlined:focus,.button.is-warning.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,.7);color:hsl(44deg,100%,77%)}.button.is-warning.is-inverted.is-outlined.is-loading:hover::after,.button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-warning.is-inverted.is-outlined.is-loading:focus::after,.button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(44deg,100%,77%) hsl(44deg,100%,77%)!important}.button.is-warning.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);box-shadow:none;color:rgba(0,0,0,.7)}.button.is-warning.is-light{background-color:#fffaeb;color:#946c00}.button.is-warning.is-light:hover,.button.is-warning.is-light.is-hovered{background-color:#fff6de;border-color:transparent;color:#946c00}.button.is-warning.is-light:active,.button.is-warning.is-light.is-active{background-color:#fff3d1;border-color:transparent;color:#946c00}.button.is-danger{background-color:hsl(348deg,86%,61%);border-color:transparent;color:#fff}.button.is-danger:hover,.button.is-danger.is-hovered{background-color:#f03a5f;border-color:transparent;color:#fff}.button.is-danger:focus,.button.is-danger.is-focused{border-color:transparent;color:#fff}.button.is-danger:focus:not(:active),.button.is-danger.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(241,70,104,.25)}.button.is-danger:active,.button.is-danger.is-active{background-color:#ef2e55;border-color:transparent;color:#fff}.button.is-danger[disabled],fieldset[disabled] .button.is-danger{background-color:hsl(348deg,86%,61%);border-color:hsl(348deg,86%,61%);box-shadow:none}.button.is-danger.is-inverted{background-color:#fff;color:hsl(348deg,86%,61%)}.button.is-danger.is-inverted:hover,.button.is-danger.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-danger.is-inverted[disabled],fieldset[disabled] .button.is-danger.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:hsl(348deg,86%,61%)}.button.is-danger.is-loading::after{border-color:transparent transparent #fff #fff!important}.button.is-danger.is-outlined{background-color:transparent;border-color:hsl(348deg,86%,61%);color:hsl(348deg,86%,61%)}.button.is-danger.is-outlined:hover,.button.is-danger.is-outlined.is-hovered,.button.is-danger.is-outlined:focus,.button.is-danger.is-outlined.is-focused{background-color:hsl(348deg,86%,61%);border-color:hsl(348deg,86%,61%);color:#fff}.button.is-danger.is-outlined.is-loading::after{border-color:transparent transparent hsl(348deg,86%,61%) hsl(348deg,86%,61%)!important}.button.is-danger.is-outlined.is-loading:hover::after,.button.is-danger.is-outlined.is-loading.is-hovered::after,.button.is-danger.is-outlined.is-loading:focus::after,.button.is-danger.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff!important}.button.is-danger.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-outlined{background-color:transparent;border-color:hsl(348deg,86%,61%);box-shadow:none;color:hsl(348deg,86%,61%)}.button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-danger.is-inverted.is-outlined:hover,.button.is-danger.is-inverted.is-outlined.is-hovered,.button.is-danger.is-inverted.is-outlined:focus,.button.is-danger.is-inverted.is-outlined.is-focused{background-color:#fff;color:hsl(348deg,86%,61%)}.button.is-danger.is-inverted.is-outlined.is-loading:hover::after,.button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-danger.is-inverted.is-outlined.is-loading:focus::after,.button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent hsl(348deg,86%,61%) hsl(348deg,86%,61%)!important}.button.is-danger.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-danger.is-light{background-color:#feecf0;color:#cc0f35}.button.is-danger.is-light:hover,.button.is-danger.is-light.is-hovered{background-color:#fde0e6;border-color:transparent;color:#cc0f35}.button.is-danger.is-light:active,.button.is-danger.is-light.is-active{background-color:#fcd4dc;border-color:transparent;color:#cc0f35}.button.is-small{font-size:.75rem}.button.is-small:not(.is-rounded){border-radius:2px}.button.is-normal{font-size:1rem}.button.is-medium{font-size:1.25rem}.button.is-large{font-size:1.5rem}.button[disabled],fieldset[disabled] .button{background-color:hsl(0deg,0%,100%);border-color:hsl(0deg,0%,86%);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*.5));top:calc(50% - (1em*.5));position:absolute!important}.button.is-static{background-color:hsl(0deg,0%,96%);border-color:hsl(0deg,0%,86%);color:hsl(0deg,0%,48%);box-shadow:none;pointer-events:none}.button.is-rounded{border-radius:9999px;padding-left:calc(1em + .25em);padding-right:calc(1em + .25em)}.buttons{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.buttons .button{margin-bottom:.5rem}.buttons .button:not(:last-child):not(.is-fullwidth){margin-right:.5rem}.buttons:last-child{margin-bottom:-.5rem}.buttons:not(:last-child){margin-bottom:1rem}.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large){font-size:.75rem}.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large):not(.is-rounded){border-radius:2px}.buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large){font-size:1.25rem}.buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium){font-size:1.5rem}.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:hover,.buttons.has-addons .button.is-hovered{z-index:2}.buttons.has-addons .button:focus,.buttons.has-addons .button.is-focused,.buttons.has-addons .button:active,.buttons.has-addons .button.is-active,.buttons.has-addons .button.is-selected{z-index:3}.buttons.has-addons .button:focus:hover,.buttons.has-addons .button.is-focused:hover,.buttons.has-addons .button:active:hover,.buttons.has-addons .button.is-active:hover,.buttons.has-addons .button.is-selected:hover{z-index:4}.buttons.has-addons .button.is-expanded{flex-grow:1;flex-shrink:1}.buttons.is-centered{justify-content:center}.buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth){margin-left:.25rem;margin-right:.25rem}.buttons.is-right{justify-content:flex-end}.buttons.is-right:not(.has-addons) .button:not(.is-fullwidth){margin-left:.25rem;margin-right:.25rem}@media screen and (max-width:768px){.button.is-responsive.is-small{font-size:.5625rem}.button.is-responsive,.button.is-responsive.is-normal{font-size:.65625rem}.button.is-responsive.is-medium{font-size:.75rem}.button.is-responsive.is-large{font-size:1rem}}@media screen and (min-width:769px) and (max-width:1023px){.button.is-responsive.is-small{font-size:.65625rem}.button.is-responsive,.button.is-responsive.is-normal{font-size:.75rem}.button.is-responsive.is-medium{font-size:1rem}.button.is-responsive.is-large{font-size:1.25rem}}.content li+li{margin-top:.25em}.content p:not(:last-child),.content dl:not(:last-child),.content ol:not(:last-child),.content ul:not(:last-child),.content blockquote:not(:last-child),.content pre:not(:last-child),.content table:not(:last-child){margin-bottom:1em}.content h1,.content h2,.content h3,.content h4,.content h5,.content h6{color:hsl(0deg,0%,21%);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:hsl(0deg,0%,96%);border-left:5px solid hsl(0deg,0%,86%);padding:1.25em 1.5em}.content ol{list-style-position:outside;margin-left:2em;margin-top:1em}.content ol:not([type]){list-style-type:decimal}.content ol:not([type]).is-lower-alpha{list-style-type:lower-alpha}.content ol:not([type]).is-lower-roman{list-style-type:lower-roman}.content ol:not([type]).is-upper-alpha{list-style-type:upper-alpha}.content ol:not([type]).is-upper-roman{list-style-type:upper-roman}.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 sup,.content sub{font-size:75%}.content table{width:100%}.content table td,.content table th{border:1px solid hsl(0deg,0%,86%);border-width:0 0 1px;padding:.5em .75em;vertical-align:top}.content table th{color:hsl(0deg,0%,21%)}.content table th:not([align]){text-align:inherit}.content table thead td,.content table thead th{border-width:0 0 2px;color:hsl(0deg,0%,21%)}.content table tfoot td,.content table tfoot th{border-width:2px 0 0;color:hsl(0deg,0%,21%)}.content table tbody tr:last-child td,.content table tbody tr:last-child th{border-bottom-width:0}.content .tabs li+li{margin-top:0}.content.is-small{font-size:.75rem}.content.is-normal{font-size:1rem}.content.is-medium{font-size:1.25rem}.content.is-large{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}.icon-text{align-items:flex-start;color:inherit;display:inline-flex;flex-wrap:wrap;line-height:1.5rem;vertical-align:top}.icon-text .icon{flex-grow:0;flex-shrink:0}.icon-text .icon:not(:last-child){margin-right:.25em}.icon-text .icon:not(:first-child){margin-left:.25em}div.icon-text{display:flex}.image{display:block;position:relative}.image img{display:block;height:auto;width:100%}.image img.is-rounded{border-radius:9999px}.image.is-fullwidth{width:100%}.image.is-square img,.image.is-square .has-ratio,.image.is-1by1 img,.image.is-1by1 .has-ratio,.image.is-5by4 img,.image.is-5by4 .has-ratio,.image.is-4by3 img,.image.is-4by3 .has-ratio,.image.is-3by2 img,.image.is-3by2 .has-ratio,.image.is-5by3 img,.image.is-5by3 .has-ratio,.image.is-16by9 img,.image.is-16by9 .has-ratio,.image.is-2by1 img,.image.is-2by1 .has-ratio,.image.is-3by1 img,.image.is-3by1 .has-ratio,.image.is-4by5 img,.image.is-4by5 .has-ratio,.image.is-3by4 img,.image.is-3by4 .has-ratio,.image.is-2by3 img,.image.is-2by3 .has-ratio,.image.is-3by5 img,.image.is-3by5 .has-ratio,.image.is-9by16 img,.image.is-9by16 .has-ratio,.image.is-1by2 img,.image.is-1by2 .has-ratio,.image.is-1by3 img,.image.is-1by3 .has-ratio{height:100%;width:100%}.image.is-square,.image.is-1by1{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:hsl(0deg,0%,96%);border-radius:4px;position:relative;padding:1.25rem 2.5rem 1.25rem 1.5rem}.notification a:not(.button):not(.dropdown-item){color:currentColor;text-decoration:underline}.notification strong{color:currentColor}.notification code,.notification pre{background:hsl(0deg,0%,100%)}.notification pre code{background:transparent}.notification>.delete{right:.5rem;position:absolute;top:.5rem}.notification .title,.notification .subtitle,.notification .content{color:currentColor}.notification.is-white{background-color:hsl(0deg,0%,100%);color:hsl(0deg,0%,4%)}.notification.is-black{background-color:hsl(0deg,0%,4%);color:hsl(0deg,0%,100%)}.notification.is-light{background-color:hsl(0deg,0%,96%);color:rgba(0,0,0,.7)}.notification.is-dark{background-color:hsl(0deg,0%,21%);color:#fff}.notification.is-primary{background-color:hsl(171deg,100%,41%);color:#fff}.notification.is-primary.is-light{background-color:#ebfffc;color:#00947e}.notification.is-link{background-color:hsl(229deg,53%,53%);color:#fff}.notification.is-link.is-light{background-color:#eff1fa;color:#3850b7}.notification.is-info{background-color:hsl(207deg,61%,53%);color:#fff}.notification.is-info.is-light{background-color:#eff5fb;color:#296fa8}.notification.is-success{background-color:hsl(153deg,53%,53%);color:#fff}.notification.is-success.is-light{background-color:#effaf5;color:#257953}.notification.is-warning{background-color:hsl(44deg,100%,77%);color:rgba(0,0,0,.7)}.notification.is-warning.is-light{background-color:#fffaeb;color:#946c00}.notification.is-danger{background-color:hsl(348deg,86%,61%);color:#fff}.notification.is-danger.is-light{background-color:#feecf0;color:#cc0f35}.progress{-moz-appearance:none;-webkit-appearance:none;border:0;border-radius:9999px;display:block;height:1rem;overflow:hidden;padding:0;width:100%}.progress::-webkit-progress-bar{background-color:hsl(0deg,0%,93%)}.progress::-webkit-progress-value{background-color:hsl(0deg,0%,29%)}.progress::-moz-progress-bar{background-color:hsl(0deg,0%,29%)}.progress::-ms-fill{background-color:hsl(0deg,0%,29%);border:0}.progress.is-white::-webkit-progress-value{background-color:hsl(0deg,0%,100%)}.progress.is-white::-moz-progress-bar{background-color:hsl(0deg,0%,100%)}.progress.is-white::-ms-fill{background-color:hsl(0deg,0%,100%)}.progress.is-white:indeterminate{background-image:linear-gradient(to right,hsl(0deg,0%,100%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-black::-webkit-progress-value{background-color:hsl(0deg,0%,4%)}.progress.is-black::-moz-progress-bar{background-color:hsl(0deg,0%,4%)}.progress.is-black::-ms-fill{background-color:hsl(0deg,0%,4%)}.progress.is-black:indeterminate{background-image:linear-gradient(to right,hsl(0deg,0%,4%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-light::-webkit-progress-value{background-color:hsl(0deg,0%,96%)}.progress.is-light::-moz-progress-bar{background-color:hsl(0deg,0%,96%)}.progress.is-light::-ms-fill{background-color:hsl(0deg,0%,96%)}.progress.is-light:indeterminate{background-image:linear-gradient(to right,hsl(0deg,0%,96%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-dark::-webkit-progress-value{background-color:hsl(0deg,0%,21%)}.progress.is-dark::-moz-progress-bar{background-color:hsl(0deg,0%,21%)}.progress.is-dark::-ms-fill{background-color:hsl(0deg,0%,21%)}.progress.is-dark:indeterminate{background-image:linear-gradient(to right,hsl(0deg,0%,21%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-primary::-webkit-progress-value{background-color:hsl(171deg,100%,41%)}.progress.is-primary::-moz-progress-bar{background-color:hsl(171deg,100%,41%)}.progress.is-primary::-ms-fill{background-color:hsl(171deg,100%,41%)}.progress.is-primary:indeterminate{background-image:linear-gradient(to right,hsl(171deg,100%,41%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-link::-webkit-progress-value{background-color:hsl(229deg,53%,53%)}.progress.is-link::-moz-progress-bar{background-color:hsl(229deg,53%,53%)}.progress.is-link::-ms-fill{background-color:hsl(229deg,53%,53%)}.progress.is-link:indeterminate{background-image:linear-gradient(to right,hsl(229deg,53%,53%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-info::-webkit-progress-value{background-color:hsl(207deg,61%,53%)}.progress.is-info::-moz-progress-bar{background-color:hsl(207deg,61%,53%)}.progress.is-info::-ms-fill{background-color:hsl(207deg,61%,53%)}.progress.is-info:indeterminate{background-image:linear-gradient(to right,hsl(207deg,61%,53%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-success::-webkit-progress-value{background-color:hsl(153deg,53%,53%)}.progress.is-success::-moz-progress-bar{background-color:hsl(153deg,53%,53%)}.progress.is-success::-ms-fill{background-color:hsl(153deg,53%,53%)}.progress.is-success:indeterminate{background-image:linear-gradient(to right,hsl(153deg,53%,53%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-warning::-webkit-progress-value{background-color:hsl(44deg,100%,77%)}.progress.is-warning::-moz-progress-bar{background-color:hsl(44deg,100%,77%)}.progress.is-warning::-ms-fill{background-color:hsl(44deg,100%,77%)}.progress.is-warning:indeterminate{background-image:linear-gradient(to right,hsl(44deg,100%,77%) 30%,hsl(0deg,0%,93%) 30%)}.progress.is-danger::-webkit-progress-value{background-color:hsl(348deg,86%,61%)}.progress.is-danger::-moz-progress-bar{background-color:hsl(348deg,86%,61%)}.progress.is-danger::-ms-fill{background-color:hsl(348deg,86%,61%)}.progress.is-danger:indeterminate{background-image:linear-gradient(to right,hsl(348deg,86%,61%) 30%,hsl(0deg,0%,93%) 30%)}.progress:indeterminate{animation-duration:1.5s;animation-iteration-count:infinite;animation-name:moveIndeterminate;animation-timing-function:linear;background-color:hsl(0deg,0%,93%);background-image:linear-gradient(to right,hsl(0deg,0%,29%) 30%,hsl(0deg,0%,93%) 30%);background-position:top left;background-repeat:no-repeat;background-size:150% 150%}.progress:indeterminate::-webkit-progress-bar{background-color:transparent}.progress:indeterminate::-moz-progress-bar{background-color:transparent}.progress:indeterminate::-ms-fill{animation-name:none}.progress.is-small{height:.75rem}.progress.is-medium{height:1.25rem}.progress.is-large{height:1.5rem}@keyframes moveIndeterminate{from{background-position:200% 0}to{background-position:-200% 0}}.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.are-medium .tag:not(.is-normal):not(.is-large){font-size:1rem}.tags.are-large .tag:not(.is-normal):not(.is-medium){font-size:1.25rem}.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}.tags.has-addons .tag{margin-right:0}.tags.has-addons .tag:not(:first-child){margin-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.tags.has-addons .tag:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.tag:not(body){align-items:center;background-color:hsl(0deg,0%,96%);border-radius:4px;color:hsl(0deg,0%,29%);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:hsl(0deg,0%,100%);color:hsl(0deg,0%,4%)}.tag:not(body).is-black{background-color:hsl(0deg,0%,4%);color:hsl(0deg,0%,100%)}.tag:not(body).is-light{background-color:hsl(0deg,0%,96%);color:rgba(0,0,0,.7)}.tag:not(body).is-dark{background-color:hsl(0deg,0%,21%);color:#fff}.tag:not(body).is-primary{background-color:hsl(171deg,100%,41%);color:#fff}.tag:not(body).is-primary.is-light{background-color:#ebfffc;color:#00947e}.tag:not(body).is-link{background-color:hsl(229deg,53%,53%);color:#fff}.tag:not(body).is-link.is-light{background-color:#eff1fa;color:#3850b7}.tag:not(body).is-info{background-color:hsl(207deg,61%,53%);color:#fff}.tag:not(body).is-info.is-light{background-color:#eff5fb;color:#296fa8}.tag:not(body).is-success{background-color:hsl(153deg,53%,53%);color:#fff}.tag:not(body).is-success.is-light{background-color:#effaf5;color:#257953}.tag:not(body).is-warning{background-color:hsl(44deg,100%,77%);color:rgba(0,0,0,.7)}.tag:not(body).is-warning.is-light{background-color:#fffaeb;color:#946c00}.tag:not(body).is-danger{background-color:hsl(348deg,86%,61%);color:#fff}.tag:not(body).is-danger.is-light{background-color:#feecf0;color:#cc0f35}.tag:not(body).is-normal{font-size:.75rem}.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::before,.tag:not(body).is-delete::after{background-color:currentColor;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);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:hover,.tag:not(body).is-delete:focus{background-color:#e8e8e8}.tag:not(body).is-delete:active{background-color:#dbdbdb}.tag:not(body).is-rounded{border-radius:9999px}a.tag:hover{text-decoration:underline}.heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}.number{align-items:center;background-color:hsl(0deg,0%,96%);border-radius:9999px;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}.select select,.textarea,.input{background-color:hsl(0deg,0%,100%);border-color:hsl(0deg,0%,86%);border-radius:4px}.select select::-moz-placeholder,.textarea::-moz-placeholder,.input::-moz-placeholder{color:var(--placeholder-text-color)}.select select::-webkit-input-placeholder,.textarea::-webkit-input-placeholder,.input::-webkit-input-placeholder{color:var(--placeholder-text-color)}.select select:-moz-placeholder,.textarea:-moz-placeholder,.input:-moz-placeholder{color:var(--placeholder-text-color)}.select select:-ms-input-placeholder,.textarea:-ms-input-placeholder,.input:-ms-input-placeholder{color:var(--placeholder-text-color)}.select select:hover,.textarea:hover,.input:hover,.select select.is-hovered,.is-hovered.textarea,.is-hovered.input{border-color:hsl(0deg,0%,71%)}.select select:focus,.textarea:focus,.input:focus,.select select.is-focused,.is-focused.textarea,.is-focused.input,.select select:active,.textarea:active,.input:active,.select select.is-active,.is-active.textarea,.is-active.input{border-color:hsl(229deg,53%,53%);box-shadow:0 0 0 .125em rgba(72,95,199,.25)}.select select[disabled],[disabled].textarea,[disabled].input,fieldset[disabled] .select select,.select fieldset[disabled] select,fieldset[disabled] .textarea,fieldset[disabled] .input{background-color:hsl(0deg,0%,96%);border-color:hsl(0deg,0%,96%);box-shadow:none;color:var(--placeholder-text-color)}.select select[disabled]::-moz-placeholder,[disabled].textarea::-moz-placeholder,[disabled].input::-moz-placeholder,fieldset[disabled] .select select::-moz-placeholder,.select fieldset[disabled] select::-moz-placeholder,fieldset[disabled] .textarea::-moz-placeholder,fieldset[disabled] .input::-moz-placeholder{color:var(--placeholder-text-color)}.select select[disabled]::-webkit-input-placeholder,[disabled].textarea::-webkit-input-placeholder,[disabled].input::-webkit-input-placeholder,fieldset[disabled] .select select::-webkit-input-placeholder,.select fieldset[disabled] select::-webkit-input-placeholder,fieldset[disabled] .textarea::-webkit-input-placeholder,fieldset[disabled] .input::-webkit-input-placeholder{color:var(--placeholder-text-color)}.select select[disabled]:-moz-placeholder,[disabled].textarea:-moz-placeholder,[disabled].input:-moz-placeholder,fieldset[disabled] .select select:-moz-placeholder,.select fieldset[disabled] select:-moz-placeholder,fieldset[disabled] .textarea:-moz-placeholder,fieldset[disabled] .input:-moz-placeholder{color:var(--placeholder-text-color)}.select select[disabled]:-ms-input-placeholder,[disabled].textarea:-ms-input-placeholder,[disabled].input:-ms-input-placeholder,fieldset[disabled] .select select:-ms-input-placeholder,.select fieldset[disabled] select:-ms-input-placeholder,fieldset[disabled] .textarea:-ms-input-placeholder,fieldset[disabled] .input:-ms-input-placeholder{color:var(--placeholder-text-color)}.textarea,.input{box-shadow:inset 0 .0625em .125em rgba(10,10,10,.05);max-width:100%;width:100%}[readonly].textarea,[readonly].input{box-shadow:none}.is-white.textarea,.is-white.input{border-color:hsl(0deg,0%,100%)}.is-white.textarea:focus,.is-white.input:focus,.is-white.is-focused.textarea,.is-white.is-focused.input,.is-white.textarea:active,.is-white.input:active,.is-white.is-active.textarea,.is-white.is-active.input{box-shadow:0 0 0 .125em rgba(255,255,255,.25)}.is-black.textarea,.is-black.input{border-color:hsl(0deg,0%,4%)}.is-black.textarea:focus,.is-black.input:focus,.is-black.is-focused.textarea,.is-black.is-focused.input,.is-black.textarea:active,.is-black.input:active,.is-black.is-active.textarea,.is-black.is-active.input{box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.is-light.textarea,.is-light.input{border-color:hsl(0deg,0%,96%)}.is-light.textarea:focus,.is-light.input:focus,.is-light.is-focused.textarea,.is-light.is-focused.input,.is-light.textarea:active,.is-light.input:active,.is-light.is-active.textarea,.is-light.is-active.input{box-shadow:0 0 0 .125em rgba(245,245,245,.25)}.is-dark.textarea,.is-dark.input{border-color:hsl(0deg,0%,21%)}.is-dark.textarea:focus,.is-dark.input:focus,.is-dark.is-focused.textarea,.is-dark.is-focused.input,.is-dark.textarea:active,.is-dark.input:active,.is-dark.is-active.textarea,.is-dark.is-active.input{box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.is-primary.textarea,.is-primary.input{border-color:hsl(171deg,100%,41%)}.is-primary.textarea:focus,.is-primary.input:focus,.is-primary.is-focused.textarea,.is-primary.is-focused.input,.is-primary.textarea:active,.is-primary.input:active,.is-primary.is-active.textarea,.is-primary.is-active.input{box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.is-link.textarea,.is-link.input{border-color:hsl(229deg,53%,53%)}.is-link.textarea:focus,.is-link.input:focus,.is-link.is-focused.textarea,.is-link.is-focused.input,.is-link.textarea:active,.is-link.input:active,.is-link.is-active.textarea,.is-link.is-active.input{box-shadow:0 0 0 .125em rgba(72,95,199,.25)}.is-info.textarea,.is-info.input{border-color:hsl(207deg,61%,53%)}.is-info.textarea:focus,.is-info.input:focus,.is-info.is-focused.textarea,.is-info.is-focused.input,.is-info.textarea:active,.is-info.input:active,.is-info.is-active.textarea,.is-info.is-active.input{box-shadow:0 0 0 .125em rgba(62,142,208,.25)}.is-success.textarea,.is-success.input{border-color:hsl(153deg,53%,53%)}.is-success.textarea:focus,.is-success.input:focus,.is-success.is-focused.textarea,.is-success.is-focused.input,.is-success.textarea:active,.is-success.input:active,.is-success.is-active.textarea,.is-success.is-active.input{box-shadow:0 0 0 .125em rgba(72,199,142,.25)}.is-warning.textarea,.is-warning.input{border-color:hsl(44deg,100%,77%)}.is-warning.textarea:focus,.is-warning.input:focus,.is-warning.is-focused.textarea,.is-warning.is-focused.input,.is-warning.textarea:active,.is-warning.input:active,.is-warning.is-active.textarea,.is-warning.is-active.input{box-shadow:0 0 0 .125em rgba(255,224,138,.25)}.is-danger.textarea,.is-danger.input{border-color:hsl(348deg,86%,61%)}.is-danger.textarea:focus,.is-danger.input:focus,.is-danger.is-focused.textarea,.is-danger.is-focused.input,.is-danger.textarea:active,.is-danger.input:active,.is-danger.is-active.textarea,.is-danger.is-active.input{box-shadow:0 0 0 .125em rgba(241,70,104,.25)}.is-small.textarea,.is-small.input{border-radius:2px;font-size:.75rem}.is-medium.textarea,.is-medium.input{font-size:1.25rem}.is-large.textarea,.is-large.input{font-size:1.5rem}.is-fullwidth.textarea,.is-fullwidth.input{display:block;width:100%}.is-inline.textarea,.is-inline.input{display:inline;width:auto}.input.is-rounded{border-radius:9999px;padding-left:calc(calc(.75em - 1px) + .375em);padding-right:calc(calc(.75em - 1px) + .375em)}.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:calc(.75em - 1px);resize:vertical}.textarea:not([rows]){max-height:40em;min-height:8em}.textarea[rows]{height:initial}.textarea.has-fixed-size{resize:none}.radio,.checkbox{cursor:pointer;display:inline-block;line-height:1.25;position:relative}.radio input,.checkbox input{cursor:pointer}.radio:hover,.checkbox:hover{color:hsl(0deg,0%,21%)}[disabled].radio,[disabled].checkbox,fieldset[disabled] .radio,fieldset[disabled] .checkbox,.radio input[disabled],.checkbox input[disabled]{color:hsl(0deg,0%,48%);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.5em}.select:not(.is-multiple):not(.is-loading)::after{border-color:hsl(229deg,53%,53%);right:1.125em;z-index:4}.select.is-rounded select{border-radius:9999px;padding-left:1em}.select select{cursor:pointer;display:block;font-size:1em;max-width:100%;outline:0}.select select::-ms-expand{display:none}.select select[disabled]:hover,fieldset[disabled] .select select:hover{border-color:hsl(0deg,0%,96%)}.select select:not([multiple]){padding-right:2.5em}.select select[multiple]{height:auto;padding:0}.select select[multiple] option{padding:.5em 1em}.select:not(.is-multiple):not(.is-loading):hover::after{border-color:hsl(0deg,0%,21%)}.select.is-white:not(:hover)::after{border-color:hsl(0deg,0%,100%)}.select.is-white select{border-color:hsl(0deg,0%,100%)}.select.is-white select:hover,.select.is-white select.is-hovered{border-color:#f2f2f2}.select.is-white select:focus,.select.is-white select.is-focused,.select.is-white select:active,.select.is-white select.is-active{box-shadow:0 0 0 .125em rgba(255,255,255,.25)}.select.is-black:not(:hover)::after{border-color:hsl(0deg,0%,4%)}.select.is-black select{border-color:hsl(0deg,0%,4%)}.select.is-black select:hover,.select.is-black select.is-hovered{border-color:#000}.select.is-black select:focus,.select.is-black select.is-focused,.select.is-black select:active,.select.is-black select.is-active{box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.select.is-light:not(:hover)::after{border-color:hsl(0deg,0%,96%)}.select.is-light select{border-color:hsl(0deg,0%,96%)}.select.is-light select:hover,.select.is-light select.is-hovered{border-color:#e8e8e8}.select.is-light select:focus,.select.is-light select.is-focused,.select.is-light select:active,.select.is-light select.is-active{box-shadow:0 0 0 .125em rgba(245,245,245,.25)}.select.is-dark:not(:hover)::after{border-color:hsl(0deg,0%,21%)}.select.is-dark select{border-color:hsl(0deg,0%,21%)}.select.is-dark select:hover,.select.is-dark select.is-hovered{border-color:#292929}.select.is-dark select:focus,.select.is-dark select.is-focused,.select.is-dark select:active,.select.is-dark select.is-active{box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.select.is-primary:not(:hover)::after{border-color:hsl(171deg,100%,41%)}.select.is-primary select{border-color:hsl(171deg,100%,41%)}.select.is-primary select:hover,.select.is-primary select.is-hovered{border-color:#00b89c}.select.is-primary select:focus,.select.is-primary select.is-focused,.select.is-primary select:active,.select.is-primary select.is-active{box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.select.is-link:not(:hover)::after{border-color:hsl(229deg,53%,53%)}.select.is-link select{border-color:hsl(229deg,53%,53%)}.select.is-link select:hover,.select.is-link select.is-hovered{border-color:#3a51bb}.select.is-link select:focus,.select.is-link select.is-focused,.select.is-link select:active,.select.is-link select.is-active{box-shadow:0 0 0 .125em rgba(72,95,199,.25)}.select.is-info:not(:hover)::after{border-color:hsl(207deg,61%,53%)}.select.is-info select{border-color:hsl(207deg,61%,53%)}.select.is-info select:hover,.select.is-info select.is-hovered{border-color:#3082c5}.select.is-info select:focus,.select.is-info select.is-focused,.select.is-info select:active,.select.is-info select.is-active{box-shadow:0 0 0 .125em rgba(62,142,208,.25)}.select.is-success:not(:hover)::after{border-color:hsl(153deg,53%,53%)}.select.is-success select{border-color:hsl(153deg,53%,53%)}.select.is-success select:hover,.select.is-success select.is-hovered{border-color:#3abb81}.select.is-success select:focus,.select.is-success select.is-focused,.select.is-success select:active,.select.is-success select.is-active{box-shadow:0 0 0 .125em rgba(72,199,142,.25)}.select.is-warning:not(:hover)::after{border-color:hsl(44deg,100%,77%)}.select.is-warning select{border-color:hsl(44deg,100%,77%)}.select.is-warning select:hover,.select.is-warning select.is-hovered{border-color:#ffd970}.select.is-warning select:focus,.select.is-warning select.is-focused,.select.is-warning select:active,.select.is-warning select.is-active{box-shadow:0 0 0 .125em rgba(255,224,138,.25)}.select.is-danger:not(:hover)::after{border-color:hsl(348deg,86%,61%)}.select.is-danger select{border-color:hsl(348deg,86%,61%)}.select.is-danger select:hover,.select.is-danger select.is-hovered{border-color:#ef2e55}.select.is-danger select:focus,.select.is-danger select.is-focused,.select.is-danger select:active,.select.is-danger select.is-active{box-shadow:0 0 0 .125em rgba(241,70,104,.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:hsl(0deg,0%,48%)!important;opacity:.5}.select.is-fullwidth{width:100%}.select.is-fullwidth select{width:100%}.select.is-loading::after{margin-top:0;position:absolute;right:.625em;top:.625em;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:hsl(0deg,0%,100%);border-color:transparent;color:hsl(0deg,0%,4%)}.file.is-white:hover .file-cta,.file.is-white.is-hovered .file-cta{background-color:#f9f9f9;border-color:transparent;color:hsl(0deg,0%,4%)}.file.is-white:focus .file-cta,.file.is-white.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(255,255,255,.25);color:hsl(0deg,0%,4%)}.file.is-white:active .file-cta,.file.is-white.is-active .file-cta{background-color:#f2f2f2;border-color:transparent;color:hsl(0deg,0%,4%)}.file.is-black .file-cta{background-color:hsl(0deg,0%,4%);border-color:transparent;color:hsl(0deg,0%,100%)}.file.is-black:hover .file-cta,.file.is-black.is-hovered .file-cta{background-color:#040404;border-color:transparent;color:hsl(0deg,0%,100%)}.file.is-black:focus .file-cta,.file.is-black.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(10,10,10,.25);color:hsl(0deg,0%,100%)}.file.is-black:active .file-cta,.file.is-black.is-active .file-cta{background-color:#000;border-color:transparent;color:hsl(0deg,0%,100%)}.file.is-light .file-cta{background-color:hsl(0deg,0%,96%);border-color:transparent;color:rgba(0,0,0,.7)}.file.is-light:hover .file-cta,.file.is-light.is-hovered .file-cta{background-color:#eee;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-light:focus .file-cta,.file.is-light.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(245,245,245,.25);color:rgba(0,0,0,.7)}.file.is-light:active .file-cta,.file.is-light.is-active .file-cta{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-dark .file-cta{background-color:hsl(0deg,0%,21%);border-color:transparent;color:#fff}.file.is-dark:hover .file-cta,.file.is-dark.is-hovered .file-cta{background-color:#2f2f2f;border-color:transparent;color:#fff}.file.is-dark:focus .file-cta,.file.is-dark.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(54,54,54,.25);color:#fff}.file.is-dark:active .file-cta,.file.is-dark.is-active .file-cta{background-color:#292929;border-color:transparent;color:#fff}.file.is-primary .file-cta{background-color:hsl(171deg,100%,41%);border-color:transparent;color:#fff}.file.is-primary:hover .file-cta,.file.is-primary.is-hovered .file-cta{background-color:#00c4a7;border-color:transparent;color:#fff}.file.is-primary:focus .file-cta,.file.is-primary.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(0,209,178,.25);color:#fff}.file.is-primary:active .file-cta,.file.is-primary.is-active .file-cta{background-color:#00b89c;border-color:transparent;color:#fff}.file.is-link .file-cta{background-color:hsl(229deg,53%,53%);border-color:transparent;color:#fff}.file.is-link:hover .file-cta,.file.is-link.is-hovered .file-cta{background-color:#3e56c4;border-color:transparent;color:#fff}.file.is-link:focus .file-cta,.file.is-link.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(72,95,199,.25);color:#fff}.file.is-link:active .file-cta,.file.is-link.is-active .file-cta{background-color:#3a51bb;border-color:transparent;color:#fff}.file.is-info .file-cta{background-color:hsl(207deg,61%,53%);border-color:transparent;color:#fff}.file.is-info:hover .file-cta,.file.is-info.is-hovered .file-cta{background-color:#3488ce;border-color:transparent;color:#fff}.file.is-info:focus .file-cta,.file.is-info.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(62,142,208,.25);color:#fff}.file.is-info:active .file-cta,.file.is-info.is-active .file-cta{background-color:#3082c5;border-color:transparent;color:#fff}.file.is-success .file-cta{background-color:hsl(153deg,53%,53%);border-color:transparent;color:#fff}.file.is-success:hover .file-cta,.file.is-success.is-hovered .file-cta{background-color:#3ec487;border-color:transparent;color:#fff}.file.is-success:focus .file-cta,.file.is-success.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(72,199,142,.25);color:#fff}.file.is-success:active .file-cta,.file.is-success.is-active .file-cta{background-color:#3abb81;border-color:transparent;color:#fff}.file.is-warning .file-cta{background-color:hsl(44deg,100%,77%);border-color:transparent;color:rgba(0,0,0,.7)}.file.is-warning:hover .file-cta,.file.is-warning.is-hovered .file-cta{background-color:#ffdc7d;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-warning:focus .file-cta,.file.is-warning.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(255,224,138,.25);color:rgba(0,0,0,.7)}.file.is-warning:active .file-cta,.file.is-warning.is-active .file-cta{background-color:#ffd970;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-danger .file-cta{background-color:hsl(348deg,86%,61%);border-color:transparent;color:#fff}.file.is-danger:hover .file-cta,.file.is-danger.is-hovered .file-cta{background-color:#f03a5f;border-color:transparent;color:#fff}.file.is-danger:focus .file-cta,.file.is-danger.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(241,70,104,.25);color:#fff}.file.is-danger:active .file-cta,.file.is-danger.is-active .file-cta{background-color:#ef2e55;border-color:transparent;color:#fff}.file.is-small{font-size:.75rem}.file.is-normal{font-size:1rem}.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:hsl(0deg,0%,21%)}.file-label:hover .file-name{border-color:#d5d5d5}.file-label:active .file-cta{background-color:#e8e8e8;color:hsl(0deg,0%,21%)}.file-label:active .file-name{border-color:#cfcfcf}.file-input{height:100%;left:0;opacity:0;outline:0;position:absolute;top:0;width:100%}.file-cta,.file-name{border-color:hsl(0deg,0%,86%);border-radius:4px;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}.file-cta{background-color:hsl(0deg,0%,96%);color:hsl(0deg,0%,29%)}.file-name{border-color:hsl(0deg,0%,86%);border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:inherit;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:hsl(0deg,0%,21%);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:hsl(0deg,0%,100%)}.help.is-black{color:hsl(0deg,0%,4%)}.help.is-light{color:hsl(0deg,0%,96%)}.help.is-dark{color:hsl(0deg,0%,21%)}.help.is-primary{color:hsl(171deg,100%,41%)}.help.is-link{color:hsl(229deg,53%,53%)}.help.is-info{color:hsl(207deg,61%,53%)}.help.is-success{color:hsl(153deg,53%,53%)}.help.is-warning{color:hsl(44deg,100%,77%)}.help.is-danger{color:hsl(348deg,86%,61%)}.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:not(:only-child) .button,.field.has-addons .control:first-child:not(:only-child) .input,.field.has-addons .control:first-child:not(:only-child) .select select{border-bottom-right-radius:0;border-top-right-radius:0}.field.has-addons .control:last-child:not(:only-child) .button,.field.has-addons .control:last-child:not(:only-child) .input,.field.has-addons .control:last-child:not(:only-child) .select select{border-bottom-left-radius:0;border-top-left-radius:0}.field.has-addons .control .button:not([disabled]):hover,.field.has-addons .control .button:not([disabled]).is-hovered,.field.has-addons .control .input:not([disabled]):hover,.field.has-addons .control .input:not([disabled]).is-hovered,.field.has-addons .control .select select:not([disabled]):hover,.field.has-addons .control .select select:not([disabled]).is-hovered{z-index:2}.field.has-addons .control .button:not([disabled]):focus,.field.has-addons .control .button:not([disabled]).is-focused,.field.has-addons .control .button:not([disabled]):active,.field.has-addons .control .button:not([disabled]).is-active,.field.has-addons .control .input:not([disabled]):focus,.field.has-addons .control .input:not([disabled]).is-focused,.field.has-addons .control .input:not([disabled]):active,.field.has-addons .control .input:not([disabled]).is-active,.field.has-addons .control .select select:not([disabled]):focus,.field.has-addons .control .select select:not([disabled]).is-focused,.field.has-addons .control .select select:not([disabled]):active,.field.has-addons .control .select select:not([disabled]).is-active{z-index:3}.field.has-addons .control .button:not([disabled]):focus:hover,.field.has-addons .control .button:not([disabled]).is-focused:hover,.field.has-addons .control .button:not([disabled]):active:hover,.field.has-addons .control .button:not([disabled]).is-active:hover,.field.has-addons .control .input:not([disabled]):focus:hover,.field.has-addons .control .input:not([disabled]).is-focused:hover,.field.has-addons .control .input:not([disabled]):active:hover,.field.has-addons .control .input:not([disabled]).is-active:hover,.field.has-addons .control .select select:not([disabled]):focus:hover,.field.has-addons .control .select select:not([disabled]).is-focused:hover,.field.has-addons .control .select select:not([disabled]):active:hover,.field.has-addons .control .select select:not([disabled]).is-active:hover{z-index:4}.field.has-addons .control.is-expanded{flex-grow:1;flex-shrink: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{box-sizing:border-box;clear:both;font-size:1rem;position:relative;text-align:inherit}.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:hsl(0deg,0%,29%)}.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:hsl(0deg,0%,86%);height:2.5em;pointer-events:none;position:absolute;top:0;width:2.5em;z-index:4}.control.has-icons-left .input,.control.has-icons-left .select select{padding-left:2.5em}.control.has-icons-left .icon.is-left{left:0}.control.has-icons-right .input,.control.has-icons-right .select select{padding-right:2.5em}.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}.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:hsl(0deg,0%,100%);border-radius:4px;box-shadow:0 .5em 1em -.125em rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.02);padding-bottom:.5rem;padding-top:.5rem}.dropdown-item{display:block;font-size:.875rem;line-height:1.5;padding:.375rem 1rem;position:relative}a.dropdown-item,button.dropdown-item{padding-right:3rem;text-align:inherit;white-space:nowrap;width:100%}a.dropdown-item:hover,button.dropdown-item:hover{background-color:hsl(0deg,0%,96%);color:hsl(0deg,0%,4%)}a.dropdown-item.is-active,button.dropdown-item.is-active{background-color:hsl(229deg,53%,53%);color:#fff}.dropdown-divider{background-color:hsl(0deg,0%,93%);border:0;display:block;height:1px;margin:.5rem 0}.message{background-color:hsl(0deg,0%,96%);border-radius:4px;font-size:1rem}.message strong{color:currentColor}.message a:not(.button):not(.tag):not(.dropdown-item){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:hsl(0deg,0%,100%);color:hsl(0deg,0%,4%)}.message.is-white .message-body{border-color:hsl(0deg,0%,100%)}.message.is-black{background-color:#fafafa}.message.is-black .message-header{background-color:hsl(0deg,0%,4%);color:hsl(0deg,0%,100%)}.message.is-black .message-body{border-color:hsl(0deg,0%,4%)}.message.is-light{background-color:#fafafa}.message.is-light .message-header{background-color:hsl(0deg,0%,96%);color:rgba(0,0,0,.7)}.message.is-light .message-body{border-color:hsl(0deg,0%,96%)}.message.is-dark{background-color:#fafafa}.message.is-dark .message-header{background-color:hsl(0deg,0%,21%);color:#fff}.message.is-dark .message-body{border-color:hsl(0deg,0%,21%)}.message.is-primary{background-color:#ebfffc}.message.is-primary .message-header{background-color:hsl(171deg,100%,41%);color:#fff}.message.is-primary .message-body{border-color:hsl(171deg,100%,41%);color:#00947e}.message.is-link{background-color:#eff1fa}.message.is-link .message-header{background-color:hsl(229deg,53%,53%);color:#fff}.message.is-link .message-body{border-color:hsl(229deg,53%,53%);color:#3850b7}.message.is-info{background-color:#eff5fb}.message.is-info .message-header{background-color:hsl(207deg,61%,53%);color:#fff}.message.is-info .message-body{border-color:hsl(207deg,61%,53%);color:#296fa8}.message.is-success{background-color:#effaf5}.message.is-success .message-header{background-color:hsl(153deg,53%,53%);color:#fff}.message.is-success .message-body{border-color:hsl(153deg,53%,53%);color:#257953}.message.is-warning{background-color:#fffaeb}.message.is-warning .message-header{background-color:hsl(44deg,100%,77%);color:rgba(0,0,0,.7)}.message.is-warning .message-body{border-color:hsl(44deg,100%,77%);color:#946c00}.message.is-danger{background-color:#feecf0}.message.is-danger .message-header{background-color:hsl(348deg,86%,61%);color:#fff}.message.is-danger .message-body{border-color:hsl(348deg,86%,61%);color:#cc0f35}.message-header{align-items:center;background-color:hsl(0deg,0%,29%);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:hsl(0deg,0%,86%);border-radius:4px;border-style:solid;border-width:0 0 0 4px;color:hsl(0deg,0%,29%);padding:1.25em 1.5em}.message-body code,.message-body pre{background-color:hsl(0deg,0%,100%)}.message-body pre code{background-color:transparent}.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-previous,.pagination.is-rounded .pagination-next{padding-left:1em;padding-right:1em;border-radius:9999px}.pagination.is-rounded .pagination-link{border-radius:9999px}.pagination,.pagination-list{align-items:center;display:flex;justify-content:center;text-align:center}.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis{font-size:1em;justify-content:center;margin:.25rem;padding-left:.5em;padding-right:.5em;text-align:center}.pagination-previous,.pagination-next,.pagination-link{border-color:hsl(0deg,0%,86%);color:hsl(0deg,0%,21%);min-width:2.5em}.pagination-previous:hover,.pagination-next:hover,.pagination-link:hover{border-color:hsl(0deg,0%,71%);color:hsl(0deg,0%,21%)}.pagination-previous:focus,.pagination-next:focus,.pagination-link:focus{border-color:hsl(229deg,53%,53%)}.pagination-previous:active,.pagination-next:active,.pagination-link:active{box-shadow:inset 0 1px 2px rgba(10,10,10,.2)}.pagination-previous[disabled],.pagination-previous.is-disabled,.pagination-next[disabled],.pagination-next.is-disabled,.pagination-link[disabled],.pagination-link.is-disabled{background-color:hsl(0deg,0%,86%);border-color:hsl(0deg,0%,86%);box-shadow:none;color:hsl(0deg,0%,48%);opacity:.5}.pagination-previous,.pagination-next{padding-left:.75em;padding-right:.75em;white-space:nowrap}.pagination-link.is-current{background-color:hsl(229deg,53%,53%);border-color:hsl(229deg,53%,53%);color:#fff}.pagination-ellipsis{color:hsl(0deg,0%,71%);pointer-events:none}.pagination-list{flex-wrap:wrap}.pagination-list li{list-style:none}@media screen and (max-width:768px){.pagination{flex-wrap:wrap}.pagination-previous,.pagination-next{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,.pagination-next,.pagination-link,.pagination-ellipsis{margin-bottom:0;margin-top:0}.pagination-previous{order:2}.pagination-next{order:3}.pagination{justify-content:space-between;margin-bottom:0;margin-top:0}.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}} \ No newline at end of file diff --git a/wwwroot/vendor/ionicons.css b/wwwroot/vendor/ionicons.css deleted file mode 100644 index 80868f5..0000000 --- a/wwwroot/vendor/ionicons.css +++ /dev/null @@ -1,3512 +0,0 @@ -@charset "UTF-8"; -/*! - Ionicons, v4.6.4-1 - Created by Ben Sperry for the Ionic Framework, http://ionicons.com/ - https://twitter.com/benjsperry https://twitter.com/ionicframework - MIT License: https://github.com/driftyco/ionicons - - Android-style icons originally built by Google’s - Material Design Icons: https://github.com/google/material-design-icons - used under CC BY http://creativecommons.org/licenses/by/4.0/ - Modified icons to fit ionicon’s grid from original. -*/ -@font-face { - font-family: "Ionicons"; - src: url("../fonts/ionicons.eot?v=4.6.4-1"); - src: url("../fonts/ionicons.eot?v=4.6.4-1#iefix") format("embedded-opentype"), url("../fonts/ionicons.woff2?v=4.6.4-1") format("woff2"), url("../fonts/ionicons.woff?v=4.6.4-1") format("woff"), url("../fonts/ionicons.ttf?v=4.6.4-1") format("truetype"), url("../fonts/ionicons.svg?v=4.6.4-1#Ionicons") format("svg"); - font-weight: normal; - font-style: normal; -} -.ion, .ionicons, -.ion-ios-add:before, -.ion-ios-add-circle:before, -.ion-ios-add-circle-outline:before, -.ion-ios-airplane:before, -.ion-ios-alarm:before, -.ion-ios-albums:before, -.ion-ios-alert:before, -.ion-ios-american-football:before, -.ion-ios-analytics:before, -.ion-ios-aperture:before, -.ion-ios-apps:before, -.ion-ios-appstore:before, -.ion-ios-archive:before, -.ion-ios-arrow-back:before, -.ion-ios-arrow-down:before, -.ion-ios-arrow-dropdown:before, -.ion-ios-arrow-dropdown-circle:before, -.ion-ios-arrow-dropleft:before, -.ion-ios-arrow-dropleft-circle:before, -.ion-ios-arrow-dropright:before, -.ion-ios-arrow-dropright-circle:before, -.ion-ios-arrow-dropup:before, -.ion-ios-arrow-dropup-circle:before, -.ion-ios-arrow-forward:before, -.ion-ios-arrow-round-back:before, -.ion-ios-arrow-round-down:before, -.ion-ios-arrow-round-forward:before, -.ion-ios-arrow-round-up:before, -.ion-ios-arrow-up:before, -.ion-ios-at:before, -.ion-ios-attach:before, -.ion-ios-backspace:before, -.ion-ios-barcode:before, -.ion-ios-baseball:before, -.ion-ios-basket:before, -.ion-ios-basketball:before, -.ion-ios-battery-charging:before, -.ion-ios-battery-dead:before, -.ion-ios-battery-full:before, -.ion-ios-beaker:before, -.ion-ios-bed:before, -.ion-ios-beer:before, -.ion-ios-bicycle:before, -.ion-ios-bluetooth:before, -.ion-ios-boat:before, -.ion-ios-body:before, -.ion-ios-bonfire:before, -.ion-ios-book:before, -.ion-ios-bookmark:before, -.ion-ios-bookmarks:before, -.ion-ios-bowtie:before, -.ion-ios-briefcase:before, -.ion-ios-browsers:before, -.ion-ios-brush:before, -.ion-ios-bug:before, -.ion-ios-build:before, -.ion-ios-bulb:before, -.ion-ios-bus:before, -.ion-ios-business:before, -.ion-ios-cafe:before, -.ion-ios-calculator:before, -.ion-ios-calendar:before, -.ion-ios-call:before, -.ion-ios-camera:before, -.ion-ios-car:before, -.ion-ios-card:before, -.ion-ios-cart:before, -.ion-ios-cash:before, -.ion-ios-cellular:before, -.ion-ios-chatboxes:before, -.ion-ios-chatbubbles:before, -.ion-ios-checkbox:before, -.ion-ios-checkbox-outline:before, -.ion-ios-checkmark:before, -.ion-ios-checkmark-circle:before, -.ion-ios-checkmark-circle-outline:before, -.ion-ios-clipboard:before, -.ion-ios-clock:before, -.ion-ios-close:before, -.ion-ios-close-circle:before, -.ion-ios-close-circle-outline:before, -.ion-ios-cloud:before, -.ion-ios-cloud-circle:before, -.ion-ios-cloud-done:before, -.ion-ios-cloud-download:before, -.ion-ios-cloud-outline:before, -.ion-ios-cloud-upload:before, -.ion-ios-cloudy:before, -.ion-ios-cloudy-night:before, -.ion-ios-code:before, -.ion-ios-code-download:before, -.ion-ios-code-working:before, -.ion-ios-cog:before, -.ion-ios-color-fill:before, -.ion-ios-color-filter:before, -.ion-ios-color-palette:before, -.ion-ios-color-wand:before, -.ion-ios-compass:before, -.ion-ios-construct:before, -.ion-ios-contact:before, -.ion-ios-contacts:before, -.ion-ios-contract:before, -.ion-ios-contrast:before, -.ion-ios-copy:before, -.ion-ios-create:before, -.ion-ios-crop:before, -.ion-ios-cube:before, -.ion-ios-cut:before, -.ion-ios-desktop:before, -.ion-ios-disc:before, -.ion-ios-document:before, -.ion-ios-done-all:before, -.ion-ios-download:before, -.ion-ios-easel:before, -.ion-ios-egg:before, -.ion-ios-exit:before, -.ion-ios-expand:before, -.ion-ios-eye:before, -.ion-ios-eye-off:before, -.ion-ios-fastforward:before, -.ion-ios-female:before, -.ion-ios-filing:before, -.ion-ios-film:before, -.ion-ios-finger-print:before, -.ion-ios-fitness:before, -.ion-ios-flag:before, -.ion-ios-flame:before, -.ion-ios-flash:before, -.ion-ios-flash-off:before, -.ion-ios-flashlight:before, -.ion-ios-flask:before, -.ion-ios-flower:before, -.ion-ios-folder:before, -.ion-ios-folder-open:before, -.ion-ios-football:before, -.ion-ios-funnel:before, -.ion-ios-gift:before, -.ion-ios-git-branch:before, -.ion-ios-git-commit:before, -.ion-ios-git-compare:before, -.ion-ios-git-merge:before, -.ion-ios-git-network:before, -.ion-ios-git-pull-request:before, -.ion-ios-glasses:before, -.ion-ios-globe:before, -.ion-ios-grid:before, -.ion-ios-hammer:before, -.ion-ios-hand:before, -.ion-ios-happy:before, -.ion-ios-headset:before, -.ion-ios-heart:before, -.ion-ios-heart-dislike:before, -.ion-ios-heart-empty:before, -.ion-ios-heart-half:before, -.ion-ios-help:before, -.ion-ios-help-buoy:before, -.ion-ios-help-circle:before, -.ion-ios-help-circle-outline:before, -.ion-ios-home:before, -.ion-ios-hourglass:before, -.ion-ios-ice-cream:before, -.ion-ios-image:before, -.ion-ios-images:before, -.ion-ios-infinite:before, -.ion-ios-information:before, -.ion-ios-information-circle:before, -.ion-ios-information-circle-outline:before, -.ion-ios-jet:before, -.ion-ios-journal:before, -.ion-ios-key:before, -.ion-ios-keypad:before, -.ion-ios-laptop:before, -.ion-ios-leaf:before, -.ion-ios-link:before, -.ion-ios-list:before, -.ion-ios-list-box:before, -.ion-ios-locate:before, -.ion-ios-lock:before, -.ion-ios-log-in:before, -.ion-ios-log-out:before, -.ion-ios-magnet:before, -.ion-ios-mail:before, -.ion-ios-mail-open:before, -.ion-ios-mail-unread:before, -.ion-ios-male:before, -.ion-ios-man:before, -.ion-ios-map:before, -.ion-ios-medal:before, -.ion-ios-medical:before, -.ion-ios-medkit:before, -.ion-ios-megaphone:before, -.ion-ios-menu:before, -.ion-ios-mic:before, -.ion-ios-mic-off:before, -.ion-ios-microphone:before, -.ion-ios-moon:before, -.ion-ios-more:before, -.ion-ios-move:before, -.ion-ios-musical-note:before, -.ion-ios-musical-notes:before, -.ion-ios-navigate:before, -.ion-ios-notifications:before, -.ion-ios-notifications-off:before, -.ion-ios-notifications-outline:before, -.ion-ios-nuclear:before, -.ion-ios-nutrition:before, -.ion-ios-open:before, -.ion-ios-options:before, -.ion-ios-outlet:before, -.ion-ios-paper:before, -.ion-ios-paper-plane:before, -.ion-ios-partly-sunny:before, -.ion-ios-pause:before, -.ion-ios-paw:before, -.ion-ios-people:before, -.ion-ios-person:before, -.ion-ios-person-add:before, -.ion-ios-phone-landscape:before, -.ion-ios-phone-portrait:before, -.ion-ios-photos:before, -.ion-ios-pie:before, -.ion-ios-pin:before, -.ion-ios-pint:before, -.ion-ios-pizza:before, -.ion-ios-planet:before, -.ion-ios-play:before, -.ion-ios-play-circle:before, -.ion-ios-podium:before, -.ion-ios-power:before, -.ion-ios-pricetag:before, -.ion-ios-pricetags:before, -.ion-ios-print:before, -.ion-ios-pulse:before, -.ion-ios-qr-scanner:before, -.ion-ios-quote:before, -.ion-ios-radio:before, -.ion-ios-radio-button-off:before, -.ion-ios-radio-button-on:before, -.ion-ios-rainy:before, -.ion-ios-recording:before, -.ion-ios-redo:before, -.ion-ios-refresh:before, -.ion-ios-refresh-circle:before, -.ion-ios-remove:before, -.ion-ios-remove-circle:before, -.ion-ios-remove-circle-outline:before, -.ion-ios-reorder:before, -.ion-ios-repeat:before, -.ion-ios-resize:before, -.ion-ios-restaurant:before, -.ion-ios-return-left:before, -.ion-ios-return-right:before, -.ion-ios-reverse-camera:before, -.ion-ios-rewind:before, -.ion-ios-ribbon:before, -.ion-ios-rocket:before, -.ion-ios-rose:before, -.ion-ios-sad:before, -.ion-ios-save:before, -.ion-ios-school:before, -.ion-ios-search:before, -.ion-ios-send:before, -.ion-ios-settings:before, -.ion-ios-share:before, -.ion-ios-share-alt:before, -.ion-ios-shirt:before, -.ion-ios-shuffle:before, -.ion-ios-skip-backward:before, -.ion-ios-skip-forward:before, -.ion-ios-snow:before, -.ion-ios-speedometer:before, -.ion-ios-square:before, -.ion-ios-square-outline:before, -.ion-ios-star:before, -.ion-ios-star-half:before, -.ion-ios-star-outline:before, -.ion-ios-stats:before, -.ion-ios-stopwatch:before, -.ion-ios-subway:before, -.ion-ios-sunny:before, -.ion-ios-swap:before, -.ion-ios-switch:before, -.ion-ios-sync:before, -.ion-ios-tablet-landscape:before, -.ion-ios-tablet-portrait:before, -.ion-ios-tennisball:before, -.ion-ios-text:before, -.ion-ios-thermometer:before, -.ion-ios-thumbs-down:before, -.ion-ios-thumbs-up:before, -.ion-ios-thunderstorm:before, -.ion-ios-time:before, -.ion-ios-timer:before, -.ion-ios-today:before, -.ion-ios-train:before, -.ion-ios-transgender:before, -.ion-ios-trash:before, -.ion-ios-trending-down:before, -.ion-ios-trending-up:before, -.ion-ios-trophy:before, -.ion-ios-tv:before, -.ion-ios-umbrella:before, -.ion-ios-undo:before, -.ion-ios-unlock:before, -.ion-ios-videocam:before, -.ion-ios-volume-high:before, -.ion-ios-volume-low:before, -.ion-ios-volume-mute:before, -.ion-ios-volume-off:before, -.ion-ios-walk:before, -.ion-ios-wallet:before, -.ion-ios-warning:before, -.ion-ios-watch:before, -.ion-ios-water:before, -.ion-ios-wifi:before, -.ion-ios-wine:before, -.ion-ios-woman:before, -.ion-logo-android:before, -.ion-logo-angular:before, -.ion-logo-apple:before, -.ion-logo-bitbucket:before, -.ion-logo-bitcoin:before, -.ion-logo-buffer:before, -.ion-logo-chrome:before, -.ion-logo-closed-captioning:before, -.ion-logo-codepen:before, -.ion-logo-css3:before, -.ion-logo-designernews:before, -.ion-logo-dribbble:before, -.ion-logo-dropbox:before, -.ion-logo-euro:before, -.ion-logo-facebook:before, -.ion-logo-flickr:before, -.ion-logo-foursquare:before, -.ion-logo-freebsd-devil:before, -.ion-logo-game-controller-a:before, -.ion-logo-game-controller-b:before, -.ion-logo-github:before, -.ion-logo-google:before, -.ion-logo-googleplus:before, -.ion-logo-hackernews:before, -.ion-logo-html5:before, -.ion-logo-instagram:before, -.ion-logo-ionic:before, -.ion-logo-ionitron:before, -.ion-logo-javascript:before, -.ion-logo-linkedin:before, -.ion-logo-markdown:before, -.ion-logo-model-s:before, -.ion-logo-no-smoking:before, -.ion-logo-nodejs:before, -.ion-logo-npm:before, -.ion-logo-octocat:before, -.ion-logo-pinterest:before, -.ion-logo-playstation:before, -.ion-logo-polymer:before, -.ion-logo-python:before, -.ion-logo-reddit:before, -.ion-logo-rss:before, -.ion-logo-sass:before, -.ion-logo-skype:before, -.ion-logo-slack:before, -.ion-logo-snapchat:before, -.ion-logo-steam:before, -.ion-logo-tumblr:before, -.ion-logo-tux:before, -.ion-logo-twitch:before, -.ion-logo-twitter:before, -.ion-logo-usd:before, -.ion-logo-vimeo:before, -.ion-logo-vk:before, -.ion-logo-whatsapp:before, -.ion-logo-windows:before, -.ion-logo-wordpress:before, -.ion-logo-xbox:before, -.ion-logo-xing:before, -.ion-logo-yahoo:before, -.ion-logo-yen:before, -.ion-logo-youtube:before, -.ion-md-add:before, -.ion-md-add-circle:before, -.ion-md-add-circle-outline:before, -.ion-md-airplane:before, -.ion-md-alarm:before, -.ion-md-albums:before, -.ion-md-alert:before, -.ion-md-american-football:before, -.ion-md-analytics:before, -.ion-md-aperture:before, -.ion-md-apps:before, -.ion-md-appstore:before, -.ion-md-archive:before, -.ion-md-arrow-back:before, -.ion-md-arrow-down:before, -.ion-md-arrow-dropdown:before, -.ion-md-arrow-dropdown-circle:before, -.ion-md-arrow-dropleft:before, -.ion-md-arrow-dropleft-circle:before, -.ion-md-arrow-dropright:before, -.ion-md-arrow-dropright-circle:before, -.ion-md-arrow-dropup:before, -.ion-md-arrow-dropup-circle:before, -.ion-md-arrow-forward:before, -.ion-md-arrow-round-back:before, -.ion-md-arrow-round-down:before, -.ion-md-arrow-round-forward:before, -.ion-md-arrow-round-up:before, -.ion-md-arrow-up:before, -.ion-md-at:before, -.ion-md-attach:before, -.ion-md-backspace:before, -.ion-md-barcode:before, -.ion-md-baseball:before, -.ion-md-basket:before, -.ion-md-basketball:before, -.ion-md-battery-charging:before, -.ion-md-battery-dead:before, -.ion-md-battery-full:before, -.ion-md-beaker:before, -.ion-md-bed:before, -.ion-md-beer:before, -.ion-md-bicycle:before, -.ion-md-bluetooth:before, -.ion-md-boat:before, -.ion-md-body:before, -.ion-md-bonfire:before, -.ion-md-book:before, -.ion-md-bookmark:before, -.ion-md-bookmarks:before, -.ion-md-bowtie:before, -.ion-md-briefcase:before, -.ion-md-browsers:before, -.ion-md-brush:before, -.ion-md-bug:before, -.ion-md-build:before, -.ion-md-bulb:before, -.ion-md-bus:before, -.ion-md-business:before, -.ion-md-cafe:before, -.ion-md-calculator:before, -.ion-md-calendar:before, -.ion-md-call:before, -.ion-md-camera:before, -.ion-md-car:before, -.ion-md-card:before, -.ion-md-cart:before, -.ion-md-cash:before, -.ion-md-cellular:before, -.ion-md-chatboxes:before, -.ion-md-chatbubbles:before, -.ion-md-checkbox:before, -.ion-md-checkbox-outline:before, -.ion-md-checkmark:before, -.ion-md-checkmark-circle:before, -.ion-md-checkmark-circle-outline:before, -.ion-md-clipboard:before, -.ion-md-clock:before, -.ion-md-close:before, -.ion-md-close-circle:before, -.ion-md-close-circle-outline:before, -.ion-md-cloud:before, -.ion-md-cloud-circle:before, -.ion-md-cloud-done:before, -.ion-md-cloud-download:before, -.ion-md-cloud-outline:before, -.ion-md-cloud-upload:before, -.ion-md-cloudy:before, -.ion-md-cloudy-night:before, -.ion-md-code:before, -.ion-md-code-download:before, -.ion-md-code-working:before, -.ion-md-cog:before, -.ion-md-color-fill:before, -.ion-md-color-filter:before, -.ion-md-color-palette:before, -.ion-md-color-wand:before, -.ion-md-compass:before, -.ion-md-construct:before, -.ion-md-contact:before, -.ion-md-contacts:before, -.ion-md-contract:before, -.ion-md-contrast:before, -.ion-md-copy:before, -.ion-md-create:before, -.ion-md-crop:before, -.ion-md-cube:before, -.ion-md-cut:before, -.ion-md-desktop:before, -.ion-md-disc:before, -.ion-md-document:before, -.ion-md-done-all:before, -.ion-md-download:before, -.ion-md-easel:before, -.ion-md-egg:before, -.ion-md-exit:before, -.ion-md-expand:before, -.ion-md-eye:before, -.ion-md-eye-off:before, -.ion-md-fastforward:before, -.ion-md-female:before, -.ion-md-filing:before, -.ion-md-film:before, -.ion-md-finger-print:before, -.ion-md-fitness:before, -.ion-md-flag:before, -.ion-md-flame:before, -.ion-md-flash:before, -.ion-md-flash-off:before, -.ion-md-flashlight:before, -.ion-md-flask:before, -.ion-md-flower:before, -.ion-md-folder:before, -.ion-md-folder-open:before, -.ion-md-football:before, -.ion-md-funnel:before, -.ion-md-gift:before, -.ion-md-git-branch:before, -.ion-md-git-commit:before, -.ion-md-git-compare:before, -.ion-md-git-merge:before, -.ion-md-git-network:before, -.ion-md-git-pull-request:before, -.ion-md-glasses:before, -.ion-md-globe:before, -.ion-md-grid:before, -.ion-md-hammer:before, -.ion-md-hand:before, -.ion-md-happy:before, -.ion-md-headset:before, -.ion-md-heart:before, -.ion-md-heart-dislike:before, -.ion-md-heart-empty:before, -.ion-md-heart-half:before, -.ion-md-help:before, -.ion-md-help-buoy:before, -.ion-md-help-circle:before, -.ion-md-help-circle-outline:before, -.ion-md-home:before, -.ion-md-hourglass:before, -.ion-md-ice-cream:before, -.ion-md-image:before, -.ion-md-images:before, -.ion-md-infinite:before, -.ion-md-information:before, -.ion-md-information-circle:before, -.ion-md-information-circle-outline:before, -.ion-md-jet:before, -.ion-md-journal:before, -.ion-md-key:before, -.ion-md-keypad:before, -.ion-md-laptop:before, -.ion-md-leaf:before, -.ion-md-link:before, -.ion-md-list:before, -.ion-md-list-box:before, -.ion-md-locate:before, -.ion-md-lock:before, -.ion-md-log-in:before, -.ion-md-log-out:before, -.ion-md-magnet:before, -.ion-md-mail:before, -.ion-md-mail-open:before, -.ion-md-mail-unread:before, -.ion-md-male:before, -.ion-md-man:before, -.ion-md-map:before, -.ion-md-medal:before, -.ion-md-medical:before, -.ion-md-medkit:before, -.ion-md-megaphone:before, -.ion-md-menu:before, -.ion-md-mic:before, -.ion-md-mic-off:before, -.ion-md-microphone:before, -.ion-md-moon:before, -.ion-md-more:before, -.ion-md-move:before, -.ion-md-musical-note:before, -.ion-md-musical-notes:before, -.ion-md-navigate:before, -.ion-md-notifications:before, -.ion-md-notifications-off:before, -.ion-md-notifications-outline:before, -.ion-md-nuclear:before, -.ion-md-nutrition:before, -.ion-md-open:before, -.ion-md-options:before, -.ion-md-outlet:before, -.ion-md-paper:before, -.ion-md-paper-plane:before, -.ion-md-partly-sunny:before, -.ion-md-pause:before, -.ion-md-paw:before, -.ion-md-people:before, -.ion-md-person:before, -.ion-md-person-add:before, -.ion-md-phone-landscape:before, -.ion-md-phone-portrait:before, -.ion-md-photos:before, -.ion-md-pie:before, -.ion-md-pin:before, -.ion-md-pint:before, -.ion-md-pizza:before, -.ion-md-planet:before, -.ion-md-play:before, -.ion-md-play-circle:before, -.ion-md-podium:before, -.ion-md-power:before, -.ion-md-pricetag:before, -.ion-md-pricetags:before, -.ion-md-print:before, -.ion-md-pulse:before, -.ion-md-qr-scanner:before, -.ion-md-quote:before, -.ion-md-radio:before, -.ion-md-radio-button-off:before, -.ion-md-radio-button-on:before, -.ion-md-rainy:before, -.ion-md-recording:before, -.ion-md-redo:before, -.ion-md-refresh:before, -.ion-md-refresh-circle:before, -.ion-md-remove:before, -.ion-md-remove-circle:before, -.ion-md-remove-circle-outline:before, -.ion-md-reorder:before, -.ion-md-repeat:before, -.ion-md-resize:before, -.ion-md-restaurant:before, -.ion-md-return-left:before, -.ion-md-return-right:before, -.ion-md-reverse-camera:before, -.ion-md-rewind:before, -.ion-md-ribbon:before, -.ion-md-rocket:before, -.ion-md-rose:before, -.ion-md-sad:before, -.ion-md-save:before, -.ion-md-school:before, -.ion-md-search:before, -.ion-md-send:before, -.ion-md-settings:before, -.ion-md-share:before, -.ion-md-share-alt:before, -.ion-md-shirt:before, -.ion-md-shuffle:before, -.ion-md-skip-backward:before, -.ion-md-skip-forward:before, -.ion-md-snow:before, -.ion-md-speedometer:before, -.ion-md-square:before, -.ion-md-square-outline:before, -.ion-md-star:before, -.ion-md-star-half:before, -.ion-md-star-outline:before, -.ion-md-stats:before, -.ion-md-stopwatch:before, -.ion-md-subway:before, -.ion-md-sunny:before, -.ion-md-swap:before, -.ion-md-switch:before, -.ion-md-sync:before, -.ion-md-tablet-landscape:before, -.ion-md-tablet-portrait:before, -.ion-md-tennisball:before, -.ion-md-text:before, -.ion-md-thermometer:before, -.ion-md-thumbs-down:before, -.ion-md-thumbs-up:before, -.ion-md-thunderstorm:before, -.ion-md-time:before, -.ion-md-timer:before, -.ion-md-today:before, -.ion-md-train:before, -.ion-md-transgender:before, -.ion-md-trash:before, -.ion-md-trending-down:before, -.ion-md-trending-up:before, -.ion-md-trophy:before, -.ion-md-tv:before, -.ion-md-umbrella:before, -.ion-md-undo:before, -.ion-md-unlock:before, -.ion-md-videocam:before, -.ion-md-volume-high:before, -.ion-md-volume-low:before, -.ion-md-volume-mute:before, -.ion-md-volume-off:before, -.ion-md-walk:before, -.ion-md-wallet:before, -.ion-md-warning:before, -.ion-md-watch:before, -.ion-md-water:before, -.ion-md-wifi:before, -.ion-md-wine:before, -.ion-md-woman:before { - display: inline-block; - font-family: "Ionicons"; - speak: none; - font-style: normal; - font-weight: normal; - font-variant: normal; - text-transform: none; - text-rendering: auto; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.ion-ios-add:before { - content: ""; -} - -.ion-ios-add-circle:before { - content: ""; -} - -.ion-ios-add-circle-outline:before { - content: ""; -} - -.ion-ios-airplane:before { - content: ""; -} - -.ion-ios-alarm:before { - content: ""; -} - -.ion-ios-albums:before { - content: ""; -} - -.ion-ios-alert:before { - content: ""; -} - -.ion-ios-american-football:before { - content: ""; -} - -.ion-ios-analytics:before { - content: ""; -} - -.ion-ios-aperture:before { - content: ""; -} - -.ion-ios-apps:before { - content: ""; -} - -.ion-ios-appstore:before { - content: ""; -} - -.ion-ios-archive:before { - content: ""; -} - -.ion-ios-arrow-back:before { - content: ""; -} - -.ion-ios-arrow-down:before { - content: ""; -} - -.ion-ios-arrow-dropdown:before { - content: ""; -} - -.ion-ios-arrow-dropdown-circle:before { - content: ""; -} - -.ion-ios-arrow-dropleft:before { - content: ""; -} - -.ion-ios-arrow-dropleft-circle:before { - content: ""; -} - -.ion-ios-arrow-dropright:before { - content: ""; -} - -.ion-ios-arrow-dropright-circle:before { - content: ""; -} - -.ion-ios-arrow-dropup:before { - content: ""; -} - -.ion-ios-arrow-dropup-circle:before { - content: ""; -} - -.ion-ios-arrow-forward:before { - content: ""; -} - -.ion-ios-arrow-round-back:before { - content: ""; -} - -.ion-ios-arrow-round-down:before { - content: ""; -} - -.ion-ios-arrow-round-forward:before { - content: ""; -} - -.ion-ios-arrow-round-up:before { - content: ""; -} - -.ion-ios-arrow-up:before { - content: ""; -} - -.ion-ios-at:before { - content: ""; -} - -.ion-ios-attach:before { - content: ""; -} - -.ion-ios-backspace:before { - content: ""; -} - -.ion-ios-barcode:before { - content: ""; -} - -.ion-ios-baseball:before { - content: ""; -} - -.ion-ios-basket:before { - content: ""; -} - -.ion-ios-basketball:before { - content: ""; -} - -.ion-ios-battery-charging:before { - content: ""; -} - -.ion-ios-battery-dead:before { - content: ""; -} - -.ion-ios-battery-full:before { - content: ""; -} - -.ion-ios-beaker:before { - content: ""; -} - -.ion-ios-bed:before { - content: ""; -} - -.ion-ios-beer:before { - content: ""; -} - -.ion-ios-bicycle:before { - content: ""; -} - -.ion-ios-bluetooth:before { - content: ""; -} - -.ion-ios-boat:before { - content: ""; -} - -.ion-ios-body:before { - content: ""; -} - -.ion-ios-bonfire:before { - content: ""; -} - -.ion-ios-book:before { - content: ""; -} - -.ion-ios-bookmark:before { - content: ""; -} - -.ion-ios-bookmarks:before { - content: ""; -} - -.ion-ios-bowtie:before { - content: ""; -} - -.ion-ios-briefcase:before { - content: ""; -} - -.ion-ios-browsers:before { - content: ""; -} - -.ion-ios-brush:before { - content: ""; -} - -.ion-ios-bug:before { - content: ""; -} - -.ion-ios-build:before { - content: ""; -} - -.ion-ios-bulb:before { - content: ""; -} - -.ion-ios-bus:before { - content: ""; -} - -.ion-ios-business:before { - content: ""; -} - -.ion-ios-cafe:before { - content: ""; -} - -.ion-ios-calculator:before { - content: ""; -} - -.ion-ios-calendar:before { - content: ""; -} - -.ion-ios-call:before { - content: ""; -} - -.ion-ios-camera:before { - content: ""; -} - -.ion-ios-car:before { - content: ""; -} - -.ion-ios-card:before { - content: ""; -} - -.ion-ios-cart:before { - content: ""; -} - -.ion-ios-cash:before { - content: ""; -} - -.ion-ios-cellular:before { - content: ""; -} - -.ion-ios-chatboxes:before { - content: ""; -} - -.ion-ios-chatbubbles:before { - content: ""; -} - -.ion-ios-checkbox:before { - content: ""; -} - -.ion-ios-checkbox-outline:before { - content: ""; -} - -.ion-ios-checkmark:before { - content: ""; -} - -.ion-ios-checkmark-circle:before { - content: ""; -} - -.ion-ios-checkmark-circle-outline:before { - content: ""; -} - -.ion-ios-clipboard:before { - content: ""; -} - -.ion-ios-clock:before { - content: ""; -} - -.ion-ios-close:before { - content: ""; -} - -.ion-ios-close-circle:before { - content: ""; -} - -.ion-ios-close-circle-outline:before { - content: ""; -} - -.ion-ios-cloud:before { - content: ""; -} - -.ion-ios-cloud-circle:before { - content: ""; -} - -.ion-ios-cloud-done:before { - content: ""; -} - -.ion-ios-cloud-download:before { - content: ""; -} - -.ion-ios-cloud-outline:before { - content: ""; -} - -.ion-ios-cloud-upload:before { - content: ""; -} - -.ion-ios-cloudy:before { - content: ""; -} - -.ion-ios-cloudy-night:before { - content: ""; -} - -.ion-ios-code:before { - content: ""; -} - -.ion-ios-code-download:before { - content: ""; -} - -.ion-ios-code-working:before { - content: ""; -} - -.ion-ios-cog:before { - content: ""; -} - -.ion-ios-color-fill:before { - content: ""; -} - -.ion-ios-color-filter:before { - content: ""; -} - -.ion-ios-color-palette:before { - content: ""; -} - -.ion-ios-color-wand:before { - content: ""; -} - -.ion-ios-compass:before { - content: ""; -} - -.ion-ios-construct:before { - content: ""; -} - -.ion-ios-contact:before { - content: ""; -} - -.ion-ios-contacts:before { - content: ""; -} - -.ion-ios-contract:before { - content: ""; -} - -.ion-ios-contrast:before { - content: ""; -} - -.ion-ios-copy:before { - content: ""; -} - -.ion-ios-create:before { - content: ""; -} - -.ion-ios-crop:before { - content: ""; -} - -.ion-ios-cube:before { - content: ""; -} - -.ion-ios-cut:before { - content: ""; -} - -.ion-ios-desktop:before { - content: ""; -} - -.ion-ios-disc:before { - content: ""; -} - -.ion-ios-document:before { - content: ""; -} - -.ion-ios-done-all:before { - content: ""; -} - -.ion-ios-download:before { - content: ""; -} - -.ion-ios-easel:before { - content: ""; -} - -.ion-ios-egg:before { - content: ""; -} - -.ion-ios-exit:before { - content: ""; -} - -.ion-ios-expand:before { - content: ""; -} - -.ion-ios-eye:before { - content: ""; -} - -.ion-ios-eye-off:before { - content: ""; -} - -.ion-ios-fastforward:before { - content: ""; -} - -.ion-ios-female:before { - content: ""; -} - -.ion-ios-filing:before { - content: ""; -} - -.ion-ios-film:before { - content: ""; -} - -.ion-ios-finger-print:before { - content: ""; -} - -.ion-ios-fitness:before { - content: ""; -} - -.ion-ios-flag:before { - content: ""; -} - -.ion-ios-flame:before { - content: ""; -} - -.ion-ios-flash:before { - content: ""; -} - -.ion-ios-flash-off:before { - content: ""; -} - -.ion-ios-flashlight:before { - content: ""; -} - -.ion-ios-flask:before { - content: ""; -} - -.ion-ios-flower:before { - content: ""; -} - -.ion-ios-folder:before { - content: ""; -} - -.ion-ios-folder-open:before { - content: ""; -} - -.ion-ios-football:before { - content: ""; -} - -.ion-ios-funnel:before { - content: ""; -} - -.ion-ios-gift:before { - content: ""; -} - -.ion-ios-git-branch:before { - content: ""; -} - -.ion-ios-git-commit:before { - content: ""; -} - -.ion-ios-git-compare:before { - content: ""; -} - -.ion-ios-git-merge:before { - content: ""; -} - -.ion-ios-git-network:before { - content: ""; -} - -.ion-ios-git-pull-request:before { - content: ""; -} - -.ion-ios-glasses:before { - content: ""; -} - -.ion-ios-globe:before { - content: ""; -} - -.ion-ios-grid:before { - content: ""; -} - -.ion-ios-hammer:before { - content: ""; -} - -.ion-ios-hand:before { - content: ""; -} - -.ion-ios-happy:before { - content: ""; -} - -.ion-ios-headset:before { - content: ""; -} - -.ion-ios-heart:before { - content: ""; -} - -.ion-ios-heart-dislike:before { - content: ""; -} - -.ion-ios-heart-empty:before { - content: ""; -} - -.ion-ios-heart-half:before { - content: ""; -} - -.ion-ios-help:before { - content: ""; -} - -.ion-ios-help-buoy:before { - content: ""; -} - -.ion-ios-help-circle:before { - content: ""; -} - -.ion-ios-help-circle-outline:before { - content: ""; -} - -.ion-ios-home:before { - content: ""; -} - -.ion-ios-hourglass:before { - content: ""; -} - -.ion-ios-ice-cream:before { - content: ""; -} - -.ion-ios-image:before { - content: ""; -} - -.ion-ios-images:before { - content: ""; -} - -.ion-ios-infinite:before { - content: ""; -} - -.ion-ios-information:before { - content: ""; -} - -.ion-ios-information-circle:before { - content: ""; -} - -.ion-ios-information-circle-outline:before { - content: ""; -} - -.ion-ios-jet:before { - content: ""; -} - -.ion-ios-journal:before { - content: ""; -} - -.ion-ios-key:before { - content: ""; -} - -.ion-ios-keypad:before { - content: ""; -} - -.ion-ios-laptop:before { - content: ""; -} - -.ion-ios-leaf:before { - content: ""; -} - -.ion-ios-link:before { - content: ""; -} - -.ion-ios-list:before { - content: ""; -} - -.ion-ios-list-box:before { - content: ""; -} - -.ion-ios-locate:before { - content: ""; -} - -.ion-ios-lock:before { - content: ""; -} - -.ion-ios-log-in:before { - content: ""; -} - -.ion-ios-log-out:before { - content: ""; -} - -.ion-ios-magnet:before { - content: ""; -} - -.ion-ios-mail:before { - content: ""; -} - -.ion-ios-mail-open:before { - content: ""; -} - -.ion-ios-mail-unread:before { - content: ""; -} - -.ion-ios-male:before { - content: ""; -} - -.ion-ios-man:before { - content: ""; -} - -.ion-ios-map:before { - content: ""; -} - -.ion-ios-medal:before { - content: ""; -} - -.ion-ios-medical:before { - content: ""; -} - -.ion-ios-medkit:before { - content: ""; -} - -.ion-ios-megaphone:before { - content: ""; -} - -.ion-ios-menu:before { - content: ""; -} - -.ion-ios-mic:before { - content: ""; -} - -.ion-ios-mic-off:before { - content: ""; -} - -.ion-ios-microphone:before { - content: ""; -} - -.ion-ios-moon:before { - content: ""; -} - -.ion-ios-more:before { - content: ""; -} - -.ion-ios-move:before { - content: ""; -} - -.ion-ios-musical-note:before { - content: ""; -} - -.ion-ios-musical-notes:before { - content: ""; -} - -.ion-ios-navigate:before { - content: ""; -} - -.ion-ios-notifications:before { - content: ""; -} - -.ion-ios-notifications-off:before { - content: ""; -} - -.ion-ios-notifications-outline:before { - content: ""; -} - -.ion-ios-nuclear:before { - content: ""; -} - -.ion-ios-nutrition:before { - content: ""; -} - -.ion-ios-open:before { - content: ""; -} - -.ion-ios-options:before { - content: ""; -} - -.ion-ios-outlet:before { - content: ""; -} - -.ion-ios-paper:before { - content: ""; -} - -.ion-ios-paper-plane:before { - content: ""; -} - -.ion-ios-partly-sunny:before { - content: ""; -} - -.ion-ios-pause:before { - content: ""; -} - -.ion-ios-paw:before { - content: ""; -} - -.ion-ios-people:before { - content: ""; -} - -.ion-ios-person:before { - content: ""; -} - -.ion-ios-person-add:before { - content: ""; -} - -.ion-ios-phone-landscape:before { - content: ""; -} - -.ion-ios-phone-portrait:before { - content: ""; -} - -.ion-ios-photos:before { - content: ""; -} - -.ion-ios-pie:before { - content: ""; -} - -.ion-ios-pin:before { - content: ""; -} - -.ion-ios-pint:before { - content: ""; -} - -.ion-ios-pizza:before { - content: ""; -} - -.ion-ios-planet:before { - content: ""; -} - -.ion-ios-play:before { - content: ""; -} - -.ion-ios-play-circle:before { - content: ""; -} - -.ion-ios-podium:before { - content: ""; -} - -.ion-ios-power:before { - content: ""; -} - -.ion-ios-pricetag:before { - content: ""; -} - -.ion-ios-pricetags:before { - content: ""; -} - -.ion-ios-print:before { - content: ""; -} - -.ion-ios-pulse:before { - content: ""; -} - -.ion-ios-qr-scanner:before { - content: ""; -} - -.ion-ios-quote:before { - content: ""; -} - -.ion-ios-radio:before { - content: ""; -} - -.ion-ios-radio-button-off:before { - content: ""; -} - -.ion-ios-radio-button-on:before { - content: ""; -} - -.ion-ios-rainy:before { - content: ""; -} - -.ion-ios-recording:before { - content: ""; -} - -.ion-ios-redo:before { - content: ""; -} - -.ion-ios-refresh:before { - content: ""; -} - -.ion-ios-refresh-circle:before { - content: ""; -} - -.ion-ios-remove:before { - content: ""; -} - -.ion-ios-remove-circle:before { - content: ""; -} - -.ion-ios-remove-circle-outline:before { - content: ""; -} - -.ion-ios-reorder:before { - content: ""; -} - -.ion-ios-repeat:before { - content: ""; -} - -.ion-ios-resize:before { - content: ""; -} - -.ion-ios-restaurant:before { - content: ""; -} - -.ion-ios-return-left:before { - content: ""; -} - -.ion-ios-return-right:before { - content: ""; -} - -.ion-ios-reverse-camera:before { - content: ""; -} - -.ion-ios-rewind:before { - content: ""; -} - -.ion-ios-ribbon:before { - content: ""; -} - -.ion-ios-rocket:before { - content: ""; -} - -.ion-ios-rose:before { - content: ""; -} - -.ion-ios-sad:before { - content: ""; -} - -.ion-ios-save:before { - content: ""; -} - -.ion-ios-school:before { - content: ""; -} - -.ion-ios-search:before { - content: ""; -} - -.ion-ios-send:before { - content: ""; -} - -.ion-ios-settings:before { - content: ""; -} - -.ion-ios-share:before { - content: ""; -} - -.ion-ios-share-alt:before { - content: ""; -} - -.ion-ios-shirt:before { - content: ""; -} - -.ion-ios-shuffle:before { - content: ""; -} - -.ion-ios-skip-backward:before { - content: ""; -} - -.ion-ios-skip-forward:before { - content: ""; -} - -.ion-ios-snow:before { - content: ""; -} - -.ion-ios-speedometer:before { - content: ""; -} - -.ion-ios-square:before { - content: ""; -} - -.ion-ios-square-outline:before { - content: ""; -} - -.ion-ios-star:before { - content: ""; -} - -.ion-ios-star-half:before { - content: ""; -} - -.ion-ios-star-outline:before { - content: ""; -} - -.ion-ios-stats:before { - content: ""; -} - -.ion-ios-stopwatch:before { - content: ""; -} - -.ion-ios-subway:before { - content: ""; -} - -.ion-ios-sunny:before { - content: ""; -} - -.ion-ios-swap:before { - content: ""; -} - -.ion-ios-switch:before { - content: ""; -} - -.ion-ios-sync:before { - content: ""; -} - -.ion-ios-tablet-landscape:before { - content: ""; -} - -.ion-ios-tablet-portrait:before { - content: ""; -} - -.ion-ios-tennisball:before { - content: ""; -} - -.ion-ios-text:before { - content: ""; -} - -.ion-ios-thermometer:before { - content: ""; -} - -.ion-ios-thumbs-down:before { - content: ""; -} - -.ion-ios-thumbs-up:before { - content: ""; -} - -.ion-ios-thunderstorm:before { - content: ""; -} - -.ion-ios-time:before { - content: ""; -} - -.ion-ios-timer:before { - content: ""; -} - -.ion-ios-today:before { - content: ""; -} - -.ion-ios-train:before { - content: ""; -} - -.ion-ios-transgender:before { - content: ""; -} - -.ion-ios-trash:before { - content: ""; -} - -.ion-ios-trending-down:before { - content: ""; -} - -.ion-ios-trending-up:before { - content: ""; -} - -.ion-ios-trophy:before { - content: ""; -} - -.ion-ios-tv:before { - content: ""; -} - -.ion-ios-umbrella:before { - content: ""; -} - -.ion-ios-undo:before { - content: ""; -} - -.ion-ios-unlock:before { - content: ""; -} - -.ion-ios-videocam:before { - content: ""; -} - -.ion-ios-volume-high:before { - content: ""; -} - -.ion-ios-volume-low:before { - content: ""; -} - -.ion-ios-volume-mute:before { - content: ""; -} - -.ion-ios-volume-off:before { - content: ""; -} - -.ion-ios-walk:before { - content: ""; -} - -.ion-ios-wallet:before { - content: ""; -} - -.ion-ios-warning:before { - content: ""; -} - -.ion-ios-watch:before { - content: ""; -} - -.ion-ios-water:before { - content: ""; -} - -.ion-ios-wifi:before { - content: ""; -} - -.ion-ios-wine:before { - content: ""; -} - -.ion-ios-woman:before { - content: ""; -} - -.ion-logo-android:before { - content: ""; -} - -.ion-logo-angular:before { - content: ""; -} - -.ion-logo-apple:before { - content: ""; -} - -.ion-logo-bitbucket:before { - content: ""; -} - -.ion-logo-bitcoin:before { - content: ""; -} - -.ion-logo-buffer:before { - content: ""; -} - -.ion-logo-chrome:before { - content: ""; -} - -.ion-logo-closed-captioning:before { - content: ""; -} - -.ion-logo-codepen:before { - content: ""; -} - -.ion-logo-css3:before { - content: ""; -} - -.ion-logo-designernews:before { - content: ""; -} - -.ion-logo-dribbble:before { - content: ""; -} - -.ion-logo-dropbox:before { - content: ""; -} - -.ion-logo-euro:before { - content: ""; -} - -.ion-logo-facebook:before { - content: ""; -} - -.ion-logo-flickr:before { - content: ""; -} - -.ion-logo-foursquare:before { - content: ""; -} - -.ion-logo-freebsd-devil:before { - content: ""; -} - -.ion-logo-game-controller-a:before { - content: ""; -} - -.ion-logo-game-controller-b:before { - content: ""; -} - -.ion-logo-github:before { - content: ""; -} - -.ion-logo-google:before { - content: ""; -} - -.ion-logo-googleplus:before { - content: ""; -} - -.ion-logo-hackernews:before { - content: ""; -} - -.ion-logo-html5:before { - content: ""; -} - -.ion-logo-instagram:before { - content: ""; -} - -.ion-logo-ionic:before { - content: ""; -} - -.ion-logo-ionitron:before { - content: ""; -} - -.ion-logo-javascript:before { - content: ""; -} - -.ion-logo-linkedin:before { - content: ""; -} - -.ion-logo-markdown:before { - content: ""; -} - -.ion-logo-model-s:before { - content: ""; -} - -.ion-logo-no-smoking:before { - content: ""; -} - -.ion-logo-nodejs:before { - content: ""; -} - -.ion-logo-npm:before { - content: ""; -} - -.ion-logo-octocat:before { - content: ""; -} - -.ion-logo-pinterest:before { - content: ""; -} - -.ion-logo-playstation:before { - content: ""; -} - -.ion-logo-polymer:before { - content: ""; -} - -.ion-logo-python:before { - content: ""; -} - -.ion-logo-reddit:before { - content: ""; -} - -.ion-logo-rss:before { - content: ""; -} - -.ion-logo-sass:before { - content: ""; -} - -.ion-logo-skype:before { - content: ""; -} - -.ion-logo-slack:before { - content: ""; -} - -.ion-logo-snapchat:before { - content: ""; -} - -.ion-logo-steam:before { - content: ""; -} - -.ion-logo-tumblr:before { - content: ""; -} - -.ion-logo-tux:before { - content: ""; -} - -.ion-logo-twitch:before { - content: ""; -} - -.ion-logo-twitter:before { - content: ""; -} - -.ion-logo-usd:before { - content: ""; -} - -.ion-logo-vimeo:before { - content: ""; -} - -.ion-logo-vk:before { - content: ""; -} - -.ion-logo-whatsapp:before { - content: ""; -} - -.ion-logo-windows:before { - content: ""; -} - -.ion-logo-wordpress:before { - content: ""; -} - -.ion-logo-xbox:before { - content: ""; -} - -.ion-logo-xing:before { - content: ""; -} - -.ion-logo-yahoo:before { - content: ""; -} - -.ion-logo-yen:before { - content: ""; -} - -.ion-logo-youtube:before { - content: ""; -} - -.ion-md-add:before { - content: ""; -} - -.ion-md-add-circle:before { - content: ""; -} - -.ion-md-add-circle-outline:before { - content: ""; -} - -.ion-md-airplane:before { - content: ""; -} - -.ion-md-alarm:before { - content: ""; -} - -.ion-md-albums:before { - content: ""; -} - -.ion-md-alert:before { - content: ""; -} - -.ion-md-american-football:before { - content: ""; -} - -.ion-md-analytics:before { - content: ""; -} - -.ion-md-aperture:before { - content: ""; -} - -.ion-md-apps:before { - content: ""; -} - -.ion-md-appstore:before { - content: ""; -} - -.ion-md-archive:before { - content: ""; -} - -.ion-md-arrow-back:before { - content: ""; -} - -.ion-md-arrow-down:before { - content: ""; -} - -.ion-md-arrow-dropdown:before { - content: ""; -} - -.ion-md-arrow-dropdown-circle:before { - content: ""; -} - -.ion-md-arrow-dropleft:before { - content: ""; -} - -.ion-md-arrow-dropleft-circle:before { - content: ""; -} - -.ion-md-arrow-dropright:before { - content: ""; -} - -.ion-md-arrow-dropright-circle:before { - content: ""; -} - -.ion-md-arrow-dropup:before { - content: ""; -} - -.ion-md-arrow-dropup-circle:before { - content: ""; -} - -.ion-md-arrow-forward:before { - content: ""; -} - -.ion-md-arrow-round-back:before { - content: ""; -} - -.ion-md-arrow-round-down:before { - content: ""; -} - -.ion-md-arrow-round-forward:before { - content: ""; -} - -.ion-md-arrow-round-up:before { - content: ""; -} - -.ion-md-arrow-up:before { - content: ""; -} - -.ion-md-at:before { - content: ""; -} - -.ion-md-attach:before { - content: ""; -} - -.ion-md-backspace:before { - content: ""; -} - -.ion-md-barcode:before { - content: ""; -} - -.ion-md-baseball:before { - content: ""; -} - -.ion-md-basket:before { - content: ""; -} - -.ion-md-basketball:before { - content: ""; -} - -.ion-md-battery-charging:before { - content: ""; -} - -.ion-md-battery-dead:before { - content: ""; -} - -.ion-md-battery-full:before { - content: ""; -} - -.ion-md-beaker:before { - content: ""; -} - -.ion-md-bed:before { - content: ""; -} - -.ion-md-beer:before { - content: ""; -} - -.ion-md-bicycle:before { - content: ""; -} - -.ion-md-bluetooth:before { - content: ""; -} - -.ion-md-boat:before { - content: ""; -} - -.ion-md-body:before { - content: ""; -} - -.ion-md-bonfire:before { - content: ""; -} - -.ion-md-book:before { - content: ""; -} - -.ion-md-bookmark:before { - content: ""; -} - -.ion-md-bookmarks:before { - content: ""; -} - -.ion-md-bowtie:before { - content: ""; -} - -.ion-md-briefcase:before { - content: ""; -} - -.ion-md-browsers:before { - content: ""; -} - -.ion-md-brush:before { - content: ""; -} - -.ion-md-bug:before { - content: ""; -} - -.ion-md-build:before { - content: ""; -} - -.ion-md-bulb:before { - content: ""; -} - -.ion-md-bus:before { - content: ""; -} - -.ion-md-business:before { - content: ""; -} - -.ion-md-cafe:before { - content: ""; -} - -.ion-md-calculator:before { - content: ""; -} - -.ion-md-calendar:before { - content: ""; -} - -.ion-md-call:before { - content: ""; -} - -.ion-md-camera:before { - content: ""; -} - -.ion-md-car:before { - content: ""; -} - -.ion-md-card:before { - content: ""; -} - -.ion-md-cart:before { - content: ""; -} - -.ion-md-cash:before { - content: ""; -} - -.ion-md-cellular:before { - content: ""; -} - -.ion-md-chatboxes:before { - content: ""; -} - -.ion-md-chatbubbles:before { - content: ""; -} - -.ion-md-checkbox:before { - content: ""; -} - -.ion-md-checkbox-outline:before { - content: ""; -} - -.ion-md-checkmark:before { - content: ""; -} - -.ion-md-checkmark-circle:before { - content: ""; -} - -.ion-md-checkmark-circle-outline:before { - content: ""; -} - -.ion-md-clipboard:before { - content: ""; -} - -.ion-md-clock:before { - content: ""; -} - -.ion-md-close:before { - content: ""; -} - -.ion-md-close-circle:before { - content: ""; -} - -.ion-md-close-circle-outline:before { - content: ""; -} - -.ion-md-cloud:before { - content: ""; -} - -.ion-md-cloud-circle:before { - content: ""; -} - -.ion-md-cloud-done:before { - content: ""; -} - -.ion-md-cloud-download:before { - content: ""; -} - -.ion-md-cloud-outline:before { - content: ""; -} - -.ion-md-cloud-upload:before { - content: ""; -} - -.ion-md-cloudy:before { - content: ""; -} - -.ion-md-cloudy-night:before { - content: ""; -} - -.ion-md-code:before { - content: ""; -} - -.ion-md-code-download:before { - content: ""; -} - -.ion-md-code-working:before { - content: ""; -} - -.ion-md-cog:before { - content: ""; -} - -.ion-md-color-fill:before { - content: ""; -} - -.ion-md-color-filter:before { - content: ""; -} - -.ion-md-color-palette:before { - content: ""; -} - -.ion-md-color-wand:before { - content: ""; -} - -.ion-md-compass:before { - content: ""; -} - -.ion-md-construct:before { - content: ""; -} - -.ion-md-contact:before { - content: ""; -} - -.ion-md-contacts:before { - content: ""; -} - -.ion-md-contract:before { - content: ""; -} - -.ion-md-contrast:before { - content: ""; -} - -.ion-md-copy:before { - content: ""; -} - -.ion-md-create:before { - content: ""; -} - -.ion-md-crop:before { - content: ""; -} - -.ion-md-cube:before { - content: ""; -} - -.ion-md-cut:before { - content: ""; -} - -.ion-md-desktop:before { - content: ""; -} - -.ion-md-disc:before { - content: ""; -} - -.ion-md-document:before { - content: ""; -} - -.ion-md-done-all:before { - content: ""; -} - -.ion-md-download:before { - content: ""; -} - -.ion-md-easel:before { - content: ""; -} - -.ion-md-egg:before { - content: ""; -} - -.ion-md-exit:before { - content: ""; -} - -.ion-md-expand:before { - content: ""; -} - -.ion-md-eye:before { - content: ""; -} - -.ion-md-eye-off:before { - content: ""; -} - -.ion-md-fastforward:before { - content: ""; -} - -.ion-md-female:before { - content: ""; -} - -.ion-md-filing:before { - content: ""; -} - -.ion-md-film:before { - content: ""; -} - -.ion-md-finger-print:before { - content: ""; -} - -.ion-md-fitness:before { - content: ""; -} - -.ion-md-flag:before { - content: ""; -} - -.ion-md-flame:before { - content: ""; -} - -.ion-md-flash:before { - content: ""; -} - -.ion-md-flash-off:before { - content: ""; -} - -.ion-md-flashlight:before { - content: ""; -} - -.ion-md-flask:before { - content: ""; -} - -.ion-md-flower:before { - content: ""; -} - -.ion-md-folder:before { - content: ""; -} - -.ion-md-folder-open:before { - content: ""; -} - -.ion-md-football:before { - content: ""; -} - -.ion-md-funnel:before { - content: ""; -} - -.ion-md-gift:before { - content: ""; -} - -.ion-md-git-branch:before { - content: ""; -} - -.ion-md-git-commit:before { - content: ""; -} - -.ion-md-git-compare:before { - content: ""; -} - -.ion-md-git-merge:before { - content: ""; -} - -.ion-md-git-network:before { - content: ""; -} - -.ion-md-git-pull-request:before { - content: ""; -} - -.ion-md-glasses:before { - content: ""; -} - -.ion-md-globe:before { - content: ""; -} - -.ion-md-grid:before { - content: ""; -} - -.ion-md-hammer:before { - content: ""; -} - -.ion-md-hand:before { - content: ""; -} - -.ion-md-happy:before { - content: ""; -} - -.ion-md-headset:before { - content: ""; -} - -.ion-md-heart:before { - content: ""; -} - -.ion-md-heart-dislike:before { - content: ""; -} - -.ion-md-heart-empty:before { - content: ""; -} - -.ion-md-heart-half:before { - content: ""; -} - -.ion-md-help:before { - content: ""; -} - -.ion-md-help-buoy:before { - content: ""; -} - -.ion-md-help-circle:before { - content: ""; -} - -.ion-md-help-circle-outline:before { - content: ""; -} - -.ion-md-home:before { - content: ""; -} - -.ion-md-hourglass:before { - content: ""; -} - -.ion-md-ice-cream:before { - content: ""; -} - -.ion-md-image:before { - content: ""; -} - -.ion-md-images:before { - content: ""; -} - -.ion-md-infinite:before { - content: ""; -} - -.ion-md-information:before { - content: ""; -} - -.ion-md-information-circle:before { - content: ""; -} - -.ion-md-information-circle-outline:before { - content: ""; -} - -.ion-md-jet:before { - content: ""; -} - -.ion-md-journal:before { - content: ""; -} - -.ion-md-key:before { - content: ""; -} - -.ion-md-keypad:before { - content: ""; -} - -.ion-md-laptop:before { - content: ""; -} - -.ion-md-leaf:before { - content: ""; -} - -.ion-md-link:before { - content: ""; -} - -.ion-md-list:before { - content: ""; -} - -.ion-md-list-box:before { - content: ""; -} - -.ion-md-locate:before { - content: ""; -} - -.ion-md-lock:before { - content: ""; -} - -.ion-md-log-in:before { - content: ""; -} - -.ion-md-log-out:before { - content: ""; -} - -.ion-md-magnet:before { - content: ""; -} - -.ion-md-mail:before { - content: ""; -} - -.ion-md-mail-open:before { - content: ""; -} - -.ion-md-mail-unread:before { - content: ""; -} - -.ion-md-male:before { - content: ""; -} - -.ion-md-man:before { - content: ""; -} - -.ion-md-map:before { - content: ""; -} - -.ion-md-medal:before { - content: ""; -} - -.ion-md-medical:before { - content: ""; -} - -.ion-md-medkit:before { - content: ""; -} - -.ion-md-megaphone:before { - content: ""; -} - -.ion-md-menu:before { - content: ""; -} - -.ion-md-mic:before { - content: ""; -} - -.ion-md-mic-off:before { - content: ""; -} - -.ion-md-microphone:before { - content: ""; -} - -.ion-md-moon:before { - content: ""; -} - -.ion-md-more:before { - content: ""; -} - -.ion-md-move:before { - content: ""; -} - -.ion-md-musical-note:before { - content: ""; -} - -.ion-md-musical-notes:before { - content: ""; -} - -.ion-md-navigate:before { - content: ""; -} - -.ion-md-notifications:before { - content: ""; -} - -.ion-md-notifications-off:before { - content: ""; -} - -.ion-md-notifications-outline:before { - content: ""; -} - -.ion-md-nuclear:before { - content: ""; -} - -.ion-md-nutrition:before { - content: ""; -} - -.ion-md-open:before { - content: ""; -} - -.ion-md-options:before { - content: ""; -} - -.ion-md-outlet:before { - content: ""; -} - -.ion-md-paper:before { - content: ""; -} - -.ion-md-paper-plane:before { - content: ""; -} - -.ion-md-partly-sunny:before { - content: ""; -} - -.ion-md-pause:before { - content: ""; -} - -.ion-md-paw:before { - content: ""; -} - -.ion-md-people:before { - content: ""; -} - -.ion-md-person:before { - content: ""; -} - -.ion-md-person-add:before { - content: ""; -} - -.ion-md-phone-landscape:before { - content: ""; -} - -.ion-md-phone-portrait:before { - content: ""; -} - -.ion-md-photos:before { - content: ""; -} - -.ion-md-pie:before { - content: ""; -} - -.ion-md-pin:before { - content: ""; -} - -.ion-md-pint:before { - content: ""; -} - -.ion-md-pizza:before { - content: ""; -} - -.ion-md-planet:before { - content: ""; -} - -.ion-md-play:before { - content: ""; -} - -.ion-md-play-circle:before { - content: ""; -} - -.ion-md-podium:before { - content: ""; -} - -.ion-md-power:before { - content: ""; -} - -.ion-md-pricetag:before { - content: ""; -} - -.ion-md-pricetags:before { - content: ""; -} - -.ion-md-print:before { - content: ""; -} - -.ion-md-pulse:before { - content: ""; -} - -.ion-md-qr-scanner:before { - content: ""; -} - -.ion-md-quote:before { - content: ""; -} - -.ion-md-radio:before { - content: ""; -} - -.ion-md-radio-button-off:before { - content: ""; -} - -.ion-md-radio-button-on:before { - content: ""; -} - -.ion-md-rainy:before { - content: ""; -} - -.ion-md-recording:before { - content: ""; -} - -.ion-md-redo:before { - content: ""; -} - -.ion-md-refresh:before { - content: ""; -} - -.ion-md-refresh-circle:before { - content: ""; -} - -.ion-md-remove:before { - content: ""; -} - -.ion-md-remove-circle:before { - content: ""; -} - -.ion-md-remove-circle-outline:before { - content: ""; -} - -.ion-md-reorder:before { - content: ""; -} - -.ion-md-repeat:before { - content: ""; -} - -.ion-md-resize:before { - content: ""; -} - -.ion-md-restaurant:before { - content: ""; -} - -.ion-md-return-left:before { - content: ""; -} - -.ion-md-return-right:before { - content: ""; -} - -.ion-md-reverse-camera:before { - content: ""; -} - -.ion-md-rewind:before { - content: ""; -} - -.ion-md-ribbon:before { - content: ""; -} - -.ion-md-rocket:before { - content: ""; -} - -.ion-md-rose:before { - content: ""; -} - -.ion-md-sad:before { - content: ""; -} - -.ion-md-save:before { - content: ""; -} - -.ion-md-school:before { - content: ""; -} - -.ion-md-search:before { - content: ""; -} - -.ion-md-send:before { - content: ""; -} - -.ion-md-settings:before { - content: ""; -} - -.ion-md-share:before { - content: ""; -} - -.ion-md-share-alt:before { - content: ""; -} - -.ion-md-shirt:before { - content: ""; -} - -.ion-md-shuffle:before { - content: ""; -} - -.ion-md-skip-backward:before { - content: ""; -} - -.ion-md-skip-forward:before { - content: ""; -} - -.ion-md-snow:before { - content: ""; -} - -.ion-md-speedometer:before { - content: ""; -} - -.ion-md-square:before { - content: ""; -} - -.ion-md-square-outline:before { - content: ""; -} - -.ion-md-star:before { - content: ""; -} - -.ion-md-star-half:before { - content: ""; -} - -.ion-md-star-outline:before { - content: ""; -} - -.ion-md-stats:before { - content: ""; -} - -.ion-md-stopwatch:before { - content: ""; -} - -.ion-md-subway:before { - content: ""; -} - -.ion-md-sunny:before { - content: ""; -} - -.ion-md-swap:before { - content: ""; -} - -.ion-md-switch:before { - content: ""; -} - -.ion-md-sync:before { - content: ""; -} - -.ion-md-tablet-landscape:before { - content: ""; -} - -.ion-md-tablet-portrait:before { - content: ""; -} - -.ion-md-tennisball:before { - content: ""; -} - -.ion-md-text:before { - content: ""; -} - -.ion-md-thermometer:before { - content: ""; -} - -.ion-md-thumbs-down:before { - content: ""; -} - -.ion-md-thumbs-up:before { - content: ""; -} - -.ion-md-thunderstorm:before { - content: ""; -} - -.ion-md-time:before { - content: ""; -} - -.ion-md-timer:before { - content: ""; -} - -.ion-md-today:before { - content: ""; -} - -.ion-md-train:before { - content: ""; -} - -.ion-md-transgender:before { - content: ""; -} - -.ion-md-trash:before { - content: ""; -} - -.ion-md-trending-down:before { - content: ""; -} - -.ion-md-trending-up:before { - content: ""; -} - -.ion-md-trophy:before { - content: ""; -} - -.ion-md-tv:before { - content: ""; -} - -.ion-md-umbrella:before { - content: ""; -} - -.ion-md-undo:before { - content: ""; -} - -.ion-md-unlock:before { - content: ""; -} - -.ion-md-videocam:before { - content: ""; -} - -.ion-md-volume-high:before { - content: ""; -} - -.ion-md-volume-low:before { - content: ""; -} - -.ion-md-volume-mute:before { - content: ""; -} - -.ion-md-volume-off:before { - content: ""; -} - -.ion-md-walk:before { - content: ""; -} - -.ion-md-wallet:before { - content: ""; -} - -.ion-md-warning:before { - content: ""; -} - -.ion-md-watch:before { - content: ""; -} - -.ion-md-water:before { - content: ""; -} - -.ion-md-wifi:before { - content: ""; -} - -.ion-md-wine:before { - content: ""; -} - -.ion-md-woman:before { - content: ""; -} \ No newline at end of file diff --git a/wwwroot/vendor/ionicons.min.css b/wwwroot/vendor/ionicons.min.css index d8b9943..f65d5dd 100644 --- a/wwwroot/vendor/ionicons.min.css +++ b/wwwroot/vendor/ionicons.min.css @@ -1,11 +1 @@ -/*! - Ionicons, v4.6.4-1 - Created by Ben Sperry for the Ionic Framework, http://ionicons.com/ - https://twitter.com/benjsperry https://twitter.com/ionicframework - MIT License: https://github.com/driftyco/ionicons - - Android-style icons originally built by Google’s - Material Design Icons: https://github.com/google/material-design-icons - used under CC BY http://creativecommons.org/licenses/by/4.0/ - Modified icons to fit ionicon’s grid from original. -*/@font-face{font-family:"Ionicons";src:url("../fonts/ionicons.eot?v=4.6.4-1");src:url("../fonts/ionicons.eot?v=4.6.4-1#iefix") format("embedded-opentype"),url("../fonts/ionicons.woff2?v=4.6.4-1") format("woff2"),url("../fonts/ionicons.woff?v=4.6.4-1") format("woff"),url("../fonts/ionicons.ttf?v=4.6.4-1") format("truetype"),url("../fonts/ionicons.svg?v=4.6.4-1#Ionicons") format("svg");font-weight:normal;font-style:normal}.ion,.ionicons,.ion-ios-add:before,.ion-ios-add-circle:before,.ion-ios-add-circle-outline:before,.ion-ios-airplane:before,.ion-ios-alarm:before,.ion-ios-albums:before,.ion-ios-alert:before,.ion-ios-american-football:before,.ion-ios-analytics:before,.ion-ios-aperture:before,.ion-ios-apps:before,.ion-ios-appstore:before,.ion-ios-archive:before,.ion-ios-arrow-back:before,.ion-ios-arrow-down:before,.ion-ios-arrow-dropdown:before,.ion-ios-arrow-dropdown-circle:before,.ion-ios-arrow-dropleft:before,.ion-ios-arrow-dropleft-circle:before,.ion-ios-arrow-dropright:before,.ion-ios-arrow-dropright-circle:before,.ion-ios-arrow-dropup:before,.ion-ios-arrow-dropup-circle:before,.ion-ios-arrow-forward:before,.ion-ios-arrow-round-back:before,.ion-ios-arrow-round-down:before,.ion-ios-arrow-round-forward:before,.ion-ios-arrow-round-up:before,.ion-ios-arrow-up:before,.ion-ios-at:before,.ion-ios-attach:before,.ion-ios-backspace:before,.ion-ios-barcode:before,.ion-ios-baseball:before,.ion-ios-basket:before,.ion-ios-basketball:before,.ion-ios-battery-charging:before,.ion-ios-battery-dead:before,.ion-ios-battery-full:before,.ion-ios-beaker:before,.ion-ios-bed:before,.ion-ios-beer:before,.ion-ios-bicycle:before,.ion-ios-bluetooth:before,.ion-ios-boat:before,.ion-ios-body:before,.ion-ios-bonfire:before,.ion-ios-book:before,.ion-ios-bookmark:before,.ion-ios-bookmarks:before,.ion-ios-bowtie:before,.ion-ios-briefcase:before,.ion-ios-browsers:before,.ion-ios-brush:before,.ion-ios-bug:before,.ion-ios-build:before,.ion-ios-bulb:before,.ion-ios-bus:before,.ion-ios-business:before,.ion-ios-cafe:before,.ion-ios-calculator:before,.ion-ios-calendar:before,.ion-ios-call:before,.ion-ios-camera:before,.ion-ios-car:before,.ion-ios-card:before,.ion-ios-cart:before,.ion-ios-cash:before,.ion-ios-cellular:before,.ion-ios-chatboxes:before,.ion-ios-chatbubbles:before,.ion-ios-checkbox:before,.ion-ios-checkbox-outline:before,.ion-ios-checkmark:before,.ion-ios-checkmark-circle:before,.ion-ios-checkmark-circle-outline:before,.ion-ios-clipboard:before,.ion-ios-clock:before,.ion-ios-close:before,.ion-ios-close-circle:before,.ion-ios-close-circle-outline:before,.ion-ios-cloud:before,.ion-ios-cloud-circle:before,.ion-ios-cloud-done:before,.ion-ios-cloud-download:before,.ion-ios-cloud-outline:before,.ion-ios-cloud-upload:before,.ion-ios-cloudy:before,.ion-ios-cloudy-night:before,.ion-ios-code:before,.ion-ios-code-download:before,.ion-ios-code-working:before,.ion-ios-cog:before,.ion-ios-color-fill:before,.ion-ios-color-filter:before,.ion-ios-color-palette:before,.ion-ios-color-wand:before,.ion-ios-compass:before,.ion-ios-construct:before,.ion-ios-contact:before,.ion-ios-contacts:before,.ion-ios-contract:before,.ion-ios-contrast:before,.ion-ios-copy:before,.ion-ios-create:before,.ion-ios-crop:before,.ion-ios-cube:before,.ion-ios-cut:before,.ion-ios-desktop:before,.ion-ios-disc:before,.ion-ios-document:before,.ion-ios-done-all:before,.ion-ios-download:before,.ion-ios-easel:before,.ion-ios-egg:before,.ion-ios-exit:before,.ion-ios-expand:before,.ion-ios-eye:before,.ion-ios-eye-off:before,.ion-ios-fastforward:before,.ion-ios-female:before,.ion-ios-filing:before,.ion-ios-film:before,.ion-ios-finger-print:before,.ion-ios-fitness:before,.ion-ios-flag:before,.ion-ios-flame:before,.ion-ios-flash:before,.ion-ios-flash-off:before,.ion-ios-flashlight:before,.ion-ios-flask:before,.ion-ios-flower:before,.ion-ios-folder:before,.ion-ios-folder-open:before,.ion-ios-football:before,.ion-ios-funnel:before,.ion-ios-gift:before,.ion-ios-git-branch:before,.ion-ios-git-commit:before,.ion-ios-git-compare:before,.ion-ios-git-merge:before,.ion-ios-git-network:before,.ion-ios-git-pull-request:before,.ion-ios-glasses:before,.ion-ios-globe:before,.ion-ios-grid:before,.ion-ios-hammer:before,.ion-ios-hand:before,.ion-ios-happy:before,.ion-ios-headset:before,.ion-ios-heart:before,.ion-ios-heart-dislike:before,.ion-ios-heart-empty:before,.ion-ios-heart-half:before,.ion-ios-help:before,.ion-ios-help-buoy:before,.ion-ios-help-circle:before,.ion-ios-help-circle-outline:before,.ion-ios-home:before,.ion-ios-hourglass:before,.ion-ios-ice-cream:before,.ion-ios-image:before,.ion-ios-images:before,.ion-ios-infinite:before,.ion-ios-information:before,.ion-ios-information-circle:before,.ion-ios-information-circle-outline:before,.ion-ios-jet:before,.ion-ios-journal:before,.ion-ios-key:before,.ion-ios-keypad:before,.ion-ios-laptop:before,.ion-ios-leaf:before,.ion-ios-link:before,.ion-ios-list:before,.ion-ios-list-box:before,.ion-ios-locate:before,.ion-ios-lock:before,.ion-ios-log-in:before,.ion-ios-log-out:before,.ion-ios-magnet:before,.ion-ios-mail:before,.ion-ios-mail-open:before,.ion-ios-mail-unread:before,.ion-ios-male:before,.ion-ios-man:before,.ion-ios-map:before,.ion-ios-medal:before,.ion-ios-medical:before,.ion-ios-medkit:before,.ion-ios-megaphone:before,.ion-ios-menu:before,.ion-ios-mic:before,.ion-ios-mic-off:before,.ion-ios-microphone:before,.ion-ios-moon:before,.ion-ios-more:before,.ion-ios-move:before,.ion-ios-musical-note:before,.ion-ios-musical-notes:before,.ion-ios-navigate:before,.ion-ios-notifications:before,.ion-ios-notifications-off:before,.ion-ios-notifications-outline:before,.ion-ios-nuclear:before,.ion-ios-nutrition:before,.ion-ios-open:before,.ion-ios-options:before,.ion-ios-outlet:before,.ion-ios-paper:before,.ion-ios-paper-plane:before,.ion-ios-partly-sunny:before,.ion-ios-pause:before,.ion-ios-paw:before,.ion-ios-people:before,.ion-ios-person:before,.ion-ios-person-add:before,.ion-ios-phone-landscape:before,.ion-ios-phone-portrait:before,.ion-ios-photos:before,.ion-ios-pie:before,.ion-ios-pin:before,.ion-ios-pint:before,.ion-ios-pizza:before,.ion-ios-planet:before,.ion-ios-play:before,.ion-ios-play-circle:before,.ion-ios-podium:before,.ion-ios-power:before,.ion-ios-pricetag:before,.ion-ios-pricetags:before,.ion-ios-print:before,.ion-ios-pulse:before,.ion-ios-qr-scanner:before,.ion-ios-quote:before,.ion-ios-radio:before,.ion-ios-radio-button-off:before,.ion-ios-radio-button-on:before,.ion-ios-rainy:before,.ion-ios-recording:before,.ion-ios-redo:before,.ion-ios-refresh:before,.ion-ios-refresh-circle:before,.ion-ios-remove:before,.ion-ios-remove-circle:before,.ion-ios-remove-circle-outline:before,.ion-ios-reorder:before,.ion-ios-repeat:before,.ion-ios-resize:before,.ion-ios-restaurant:before,.ion-ios-return-left:before,.ion-ios-return-right:before,.ion-ios-reverse-camera:before,.ion-ios-rewind:before,.ion-ios-ribbon:before,.ion-ios-rocket:before,.ion-ios-rose:before,.ion-ios-sad:before,.ion-ios-save:before,.ion-ios-school:before,.ion-ios-search:before,.ion-ios-send:before,.ion-ios-settings:before,.ion-ios-share:before,.ion-ios-share-alt:before,.ion-ios-shirt:before,.ion-ios-shuffle:before,.ion-ios-skip-backward:before,.ion-ios-skip-forward:before,.ion-ios-snow:before,.ion-ios-speedometer:before,.ion-ios-square:before,.ion-ios-square-outline:before,.ion-ios-star:before,.ion-ios-star-half:before,.ion-ios-star-outline:before,.ion-ios-stats:before,.ion-ios-stopwatch:before,.ion-ios-subway:before,.ion-ios-sunny:before,.ion-ios-swap:before,.ion-ios-switch:before,.ion-ios-sync:before,.ion-ios-tablet-landscape:before,.ion-ios-tablet-portrait:before,.ion-ios-tennisball:before,.ion-ios-text:before,.ion-ios-thermometer:before,.ion-ios-thumbs-down:before,.ion-ios-thumbs-up:before,.ion-ios-thunderstorm:before,.ion-ios-time:before,.ion-ios-timer:before,.ion-ios-today:before,.ion-ios-train:before,.ion-ios-transgender:before,.ion-ios-trash:before,.ion-ios-trending-down:before,.ion-ios-trending-up:before,.ion-ios-trophy:before,.ion-ios-tv:before,.ion-ios-umbrella:before,.ion-ios-undo:before,.ion-ios-unlock:before,.ion-ios-videocam:before,.ion-ios-volume-high:before,.ion-ios-volume-low:before,.ion-ios-volume-mute:before,.ion-ios-volume-off:before,.ion-ios-walk:before,.ion-ios-wallet:before,.ion-ios-warning:before,.ion-ios-watch:before,.ion-ios-water:before,.ion-ios-wifi:before,.ion-ios-wine:before,.ion-ios-woman:before,.ion-logo-android:before,.ion-logo-angular:before,.ion-logo-apple:before,.ion-logo-bitbucket:before,.ion-logo-bitcoin:before,.ion-logo-buffer:before,.ion-logo-chrome:before,.ion-logo-closed-captioning:before,.ion-logo-codepen:before,.ion-logo-css3:before,.ion-logo-designernews:before,.ion-logo-dribbble:before,.ion-logo-dropbox:before,.ion-logo-euro:before,.ion-logo-facebook:before,.ion-logo-flickr:before,.ion-logo-foursquare:before,.ion-logo-freebsd-devil:before,.ion-logo-game-controller-a:before,.ion-logo-game-controller-b:before,.ion-logo-github:before,.ion-logo-google:before,.ion-logo-googleplus:before,.ion-logo-hackernews:before,.ion-logo-html5:before,.ion-logo-instagram:before,.ion-logo-ionic:before,.ion-logo-ionitron:before,.ion-logo-javascript:before,.ion-logo-linkedin:before,.ion-logo-markdown:before,.ion-logo-model-s:before,.ion-logo-no-smoking:before,.ion-logo-nodejs:before,.ion-logo-npm:before,.ion-logo-octocat:before,.ion-logo-pinterest:before,.ion-logo-playstation:before,.ion-logo-polymer:before,.ion-logo-python:before,.ion-logo-reddit:before,.ion-logo-rss:before,.ion-logo-sass:before,.ion-logo-skype:before,.ion-logo-slack:before,.ion-logo-snapchat:before,.ion-logo-steam:before,.ion-logo-tumblr:before,.ion-logo-tux:before,.ion-logo-twitch:before,.ion-logo-twitter:before,.ion-logo-usd:before,.ion-logo-vimeo:before,.ion-logo-vk:before,.ion-logo-whatsapp:before,.ion-logo-windows:before,.ion-logo-wordpress:before,.ion-logo-xbox:before,.ion-logo-xing:before,.ion-logo-yahoo:before,.ion-logo-yen:before,.ion-logo-youtube:before,.ion-md-add:before,.ion-md-add-circle:before,.ion-md-add-circle-outline:before,.ion-md-airplane:before,.ion-md-alarm:before,.ion-md-albums:before,.ion-md-alert:before,.ion-md-american-football:before,.ion-md-analytics:before,.ion-md-aperture:before,.ion-md-apps:before,.ion-md-appstore:before,.ion-md-archive:before,.ion-md-arrow-back:before,.ion-md-arrow-down:before,.ion-md-arrow-dropdown:before,.ion-md-arrow-dropdown-circle:before,.ion-md-arrow-dropleft:before,.ion-md-arrow-dropleft-circle:before,.ion-md-arrow-dropright:before,.ion-md-arrow-dropright-circle:before,.ion-md-arrow-dropup:before,.ion-md-arrow-dropup-circle:before,.ion-md-arrow-forward:before,.ion-md-arrow-round-back:before,.ion-md-arrow-round-down:before,.ion-md-arrow-round-forward:before,.ion-md-arrow-round-up:before,.ion-md-arrow-up:before,.ion-md-at:before,.ion-md-attach:before,.ion-md-backspace:before,.ion-md-barcode:before,.ion-md-baseball:before,.ion-md-basket:before,.ion-md-basketball:before,.ion-md-battery-charging:before,.ion-md-battery-dead:before,.ion-md-battery-full:before,.ion-md-beaker:before,.ion-md-bed:before,.ion-md-beer:before,.ion-md-bicycle:before,.ion-md-bluetooth:before,.ion-md-boat:before,.ion-md-body:before,.ion-md-bonfire:before,.ion-md-book:before,.ion-md-bookmark:before,.ion-md-bookmarks:before,.ion-md-bowtie:before,.ion-md-briefcase:before,.ion-md-browsers:before,.ion-md-brush:before,.ion-md-bug:before,.ion-md-build:before,.ion-md-bulb:before,.ion-md-bus:before,.ion-md-business:before,.ion-md-cafe:before,.ion-md-calculator:before,.ion-md-calendar:before,.ion-md-call:before,.ion-md-camera:before,.ion-md-car:before,.ion-md-card:before,.ion-md-cart:before,.ion-md-cash:before,.ion-md-cellular:before,.ion-md-chatboxes:before,.ion-md-chatbubbles:before,.ion-md-checkbox:before,.ion-md-checkbox-outline:before,.ion-md-checkmark:before,.ion-md-checkmark-circle:before,.ion-md-checkmark-circle-outline:before,.ion-md-clipboard:before,.ion-md-clock:before,.ion-md-close:before,.ion-md-close-circle:before,.ion-md-close-circle-outline:before,.ion-md-cloud:before,.ion-md-cloud-circle:before,.ion-md-cloud-done:before,.ion-md-cloud-download:before,.ion-md-cloud-outline:before,.ion-md-cloud-upload:before,.ion-md-cloudy:before,.ion-md-cloudy-night:before,.ion-md-code:before,.ion-md-code-download:before,.ion-md-code-working:before,.ion-md-cog:before,.ion-md-color-fill:before,.ion-md-color-filter:before,.ion-md-color-palette:before,.ion-md-color-wand:before,.ion-md-compass:before,.ion-md-construct:before,.ion-md-contact:before,.ion-md-contacts:before,.ion-md-contract:before,.ion-md-contrast:before,.ion-md-copy:before,.ion-md-create:before,.ion-md-crop:before,.ion-md-cube:before,.ion-md-cut:before,.ion-md-desktop:before,.ion-md-disc:before,.ion-md-document:before,.ion-md-done-all:before,.ion-md-download:before,.ion-md-easel:before,.ion-md-egg:before,.ion-md-exit:before,.ion-md-expand:before,.ion-md-eye:before,.ion-md-eye-off:before,.ion-md-fastforward:before,.ion-md-female:before,.ion-md-filing:before,.ion-md-film:before,.ion-md-finger-print:before,.ion-md-fitness:before,.ion-md-flag:before,.ion-md-flame:before,.ion-md-flash:before,.ion-md-flash-off:before,.ion-md-flashlight:before,.ion-md-flask:before,.ion-md-flower:before,.ion-md-folder:before,.ion-md-folder-open:before,.ion-md-football:before,.ion-md-funnel:before,.ion-md-gift:before,.ion-md-git-branch:before,.ion-md-git-commit:before,.ion-md-git-compare:before,.ion-md-git-merge:before,.ion-md-git-network:before,.ion-md-git-pull-request:before,.ion-md-glasses:before,.ion-md-globe:before,.ion-md-grid:before,.ion-md-hammer:before,.ion-md-hand:before,.ion-md-happy:before,.ion-md-headset:before,.ion-md-heart:before,.ion-md-heart-dislike:before,.ion-md-heart-empty:before,.ion-md-heart-half:before,.ion-md-help:before,.ion-md-help-buoy:before,.ion-md-help-circle:before,.ion-md-help-circle-outline:before,.ion-md-home:before,.ion-md-hourglass:before,.ion-md-ice-cream:before,.ion-md-image:before,.ion-md-images:before,.ion-md-infinite:before,.ion-md-information:before,.ion-md-information-circle:before,.ion-md-information-circle-outline:before,.ion-md-jet:before,.ion-md-journal:before,.ion-md-key:before,.ion-md-keypad:before,.ion-md-laptop:before,.ion-md-leaf:before,.ion-md-link:before,.ion-md-list:before,.ion-md-list-box:before,.ion-md-locate:before,.ion-md-lock:before,.ion-md-log-in:before,.ion-md-log-out:before,.ion-md-magnet:before,.ion-md-mail:before,.ion-md-mail-open:before,.ion-md-mail-unread:before,.ion-md-male:before,.ion-md-man:before,.ion-md-map:before,.ion-md-medal:before,.ion-md-medical:before,.ion-md-medkit:before,.ion-md-megaphone:before,.ion-md-menu:before,.ion-md-mic:before,.ion-md-mic-off:before,.ion-md-microphone:before,.ion-md-moon:before,.ion-md-more:before,.ion-md-move:before,.ion-md-musical-note:before,.ion-md-musical-notes:before,.ion-md-navigate:before,.ion-md-notifications:before,.ion-md-notifications-off:before,.ion-md-notifications-outline:before,.ion-md-nuclear:before,.ion-md-nutrition:before,.ion-md-open:before,.ion-md-options:before,.ion-md-outlet:before,.ion-md-paper:before,.ion-md-paper-plane:before,.ion-md-partly-sunny:before,.ion-md-pause:before,.ion-md-paw:before,.ion-md-people:before,.ion-md-person:before,.ion-md-person-add:before,.ion-md-phone-landscape:before,.ion-md-phone-portrait:before,.ion-md-photos:before,.ion-md-pie:before,.ion-md-pin:before,.ion-md-pint:before,.ion-md-pizza:before,.ion-md-planet:before,.ion-md-play:before,.ion-md-play-circle:before,.ion-md-podium:before,.ion-md-power:before,.ion-md-pricetag:before,.ion-md-pricetags:before,.ion-md-print:before,.ion-md-pulse:before,.ion-md-qr-scanner:before,.ion-md-quote:before,.ion-md-radio:before,.ion-md-radio-button-off:before,.ion-md-radio-button-on:before,.ion-md-rainy:before,.ion-md-recording:before,.ion-md-redo:before,.ion-md-refresh:before,.ion-md-refresh-circle:before,.ion-md-remove:before,.ion-md-remove-circle:before,.ion-md-remove-circle-outline:before,.ion-md-reorder:before,.ion-md-repeat:before,.ion-md-resize:before,.ion-md-restaurant:before,.ion-md-return-left:before,.ion-md-return-right:before,.ion-md-reverse-camera:before,.ion-md-rewind:before,.ion-md-ribbon:before,.ion-md-rocket:before,.ion-md-rose:before,.ion-md-sad:before,.ion-md-save:before,.ion-md-school:before,.ion-md-search:before,.ion-md-send:before,.ion-md-settings:before,.ion-md-share:before,.ion-md-share-alt:before,.ion-md-shirt:before,.ion-md-shuffle:before,.ion-md-skip-backward:before,.ion-md-skip-forward:before,.ion-md-snow:before,.ion-md-speedometer:before,.ion-md-square:before,.ion-md-square-outline:before,.ion-md-star:before,.ion-md-star-half:before,.ion-md-star-outline:before,.ion-md-stats:before,.ion-md-stopwatch:before,.ion-md-subway:before,.ion-md-sunny:before,.ion-md-swap:before,.ion-md-switch:before,.ion-md-sync:before,.ion-md-tablet-landscape:before,.ion-md-tablet-portrait:before,.ion-md-tennisball:before,.ion-md-text:before,.ion-md-thermometer:before,.ion-md-thumbs-down:before,.ion-md-thumbs-up:before,.ion-md-thunderstorm:before,.ion-md-time:before,.ion-md-timer:before,.ion-md-today:before,.ion-md-train:before,.ion-md-transgender:before,.ion-md-trash:before,.ion-md-trending-down:before,.ion-md-trending-up:before,.ion-md-trophy:before,.ion-md-tv:before,.ion-md-umbrella:before,.ion-md-undo:before,.ion-md-unlock:before,.ion-md-videocam:before,.ion-md-volume-high:before,.ion-md-volume-low:before,.ion-md-volume-mute:before,.ion-md-volume-off:before,.ion-md-walk:before,.ion-md-wallet:before,.ion-md-warning:before,.ion-md-watch:before,.ion-md-water:before,.ion-md-wifi:before,.ion-md-wine:before,.ion-md-woman:before{display:inline-block;font-family:"Ionicons";speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;text-rendering:auto;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ion-ios-add:before{content:""}.ion-ios-add-circle:before{content:""}.ion-ios-add-circle-outline:before{content:""}.ion-ios-airplane:before{content:""}.ion-ios-alarm:before{content:""}.ion-ios-albums:before{content:""}.ion-ios-alert:before{content:""}.ion-ios-american-football:before{content:""}.ion-ios-analytics:before{content:""}.ion-ios-aperture:before{content:""}.ion-ios-apps:before{content:""}.ion-ios-appstore:before{content:""}.ion-ios-archive:before{content:""}.ion-ios-arrow-back:before{content:""}.ion-ios-arrow-down:before{content:""}.ion-ios-arrow-dropdown:before{content:""}.ion-ios-arrow-dropdown-circle:before{content:""}.ion-ios-arrow-dropleft:before{content:""}.ion-ios-arrow-dropleft-circle:before{content:""}.ion-ios-arrow-dropright:before{content:""}.ion-ios-arrow-dropright-circle:before{content:""}.ion-ios-arrow-dropup:before{content:""}.ion-ios-arrow-dropup-circle:before{content:""}.ion-ios-arrow-forward:before{content:""}.ion-ios-arrow-round-back:before{content:""}.ion-ios-arrow-round-down:before{content:""}.ion-ios-arrow-round-forward:before{content:""}.ion-ios-arrow-round-up:before{content:""}.ion-ios-arrow-up:before{content:""}.ion-ios-at:before{content:""}.ion-ios-attach:before{content:""}.ion-ios-backspace:before{content:""}.ion-ios-barcode:before{content:""}.ion-ios-baseball:before{content:""}.ion-ios-basket:before{content:""}.ion-ios-basketball:before{content:""}.ion-ios-battery-charging:before{content:""}.ion-ios-battery-dead:before{content:""}.ion-ios-battery-full:before{content:""}.ion-ios-beaker:before{content:""}.ion-ios-bed:before{content:""}.ion-ios-beer:before{content:""}.ion-ios-bicycle:before{content:""}.ion-ios-bluetooth:before{content:""}.ion-ios-boat:before{content:""}.ion-ios-body:before{content:""}.ion-ios-bonfire:before{content:""}.ion-ios-book:before{content:""}.ion-ios-bookmark:before{content:""}.ion-ios-bookmarks:before{content:""}.ion-ios-bowtie:before{content:""}.ion-ios-briefcase:before{content:""}.ion-ios-browsers:before{content:""}.ion-ios-brush:before{content:""}.ion-ios-bug:before{content:""}.ion-ios-build:before{content:""}.ion-ios-bulb:before{content:""}.ion-ios-bus:before{content:""}.ion-ios-business:before{content:""}.ion-ios-cafe:before{content:""}.ion-ios-calculator:before{content:""}.ion-ios-calendar:before{content:""}.ion-ios-call:before{content:""}.ion-ios-camera:before{content:""}.ion-ios-car:before{content:""}.ion-ios-card:before{content:""}.ion-ios-cart:before{content:""}.ion-ios-cash:before{content:""}.ion-ios-cellular:before{content:""}.ion-ios-chatboxes:before{content:""}.ion-ios-chatbubbles:before{content:""}.ion-ios-checkbox:before{content:""}.ion-ios-checkbox-outline:before{content:""}.ion-ios-checkmark:before{content:""}.ion-ios-checkmark-circle:before{content:""}.ion-ios-checkmark-circle-outline:before{content:""}.ion-ios-clipboard:before{content:""}.ion-ios-clock:before{content:""}.ion-ios-close:before{content:""}.ion-ios-close-circle:before{content:""}.ion-ios-close-circle-outline:before{content:""}.ion-ios-cloud:before{content:""}.ion-ios-cloud-circle:before{content:""}.ion-ios-cloud-done:before{content:""}.ion-ios-cloud-download:before{content:""}.ion-ios-cloud-outline:before{content:""}.ion-ios-cloud-upload:before{content:""}.ion-ios-cloudy:before{content:""}.ion-ios-cloudy-night:before{content:""}.ion-ios-code:before{content:""}.ion-ios-code-download:before{content:""}.ion-ios-code-working:before{content:""}.ion-ios-cog:before{content:""}.ion-ios-color-fill:before{content:""}.ion-ios-color-filter:before{content:""}.ion-ios-color-palette:before{content:""}.ion-ios-color-wand:before{content:""}.ion-ios-compass:before{content:""}.ion-ios-construct:before{content:""}.ion-ios-contact:before{content:""}.ion-ios-contacts:before{content:""}.ion-ios-contract:before{content:""}.ion-ios-contrast:before{content:""}.ion-ios-copy:before{content:""}.ion-ios-create:before{content:""}.ion-ios-crop:before{content:""}.ion-ios-cube:before{content:""}.ion-ios-cut:before{content:""}.ion-ios-desktop:before{content:""}.ion-ios-disc:before{content:""}.ion-ios-document:before{content:""}.ion-ios-done-all:before{content:""}.ion-ios-download:before{content:""}.ion-ios-easel:before{content:""}.ion-ios-egg:before{content:""}.ion-ios-exit:before{content:""}.ion-ios-expand:before{content:""}.ion-ios-eye:before{content:""}.ion-ios-eye-off:before{content:""}.ion-ios-fastforward:before{content:""}.ion-ios-female:before{content:""}.ion-ios-filing:before{content:""}.ion-ios-film:before{content:""}.ion-ios-finger-print:before{content:""}.ion-ios-fitness:before{content:""}.ion-ios-flag:before{content:""}.ion-ios-flame:before{content:""}.ion-ios-flash:before{content:""}.ion-ios-flash-off:before{content:""}.ion-ios-flashlight:before{content:""}.ion-ios-flask:before{content:""}.ion-ios-flower:before{content:""}.ion-ios-folder:before{content:""}.ion-ios-folder-open:before{content:""}.ion-ios-football:before{content:""}.ion-ios-funnel:before{content:""}.ion-ios-gift:before{content:""}.ion-ios-git-branch:before{content:""}.ion-ios-git-commit:before{content:""}.ion-ios-git-compare:before{content:""}.ion-ios-git-merge:before{content:""}.ion-ios-git-network:before{content:""}.ion-ios-git-pull-request:before{content:""}.ion-ios-glasses:before{content:""}.ion-ios-globe:before{content:""}.ion-ios-grid:before{content:""}.ion-ios-hammer:before{content:""}.ion-ios-hand:before{content:""}.ion-ios-happy:before{content:""}.ion-ios-headset:before{content:""}.ion-ios-heart:before{content:""}.ion-ios-heart-dislike:before{content:""}.ion-ios-heart-empty:before{content:""}.ion-ios-heart-half:before{content:""}.ion-ios-help:before{content:""}.ion-ios-help-buoy:before{content:""}.ion-ios-help-circle:before{content:""}.ion-ios-help-circle-outline:before{content:""}.ion-ios-home:before{content:""}.ion-ios-hourglass:before{content:""}.ion-ios-ice-cream:before{content:""}.ion-ios-image:before{content:""}.ion-ios-images:before{content:""}.ion-ios-infinite:before{content:""}.ion-ios-information:before{content:""}.ion-ios-information-circle:before{content:""}.ion-ios-information-circle-outline:before{content:""}.ion-ios-jet:before{content:""}.ion-ios-journal:before{content:""}.ion-ios-key:before{content:""}.ion-ios-keypad:before{content:""}.ion-ios-laptop:before{content:""}.ion-ios-leaf:before{content:""}.ion-ios-link:before{content:""}.ion-ios-list:before{content:""}.ion-ios-list-box:before{content:""}.ion-ios-locate:before{content:""}.ion-ios-lock:before{content:""}.ion-ios-log-in:before{content:""}.ion-ios-log-out:before{content:""}.ion-ios-magnet:before{content:""}.ion-ios-mail:before{content:""}.ion-ios-mail-open:before{content:""}.ion-ios-mail-unread:before{content:""}.ion-ios-male:before{content:""}.ion-ios-man:before{content:""}.ion-ios-map:before{content:""}.ion-ios-medal:before{content:""}.ion-ios-medical:before{content:""}.ion-ios-medkit:before{content:""}.ion-ios-megaphone:before{content:""}.ion-ios-menu:before{content:""}.ion-ios-mic:before{content:""}.ion-ios-mic-off:before{content:""}.ion-ios-microphone:before{content:""}.ion-ios-moon:before{content:""}.ion-ios-more:before{content:""}.ion-ios-move:before{content:""}.ion-ios-musical-note:before{content:""}.ion-ios-musical-notes:before{content:""}.ion-ios-navigate:before{content:""}.ion-ios-notifications:before{content:""}.ion-ios-notifications-off:before{content:""}.ion-ios-notifications-outline:before{content:""}.ion-ios-nuclear:before{content:""}.ion-ios-nutrition:before{content:""}.ion-ios-open:before{content:""}.ion-ios-options:before{content:""}.ion-ios-outlet:before{content:""}.ion-ios-paper:before{content:""}.ion-ios-paper-plane:before{content:""}.ion-ios-partly-sunny:before{content:""}.ion-ios-pause:before{content:""}.ion-ios-paw:before{content:""}.ion-ios-people:before{content:""}.ion-ios-person:before{content:""}.ion-ios-person-add:before{content:""}.ion-ios-phone-landscape:before{content:""}.ion-ios-phone-portrait:before{content:""}.ion-ios-photos:before{content:""}.ion-ios-pie:before{content:""}.ion-ios-pin:before{content:""}.ion-ios-pint:before{content:""}.ion-ios-pizza:before{content:""}.ion-ios-planet:before{content:""}.ion-ios-play:before{content:""}.ion-ios-play-circle:before{content:""}.ion-ios-podium:before{content:""}.ion-ios-power:before{content:""}.ion-ios-pricetag:before{content:""}.ion-ios-pricetags:before{content:""}.ion-ios-print:before{content:""}.ion-ios-pulse:before{content:""}.ion-ios-qr-scanner:before{content:""}.ion-ios-quote:before{content:""}.ion-ios-radio:before{content:""}.ion-ios-radio-button-off:before{content:""}.ion-ios-radio-button-on:before{content:""}.ion-ios-rainy:before{content:""}.ion-ios-recording:before{content:""}.ion-ios-redo:before{content:""}.ion-ios-refresh:before{content:""}.ion-ios-refresh-circle:before{content:""}.ion-ios-remove:before{content:""}.ion-ios-remove-circle:before{content:""}.ion-ios-remove-circle-outline:before{content:""}.ion-ios-reorder:before{content:""}.ion-ios-repeat:before{content:""}.ion-ios-resize:before{content:""}.ion-ios-restaurant:before{content:""}.ion-ios-return-left:before{content:""}.ion-ios-return-right:before{content:""}.ion-ios-reverse-camera:before{content:""}.ion-ios-rewind:before{content:""}.ion-ios-ribbon:before{content:""}.ion-ios-rocket:before{content:""}.ion-ios-rose:before{content:""}.ion-ios-sad:before{content:""}.ion-ios-save:before{content:""}.ion-ios-school:before{content:""}.ion-ios-search:before{content:""}.ion-ios-send:before{content:""}.ion-ios-settings:before{content:""}.ion-ios-share:before{content:""}.ion-ios-share-alt:before{content:""}.ion-ios-shirt:before{content:""}.ion-ios-shuffle:before{content:""}.ion-ios-skip-backward:before{content:""}.ion-ios-skip-forward:before{content:""}.ion-ios-snow:before{content:""}.ion-ios-speedometer:before{content:""}.ion-ios-square:before{content:""}.ion-ios-square-outline:before{content:""}.ion-ios-star:before{content:""}.ion-ios-star-half:before{content:""}.ion-ios-star-outline:before{content:""}.ion-ios-stats:before{content:""}.ion-ios-stopwatch:before{content:""}.ion-ios-subway:before{content:""}.ion-ios-sunny:before{content:""}.ion-ios-swap:before{content:""}.ion-ios-switch:before{content:""}.ion-ios-sync:before{content:""}.ion-ios-tablet-landscape:before{content:""}.ion-ios-tablet-portrait:before{content:""}.ion-ios-tennisball:before{content:""}.ion-ios-text:before{content:""}.ion-ios-thermometer:before{content:""}.ion-ios-thumbs-down:before{content:""}.ion-ios-thumbs-up:before{content:""}.ion-ios-thunderstorm:before{content:""}.ion-ios-time:before{content:""}.ion-ios-timer:before{content:""}.ion-ios-today:before{content:""}.ion-ios-train:before{content:""}.ion-ios-transgender:before{content:""}.ion-ios-trash:before{content:""}.ion-ios-trending-down:before{content:""}.ion-ios-trending-up:before{content:""}.ion-ios-trophy:before{content:""}.ion-ios-tv:before{content:""}.ion-ios-umbrella:before{content:""}.ion-ios-undo:before{content:""}.ion-ios-unlock:before{content:""}.ion-ios-videocam:before{content:""}.ion-ios-volume-high:before{content:""}.ion-ios-volume-low:before{content:""}.ion-ios-volume-mute:before{content:""}.ion-ios-volume-off:before{content:""}.ion-ios-walk:before{content:""}.ion-ios-wallet:before{content:""}.ion-ios-warning:before{content:""}.ion-ios-watch:before{content:""}.ion-ios-water:before{content:""}.ion-ios-wifi:before{content:""}.ion-ios-wine:before{content:""}.ion-ios-woman:before{content:""}.ion-logo-android:before{content:""}.ion-logo-angular:before{content:""}.ion-logo-apple:before{content:""}.ion-logo-bitbucket:before{content:""}.ion-logo-bitcoin:before{content:""}.ion-logo-buffer:before{content:""}.ion-logo-chrome:before{content:""}.ion-logo-closed-captioning:before{content:""}.ion-logo-codepen:before{content:""}.ion-logo-css3:before{content:""}.ion-logo-designernews:before{content:""}.ion-logo-dribbble:before{content:""}.ion-logo-dropbox:before{content:""}.ion-logo-euro:before{content:""}.ion-logo-facebook:before{content:""}.ion-logo-flickr:before{content:""}.ion-logo-foursquare:before{content:""}.ion-logo-freebsd-devil:before{content:""}.ion-logo-game-controller-a:before{content:""}.ion-logo-game-controller-b:before{content:""}.ion-logo-github:before{content:""}.ion-logo-google:before{content:""}.ion-logo-googleplus:before{content:""}.ion-logo-hackernews:before{content:""}.ion-logo-html5:before{content:""}.ion-logo-instagram:before{content:""}.ion-logo-ionic:before{content:""}.ion-logo-ionitron:before{content:""}.ion-logo-javascript:before{content:""}.ion-logo-linkedin:before{content:""}.ion-logo-markdown:before{content:""}.ion-logo-model-s:before{content:""}.ion-logo-no-smoking:before{content:""}.ion-logo-nodejs:before{content:""}.ion-logo-npm:before{content:""}.ion-logo-octocat:before{content:""}.ion-logo-pinterest:before{content:""}.ion-logo-playstation:before{content:""}.ion-logo-polymer:before{content:""}.ion-logo-python:before{content:""}.ion-logo-reddit:before{content:""}.ion-logo-rss:before{content:""}.ion-logo-sass:before{content:""}.ion-logo-skype:before{content:""}.ion-logo-slack:before{content:""}.ion-logo-snapchat:before{content:""}.ion-logo-steam:before{content:""}.ion-logo-tumblr:before{content:""}.ion-logo-tux:before{content:""}.ion-logo-twitch:before{content:""}.ion-logo-twitter:before{content:""}.ion-logo-usd:before{content:""}.ion-logo-vimeo:before{content:""}.ion-logo-vk:before{content:""}.ion-logo-whatsapp:before{content:""}.ion-logo-windows:before{content:""}.ion-logo-wordpress:before{content:""}.ion-logo-xbox:before{content:""}.ion-logo-xing:before{content:""}.ion-logo-yahoo:before{content:""}.ion-logo-yen:before{content:""}.ion-logo-youtube:before{content:""}.ion-md-add:before{content:""}.ion-md-add-circle:before{content:""}.ion-md-add-circle-outline:before{content:""}.ion-md-airplane:before{content:""}.ion-md-alarm:before{content:""}.ion-md-albums:before{content:""}.ion-md-alert:before{content:""}.ion-md-american-football:before{content:""}.ion-md-analytics:before{content:""}.ion-md-aperture:before{content:""}.ion-md-apps:before{content:""}.ion-md-appstore:before{content:""}.ion-md-archive:before{content:""}.ion-md-arrow-back:before{content:""}.ion-md-arrow-down:before{content:""}.ion-md-arrow-dropdown:before{content:""}.ion-md-arrow-dropdown-circle:before{content:""}.ion-md-arrow-dropleft:before{content:""}.ion-md-arrow-dropleft-circle:before{content:""}.ion-md-arrow-dropright:before{content:""}.ion-md-arrow-dropright-circle:before{content:""}.ion-md-arrow-dropup:before{content:""}.ion-md-arrow-dropup-circle:before{content:""}.ion-md-arrow-forward:before{content:""}.ion-md-arrow-round-back:before{content:""}.ion-md-arrow-round-down:before{content:""}.ion-md-arrow-round-forward:before{content:""}.ion-md-arrow-round-up:before{content:""}.ion-md-arrow-up:before{content:""}.ion-md-at:before{content:""}.ion-md-attach:before{content:""}.ion-md-backspace:before{content:""}.ion-md-barcode:before{content:""}.ion-md-baseball:before{content:""}.ion-md-basket:before{content:""}.ion-md-basketball:before{content:""}.ion-md-battery-charging:before{content:""}.ion-md-battery-dead:before{content:""}.ion-md-battery-full:before{content:""}.ion-md-beaker:before{content:""}.ion-md-bed:before{content:""}.ion-md-beer:before{content:""}.ion-md-bicycle:before{content:""}.ion-md-bluetooth:before{content:""}.ion-md-boat:before{content:""}.ion-md-body:before{content:""}.ion-md-bonfire:before{content:""}.ion-md-book:before{content:""}.ion-md-bookmark:before{content:""}.ion-md-bookmarks:before{content:""}.ion-md-bowtie:before{content:""}.ion-md-briefcase:before{content:""}.ion-md-browsers:before{content:""}.ion-md-brush:before{content:""}.ion-md-bug:before{content:""}.ion-md-build:before{content:""}.ion-md-bulb:before{content:""}.ion-md-bus:before{content:""}.ion-md-business:before{content:""}.ion-md-cafe:before{content:""}.ion-md-calculator:before{content:""}.ion-md-calendar:before{content:""}.ion-md-call:before{content:""}.ion-md-camera:before{content:""}.ion-md-car:before{content:""}.ion-md-card:before{content:""}.ion-md-cart:before{content:""}.ion-md-cash:before{content:""}.ion-md-cellular:before{content:""}.ion-md-chatboxes:before{content:""}.ion-md-chatbubbles:before{content:""}.ion-md-checkbox:before{content:""}.ion-md-checkbox-outline:before{content:""}.ion-md-checkmark:before{content:""}.ion-md-checkmark-circle:before{content:""}.ion-md-checkmark-circle-outline:before{content:""}.ion-md-clipboard:before{content:""}.ion-md-clock:before{content:""}.ion-md-close:before{content:""}.ion-md-close-circle:before{content:""}.ion-md-close-circle-outline:before{content:""}.ion-md-cloud:before{content:""}.ion-md-cloud-circle:before{content:""}.ion-md-cloud-done:before{content:""}.ion-md-cloud-download:before{content:""}.ion-md-cloud-outline:before{content:""}.ion-md-cloud-upload:before{content:""}.ion-md-cloudy:before{content:""}.ion-md-cloudy-night:before{content:""}.ion-md-code:before{content:""}.ion-md-code-download:before{content:""}.ion-md-code-working:before{content:""}.ion-md-cog:before{content:""}.ion-md-color-fill:before{content:""}.ion-md-color-filter:before{content:""}.ion-md-color-palette:before{content:""}.ion-md-color-wand:before{content:""}.ion-md-compass:before{content:""}.ion-md-construct:before{content:""}.ion-md-contact:before{content:""}.ion-md-contacts:before{content:""}.ion-md-contract:before{content:""}.ion-md-contrast:before{content:""}.ion-md-copy:before{content:""}.ion-md-create:before{content:""}.ion-md-crop:before{content:""}.ion-md-cube:before{content:""}.ion-md-cut:before{content:""}.ion-md-desktop:before{content:""}.ion-md-disc:before{content:""}.ion-md-document:before{content:""}.ion-md-done-all:before{content:""}.ion-md-download:before{content:""}.ion-md-easel:before{content:""}.ion-md-egg:before{content:""}.ion-md-exit:before{content:""}.ion-md-expand:before{content:""}.ion-md-eye:before{content:""}.ion-md-eye-off:before{content:""}.ion-md-fastforward:before{content:""}.ion-md-female:before{content:""}.ion-md-filing:before{content:""}.ion-md-film:before{content:""}.ion-md-finger-print:before{content:""}.ion-md-fitness:before{content:""}.ion-md-flag:before{content:""}.ion-md-flame:before{content:""}.ion-md-flash:before{content:""}.ion-md-flash-off:before{content:""}.ion-md-flashlight:before{content:""}.ion-md-flask:before{content:""}.ion-md-flower:before{content:""}.ion-md-folder:before{content:""}.ion-md-folder-open:before{content:""}.ion-md-football:before{content:""}.ion-md-funnel:before{content:""}.ion-md-gift:before{content:""}.ion-md-git-branch:before{content:""}.ion-md-git-commit:before{content:""}.ion-md-git-compare:before{content:""}.ion-md-git-merge:before{content:""}.ion-md-git-network:before{content:""}.ion-md-git-pull-request:before{content:""}.ion-md-glasses:before{content:""}.ion-md-globe:before{content:""}.ion-md-grid:before{content:""}.ion-md-hammer:before{content:""}.ion-md-hand:before{content:""}.ion-md-happy:before{content:""}.ion-md-headset:before{content:""}.ion-md-heart:before{content:""}.ion-md-heart-dislike:before{content:""}.ion-md-heart-empty:before{content:""}.ion-md-heart-half:before{content:""}.ion-md-help:before{content:""}.ion-md-help-buoy:before{content:""}.ion-md-help-circle:before{content:""}.ion-md-help-circle-outline:before{content:""}.ion-md-home:before{content:""}.ion-md-hourglass:before{content:""}.ion-md-ice-cream:before{content:""}.ion-md-image:before{content:""}.ion-md-images:before{content:""}.ion-md-infinite:before{content:""}.ion-md-information:before{content:""}.ion-md-information-circle:before{content:""}.ion-md-information-circle-outline:before{content:""}.ion-md-jet:before{content:""}.ion-md-journal:before{content:""}.ion-md-key:before{content:""}.ion-md-keypad:before{content:""}.ion-md-laptop:before{content:""}.ion-md-leaf:before{content:""}.ion-md-link:before{content:""}.ion-md-list:before{content:""}.ion-md-list-box:before{content:""}.ion-md-locate:before{content:""}.ion-md-lock:before{content:""}.ion-md-log-in:before{content:""}.ion-md-log-out:before{content:""}.ion-md-magnet:before{content:""}.ion-md-mail:before{content:""}.ion-md-mail-open:before{content:""}.ion-md-mail-unread:before{content:""}.ion-md-male:before{content:""}.ion-md-man:before{content:""}.ion-md-map:before{content:""}.ion-md-medal:before{content:""}.ion-md-medical:before{content:""}.ion-md-medkit:before{content:""}.ion-md-megaphone:before{content:""}.ion-md-menu:before{content:""}.ion-md-mic:before{content:""}.ion-md-mic-off:before{content:""}.ion-md-microphone:before{content:""}.ion-md-moon:before{content:""}.ion-md-more:before{content:""}.ion-md-move:before{content:""}.ion-md-musical-note:before{content:""}.ion-md-musical-notes:before{content:""}.ion-md-navigate:before{content:""}.ion-md-notifications:before{content:""}.ion-md-notifications-off:before{content:""}.ion-md-notifications-outline:before{content:""}.ion-md-nuclear:before{content:""}.ion-md-nutrition:before{content:""}.ion-md-open:before{content:""}.ion-md-options:before{content:""}.ion-md-outlet:before{content:""}.ion-md-paper:before{content:""}.ion-md-paper-plane:before{content:""}.ion-md-partly-sunny:before{content:""}.ion-md-pause:before{content:""}.ion-md-paw:before{content:""}.ion-md-people:before{content:""}.ion-md-person:before{content:""}.ion-md-person-add:before{content:""}.ion-md-phone-landscape:before{content:""}.ion-md-phone-portrait:before{content:""}.ion-md-photos:before{content:""}.ion-md-pie:before{content:""}.ion-md-pin:before{content:""}.ion-md-pint:before{content:""}.ion-md-pizza:before{content:""}.ion-md-planet:before{content:""}.ion-md-play:before{content:""}.ion-md-play-circle:before{content:""}.ion-md-podium:before{content:""}.ion-md-power:before{content:""}.ion-md-pricetag:before{content:""}.ion-md-pricetags:before{content:""}.ion-md-print:before{content:""}.ion-md-pulse:before{content:""}.ion-md-qr-scanner:before{content:""}.ion-md-quote:before{content:""}.ion-md-radio:before{content:""}.ion-md-radio-button-off:before{content:""}.ion-md-radio-button-on:before{content:""}.ion-md-rainy:before{content:""}.ion-md-recording:before{content:""}.ion-md-redo:before{content:""}.ion-md-refresh:before{content:""}.ion-md-refresh-circle:before{content:""}.ion-md-remove:before{content:""}.ion-md-remove-circle:before{content:""}.ion-md-remove-circle-outline:before{content:""}.ion-md-reorder:before{content:""}.ion-md-repeat:before{content:""}.ion-md-resize:before{content:""}.ion-md-restaurant:before{content:""}.ion-md-return-left:before{content:""}.ion-md-return-right:before{content:""}.ion-md-reverse-camera:before{content:""}.ion-md-rewind:before{content:""}.ion-md-ribbon:before{content:""}.ion-md-rocket:before{content:""}.ion-md-rose:before{content:""}.ion-md-sad:before{content:""}.ion-md-save:before{content:""}.ion-md-school:before{content:""}.ion-md-search:before{content:""}.ion-md-send:before{content:""}.ion-md-settings:before{content:""}.ion-md-share:before{content:""}.ion-md-share-alt:before{content:""}.ion-md-shirt:before{content:""}.ion-md-shuffle:before{content:""}.ion-md-skip-backward:before{content:""}.ion-md-skip-forward:before{content:""}.ion-md-snow:before{content:""}.ion-md-speedometer:before{content:""}.ion-md-square:before{content:""}.ion-md-square-outline:before{content:""}.ion-md-star:before{content:""}.ion-md-star-half:before{content:""}.ion-md-star-outline:before{content:""}.ion-md-stats:before{content:""}.ion-md-stopwatch:before{content:""}.ion-md-subway:before{content:""}.ion-md-sunny:before{content:""}.ion-md-swap:before{content:""}.ion-md-switch:before{content:""}.ion-md-sync:before{content:""}.ion-md-tablet-landscape:before{content:""}.ion-md-tablet-portrait:before{content:""}.ion-md-tennisball:before{content:""}.ion-md-text:before{content:""}.ion-md-thermometer:before{content:""}.ion-md-thumbs-down:before{content:""}.ion-md-thumbs-up:before{content:""}.ion-md-thunderstorm:before{content:""}.ion-md-time:before{content:""}.ion-md-timer:before{content:""}.ion-md-today:before{content:""}.ion-md-train:before{content:""}.ion-md-transgender:before{content:""}.ion-md-trash:before{content:""}.ion-md-trending-down:before{content:""}.ion-md-trending-up:before{content:""}.ion-md-trophy:before{content:""}.ion-md-tv:before{content:""}.ion-md-umbrella:before{content:""}.ion-md-undo:before{content:""}.ion-md-unlock:before{content:""}.ion-md-videocam:before{content:""}.ion-md-volume-high:before{content:""}.ion-md-volume-low:before{content:""}.ion-md-volume-mute:before{content:""}.ion-md-volume-off:before{content:""}.ion-md-walk:before{content:""}.ion-md-wallet:before{content:""}.ion-md-warning:before{content:""}.ion-md-watch:before{content:""}.ion-md-water:before{content:""}.ion-md-wifi:before{content:""}.ion-md-wine:before{content:""}.ion-md-woman:before{content:""} \ No newline at end of file +@font-face{font-family:"Ionicons";src:url("../fonts/ionicons.eot?v=4.5.10-1");src:url("../fonts/ionicons.eot?v=4.5.10-1#iefix") format("embedded-opentype"),url("../fonts/ionicons.woff2?v=4.5.10-1") format("woff2"),url("../fonts/ionicons.woff?v=4.5.10-1") format("woff"),url("../fonts/ionicons.ttf?v=4.5.10-1") format("truetype"),url("../fonts/ionicons.svg?v=4.5.10-1#Ionicons") format("svg");font-weight:normal;font-style:normal}.ion,.ionicons,.ion-ios-add:before,.ion-ios-add-circle:before,.ion-ios-add-circle-outline:before,.ion-ios-airplane:before,.ion-ios-alarm:before,.ion-ios-albums:before,.ion-ios-alert:before,.ion-ios-american-football:before,.ion-ios-analytics:before,.ion-ios-aperture:before,.ion-ios-apps:before,.ion-ios-appstore:before,.ion-ios-archive:before,.ion-ios-arrow-back:before,.ion-ios-arrow-down:before,.ion-ios-arrow-dropdown:before,.ion-ios-arrow-dropdown-circle:before,.ion-ios-arrow-dropleft:before,.ion-ios-arrow-dropleft-circle:before,.ion-ios-arrow-dropright:before,.ion-ios-arrow-dropright-circle:before,.ion-ios-arrow-dropup:before,.ion-ios-arrow-dropup-circle:before,.ion-ios-arrow-forward:before,.ion-ios-arrow-round-back:before,.ion-ios-arrow-round-down:before,.ion-ios-arrow-round-forward:before,.ion-ios-arrow-round-up:before,.ion-ios-arrow-up:before,.ion-ios-at:before,.ion-ios-attach:before,.ion-ios-backspace:before,.ion-ios-barcode:before,.ion-ios-baseball:before,.ion-ios-basket:before,.ion-ios-basketball:before,.ion-ios-battery-charging:before,.ion-ios-battery-dead:before,.ion-ios-battery-full:before,.ion-ios-beaker:before,.ion-ios-bed:before,.ion-ios-beer:before,.ion-ios-bicycle:before,.ion-ios-bluetooth:before,.ion-ios-boat:before,.ion-ios-body:before,.ion-ios-bonfire:before,.ion-ios-book:before,.ion-ios-bookmark:before,.ion-ios-bookmarks:before,.ion-ios-bowtie:before,.ion-ios-briefcase:before,.ion-ios-browsers:before,.ion-ios-brush:before,.ion-ios-bug:before,.ion-ios-build:before,.ion-ios-bulb:before,.ion-ios-bus:before,.ion-ios-business:before,.ion-ios-cafe:before,.ion-ios-calculator:before,.ion-ios-calendar:before,.ion-ios-call:before,.ion-ios-camera:before,.ion-ios-car:before,.ion-ios-card:before,.ion-ios-cart:before,.ion-ios-cash:before,.ion-ios-cellular:before,.ion-ios-chatboxes:before,.ion-ios-chatbubbles:before,.ion-ios-checkbox:before,.ion-ios-checkbox-outline:before,.ion-ios-checkmark:before,.ion-ios-checkmark-circle:before,.ion-ios-checkmark-circle-outline:before,.ion-ios-clipboard:before,.ion-ios-clock:before,.ion-ios-close:before,.ion-ios-close-circle:before,.ion-ios-close-circle-outline:before,.ion-ios-cloud:before,.ion-ios-cloud-circle:before,.ion-ios-cloud-done:before,.ion-ios-cloud-download:before,.ion-ios-cloud-outline:before,.ion-ios-cloud-upload:before,.ion-ios-cloudy:before,.ion-ios-cloudy-night:before,.ion-ios-code:before,.ion-ios-code-download:before,.ion-ios-code-working:before,.ion-ios-cog:before,.ion-ios-color-fill:before,.ion-ios-color-filter:before,.ion-ios-color-palette:before,.ion-ios-color-wand:before,.ion-ios-compass:before,.ion-ios-construct:before,.ion-ios-contact:before,.ion-ios-contacts:before,.ion-ios-contract:before,.ion-ios-contrast:before,.ion-ios-copy:before,.ion-ios-create:before,.ion-ios-crop:before,.ion-ios-cube:before,.ion-ios-cut:before,.ion-ios-desktop:before,.ion-ios-disc:before,.ion-ios-document:before,.ion-ios-done-all:before,.ion-ios-download:before,.ion-ios-easel:before,.ion-ios-egg:before,.ion-ios-exit:before,.ion-ios-expand:before,.ion-ios-eye:before,.ion-ios-eye-off:before,.ion-ios-fastforward:before,.ion-ios-female:before,.ion-ios-filing:before,.ion-ios-film:before,.ion-ios-finger-print:before,.ion-ios-fitness:before,.ion-ios-flag:before,.ion-ios-flame:before,.ion-ios-flash:before,.ion-ios-flash-off:before,.ion-ios-flashlight:before,.ion-ios-flask:before,.ion-ios-flower:before,.ion-ios-folder:before,.ion-ios-folder-open:before,.ion-ios-football:before,.ion-ios-funnel:before,.ion-ios-gift:before,.ion-ios-git-branch:before,.ion-ios-git-commit:before,.ion-ios-git-compare:before,.ion-ios-git-merge:before,.ion-ios-git-network:before,.ion-ios-git-pull-request:before,.ion-ios-glasses:before,.ion-ios-globe:before,.ion-ios-grid:before,.ion-ios-hammer:before,.ion-ios-hand:before,.ion-ios-happy:before,.ion-ios-headset:before,.ion-ios-heart:before,.ion-ios-heart-dislike:before,.ion-ios-heart-empty:before,.ion-ios-heart-half:before,.ion-ios-help:before,.ion-ios-help-buoy:before,.ion-ios-help-circle:before,.ion-ios-help-circle-outline:before,.ion-ios-home:before,.ion-ios-hourglass:before,.ion-ios-ice-cream:before,.ion-ios-image:before,.ion-ios-images:before,.ion-ios-infinite:before,.ion-ios-information:before,.ion-ios-information-circle:before,.ion-ios-information-circle-outline:before,.ion-ios-jet:before,.ion-ios-journal:before,.ion-ios-key:before,.ion-ios-keypad:before,.ion-ios-laptop:before,.ion-ios-leaf:before,.ion-ios-link:before,.ion-ios-list:before,.ion-ios-list-box:before,.ion-ios-locate:before,.ion-ios-lock:before,.ion-ios-log-in:before,.ion-ios-log-out:before,.ion-ios-magnet:before,.ion-ios-mail:before,.ion-ios-mail-open:before,.ion-ios-mail-unread:before,.ion-ios-male:before,.ion-ios-man:before,.ion-ios-map:before,.ion-ios-medal:before,.ion-ios-medical:before,.ion-ios-medkit:before,.ion-ios-megaphone:before,.ion-ios-menu:before,.ion-ios-mic:before,.ion-ios-mic-off:before,.ion-ios-microphone:before,.ion-ios-moon:before,.ion-ios-more:before,.ion-ios-move:before,.ion-ios-musical-note:before,.ion-ios-musical-notes:before,.ion-ios-navigate:before,.ion-ios-notifications:before,.ion-ios-notifications-off:before,.ion-ios-notifications-outline:before,.ion-ios-nuclear:before,.ion-ios-nutrition:before,.ion-ios-open:before,.ion-ios-options:before,.ion-ios-outlet:before,.ion-ios-paper:before,.ion-ios-paper-plane:before,.ion-ios-partly-sunny:before,.ion-ios-pause:before,.ion-ios-paw:before,.ion-ios-people:before,.ion-ios-person:before,.ion-ios-person-add:before,.ion-ios-phone-landscape:before,.ion-ios-phone-portrait:before,.ion-ios-photos:before,.ion-ios-pie:before,.ion-ios-pin:before,.ion-ios-pint:before,.ion-ios-pizza:before,.ion-ios-planet:before,.ion-ios-play:before,.ion-ios-play-circle:before,.ion-ios-podium:before,.ion-ios-power:before,.ion-ios-pricetag:before,.ion-ios-pricetags:before,.ion-ios-print:before,.ion-ios-pulse:before,.ion-ios-qr-scanner:before,.ion-ios-quote:before,.ion-ios-radio:before,.ion-ios-radio-button-off:before,.ion-ios-radio-button-on:before,.ion-ios-rainy:before,.ion-ios-recording:before,.ion-ios-redo:before,.ion-ios-refresh:before,.ion-ios-refresh-circle:before,.ion-ios-remove:before,.ion-ios-remove-circle:before,.ion-ios-remove-circle-outline:before,.ion-ios-reorder:before,.ion-ios-repeat:before,.ion-ios-resize:before,.ion-ios-restaurant:before,.ion-ios-return-left:before,.ion-ios-return-right:before,.ion-ios-reverse-camera:before,.ion-ios-rewind:before,.ion-ios-ribbon:before,.ion-ios-rocket:before,.ion-ios-rose:before,.ion-ios-sad:before,.ion-ios-save:before,.ion-ios-school:before,.ion-ios-search:before,.ion-ios-send:before,.ion-ios-settings:before,.ion-ios-share:before,.ion-ios-share-alt:before,.ion-ios-shirt:before,.ion-ios-shuffle:before,.ion-ios-skip-backward:before,.ion-ios-skip-forward:before,.ion-ios-snow:before,.ion-ios-speedometer:before,.ion-ios-square:before,.ion-ios-square-outline:before,.ion-ios-star:before,.ion-ios-star-half:before,.ion-ios-star-outline:before,.ion-ios-stats:before,.ion-ios-stopwatch:before,.ion-ios-subway:before,.ion-ios-sunny:before,.ion-ios-swap:before,.ion-ios-switch:before,.ion-ios-sync:before,.ion-ios-tablet-landscape:before,.ion-ios-tablet-portrait:before,.ion-ios-tennisball:before,.ion-ios-text:before,.ion-ios-thermometer:before,.ion-ios-thumbs-down:before,.ion-ios-thumbs-up:before,.ion-ios-thunderstorm:before,.ion-ios-time:before,.ion-ios-timer:before,.ion-ios-today:before,.ion-ios-train:before,.ion-ios-transgender:before,.ion-ios-trash:before,.ion-ios-trending-down:before,.ion-ios-trending-up:before,.ion-ios-trophy:before,.ion-ios-tv:before,.ion-ios-umbrella:before,.ion-ios-undo:before,.ion-ios-unlock:before,.ion-ios-videocam:before,.ion-ios-volume-high:before,.ion-ios-volume-low:before,.ion-ios-volume-mute:before,.ion-ios-volume-off:before,.ion-ios-walk:before,.ion-ios-wallet:before,.ion-ios-warning:before,.ion-ios-watch:before,.ion-ios-water:before,.ion-ios-wifi:before,.ion-ios-wine:before,.ion-ios-woman:before,.ion-logo-android:before,.ion-logo-angular:before,.ion-logo-apple:before,.ion-logo-bitbucket:before,.ion-logo-bitcoin:before,.ion-logo-buffer:before,.ion-logo-chrome:before,.ion-logo-closed-captioning:before,.ion-logo-codepen:before,.ion-logo-css3:before,.ion-logo-designernews:before,.ion-logo-dribbble:before,.ion-logo-dropbox:before,.ion-logo-euro:before,.ion-logo-facebook:before,.ion-logo-flickr:before,.ion-logo-foursquare:before,.ion-logo-freebsd-devil:before,.ion-logo-game-controller-a:before,.ion-logo-game-controller-b:before,.ion-logo-github:before,.ion-logo-google:before,.ion-logo-googleplus:before,.ion-logo-hackernews:before,.ion-logo-html5:before,.ion-logo-instagram:before,.ion-logo-ionic:before,.ion-logo-ionitron:before,.ion-logo-javascript:before,.ion-logo-linkedin:before,.ion-logo-markdown:before,.ion-logo-model-s:before,.ion-logo-no-smoking:before,.ion-logo-nodejs:before,.ion-logo-npm:before,.ion-logo-octocat:before,.ion-logo-pinterest:before,.ion-logo-playstation:before,.ion-logo-polymer:before,.ion-logo-python:before,.ion-logo-reddit:before,.ion-logo-rss:before,.ion-logo-sass:before,.ion-logo-skype:before,.ion-logo-slack:before,.ion-logo-snapchat:before,.ion-logo-steam:before,.ion-logo-tumblr:before,.ion-logo-tux:before,.ion-logo-twitch:before,.ion-logo-twitter:before,.ion-logo-usd:before,.ion-logo-vimeo:before,.ion-logo-vk:before,.ion-logo-whatsapp:before,.ion-logo-windows:before,.ion-logo-wordpress:before,.ion-logo-xbox:before,.ion-logo-xing:before,.ion-logo-yahoo:before,.ion-logo-yen:before,.ion-logo-youtube:before,.ion-md-add:before,.ion-md-add-circle:before,.ion-md-add-circle-outline:before,.ion-md-airplane:before,.ion-md-alarm:before,.ion-md-albums:before,.ion-md-alert:before,.ion-md-american-football:before,.ion-md-analytics:before,.ion-md-aperture:before,.ion-md-apps:before,.ion-md-appstore:before,.ion-md-archive:before,.ion-md-arrow-back:before,.ion-md-arrow-down:before,.ion-md-arrow-dropdown:before,.ion-md-arrow-dropdown-circle:before,.ion-md-arrow-dropleft:before,.ion-md-arrow-dropleft-circle:before,.ion-md-arrow-dropright:before,.ion-md-arrow-dropright-circle:before,.ion-md-arrow-dropup:before,.ion-md-arrow-dropup-circle:before,.ion-md-arrow-forward:before,.ion-md-arrow-round-back:before,.ion-md-arrow-round-down:before,.ion-md-arrow-round-forward:before,.ion-md-arrow-round-up:before,.ion-md-arrow-up:before,.ion-md-at:before,.ion-md-attach:before,.ion-md-backspace:before,.ion-md-barcode:before,.ion-md-baseball:before,.ion-md-basket:before,.ion-md-basketball:before,.ion-md-battery-charging:before,.ion-md-battery-dead:before,.ion-md-battery-full:before,.ion-md-beaker:before,.ion-md-bed:before,.ion-md-beer:before,.ion-md-bicycle:before,.ion-md-bluetooth:before,.ion-md-boat:before,.ion-md-body:before,.ion-md-bonfire:before,.ion-md-book:before,.ion-md-bookmark:before,.ion-md-bookmarks:before,.ion-md-bowtie:before,.ion-md-briefcase:before,.ion-md-browsers:before,.ion-md-brush:before,.ion-md-bug:before,.ion-md-build:before,.ion-md-bulb:before,.ion-md-bus:before,.ion-md-business:before,.ion-md-cafe:before,.ion-md-calculator:before,.ion-md-calendar:before,.ion-md-call:before,.ion-md-camera:before,.ion-md-car:before,.ion-md-card:before,.ion-md-cart:before,.ion-md-cash:before,.ion-md-cellular:before,.ion-md-chatboxes:before,.ion-md-chatbubbles:before,.ion-md-checkbox:before,.ion-md-checkbox-outline:before,.ion-md-checkmark:before,.ion-md-checkmark-circle:before,.ion-md-checkmark-circle-outline:before,.ion-md-clipboard:before,.ion-md-clock:before,.ion-md-close:before,.ion-md-close-circle:before,.ion-md-close-circle-outline:before,.ion-md-cloud:before,.ion-md-cloud-circle:before,.ion-md-cloud-done:before,.ion-md-cloud-download:before,.ion-md-cloud-outline:before,.ion-md-cloud-upload:before,.ion-md-cloudy:before,.ion-md-cloudy-night:before,.ion-md-code:before,.ion-md-code-download:before,.ion-md-code-working:before,.ion-md-cog:before,.ion-md-color-fill:before,.ion-md-color-filter:before,.ion-md-color-palette:before,.ion-md-color-wand:before,.ion-md-compass:before,.ion-md-construct:before,.ion-md-contact:before,.ion-md-contacts:before,.ion-md-contract:before,.ion-md-contrast:before,.ion-md-copy:before,.ion-md-create:before,.ion-md-crop:before,.ion-md-cube:before,.ion-md-cut:before,.ion-md-desktop:before,.ion-md-disc:before,.ion-md-document:before,.ion-md-done-all:before,.ion-md-download:before,.ion-md-easel:before,.ion-md-egg:before,.ion-md-exit:before,.ion-md-expand:before,.ion-md-eye:before,.ion-md-eye-off:before,.ion-md-fastforward:before,.ion-md-female:before,.ion-md-filing:before,.ion-md-film:before,.ion-md-finger-print:before,.ion-md-fitness:before,.ion-md-flag:before,.ion-md-flame:before,.ion-md-flash:before,.ion-md-flash-off:before,.ion-md-flashlight:before,.ion-md-flask:before,.ion-md-flower:before,.ion-md-folder:before,.ion-md-folder-open:before,.ion-md-football:before,.ion-md-funnel:before,.ion-md-gift:before,.ion-md-git-branch:before,.ion-md-git-commit:before,.ion-md-git-compare:before,.ion-md-git-merge:before,.ion-md-git-network:before,.ion-md-git-pull-request:before,.ion-md-glasses:before,.ion-md-globe:before,.ion-md-grid:before,.ion-md-hammer:before,.ion-md-hand:before,.ion-md-happy:before,.ion-md-headset:before,.ion-md-heart:before,.ion-md-heart-dislike:before,.ion-md-heart-empty:before,.ion-md-heart-half:before,.ion-md-help:before,.ion-md-help-buoy:before,.ion-md-help-circle:before,.ion-md-help-circle-outline:before,.ion-md-home:before,.ion-md-hourglass:before,.ion-md-ice-cream:before,.ion-md-image:before,.ion-md-images:before,.ion-md-infinite:before,.ion-md-information:before,.ion-md-information-circle:before,.ion-md-information-circle-outline:before,.ion-md-jet:before,.ion-md-journal:before,.ion-md-key:before,.ion-md-keypad:before,.ion-md-laptop:before,.ion-md-leaf:before,.ion-md-link:before,.ion-md-list:before,.ion-md-list-box:before,.ion-md-locate:before,.ion-md-lock:before,.ion-md-log-in:before,.ion-md-log-out:before,.ion-md-magnet:before,.ion-md-mail:before,.ion-md-mail-open:before,.ion-md-mail-unread:before,.ion-md-male:before,.ion-md-man:before,.ion-md-map:before,.ion-md-medal:before,.ion-md-medical:before,.ion-md-medkit:before,.ion-md-megaphone:before,.ion-md-menu:before,.ion-md-mic:before,.ion-md-mic-off:before,.ion-md-microphone:before,.ion-md-moon:before,.ion-md-more:before,.ion-md-move:before,.ion-md-musical-note:before,.ion-md-musical-notes:before,.ion-md-navigate:before,.ion-md-notifications:before,.ion-md-notifications-off:before,.ion-md-notifications-outline:before,.ion-md-nuclear:before,.ion-md-nutrition:before,.ion-md-open:before,.ion-md-options:before,.ion-md-outlet:before,.ion-md-paper:before,.ion-md-paper-plane:before,.ion-md-partly-sunny:before,.ion-md-pause:before,.ion-md-paw:before,.ion-md-people:before,.ion-md-person:before,.ion-md-person-add:before,.ion-md-phone-landscape:before,.ion-md-phone-portrait:before,.ion-md-photos:before,.ion-md-pie:before,.ion-md-pin:before,.ion-md-pint:before,.ion-md-pizza:before,.ion-md-planet:before,.ion-md-play:before,.ion-md-play-circle:before,.ion-md-podium:before,.ion-md-power:before,.ion-md-pricetag:before,.ion-md-pricetags:before,.ion-md-print:before,.ion-md-pulse:before,.ion-md-qr-scanner:before,.ion-md-quote:before,.ion-md-radio:before,.ion-md-radio-button-off:before,.ion-md-radio-button-on:before,.ion-md-rainy:before,.ion-md-recording:before,.ion-md-redo:before,.ion-md-refresh:before,.ion-md-refresh-circle:before,.ion-md-remove:before,.ion-md-remove-circle:before,.ion-md-remove-circle-outline:before,.ion-md-reorder:before,.ion-md-repeat:before,.ion-md-resize:before,.ion-md-restaurant:before,.ion-md-return-left:before,.ion-md-return-right:before,.ion-md-reverse-camera:before,.ion-md-rewind:before,.ion-md-ribbon:before,.ion-md-rocket:before,.ion-md-rose:before,.ion-md-sad:before,.ion-md-save:before,.ion-md-school:before,.ion-md-search:before,.ion-md-send:before,.ion-md-settings:before,.ion-md-share:before,.ion-md-share-alt:before,.ion-md-shirt:before,.ion-md-shuffle:before,.ion-md-skip-backward:before,.ion-md-skip-forward:before,.ion-md-snow:before,.ion-md-speedometer:before,.ion-md-square:before,.ion-md-square-outline:before,.ion-md-star:before,.ion-md-star-half:before,.ion-md-star-outline:before,.ion-md-stats:before,.ion-md-stopwatch:before,.ion-md-subway:before,.ion-md-sunny:before,.ion-md-swap:before,.ion-md-switch:before,.ion-md-sync:before,.ion-md-tablet-landscape:before,.ion-md-tablet-portrait:before,.ion-md-tennisball:before,.ion-md-text:before,.ion-md-thermometer:before,.ion-md-thumbs-down:before,.ion-md-thumbs-up:before,.ion-md-thunderstorm:before,.ion-md-time:before,.ion-md-timer:before,.ion-md-today:before,.ion-md-train:before,.ion-md-transgender:before,.ion-md-trash:before,.ion-md-trending-down:before,.ion-md-trending-up:before,.ion-md-trophy:before,.ion-md-tv:before,.ion-md-umbrella:before,.ion-md-undo:before,.ion-md-unlock:before,.ion-md-videocam:before,.ion-md-volume-high:before,.ion-md-volume-low:before,.ion-md-volume-mute:before,.ion-md-volume-off:before,.ion-md-walk:before,.ion-md-wallet:before,.ion-md-warning:before,.ion-md-watch:before,.ion-md-water:before,.ion-md-wifi:before,.ion-md-wine:before,.ion-md-woman:before{display:inline-block;font-family:"Ionicons";speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;text-rendering:auto;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ion-ios-add:before{content:""}.ion-ios-add-circle:before{content:""}.ion-ios-add-circle-outline:before{content:""}.ion-ios-airplane:before{content:""}.ion-ios-alarm:before{content:""}.ion-ios-albums:before{content:""}.ion-ios-alert:before{content:""}.ion-ios-american-football:before{content:""}.ion-ios-analytics:before{content:""}.ion-ios-aperture:before{content:""}.ion-ios-apps:before{content:""}.ion-ios-appstore:before{content:""}.ion-ios-archive:before{content:""}.ion-ios-arrow-back:before{content:""}.ion-ios-arrow-down:before{content:""}.ion-ios-arrow-dropdown:before{content:""}.ion-ios-arrow-dropdown-circle:before{content:""}.ion-ios-arrow-dropleft:before{content:""}.ion-ios-arrow-dropleft-circle:before{content:""}.ion-ios-arrow-dropright:before{content:""}.ion-ios-arrow-dropright-circle:before{content:""}.ion-ios-arrow-dropup:before{content:""}.ion-ios-arrow-dropup-circle:before{content:""}.ion-ios-arrow-forward:before{content:""}.ion-ios-arrow-round-back:before{content:""}.ion-ios-arrow-round-down:before{content:""}.ion-ios-arrow-round-forward:before{content:""}.ion-ios-arrow-round-up:before{content:""}.ion-ios-arrow-up:before{content:""}.ion-ios-at:before{content:""}.ion-ios-attach:before{content:""}.ion-ios-backspace:before{content:""}.ion-ios-barcode:before{content:""}.ion-ios-baseball:before{content:""}.ion-ios-basket:before{content:""}.ion-ios-basketball:before{content:""}.ion-ios-battery-charging:before{content:""}.ion-ios-battery-dead:before{content:""}.ion-ios-battery-full:before{content:""}.ion-ios-beaker:before{content:""}.ion-ios-bed:before{content:""}.ion-ios-beer:before{content:""}.ion-ios-bicycle:before{content:""}.ion-ios-bluetooth:before{content:""}.ion-ios-boat:before{content:""}.ion-ios-body:before{content:""}.ion-ios-bonfire:before{content:""}.ion-ios-book:before{content:""}.ion-ios-bookmark:before{content:""}.ion-ios-bookmarks:before{content:""}.ion-ios-bowtie:before{content:""}.ion-ios-briefcase:before{content:""}.ion-ios-browsers:before{content:""}.ion-ios-brush:before{content:""}.ion-ios-bug:before{content:""}.ion-ios-build:before{content:""}.ion-ios-bulb:before{content:""}.ion-ios-bus:before{content:""}.ion-ios-business:before{content:""}.ion-ios-cafe:before{content:""}.ion-ios-calculator:before{content:""}.ion-ios-calendar:before{content:""}.ion-ios-call:before{content:""}.ion-ios-camera:before{content:""}.ion-ios-car:before{content:""}.ion-ios-card:before{content:""}.ion-ios-cart:before{content:""}.ion-ios-cash:before{content:""}.ion-ios-cellular:before{content:""}.ion-ios-chatboxes:before{content:""}.ion-ios-chatbubbles:before{content:""}.ion-ios-checkbox:before{content:""}.ion-ios-checkbox-outline:before{content:""}.ion-ios-checkmark:before{content:""}.ion-ios-checkmark-circle:before{content:""}.ion-ios-checkmark-circle-outline:before{content:""}.ion-ios-clipboard:before{content:""}.ion-ios-clock:before{content:""}.ion-ios-close:before{content:""}.ion-ios-close-circle:before{content:""}.ion-ios-close-circle-outline:before{content:""}.ion-ios-cloud:before{content:""}.ion-ios-cloud-circle:before{content:""}.ion-ios-cloud-done:before{content:""}.ion-ios-cloud-download:before{content:""}.ion-ios-cloud-outline:before{content:""}.ion-ios-cloud-upload:before{content:""}.ion-ios-cloudy:before{content:""}.ion-ios-cloudy-night:before{content:""}.ion-ios-code:before{content:""}.ion-ios-code-download:before{content:""}.ion-ios-code-working:before{content:""}.ion-ios-cog:before{content:""}.ion-ios-color-fill:before{content:""}.ion-ios-color-filter:before{content:""}.ion-ios-color-palette:before{content:""}.ion-ios-color-wand:before{content:""}.ion-ios-compass:before{content:""}.ion-ios-construct:before{content:""}.ion-ios-contact:before{content:""}.ion-ios-contacts:before{content:""}.ion-ios-contract:before{content:""}.ion-ios-contrast:before{content:""}.ion-ios-copy:before{content:""}.ion-ios-create:before{content:""}.ion-ios-crop:before{content:""}.ion-ios-cube:before{content:""}.ion-ios-cut:before{content:""}.ion-ios-desktop:before{content:""}.ion-ios-disc:before{content:""}.ion-ios-document:before{content:""}.ion-ios-done-all:before{content:""}.ion-ios-download:before{content:""}.ion-ios-easel:before{content:""}.ion-ios-egg:before{content:""}.ion-ios-exit:before{content:""}.ion-ios-expand:before{content:""}.ion-ios-eye:before{content:""}.ion-ios-eye-off:before{content:""}.ion-ios-fastforward:before{content:""}.ion-ios-female:before{content:""}.ion-ios-filing:before{content:""}.ion-ios-film:before{content:""}.ion-ios-finger-print:before{content:""}.ion-ios-fitness:before{content:""}.ion-ios-flag:before{content:""}.ion-ios-flame:before{content:""}.ion-ios-flash:before{content:""}.ion-ios-flash-off:before{content:""}.ion-ios-flashlight:before{content:""}.ion-ios-flask:before{content:""}.ion-ios-flower:before{content:""}.ion-ios-folder:before{content:""}.ion-ios-folder-open:before{content:""}.ion-ios-football:before{content:""}.ion-ios-funnel:before{content:""}.ion-ios-gift:before{content:""}.ion-ios-git-branch:before{content:""}.ion-ios-git-commit:before{content:""}.ion-ios-git-compare:before{content:""}.ion-ios-git-merge:before{content:""}.ion-ios-git-network:before{content:""}.ion-ios-git-pull-request:before{content:""}.ion-ios-glasses:before{content:""}.ion-ios-globe:before{content:""}.ion-ios-grid:before{content:""}.ion-ios-hammer:before{content:""}.ion-ios-hand:before{content:""}.ion-ios-happy:before{content:""}.ion-ios-headset:before{content:""}.ion-ios-heart:before{content:""}.ion-ios-heart-dislike:before{content:""}.ion-ios-heart-empty:before{content:""}.ion-ios-heart-half:before{content:""}.ion-ios-help:before{content:""}.ion-ios-help-buoy:before{content:""}.ion-ios-help-circle:before{content:""}.ion-ios-help-circle-outline:before{content:""}.ion-ios-home:before{content:""}.ion-ios-hourglass:before{content:""}.ion-ios-ice-cream:before{content:""}.ion-ios-image:before{content:""}.ion-ios-images:before{content:""}.ion-ios-infinite:before{content:""}.ion-ios-information:before{content:""}.ion-ios-information-circle:before{content:""}.ion-ios-information-circle-outline:before{content:""}.ion-ios-jet:before{content:""}.ion-ios-journal:before{content:""}.ion-ios-key:before{content:""}.ion-ios-keypad:before{content:""}.ion-ios-laptop:before{content:""}.ion-ios-leaf:before{content:""}.ion-ios-link:before{content:""}.ion-ios-list:before{content:""}.ion-ios-list-box:before{content:""}.ion-ios-locate:before{content:""}.ion-ios-lock:before{content:""}.ion-ios-log-in:before{content:""}.ion-ios-log-out:before{content:""}.ion-ios-magnet:before{content:""}.ion-ios-mail:before{content:""}.ion-ios-mail-open:before{content:""}.ion-ios-mail-unread:before{content:""}.ion-ios-male:before{content:""}.ion-ios-man:before{content:""}.ion-ios-map:before{content:""}.ion-ios-medal:before{content:""}.ion-ios-medical:before{content:""}.ion-ios-medkit:before{content:""}.ion-ios-megaphone:before{content:""}.ion-ios-menu:before{content:""}.ion-ios-mic:before{content:""}.ion-ios-mic-off:before{content:""}.ion-ios-microphone:before{content:""}.ion-ios-moon:before{content:""}.ion-ios-more:before{content:""}.ion-ios-move:before{content:""}.ion-ios-musical-note:before{content:""}.ion-ios-musical-notes:before{content:""}.ion-ios-navigate:before{content:""}.ion-ios-notifications:before{content:""}.ion-ios-notifications-off:before{content:""}.ion-ios-notifications-outline:before{content:""}.ion-ios-nuclear:before{content:""}.ion-ios-nutrition:before{content:""}.ion-ios-open:before{content:""}.ion-ios-options:before{content:""}.ion-ios-outlet:before{content:""}.ion-ios-paper:before{content:""}.ion-ios-paper-plane:before{content:""}.ion-ios-partly-sunny:before{content:""}.ion-ios-pause:before{content:""}.ion-ios-paw:before{content:""}.ion-ios-people:before{content:""}.ion-ios-person:before{content:""}.ion-ios-person-add:before{content:""}.ion-ios-phone-landscape:before{content:""}.ion-ios-phone-portrait:before{content:""}.ion-ios-photos:before{content:""}.ion-ios-pie:before{content:""}.ion-ios-pin:before{content:""}.ion-ios-pint:before{content:""}.ion-ios-pizza:before{content:""}.ion-ios-planet:before{content:""}.ion-ios-play:before{content:""}.ion-ios-play-circle:before{content:""}.ion-ios-podium:before{content:""}.ion-ios-power:before{content:""}.ion-ios-pricetag:before{content:""}.ion-ios-pricetags:before{content:""}.ion-ios-print:before{content:""}.ion-ios-pulse:before{content:""}.ion-ios-qr-scanner:before{content:""}.ion-ios-quote:before{content:""}.ion-ios-radio:before{content:""}.ion-ios-radio-button-off:before{content:""}.ion-ios-radio-button-on:before{content:""}.ion-ios-rainy:before{content:""}.ion-ios-recording:before{content:""}.ion-ios-redo:before{content:""}.ion-ios-refresh:before{content:""}.ion-ios-refresh-circle:before{content:""}.ion-ios-remove:before{content:""}.ion-ios-remove-circle:before{content:""}.ion-ios-remove-circle-outline:before{content:""}.ion-ios-reorder:before{content:""}.ion-ios-repeat:before{content:""}.ion-ios-resize:before{content:""}.ion-ios-restaurant:before{content:""}.ion-ios-return-left:before{content:""}.ion-ios-return-right:before{content:""}.ion-ios-reverse-camera:before{content:""}.ion-ios-rewind:before{content:""}.ion-ios-ribbon:before{content:""}.ion-ios-rocket:before{content:""}.ion-ios-rose:before{content:""}.ion-ios-sad:before{content:""}.ion-ios-save:before{content:""}.ion-ios-school:before{content:""}.ion-ios-search:before{content:""}.ion-ios-send:before{content:""}.ion-ios-settings:before{content:""}.ion-ios-share:before{content:""}.ion-ios-share-alt:before{content:""}.ion-ios-shirt:before{content:""}.ion-ios-shuffle:before{content:""}.ion-ios-skip-backward:before{content:""}.ion-ios-skip-forward:before{content:""}.ion-ios-snow:before{content:""}.ion-ios-speedometer:before{content:""}.ion-ios-square:before{content:""}.ion-ios-square-outline:before{content:""}.ion-ios-star:before{content:""}.ion-ios-star-half:before{content:""}.ion-ios-star-outline:before{content:""}.ion-ios-stats:before{content:""}.ion-ios-stopwatch:before{content:""}.ion-ios-subway:before{content:""}.ion-ios-sunny:before{content:""}.ion-ios-swap:before{content:""}.ion-ios-switch:before{content:""}.ion-ios-sync:before{content:""}.ion-ios-tablet-landscape:before{content:""}.ion-ios-tablet-portrait:before{content:""}.ion-ios-tennisball:before{content:""}.ion-ios-text:before{content:""}.ion-ios-thermometer:before{content:""}.ion-ios-thumbs-down:before{content:""}.ion-ios-thumbs-up:before{content:""}.ion-ios-thunderstorm:before{content:""}.ion-ios-time:before{content:""}.ion-ios-timer:before{content:""}.ion-ios-today:before{content:""}.ion-ios-train:before{content:""}.ion-ios-transgender:before{content:""}.ion-ios-trash:before{content:""}.ion-ios-trending-down:before{content:""}.ion-ios-trending-up:before{content:""}.ion-ios-trophy:before{content:""}.ion-ios-tv:before{content:""}.ion-ios-umbrella:before{content:""}.ion-ios-undo:before{content:""}.ion-ios-unlock:before{content:""}.ion-ios-videocam:before{content:""}.ion-ios-volume-high:before{content:""}.ion-ios-volume-low:before{content:""}.ion-ios-volume-mute:before{content:""}.ion-ios-volume-off:before{content:""}.ion-ios-walk:before{content:""}.ion-ios-wallet:before{content:""}.ion-ios-warning:before{content:""}.ion-ios-watch:before{content:""}.ion-ios-water:before{content:""}.ion-ios-wifi:before{content:""}.ion-ios-wine:before{content:""}.ion-ios-woman:before{content:""}.ion-logo-android:before{content:""}.ion-logo-angular:before{content:""}.ion-logo-apple:before{content:""}.ion-logo-bitbucket:before{content:""}.ion-logo-bitcoin:before{content:""}.ion-logo-buffer:before{content:""}.ion-logo-chrome:before{content:""}.ion-logo-closed-captioning:before{content:""}.ion-logo-codepen:before{content:""}.ion-logo-css3:before{content:""}.ion-logo-designernews:before{content:""}.ion-logo-dribbble:before{content:""}.ion-logo-dropbox:before{content:""}.ion-logo-euro:before{content:""}.ion-logo-facebook:before{content:""}.ion-logo-flickr:before{content:""}.ion-logo-foursquare:before{content:""}.ion-logo-freebsd-devil:before{content:""}.ion-logo-game-controller-a:before{content:""}.ion-logo-game-controller-b:before{content:""}.ion-logo-github:before{content:""}.ion-logo-google:before{content:""}.ion-logo-googleplus:before{content:""}.ion-logo-hackernews:before{content:""}.ion-logo-html5:before{content:""}.ion-logo-instagram:before{content:""}.ion-logo-ionic:before{content:""}.ion-logo-ionitron:before{content:""}.ion-logo-javascript:before{content:""}.ion-logo-linkedin:before{content:""}.ion-logo-markdown:before{content:""}.ion-logo-model-s:before{content:""}.ion-logo-no-smoking:before{content:""}.ion-logo-nodejs:before{content:""}.ion-logo-npm:before{content:""}.ion-logo-octocat:before{content:""}.ion-logo-pinterest:before{content:""}.ion-logo-playstation:before{content:""}.ion-logo-polymer:before{content:""}.ion-logo-python:before{content:""}.ion-logo-reddit:before{content:""}.ion-logo-rss:before{content:""}.ion-logo-sass:before{content:""}.ion-logo-skype:before{content:""}.ion-logo-slack:before{content:""}.ion-logo-snapchat:before{content:""}.ion-logo-steam:before{content:""}.ion-logo-tumblr:before{content:""}.ion-logo-tux:before{content:""}.ion-logo-twitch:before{content:""}.ion-logo-twitter:before{content:""}.ion-logo-usd:before{content:""}.ion-logo-vimeo:before{content:""}.ion-logo-vk:before{content:""}.ion-logo-whatsapp:before{content:""}.ion-logo-windows:before{content:""}.ion-logo-wordpress:before{content:""}.ion-logo-xbox:before{content:""}.ion-logo-xing:before{content:""}.ion-logo-yahoo:before{content:""}.ion-logo-yen:before{content:""}.ion-logo-youtube:before{content:""}.ion-md-add:before{content:""}.ion-md-add-circle:before{content:""}.ion-md-add-circle-outline:before{content:""}.ion-md-airplane:before{content:""}.ion-md-alarm:before{content:""}.ion-md-albums:before{content:""}.ion-md-alert:before{content:""}.ion-md-american-football:before{content:""}.ion-md-analytics:before{content:""}.ion-md-aperture:before{content:""}.ion-md-apps:before{content:""}.ion-md-appstore:before{content:""}.ion-md-archive:before{content:""}.ion-md-arrow-back:before{content:""}.ion-md-arrow-down:before{content:""}.ion-md-arrow-dropdown:before{content:""}.ion-md-arrow-dropdown-circle:before{content:""}.ion-md-arrow-dropleft:before{content:""}.ion-md-arrow-dropleft-circle:before{content:""}.ion-md-arrow-dropright:before{content:""}.ion-md-arrow-dropright-circle:before{content:""}.ion-md-arrow-dropup:before{content:""}.ion-md-arrow-dropup-circle:before{content:""}.ion-md-arrow-forward:before{content:""}.ion-md-arrow-round-back:before{content:""}.ion-md-arrow-round-down:before{content:""}.ion-md-arrow-round-forward:before{content:""}.ion-md-arrow-round-up:before{content:""}.ion-md-arrow-up:before{content:""}.ion-md-at:before{content:""}.ion-md-attach:before{content:""}.ion-md-backspace:before{content:""}.ion-md-barcode:before{content:""}.ion-md-baseball:before{content:""}.ion-md-basket:before{content:""}.ion-md-basketball:before{content:""}.ion-md-battery-charging:before{content:""}.ion-md-battery-dead:before{content:""}.ion-md-battery-full:before{content:""}.ion-md-beaker:before{content:""}.ion-md-bed:before{content:""}.ion-md-beer:before{content:""}.ion-md-bicycle:before{content:""}.ion-md-bluetooth:before{content:""}.ion-md-boat:before{content:""}.ion-md-body:before{content:""}.ion-md-bonfire:before{content:""}.ion-md-book:before{content:""}.ion-md-bookmark:before{content:""}.ion-md-bookmarks:before{content:""}.ion-md-bowtie:before{content:""}.ion-md-briefcase:before{content:""}.ion-md-browsers:before{content:""}.ion-md-brush:before{content:""}.ion-md-bug:before{content:""}.ion-md-build:before{content:""}.ion-md-bulb:before{content:""}.ion-md-bus:before{content:""}.ion-md-business:before{content:""}.ion-md-cafe:before{content:""}.ion-md-calculator:before{content:""}.ion-md-calendar:before{content:""}.ion-md-call:before{content:""}.ion-md-camera:before{content:""}.ion-md-car:before{content:""}.ion-md-card:before{content:""}.ion-md-cart:before{content:""}.ion-md-cash:before{content:""}.ion-md-cellular:before{content:""}.ion-md-chatboxes:before{content:""}.ion-md-chatbubbles:before{content:""}.ion-md-checkbox:before{content:""}.ion-md-checkbox-outline:before{content:""}.ion-md-checkmark:before{content:""}.ion-md-checkmark-circle:before{content:""}.ion-md-checkmark-circle-outline:before{content:""}.ion-md-clipboard:before{content:""}.ion-md-clock:before{content:""}.ion-md-close:before{content:""}.ion-md-close-circle:before{content:""}.ion-md-close-circle-outline:before{content:""}.ion-md-cloud:before{content:""}.ion-md-cloud-circle:before{content:""}.ion-md-cloud-done:before{content:""}.ion-md-cloud-download:before{content:""}.ion-md-cloud-outline:before{content:""}.ion-md-cloud-upload:before{content:""}.ion-md-cloudy:before{content:""}.ion-md-cloudy-night:before{content:""}.ion-md-code:before{content:""}.ion-md-code-download:before{content:""}.ion-md-code-working:before{content:""}.ion-md-cog:before{content:""}.ion-md-color-fill:before{content:""}.ion-md-color-filter:before{content:""}.ion-md-color-palette:before{content:""}.ion-md-color-wand:before{content:""}.ion-md-compass:before{content:""}.ion-md-construct:before{content:""}.ion-md-contact:before{content:""}.ion-md-contacts:before{content:""}.ion-md-contract:before{content:""}.ion-md-contrast:before{content:""}.ion-md-copy:before{content:""}.ion-md-create:before{content:""}.ion-md-crop:before{content:""}.ion-md-cube:before{content:""}.ion-md-cut:before{content:""}.ion-md-desktop:before{content:""}.ion-md-disc:before{content:""}.ion-md-document:before{content:""}.ion-md-done-all:before{content:""}.ion-md-download:before{content:""}.ion-md-easel:before{content:""}.ion-md-egg:before{content:""}.ion-md-exit:before{content:""}.ion-md-expand:before{content:""}.ion-md-eye:before{content:""}.ion-md-eye-off:before{content:""}.ion-md-fastforward:before{content:""}.ion-md-female:before{content:""}.ion-md-filing:before{content:""}.ion-md-film:before{content:""}.ion-md-finger-print:before{content:""}.ion-md-fitness:before{content:""}.ion-md-flag:before{content:""}.ion-md-flame:before{content:""}.ion-md-flash:before{content:""}.ion-md-flash-off:before{content:""}.ion-md-flashlight:before{content:""}.ion-md-flask:before{content:""}.ion-md-flower:before{content:""}.ion-md-folder:before{content:""}.ion-md-folder-open:before{content:""}.ion-md-football:before{content:""}.ion-md-funnel:before{content:""}.ion-md-gift:before{content:""}.ion-md-git-branch:before{content:""}.ion-md-git-commit:before{content:""}.ion-md-git-compare:before{content:""}.ion-md-git-merge:before{content:""}.ion-md-git-network:before{content:""}.ion-md-git-pull-request:before{content:""}.ion-md-glasses:before{content:""}.ion-md-globe:before{content:""}.ion-md-grid:before{content:""}.ion-md-hammer:before{content:""}.ion-md-hand:before{content:""}.ion-md-happy:before{content:""}.ion-md-headset:before{content:""}.ion-md-heart:before{content:""}.ion-md-heart-dislike:before{content:""}.ion-md-heart-empty:before{content:""}.ion-md-heart-half:before{content:""}.ion-md-help:before{content:""}.ion-md-help-buoy:before{content:""}.ion-md-help-circle:before{content:""}.ion-md-help-circle-outline:before{content:""}.ion-md-home:before{content:""}.ion-md-hourglass:before{content:""}.ion-md-ice-cream:before{content:""}.ion-md-image:before{content:""}.ion-md-images:before{content:""}.ion-md-infinite:before{content:""}.ion-md-information:before{content:""}.ion-md-information-circle:before{content:""}.ion-md-information-circle-outline:before{content:""}.ion-md-jet:before{content:""}.ion-md-journal:before{content:""}.ion-md-key:before{content:""}.ion-md-keypad:before{content:""}.ion-md-laptop:before{content:""}.ion-md-leaf:before{content:""}.ion-md-link:before{content:""}.ion-md-list:before{content:""}.ion-md-list-box:before{content:""}.ion-md-locate:before{content:""}.ion-md-lock:before{content:""}.ion-md-log-in:before{content:""}.ion-md-log-out:before{content:""}.ion-md-magnet:before{content:""}.ion-md-mail:before{content:""}.ion-md-mail-open:before{content:""}.ion-md-mail-unread:before{content:""}.ion-md-male:before{content:""}.ion-md-man:before{content:""}.ion-md-map:before{content:""}.ion-md-medal:before{content:""}.ion-md-medical:before{content:""}.ion-md-medkit:before{content:""}.ion-md-megaphone:before{content:""}.ion-md-menu:before{content:""}.ion-md-mic:before{content:""}.ion-md-mic-off:before{content:""}.ion-md-microphone:before{content:""}.ion-md-moon:before{content:""}.ion-md-more:before{content:""}.ion-md-move:before{content:""}.ion-md-musical-note:before{content:""}.ion-md-musical-notes:before{content:""}.ion-md-navigate:before{content:""}.ion-md-notifications:before{content:""}.ion-md-notifications-off:before{content:""}.ion-md-notifications-outline:before{content:""}.ion-md-nuclear:before{content:""}.ion-md-nutrition:before{content:""}.ion-md-open:before{content:""}.ion-md-options:before{content:""}.ion-md-outlet:before{content:""}.ion-md-paper:before{content:""}.ion-md-paper-plane:before{content:""}.ion-md-partly-sunny:before{content:""}.ion-md-pause:before{content:""}.ion-md-paw:before{content:""}.ion-md-people:before{content:""}.ion-md-person:before{content:""}.ion-md-person-add:before{content:""}.ion-md-phone-landscape:before{content:""}.ion-md-phone-portrait:before{content:""}.ion-md-photos:before{content:""}.ion-md-pie:before{content:""}.ion-md-pin:before{content:""}.ion-md-pint:before{content:""}.ion-md-pizza:before{content:""}.ion-md-planet:before{content:""}.ion-md-play:before{content:""}.ion-md-play-circle:before{content:""}.ion-md-podium:before{content:""}.ion-md-power:before{content:""}.ion-md-pricetag:before{content:""}.ion-md-pricetags:before{content:""}.ion-md-print:before{content:""}.ion-md-pulse:before{content:""}.ion-md-qr-scanner:before{content:""}.ion-md-quote:before{content:""}.ion-md-radio:before{content:""}.ion-md-radio-button-off:before{content:""}.ion-md-radio-button-on:before{content:""}.ion-md-rainy:before{content:""}.ion-md-recording:before{content:""}.ion-md-redo:before{content:""}.ion-md-refresh:before{content:""}.ion-md-refresh-circle:before{content:""}.ion-md-remove:before{content:""}.ion-md-remove-circle:before{content:""}.ion-md-remove-circle-outline:before{content:""}.ion-md-reorder:before{content:""}.ion-md-repeat:before{content:""}.ion-md-resize:before{content:""}.ion-md-restaurant:before{content:""}.ion-md-return-left:before{content:""}.ion-md-return-right:before{content:""}.ion-md-reverse-camera:before{content:""}.ion-md-rewind:before{content:""}.ion-md-ribbon:before{content:""}.ion-md-rocket:before{content:""}.ion-md-rose:before{content:""}.ion-md-sad:before{content:""}.ion-md-save:before{content:""}.ion-md-school:before{content:""}.ion-md-search:before{content:""}.ion-md-send:before{content:""}.ion-md-settings:before{content:""}.ion-md-share:before{content:""}.ion-md-share-alt:before{content:""}.ion-md-shirt:before{content:""}.ion-md-shuffle:before{content:""}.ion-md-skip-backward:before{content:""}.ion-md-skip-forward:before{content:""}.ion-md-snow:before{content:""}.ion-md-speedometer:before{content:""}.ion-md-square:before{content:""}.ion-md-square-outline:before{content:""}.ion-md-star:before{content:""}.ion-md-star-half:before{content:""}.ion-md-star-outline:before{content:""}.ion-md-stats:before{content:""}.ion-md-stopwatch:before{content:""}.ion-md-subway:before{content:""}.ion-md-sunny:before{content:""}.ion-md-swap:before{content:""}.ion-md-switch:before{content:""}.ion-md-sync:before{content:""}.ion-md-tablet-landscape:before{content:""}.ion-md-tablet-portrait:before{content:""}.ion-md-tennisball:before{content:""}.ion-md-text:before{content:""}.ion-md-thermometer:before{content:""}.ion-md-thumbs-down:before{content:""}.ion-md-thumbs-up:before{content:""}.ion-md-thunderstorm:before{content:""}.ion-md-time:before{content:""}.ion-md-timer:before{content:""}.ion-md-today:before{content:""}.ion-md-train:before{content:""}.ion-md-transgender:before{content:""}.ion-md-trash:before{content:""}.ion-md-trending-down:before{content:""}.ion-md-trending-up:before{content:""}.ion-md-trophy:before{content:""}.ion-md-tv:before{content:""}.ion-md-umbrella:before{content:""}.ion-md-undo:before{content:""}.ion-md-unlock:before{content:""}.ion-md-videocam:before{content:""}.ion-md-volume-high:before{content:""}.ion-md-volume-low:before{content:""}.ion-md-volume-mute:before{content:""}.ion-md-volume-off:before{content:""}.ion-md-walk:before{content:""}.ion-md-wallet:before{content:""}.ion-md-warning:before{content:""}.ion-md-watch:before{content:""}.ion-md-water:before{content:""}.ion-md-wifi:before{content:""}.ion-md-wine:before{content:""}.ion-md-woman:before{content:""} \ No newline at end of file diff --git a/wwwroot/vendor/open-iconic.css b/wwwroot/vendor/open-iconic.css deleted file mode 100644 index 301a138..0000000 --- a/wwwroot/vendor/open-iconic.css +++ /dev/null @@ -1,511 +0,0 @@ - -@font-face { - font-family: 'Icons'; - src: url('../fonts/open-iconic.eot'); - src: url('../fonts/open-iconic.eot?#iconic-sm') format('embedded-opentype'), url('../fonts/open-iconic.woff') format('woff'), url('../fonts/open-iconic.ttf') format('truetype'), url('../fonts/open-iconic.otf') format('opentype'), url('../fonts/open-iconic.svg#iconic-sm') format('svg'); - font-weight: normal; - font-style: normal; -} - -.oi[data-glyph].oi-text-replace { - font-size: 0; - line-height: 0; -} - -.oi[data-glyph].oi-text-replace:before { - width: 1em; - text-align: center; -} - -.oi[data-glyph]:before { - font-family: 'Icons'; - display: inline-block; - speak: none; - line-height: 1; - vertical-align: baseline; - font-weight: normal; - font-style: normal; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.oi[data-glyph]:empty:before { - width: 1em; - text-align: center; - box-sizing: content-box; -} - -.oi[data-glyph].oi-align-left:before { - text-align: left; -} - -.oi[data-glyph].oi-align-right:before { - text-align: right; -} - -.oi[data-glyph].oi-align-center:before { - text-align: center; -} - -.oi[data-glyph].oi-flip-horizontal:before { - -webkit-transform: scale(-1, 1); - -ms-transform: scale(-1, 1); - transform: scale(-1, 1); -} -.oi[data-glyph].oi-flip-vertical:before { - -webkit-transform: scale(1, -1); - -ms-transform: scale(-1, 1); - transform: scale(1, -1); -} -.oi[data-glyph].oi-flip-horizontal-vertical:before { - -webkit-transform: scale(-1, -1); - -ms-transform: scale(-1, 1); - transform: scale(-1, -1); -} - - -.oi[data-glyph=account-login]:before { content:'\e000'; } - -.oi[data-glyph=account-logout]:before { content:'\e001'; } - -.oi[data-glyph=action-redo]:before { content:'\e002'; } - -.oi[data-glyph=action-undo]:before { content:'\e003'; } - -.oi[data-glyph=align-center]:before { content:'\e004'; } - -.oi[data-glyph=align-left]:before { content:'\e005'; } - -.oi[data-glyph=align-right]:before { content:'\e006'; } - -.oi[data-glyph=aperture]:before { content:'\e007'; } - -.oi[data-glyph=arrow-bottom]:before { content:'\e008'; } - -.oi[data-glyph=arrow-circle-bottom]:before { content:'\e009'; } - -.oi[data-glyph=arrow-circle-left]:before { content:'\e00a'; } - -.oi[data-glyph=arrow-circle-right]:before { content:'\e00b'; } - -.oi[data-glyph=arrow-circle-top]:before { content:'\e00c'; } - -.oi[data-glyph=arrow-left]:before { content:'\e00d'; } - -.oi[data-glyph=arrow-right]:before { content:'\e00e'; } - -.oi[data-glyph=arrow-thick-bottom]:before { content:'\e00f'; } - -.oi[data-glyph=arrow-thick-left]:before { content:'\e010'; } - -.oi[data-glyph=arrow-thick-right]:before { content:'\e011'; } - -.oi[data-glyph=arrow-thick-top]:before { content:'\e012'; } - -.oi[data-glyph=arrow-top]:before { content:'\e013'; } - -.oi[data-glyph=audio-spectrum]:before { content:'\e014'; } - -.oi[data-glyph=audio]:before { content:'\e015'; } - -.oi[data-glyph=badge]:before { content:'\e016'; } - -.oi[data-glyph=ban]:before { content:'\e017'; } - -.oi[data-glyph=bar-chart]:before { content:'\e018'; } - -.oi[data-glyph=basket]:before { content:'\e019'; } - -.oi[data-glyph=battery-empty]:before { content:'\e01a'; } - -.oi[data-glyph=battery-full]:before { content:'\e01b'; } - -.oi[data-glyph=beaker]:before { content:'\e01c'; } - -.oi[data-glyph=bell]:before { content:'\e01d'; } - -.oi[data-glyph=bluetooth]:before { content:'\e01e'; } - -.oi[data-glyph=bold]:before { content:'\e01f'; } - -.oi[data-glyph=bolt]:before { content:'\e020'; } - -.oi[data-glyph=book]:before { content:'\e021'; } - -.oi[data-glyph=bookmark]:before { content:'\e022'; } - -.oi[data-glyph=box]:before { content:'\e023'; } - -.oi[data-glyph=briefcase]:before { content:'\e024'; } - -.oi[data-glyph=british-pound]:before { content:'\e025'; } - -.oi[data-glyph=browser]:before { content:'\e026'; } - -.oi[data-glyph=brush]:before { content:'\e027'; } - -.oi[data-glyph=bug]:before { content:'\e028'; } - -.oi[data-glyph=bullhorn]:before { content:'\e029'; } - -.oi[data-glyph=calculator]:before { content:'\e02a'; } - -.oi[data-glyph=calendar]:before { content:'\e02b'; } - -.oi[data-glyph=camera-slr]:before { content:'\e02c'; } - -.oi[data-glyph=caret-bottom]:before { content:'\e02d'; } - -.oi[data-glyph=caret-left]:before { content:'\e02e'; } - -.oi[data-glyph=caret-right]:before { content:'\e02f'; } - -.oi[data-glyph=caret-top]:before { content:'\e030'; } - -.oi[data-glyph=cart]:before { content:'\e031'; } - -.oi[data-glyph=chat]:before { content:'\e032'; } - -.oi[data-glyph=check]:before { content:'\e033'; } - -.oi[data-glyph=chevron-bottom]:before { content:'\e034'; } - -.oi[data-glyph=chevron-left]:before { content:'\e035'; } - -.oi[data-glyph=chevron-right]:before { content:'\e036'; } - -.oi[data-glyph=chevron-top]:before { content:'\e037'; } - -.oi[data-glyph=circle-check]:before { content:'\e038'; } - -.oi[data-glyph=circle-x]:before { content:'\e039'; } - -.oi[data-glyph=clipboard]:before { content:'\e03a'; } - -.oi[data-glyph=clock]:before { content:'\e03b'; } - -.oi[data-glyph=cloud-download]:before { content:'\e03c'; } - -.oi[data-glyph=cloud-upload]:before { content:'\e03d'; } - -.oi[data-glyph=cloud]:before { content:'\e03e'; } - -.oi[data-glyph=cloudy]:before { content:'\e03f'; } - -.oi[data-glyph=code]:before { content:'\e040'; } - -.oi[data-glyph=cog]:before { content:'\e041'; } - -.oi[data-glyph=collapse-down]:before { content:'\e042'; } - -.oi[data-glyph=collapse-left]:before { content:'\e043'; } - -.oi[data-glyph=collapse-right]:before { content:'\e044'; } - -.oi[data-glyph=collapse-up]:before { content:'\e045'; } - -.oi[data-glyph=command]:before { content:'\e046'; } - -.oi[data-glyph=comment-square]:before { content:'\e047'; } - -.oi[data-glyph=compass]:before { content:'\e048'; } - -.oi[data-glyph=contrast]:before { content:'\e049'; } - -.oi[data-glyph=copywriting]:before { content:'\e04a'; } - -.oi[data-glyph=credit-card]:before { content:'\e04b'; } - -.oi[data-glyph=crop]:before { content:'\e04c'; } - -.oi[data-glyph=dashboard]:before { content:'\e04d'; } - -.oi[data-glyph=data-transfer-download]:before { content:'\e04e'; } - -.oi[data-glyph=data-transfer-upload]:before { content:'\e04f'; } - -.oi[data-glyph=delete]:before { content:'\e050'; } - -.oi[data-glyph=dial]:before { content:'\e051'; } - -.oi[data-glyph=document]:before { content:'\e052'; } - -.oi[data-glyph=dollar]:before { content:'\e053'; } - -.oi[data-glyph=double-quote-sans-left]:before { content:'\e054'; } - -.oi[data-glyph=double-quote-sans-right]:before { content:'\e055'; } - -.oi[data-glyph=double-quote-serif-left]:before { content:'\e056'; } - -.oi[data-glyph=double-quote-serif-right]:before { content:'\e057'; } - -.oi[data-glyph=droplet]:before { content:'\e058'; } - -.oi[data-glyph=eject]:before { content:'\e059'; } - -.oi[data-glyph=elevator]:before { content:'\e05a'; } - -.oi[data-glyph=ellipses]:before { content:'\e05b'; } - -.oi[data-glyph=envelope-closed]:before { content:'\e05c'; } - -.oi[data-glyph=envelope-open]:before { content:'\e05d'; } - -.oi[data-glyph=euro]:before { content:'\e05e'; } - -.oi[data-glyph=excerpt]:before { content:'\e05f'; } - -.oi[data-glyph=expand-down]:before { content:'\e060'; } - -.oi[data-glyph=expand-left]:before { content:'\e061'; } - -.oi[data-glyph=expand-right]:before { content:'\e062'; } - -.oi[data-glyph=expand-up]:before { content:'\e063'; } - -.oi[data-glyph=external-link]:before { content:'\e064'; } - -.oi[data-glyph=eye]:before { content:'\e065'; } - -.oi[data-glyph=eyedropper]:before { content:'\e066'; } - -.oi[data-glyph=file]:before { content:'\e067'; } - -.oi[data-glyph=fire]:before { content:'\e068'; } - -.oi[data-glyph=flag]:before { content:'\e069'; } - -.oi[data-glyph=flash]:before { content:'\e06a'; } - -.oi[data-glyph=folder]:before { content:'\e06b'; } - -.oi[data-glyph=fork]:before { content:'\e06c'; } - -.oi[data-glyph=fullscreen-enter]:before { content:'\e06d'; } - -.oi[data-glyph=fullscreen-exit]:before { content:'\e06e'; } - -.oi[data-glyph=globe]:before { content:'\e06f'; } - -.oi[data-glyph=graph]:before { content:'\e070'; } - -.oi[data-glyph=grid-four-up]:before { content:'\e071'; } - -.oi[data-glyph=grid-three-up]:before { content:'\e072'; } - -.oi[data-glyph=grid-two-up]:before { content:'\e073'; } - -.oi[data-glyph=hard-drive]:before { content:'\e074'; } - -.oi[data-glyph=header]:before { content:'\e075'; } - -.oi[data-glyph=headphones]:before { content:'\e076'; } - -.oi[data-glyph=heart]:before { content:'\e077'; } - -.oi[data-glyph=home]:before { content:'\e078'; } - -.oi[data-glyph=image]:before { content:'\e079'; } - -.oi[data-glyph=inbox]:before { content:'\e07a'; } - -.oi[data-glyph=infinity]:before { content:'\e07b'; } - -.oi[data-glyph=info]:before { content:'\e07c'; } - -.oi[data-glyph=italic]:before { content:'\e07d'; } - -.oi[data-glyph=justify-center]:before { content:'\e07e'; } - -.oi[data-glyph=justify-left]:before { content:'\e07f'; } - -.oi[data-glyph=justify-right]:before { content:'\e080'; } - -.oi[data-glyph=key]:before { content:'\e081'; } - -.oi[data-glyph=laptop]:before { content:'\e082'; } - -.oi[data-glyph=layers]:before { content:'\e083'; } - -.oi[data-glyph=lightbulb]:before { content:'\e084'; } - -.oi[data-glyph=link-broken]:before { content:'\e085'; } - -.oi[data-glyph=link-intact]:before { content:'\e086'; } - -.oi[data-glyph=list-rich]:before { content:'\e087'; } - -.oi[data-glyph=list]:before { content:'\e088'; } - -.oi[data-glyph=location]:before { content:'\e089'; } - -.oi[data-glyph=lock-locked]:before { content:'\e08a'; } - -.oi[data-glyph=lock-unlocked]:before { content:'\e08b'; } - -.oi[data-glyph=loop-circular]:before { content:'\e08c'; } - -.oi[data-glyph=loop-square]:before { content:'\e08d'; } - -.oi[data-glyph=loop]:before { content:'\e08e'; } - -.oi[data-glyph=magnifying-glass]:before { content:'\e08f'; } - -.oi[data-glyph=map-marker]:before { content:'\e090'; } - -.oi[data-glyph=map]:before { content:'\e091'; } - -.oi[data-glyph=media-pause]:before { content:'\e092'; } - -.oi[data-glyph=media-play]:before { content:'\e093'; } - -.oi[data-glyph=media-record]:before { content:'\e094'; } - -.oi[data-glyph=media-skip-backward]:before { content:'\e095'; } - -.oi[data-glyph=media-skip-forward]:before { content:'\e096'; } - -.oi[data-glyph=media-step-backward]:before { content:'\e097'; } - -.oi[data-glyph=media-step-forward]:before { content:'\e098'; } - -.oi[data-glyph=media-stop]:before { content:'\e099'; } - -.oi[data-glyph=medical-cross]:before { content:'\e09a'; } - -.oi[data-glyph=menu]:before { content:'\e09b'; } - -.oi[data-glyph=microphone]:before { content:'\e09c'; } - -.oi[data-glyph=minus]:before { content:'\e09d'; } - -.oi[data-glyph=monitor]:before { content:'\e09e'; } - -.oi[data-glyph=moon]:before { content:'\e09f'; } - -.oi[data-glyph=move]:before { content:'\e0a0'; } - -.oi[data-glyph=musical-note]:before { content:'\e0a1'; } - -.oi[data-glyph=paperclip]:before { content:'\e0a2'; } - -.oi[data-glyph=pencil]:before { content:'\e0a3'; } - -.oi[data-glyph=people]:before { content:'\e0a4'; } - -.oi[data-glyph=person]:before { content:'\e0a5'; } - -.oi[data-glyph=phone]:before { content:'\e0a6'; } - -.oi[data-glyph=pie-chart]:before { content:'\e0a7'; } - -.oi[data-glyph=pin]:before { content:'\e0a8'; } - -.oi[data-glyph=play-circle]:before { content:'\e0a9'; } - -.oi[data-glyph=plus]:before { content:'\e0aa'; } - -.oi[data-glyph=power-standby]:before { content:'\e0ab'; } - -.oi[data-glyph=print]:before { content:'\e0ac'; } - -.oi[data-glyph=project]:before { content:'\e0ad'; } - -.oi[data-glyph=pulse]:before { content:'\e0ae'; } - -.oi[data-glyph=puzzle-piece]:before { content:'\e0af'; } - -.oi[data-glyph=question-mark]:before { content:'\e0b0'; } - -.oi[data-glyph=rain]:before { content:'\e0b1'; } - -.oi[data-glyph=random]:before { content:'\e0b2'; } - -.oi[data-glyph=reload]:before { content:'\e0b3'; } - -.oi[data-glyph=resize-both]:before { content:'\e0b4'; } - -.oi[data-glyph=resize-height]:before { content:'\e0b5'; } - -.oi[data-glyph=resize-width]:before { content:'\e0b6'; } - -.oi[data-glyph=rss-alt]:before { content:'\e0b7'; } - -.oi[data-glyph=rss]:before { content:'\e0b8'; } - -.oi[data-glyph=script]:before { content:'\e0b9'; } - -.oi[data-glyph=share-boxed]:before { content:'\e0ba'; } - -.oi[data-glyph=share]:before { content:'\e0bb'; } - -.oi[data-glyph=shield]:before { content:'\e0bc'; } - -.oi[data-glyph=signal]:before { content:'\e0bd'; } - -.oi[data-glyph=signpost]:before { content:'\e0be'; } - -.oi[data-glyph=sort-ascending]:before { content:'\e0bf'; } - -.oi[data-glyph=sort-descending]:before { content:'\e0c0'; } - -.oi[data-glyph=spreadsheet]:before { content:'\e0c1'; } - -.oi[data-glyph=star]:before { content:'\e0c2'; } - -.oi[data-glyph=sun]:before { content:'\e0c3'; } - -.oi[data-glyph=tablet]:before { content:'\e0c4'; } - -.oi[data-glyph=tag]:before { content:'\e0c5'; } - -.oi[data-glyph=tags]:before { content:'\e0c6'; } - -.oi[data-glyph=target]:before { content:'\e0c7'; } - -.oi[data-glyph=task]:before { content:'\e0c8'; } - -.oi[data-glyph=terminal]:before { content:'\e0c9'; } - -.oi[data-glyph=text]:before { content:'\e0ca'; } - -.oi[data-glyph=thumb-down]:before { content:'\e0cb'; } - -.oi[data-glyph=thumb-up]:before { content:'\e0cc'; } - -.oi[data-glyph=timer]:before { content:'\e0cd'; } - -.oi[data-glyph=transfer]:before { content:'\e0ce'; } - -.oi[data-glyph=trash]:before { content:'\e0cf'; } - -.oi[data-glyph=underline]:before { content:'\e0d0'; } - -.oi[data-glyph=vertical-align-bottom]:before { content:'\e0d1'; } - -.oi[data-glyph=vertical-align-center]:before { content:'\e0d2'; } - -.oi[data-glyph=vertical-align-top]:before { content:'\e0d3'; } - -.oi[data-glyph=video]:before { content:'\e0d4'; } - -.oi[data-glyph=volume-high]:before { content:'\e0d5'; } - -.oi[data-glyph=volume-low]:before { content:'\e0d6'; } - -.oi[data-glyph=volume-off]:before { content:'\e0d7'; } - -.oi[data-glyph=warning]:before { content:'\e0d8'; } - -.oi[data-glyph=wifi]:before { content:'\e0d9'; } - -.oi[data-glyph=wrench]:before { content:'\e0da'; } - -.oi[data-glyph=x]:before { content:'\e0db'; } - -.oi[data-glyph=yen]:before { content:'\e0dc'; } - -.oi[data-glyph=zoom-in]:before { content:'\e0dd'; } - -.oi[data-glyph=zoom-out]:before { content:'\e0de'; } diff --git a/wwwroot/vendor/open-iconic.min.css b/wwwroot/vendor/open-iconic.min.css deleted file mode 100644 index 1f6afb8..0000000 --- a/wwwroot/vendor/open-iconic.min.css +++ /dev/null @@ -1 +0,0 @@ -@font-face{font-family:Icons;src:url(../fonts/open-iconic.eot);src:url(../fonts/open-iconic.eot?#iconic-sm) format('embedded-opentype'),url(../fonts/open-iconic.woff) format('woff'),url(../fonts/open-iconic.ttf) format('truetype'),url(../fonts/open-iconic.otf) format('opentype'),url(../fonts/open-iconic.svg#iconic-sm) format('svg');font-weight:400;font-style:normal}.oi[data-glyph].oi-text-replace{font-size:0;line-height:0}.oi[data-glyph].oi-text-replace:before{width:1em;text-align:center}.oi[data-glyph]:before{font-family:Icons;display:inline-block;speak:none;line-height:1;vertical-align:baseline;font-weight:400;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.oi[data-glyph]:empty:before{width:1em;text-align:center;box-sizing:content-box}.oi[data-glyph].oi-align-left:before{text-align:left}.oi[data-glyph].oi-align-right:before{text-align:right}.oi[data-glyph].oi-align-center:before{text-align:center}.oi[data-glyph].oi-flip-horizontal:before{-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.oi[data-glyph].oi-flip-vertical:before{-webkit-transform:scale(1,-1);-ms-transform:scale(-1,1);transform:scale(1,-1)}.oi[data-glyph].oi-flip-horizontal-vertical:before{-webkit-transform:scale(-1,-1);-ms-transform:scale(-1,1);transform:scale(-1,-1)}.oi[data-glyph=account-login]:before{content:'\e000'}.oi[data-glyph=account-logout]:before{content:'\e001'}.oi[data-glyph=action-redo]:before{content:'\e002'}.oi[data-glyph=action-undo]:before{content:'\e003'}.oi[data-glyph=align-center]:before{content:'\e004'}.oi[data-glyph=align-left]:before{content:'\e005'}.oi[data-glyph=align-right]:before{content:'\e006'}.oi[data-glyph=aperture]:before{content:'\e007'}.oi[data-glyph=arrow-bottom]:before{content:'\e008'}.oi[data-glyph=arrow-circle-bottom]:before{content:'\e009'}.oi[data-glyph=arrow-circle-left]:before{content:'\e00a'}.oi[data-glyph=arrow-circle-right]:before{content:'\e00b'}.oi[data-glyph=arrow-circle-top]:before{content:'\e00c'}.oi[data-glyph=arrow-left]:before{content:'\e00d'}.oi[data-glyph=arrow-right]:before{content:'\e00e'}.oi[data-glyph=arrow-thick-bottom]:before{content:'\e00f'}.oi[data-glyph=arrow-thick-left]:before{content:'\e010'}.oi[data-glyph=arrow-thick-right]:before{content:'\e011'}.oi[data-glyph=arrow-thick-top]:before{content:'\e012'}.oi[data-glyph=arrow-top]:before{content:'\e013'}.oi[data-glyph=audio-spectrum]:before{content:'\e014'}.oi[data-glyph=audio]:before{content:'\e015'}.oi[data-glyph=badge]:before{content:'\e016'}.oi[data-glyph=ban]:before{content:'\e017'}.oi[data-glyph=bar-chart]:before{content:'\e018'}.oi[data-glyph=basket]:before{content:'\e019'}.oi[data-glyph=battery-empty]:before{content:'\e01a'}.oi[data-glyph=battery-full]:before{content:'\e01b'}.oi[data-glyph=beaker]:before{content:'\e01c'}.oi[data-glyph=bell]:before{content:'\e01d'}.oi[data-glyph=bluetooth]:before{content:'\e01e'}.oi[data-glyph=bold]:before{content:'\e01f'}.oi[data-glyph=bolt]:before{content:'\e020'}.oi[data-glyph=book]:before{content:'\e021'}.oi[data-glyph=bookmark]:before{content:'\e022'}.oi[data-glyph=box]:before{content:'\e023'}.oi[data-glyph=briefcase]:before{content:'\e024'}.oi[data-glyph=british-pound]:before{content:'\e025'}.oi[data-glyph=browser]:before{content:'\e026'}.oi[data-glyph=brush]:before{content:'\e027'}.oi[data-glyph=bug]:before{content:'\e028'}.oi[data-glyph=bullhorn]:before{content:'\e029'}.oi[data-glyph=calculator]:before{content:'\e02a'}.oi[data-glyph=calendar]:before{content:'\e02b'}.oi[data-glyph=camera-slr]:before{content:'\e02c'}.oi[data-glyph=caret-bottom]:before{content:'\e02d'}.oi[data-glyph=caret-left]:before{content:'\e02e'}.oi[data-glyph=caret-right]:before{content:'\e02f'}.oi[data-glyph=caret-top]:before{content:'\e030'}.oi[data-glyph=cart]:before{content:'\e031'}.oi[data-glyph=chat]:before{content:'\e032'}.oi[data-glyph=check]:before{content:'\e033'}.oi[data-glyph=chevron-bottom]:before{content:'\e034'}.oi[data-glyph=chevron-left]:before{content:'\e035'}.oi[data-glyph=chevron-right]:before{content:'\e036'}.oi[data-glyph=chevron-top]:before{content:'\e037'}.oi[data-glyph=circle-check]:before{content:'\e038'}.oi[data-glyph=circle-x]:before{content:'\e039'}.oi[data-glyph=clipboard]:before{content:'\e03a'}.oi[data-glyph=clock]:before{content:'\e03b'}.oi[data-glyph=cloud-download]:before{content:'\e03c'}.oi[data-glyph=cloud-upload]:before{content:'\e03d'}.oi[data-glyph=cloud]:before{content:'\e03e'}.oi[data-glyph=cloudy]:before{content:'\e03f'}.oi[data-glyph=code]:before{content:'\e040'}.oi[data-glyph=cog]:before{content:'\e041'}.oi[data-glyph=collapse-down]:before{content:'\e042'}.oi[data-glyph=collapse-left]:before{content:'\e043'}.oi[data-glyph=collapse-right]:before{content:'\e044'}.oi[data-glyph=collapse-up]:before{content:'\e045'}.oi[data-glyph=command]:before{content:'\e046'}.oi[data-glyph=comment-square]:before{content:'\e047'}.oi[data-glyph=compass]:before{content:'\e048'}.oi[data-glyph=contrast]:before{content:'\e049'}.oi[data-glyph=copywriting]:before{content:'\e04a'}.oi[data-glyph=credit-card]:before{content:'\e04b'}.oi[data-glyph=crop]:before{content:'\e04c'}.oi[data-glyph=dashboard]:before{content:'\e04d'}.oi[data-glyph=data-transfer-download]:before{content:'\e04e'}.oi[data-glyph=data-transfer-upload]:before{content:'\e04f'}.oi[data-glyph=delete]:before{content:'\e050'}.oi[data-glyph=dial]:before{content:'\e051'}.oi[data-glyph=document]:before{content:'\e052'}.oi[data-glyph=dollar]:before{content:'\e053'}.oi[data-glyph=double-quote-sans-left]:before{content:'\e054'}.oi[data-glyph=double-quote-sans-right]:before{content:'\e055'}.oi[data-glyph=double-quote-serif-left]:before{content:'\e056'}.oi[data-glyph=double-quote-serif-right]:before{content:'\e057'}.oi[data-glyph=droplet]:before{content:'\e058'}.oi[data-glyph=eject]:before{content:'\e059'}.oi[data-glyph=elevator]:before{content:'\e05a'}.oi[data-glyph=ellipses]:before{content:'\e05b'}.oi[data-glyph=envelope-closed]:before{content:'\e05c'}.oi[data-glyph=envelope-open]:before{content:'\e05d'}.oi[data-glyph=euro]:before{content:'\e05e'}.oi[data-glyph=excerpt]:before{content:'\e05f'}.oi[data-glyph=expand-down]:before{content:'\e060'}.oi[data-glyph=expand-left]:before{content:'\e061'}.oi[data-glyph=expand-right]:before{content:'\e062'}.oi[data-glyph=expand-up]:before{content:'\e063'}.oi[data-glyph=external-link]:before{content:'\e064'}.oi[data-glyph=eye]:before{content:'\e065'}.oi[data-glyph=eyedropper]:before{content:'\e066'}.oi[data-glyph=file]:before{content:'\e067'}.oi[data-glyph=fire]:before{content:'\e068'}.oi[data-glyph=flag]:before{content:'\e069'}.oi[data-glyph=flash]:before{content:'\e06a'}.oi[data-glyph=folder]:before{content:'\e06b'}.oi[data-glyph=fork]:before{content:'\e06c'}.oi[data-glyph=fullscreen-enter]:before{content:'\e06d'}.oi[data-glyph=fullscreen-exit]:before{content:'\e06e'}.oi[data-glyph=globe]:before{content:'\e06f'}.oi[data-glyph=graph]:before{content:'\e070'}.oi[data-glyph=grid-four-up]:before{content:'\e071'}.oi[data-glyph=grid-three-up]:before{content:'\e072'}.oi[data-glyph=grid-two-up]:before{content:'\e073'}.oi[data-glyph=hard-drive]:before{content:'\e074'}.oi[data-glyph=header]:before{content:'\e075'}.oi[data-glyph=headphones]:before{content:'\e076'}.oi[data-glyph=heart]:before{content:'\e077'}.oi[data-glyph=home]:before{content:'\e078'}.oi[data-glyph=image]:before{content:'\e079'}.oi[data-glyph=inbox]:before{content:'\e07a'}.oi[data-glyph=infinity]:before{content:'\e07b'}.oi[data-glyph=info]:before{content:'\e07c'}.oi[data-glyph=italic]:before{content:'\e07d'}.oi[data-glyph=justify-center]:before{content:'\e07e'}.oi[data-glyph=justify-left]:before{content:'\e07f'}.oi[data-glyph=justify-right]:before{content:'\e080'}.oi[data-glyph=key]:before{content:'\e081'}.oi[data-glyph=laptop]:before{content:'\e082'}.oi[data-glyph=layers]:before{content:'\e083'}.oi[data-glyph=lightbulb]:before{content:'\e084'}.oi[data-glyph=link-broken]:before{content:'\e085'}.oi[data-glyph=link-intact]:before{content:'\e086'}.oi[data-glyph=list-rich]:before{content:'\e087'}.oi[data-glyph=list]:before{content:'\e088'}.oi[data-glyph=location]:before{content:'\e089'}.oi[data-glyph=lock-locked]:before{content:'\e08a'}.oi[data-glyph=lock-unlocked]:before{content:'\e08b'}.oi[data-glyph=loop-circular]:before{content:'\e08c'}.oi[data-glyph=loop-square]:before{content:'\e08d'}.oi[data-glyph=loop]:before{content:'\e08e'}.oi[data-glyph=magnifying-glass]:before{content:'\e08f'}.oi[data-glyph=map-marker]:before{content:'\e090'}.oi[data-glyph=map]:before{content:'\e091'}.oi[data-glyph=media-pause]:before{content:'\e092'}.oi[data-glyph=media-play]:before{content:'\e093'}.oi[data-glyph=media-record]:before{content:'\e094'}.oi[data-glyph=media-skip-backward]:before{content:'\e095'}.oi[data-glyph=media-skip-forward]:before{content:'\e096'}.oi[data-glyph=media-step-backward]:before{content:'\e097'}.oi[data-glyph=media-step-forward]:before{content:'\e098'}.oi[data-glyph=media-stop]:before{content:'\e099'}.oi[data-glyph=medical-cross]:before{content:'\e09a'}.oi[data-glyph=menu]:before{content:'\e09b'}.oi[data-glyph=microphone]:before{content:'\e09c'}.oi[data-glyph=minus]:before{content:'\e09d'}.oi[data-glyph=monitor]:before{content:'\e09e'}.oi[data-glyph=moon]:before{content:'\e09f'}.oi[data-glyph=move]:before{content:'\e0a0'}.oi[data-glyph=musical-note]:before{content:'\e0a1'}.oi[data-glyph=paperclip]:before{content:'\e0a2'}.oi[data-glyph=pencil]:before{content:'\e0a3'}.oi[data-glyph=people]:before{content:'\e0a4'}.oi[data-glyph=person]:before{content:'\e0a5'}.oi[data-glyph=phone]:before{content:'\e0a6'}.oi[data-glyph=pie-chart]:before{content:'\e0a7'}.oi[data-glyph=pin]:before{content:'\e0a8'}.oi[data-glyph=play-circle]:before{content:'\e0a9'}.oi[data-glyph=plus]:before{content:'\e0aa'}.oi[data-glyph=power-standby]:before{content:'\e0ab'}.oi[data-glyph=print]:before{content:'\e0ac'}.oi[data-glyph=project]:before{content:'\e0ad'}.oi[data-glyph=pulse]:before{content:'\e0ae'}.oi[data-glyph=puzzle-piece]:before{content:'\e0af'}.oi[data-glyph=question-mark]:before{content:'\e0b0'}.oi[data-glyph=rain]:before{content:'\e0b1'}.oi[data-glyph=random]:before{content:'\e0b2'}.oi[data-glyph=reload]:before{content:'\e0b3'}.oi[data-glyph=resize-both]:before{content:'\e0b4'}.oi[data-glyph=resize-height]:before{content:'\e0b5'}.oi[data-glyph=resize-width]:before{content:'\e0b6'}.oi[data-glyph=rss-alt]:before{content:'\e0b7'}.oi[data-glyph=rss]:before{content:'\e0b8'}.oi[data-glyph=script]:before{content:'\e0b9'}.oi[data-glyph=share-boxed]:before{content:'\e0ba'}.oi[data-glyph=share]:before{content:'\e0bb'}.oi[data-glyph=shield]:before{content:'\e0bc'}.oi[data-glyph=signal]:before{content:'\e0bd'}.oi[data-glyph=signpost]:before{content:'\e0be'}.oi[data-glyph=sort-ascending]:before{content:'\e0bf'}.oi[data-glyph=sort-descending]:before{content:'\e0c0'}.oi[data-glyph=spreadsheet]:before{content:'\e0c1'}.oi[data-glyph=star]:before{content:'\e0c2'}.oi[data-glyph=sun]:before{content:'\e0c3'}.oi[data-glyph=tablet]:before{content:'\e0c4'}.oi[data-glyph=tag]:before{content:'\e0c5'}.oi[data-glyph=tags]:before{content:'\e0c6'}.oi[data-glyph=target]:before{content:'\e0c7'}.oi[data-glyph=task]:before{content:'\e0c8'}.oi[data-glyph=terminal]:before{content:'\e0c9'}.oi[data-glyph=text]:before{content:'\e0ca'}.oi[data-glyph=thumb-down]:before{content:'\e0cb'}.oi[data-glyph=thumb-up]:before{content:'\e0cc'}.oi[data-glyph=timer]:before{content:'\e0cd'}.oi[data-glyph=transfer]:before{content:'\e0ce'}.oi[data-glyph=trash]:before{content:'\e0cf'}.oi[data-glyph=underline]:before{content:'\e0d0'}.oi[data-glyph=vertical-align-bottom]:before{content:'\e0d1'}.oi[data-glyph=vertical-align-center]:before{content:'\e0d2'}.oi[data-glyph=vertical-align-top]:before{content:'\e0d3'}.oi[data-glyph=video]:before{content:'\e0d4'}.oi[data-glyph=volume-high]:before{content:'\e0d5'}.oi[data-glyph=volume-low]:before{content:'\e0d6'}.oi[data-glyph=volume-off]:before{content:'\e0d7'}.oi[data-glyph=warning]:before{content:'\e0d8'}.oi[data-glyph=wifi]:before{content:'\e0d9'}.oi[data-glyph=wrench]:before{content:'\e0da'}.oi[data-glyph=x]:before{content:'\e0db'}.oi[data-glyph=yen]:before{content:'\e0dc'}.oi[data-glyph=zoom-in]:before{content:'\e0dd'}.oi[data-glyph=zoom-out]:before{content:'\e0de'} \ No newline at end of file