changeset 68:87041e7df099

themes: update siimple to 4.x
author David Demelier <markand@malikania.fr>
date Thu, 23 Jun 2022 14:12:02 +0200
parents 1a6abb3ed16a
children bca6c51e0742
files themes/siimple/fragments/header.html themes/siimple/fragments/paste.html themes/siimple/pages/index.html themes/siimple/pages/new.html themes/siimple/pages/paste.html themes/siimple/pages/search.html themes/siimple/static/siimple.css themes/siimple/static/siimple.min.css
diffstat 8 files changed, 72 insertions(+), 122 deletions(-) [+]
line wrap: on
line diff
--- a/themes/siimple/fragments/header.html	Sat Jun 18 17:32:09 2022 +0200
+++ b/themes/siimple/fragments/header.html	Thu Jun 23 14:12:02 2022 +0200
@@ -3,21 +3,19 @@
 	<head>
 		<meta charset="UTF-8">
 		<title>@@title@@</title>
-		<link rel="stylesheet" href="/static/siimple.min.css" />
+		<link rel="stylesheet" href="/static/siimple.css" />
 		<link rel="stylesheet" href="/static/styles/github.css" />
 		<script src="/static/highlight.min.js"></script>
 		<script>hljs.initHighlightingOnLoad();</script>
 	</head>
 
 	<body>
-		<div class="siimple-navbar">
-			<a class="siimple-navbar-title" href="/">paster</a>
-			<div class="siimple-navbar-subtitle">simple paste service</div>
-			<div class="siimple--float-right">
-				<a class="siimple-navbar-item" href="/new">Create</a>
-				<a class="siimple-navbar-item" href="/search">Search</a>
+		<navbar class="is-inline-flex">
+			<a class="navlink" href="/">paster</a>
+			<a class="navlink" href="/new">create</a>
+			<a class="navlink" href="/search">search</a>
 			</div>
-		</div>
+		</navbar>
 
-		<div class="siimple-content siimple-content--large">
+		<div class="container">
 
--- a/themes/siimple/fragments/paste.html	Sat Jun 18 17:32:09 2022 +0200
+++ b/themes/siimple/fragments/paste.html	Thu Jun 23 14:12:02 2022 +0200
@@ -1,7 +1,7 @@
-<div class="siimple-table-row">
-	<div class="siimple-table-cell"><a class="siimple-link" href="/paste/@@id@@">@@title@@</a></div>
-	<div class="siimple-table-cell">@@author@@</div>
-	<div class="siimple-table-cell">@@language@@</div>
-	<div class="siimple-table-cell">@@date@@</div>
-	<div class="siimple-table-cell">@@expiration@@</div>
-</div>
+<tr>
+	<td><a href="/paste/@@id@@">@@title@@</a></td>
+	<td>@@author@@</div>
+	<td>@@language@@</div>
+	<td>@@date@@</div>
+	<td>@@expiration@@</div>
+</tr>
--- a/themes/siimple/pages/index.html	Sat Jun 18 17:32:09 2022 +0200
+++ b/themes/siimple/pages/index.html	Thu Jun 23 14:12:02 2022 +0200
@@ -1,16 +1,15 @@
 	<h1>Recent pastes</h1>
 
-	<div class="siimple-table">
-		<div class="siimple-table-header">
-			<div class="siimple-table-row">
-				<div class="siimple-table-cell">Name</div>
-				<div class="siimple-table-cell">Author</div>
-				<div class="siimple-table-cell">Language</div>
-				<div class="siimple-table-cell">Date</div>
-				<div class="siimple-table-cell">Expires in</div>
-			</div>
-		</div>
-	<div class="siimple-table-body">
+	<table class="table is-divided">
+		<thead>
+			<tr>
+				<th>Name</th>
+				<th>Author</th>
+				<th>Language</th>
+				<th>Date</th>
+				<th>Expires in</th>
+			</tr>
+		</thead>
 
 	@@pastes@@
 
--- a/themes/siimple/pages/new.html	Sat Jun 18 17:32:09 2022 +0200
+++ b/themes/siimple/pages/new.html	Thu Jun 23 14:12:02 2022 +0200
@@ -1,45 +1,27 @@
 	<h1>Create paste</h1>
 
-	<div class="siimple-form">
-		<form action="/new" method="post">
-			<div class="siimple-field">
-				<label class="siimple-field-label">Title</label>
-				<input class="siimple-input" name="title" type="text" placeholder="Untitled" value="@@title@@" />
-			</div>
+	<form action="/new" method="post">
+		<label class="label">Title</label>
+		<input class="input" name="title" type="text" placeholder="Untitled" value="@@title@@" />
 
-			<div class="siimple-field">
-				<label class="siimple-field-label">Author</label>
-				<input class="siimple-input" name="author" type="text" placeholder="Anonymous" />
-			</div>
+		<label class="label">Author</label>
+		<input class="input" name="author" type="text" placeholder="Anonymous" />
 
-			<div class="siimple-field">
-				<label class="siimple-field-label">Language</label>
-				<select class="siimple-select" name="language">
-					@@languages@@
-				</select>
-			</div>
+		<label class="label">Language</label>
+		<select class="select" name="language">
+			@@languages@@
+		</select>
 
-			<div class="siimple-field">
-				<label class="siimple-field-label">Expires in</label>
-				<select class="siimple-select" name="duration">
-					@@durations@@
-				</select>
-			</div>
+		<label class="label">Expires in</label>
+		<select class="select" name="duration">
+			@@durations@@
+		</select>
 
-			<div class="siimple-field">
-				<label class="siimple-label">Private</label>
-				<div class="siimple-checkbox">
-					<input type="checkbox" id="private" name="private" checked>
-					<label for="private"></label>
-				</div>
-			</div>
+		<label class="label" for="private-cb">
+			<span class="has-mr-2">Private</span>
+			<input type="checkbox" id="private-cb" class="checkbox" checked />
+		</label>
 
-			<div class="siimple-field">
-				<textarea id="code" class="simple-textarea siimple-textarea--fluid" placeholder="What do you want to share?" rows="10" name="code">@@code@@</textarea>
-			</div>
-
-			<div class="siimple-form-field">
-				<input type="submit" class="siimple-btn siimple-btn--blue"></input>
-			</div>
-		</form>
-	</div>
+		<textarea id="code" class="textarea" placeholder="What do you want to share?" rows="10" name="code">@@code@@</textarea>
+		<input type="submit" class="button has-mt-1" value="Create"></input>
+	</form>
--- a/themes/siimple/pages/paste.html	Sat Jun 18 17:32:09 2022 +0200
+++ b/themes/siimple/pages/paste.html	Thu Jun 23 14:12:02 2022 +0200
@@ -1,34 +1,22 @@
 	<h1>@@title@@</h1>
 
-	<a class="siimple-btn siimple-btn--navy" href="/fork/@@id@@">Fork</a>
-	<a class="siimple-btn siimple-btn--navy" href="/download/@@id@@">Download</a>
+	<a class="button half" href="/fork/@@id@@">Fork</a>
+	<a class="button half" href="/download/@@id@@">Download</a>
+
+	<div class="divider"></div>
 
-	<div class="siimple-grid">
-		<div class="siimple-grid-row">
-			<div class="siimple-grid-col siimple-grid-col--2"><strong>Identifier</strong></div>
-			<div class="siimple-grid-col siimple-grid-col--10">@@id@@</div>
-		</div>
-		<div class="siimple-grid-row">
-			<div class="siimple-grid-col siimple-grid-col--2"><strong>Author</strong></div>
-			<div class="siimple-grid-col siimple-grid-col--10">@@author@@</div>
-		</div>
-		<div class="siimple-grid-row">
-			<div class="siimple-grid-col siimple-grid-col--2"><strong>Language</strong></div>
-			<div class="siimple-grid-col siimple-grid-col--10">@@language@@</div>
-		</div>
-		<div class="siimple-grid-row">
-			<div class="siimple-grid-col siimple-grid-col--2"><strong>Date</strong></div>
-			<div class="siimple-grid-col siimple-grid-col--10">@@date@@</div>
-		</div>
-		<div class="siimple-grid-row">
-			<div class="siimple-grid-col siimple-grid-col--2"><strong>Public</strong></div>
-			<div class="siimple-grid-col siimple-grid-col--10">@@public@@</div>
-		</div>
-		<div class="siimple-grid-row">
-			<div class="siimple-grid-col siimple-grid-col--2"><strong>Expires in</strong></div>
-			<div class="siimple-grid-col siimple-grid-col--10">@@expiration@@</div>
-		</div>
-	</div>
+	<div><strong>Identifier</strong></div>
+	<div>@@id@@</div>
+	<div><strong>Author</strong></div>
+	<div>@@author@@</div>
+	<div><strong>Language</strong></div>
+	<div>@@language@@</div>
+	<div><strong>Date</strong></div>
+	<div>@@date@@</div>
+	<div><strong>Public</strong></div>
+	<div>@@public@@</div>
+	<div><strong>Expires in</strong></div>
+	<div>@@expiration@@</div>
 
 	<pre><code class="@@language@@">
 @@code@@
--- a/themes/siimple/pages/search.html	Sat Jun 18 17:32:09 2022 +0200
+++ b/themes/siimple/pages/search.html	Thu Jun 23 14:12:02 2022 +0200
@@ -1,26 +1,16 @@
 	<h1>Search pastes</h1>
 
-	<div class="siimple-form">
-		<form action="/search" method="post">
-			<div class="siimple-field">
-				<label class="siimple-field-label">Title</label>
-				<input class="siimple-input" name="title" type="text" placeholder="Title" />
-			</div>
+	<form action="/search" method="post">
+		<label class="label">Title</label>
+		<input class="input" name="title" type="text" placeholder="Title" />
 
-			<div class="siimple-field">
-				<label class="siimple-field-label">Author</label>
-				<input class="siimple-input" name="author" type="text" placeholder="Author" />
-			</div>
+		<label class="label">Author</label>
+		<input class="input" name="author" type="text" placeholder="Author" />
 
-			<div class="siimple-field">
-				<label class="siimple-field-label">Language</label>
-				<select class="siimple-select" name="language">
-					@@languages@@
-				</select>
-			</div>
+		<label class="label">Language</label>
+		<select class="select" name="language">
+			@@languages@@
+		</select>
 
-			<div class="siimple-form-field">
-				<input type="submit" class="siimple-btn siimple-btn--blue"></input>
-			</div>
-		</form>
-	</div>
+		<input type="submit" class="button has-mt-2" value="Search"></input>
+	</form>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/themes/siimple/static/siimple.css	Thu Jun 23 14:12:02 2022 +0200
@@ -0,0 +1,1 @@
+html{box-sizing:border-box;background:#fff;color:#363f4f;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.5;scroll-behavior:smooth}*,:after,:before{box-sizing:inherit}body{margin:0;padding:0;min-height:100vh;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}dl,ol,ul{margin-bottom:1rem;margin-top:0}p{font-weight:400;line-height:1.5;margin-bottom:1rem;margin-top:0}b,strong{font-weight:700}img,video{display:block;height:auto;max-width:100%}iframe{border:0}table{width:100%}a{color:#1c76fd}small{font-size:.875rem}pre{font-family:SFMono-Regular,Menlo,Monaco,Consolas,'Liberation Mono','Courier New',monospace;overflow-x:auto}code{color:#1c76fd;font-family:SFMono-Regular,Menlo,Monaco,Consolas,'Liberation Mono','Courier New',monospace;font-size:.875rem;font-weight:700;text-decoration:none}hr{background-color:#ebedef;border:0;display:block;height:.125rem;padding:0}hr:not(:first-child){margin-top:1rem}hr:not(:last-child){margin-bottom:1rem}blockquote{border-left:.25rem solid currentColor;color:currentColor;display:block;margin-bottom:1rem;margin-left:0;margin-right:0;opacity:.6;padding:.75rem .75rem .75rem 1.25rem}h1{color:inherit;font-family:inherit;font-size:2.5rem;font-weight:700;line-height:1.25}h2{color:inherit;font-family:inherit;font-size:2rem;font-weight:700;line-height:1.25}h3{color:inherit;font-family:inherit;font-size:1.75rem;font-weight:700;line-height:1.25}h4{color:inherit;font-family:inherit;font-size:1.5rem;font-weight:700;line-height:1.25}h5{color:inherit;font-family:inherit;font-size:1.25rem;font-weight:700;line-height:1.25}h6{color:inherit;font-family:inherit;font-size:16px;font-weight:700;line-height:1.25}.alert{align-items:center;background-color:#1c76fd;border-radius:.5rem;color:#fff;display:flex;font-weight:700;margin-bottom:1rem;margin-top:0;min-width:0;padding:1.25rem;position:relative}.alert.is-secondary{background-color:#3542d4;color:#fff}.badge{background-color:#1c76fd;border-radius:.25rem;color:#fff;display:inline-block;font-size:.75rem;font-weight:700;line-height:1.25rem;padding:.25rem .5rem;text-decoration:none;vertical-align:text-top}.badge.is-secondary{background-color:#3542d4;color:#fff}.button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#1c76fd;border:0;border-radius:.5rem;color:#fff;cursor:pointer;display:inline-block;font-family:inherit;font-size:inherit;font-weight:700;line-height:inherit;min-width:0;padding:.75rem 1.5rem;text-align:center;text-decoration:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle}.button:hover{text-decoration:none;transition-duration:.3s;transition-property:background-color}.button.is-secondary{background-color:#3542d4;color:#fff}.button.is-full{display:block;width:100%}.button.is-disabled,.button:disabled{cursor:not-allowed!important;opacity:.6!important}.card{background-color:#fff;border-radius:.5rem;color:inherit;display:block;padding:2rem;text-decoration:none!important;width:100%}.checkbox{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#ebedef;border-radius:.25rem;box-sizing:border-box;color:#fff;cursor:pointer;display:inline-block;height:1.125rem;margin:.1875rem;position:relative;width:1.125rem;vertical-align:top}.checkbox:after{background-color:transparent;content:'';height:.375rem;position:absolute}.checkbox:checked,.checkbox:indeterminate{background-color:#1c76fd;transition-duration:.3s;transition-property:background-color}.checkbox:indeterminate:after{border-bottom:.125rem solid #fff;left:.3125rem;top:.25rem;width:.5rem}.checkbox:checked:after{border-bottom:.125rem solid #fff;border-left:.125rem solid #fff;left:.25rem;top:.3125rem;transform:rotate(-45deg);width:.625rem}.close{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:none;color:currentColor;cursor:pointer;display:inline-flex;height:1rem;opacity:.6;position:relative;transition:opacity .3s;width:1rem}.close:hover{opacity:1}.close:after,.close:before{background-color:currentColor;border-radius:1px;content:'';height:3px;left:0;position:absolute;top:6px;width:1rem}.close:before{transform:rotate(45deg)}.close:after{transform:rotate(-45deg)}.column{flex:1;min-height:0;padding:1rem;width:100%}.column.is-one-fifth{flex:none;width:20%}@media screen and (max-width:640px){.column.is-one-fifth-mobile{flex:none;width:20%}}@media screen and (min-width:640px){.column.is-one-fifth-tablet{flex:none;width:20%}}@media screen and (min-width:1264px){.column.is-one-fifth-desktop{flex:none;width:20%}}@media screen and (min-width:1504px){.column.is-one-fifth-widescreen{flex:none;width:20%}}.column.is-one-quarter{flex:none;width:25%}@media screen and (max-width:640px){.column.is-one-quarter-mobile{flex:none;width:25%}}@media screen and (min-width:640px){.column.is-one-quarter-tablet{flex:none;width:25%}}@media screen and (min-width:1264px){.column.is-one-quarter-desktop{flex:none;width:25%}}@media screen and (min-width:1504px){.column.is-one-quarter-widescreen{flex:none;width:25%}}.column.is-one-third{flex:none;width:33.33%}@media screen and (max-width:640px){.column.is-one-third-mobile{flex:none;width:33.33%}}@media screen and (min-width:640px){.column.is-one-third-tablet{flex:none;width:33.33%}}@media screen and (min-width:1264px){.column.is-one-third-desktop{flex:none;width:33.33%}}@media screen and (min-width:1504px){.column.is-one-third-widescreen{flex:none;width:33.33%}}.column.is-two-fifths{flex:none;width:40%}@media screen and (max-width:640px){.column.is-two-fifths-mobile{flex:none;width:40%}}@media screen and (min-width:640px){.column.is-two-fifths-tablet{flex:none;width:40%}}@media screen and (min-width:1264px){.column.is-two-fifths-desktop{flex:none;width:40%}}@media screen and (min-width:1504px){.column.is-two-fifths-widescreen{flex:none;width:40%}}.column.is-half{flex:none;width:50%}@media screen and (max-width:640px){.column.is-half-mobile{flex:none;width:50%}}@media screen and (min-width:640px){.column.is-half-tablet{flex:none;width:50%}}@media screen and (min-width:1264px){.column.is-half-desktop{flex:none;width:50%}}@media screen and (min-width:1504px){.column.is-half-widescreen{flex:none;width:50%}}.column.is-three-fifths{flex:none;width:60%}@media screen and (max-width:640px){.column.is-three-fifths-mobile{flex:none;width:60%}}@media screen and (min-width:640px){.column.is-three-fifths-tablet{flex:none;width:60%}}@media screen and (min-width:1264px){.column.is-three-fifths-desktop{flex:none;width:60%}}@media screen and (min-width:1504px){.column.is-three-fifths-widescreen{flex:none;width:60%}}.column.is-two-thirds{flex:none;width:66.66%}@media screen and (max-width:640px){.column.is-two-thirds-mobile{flex:none;width:66.66%}}@media screen and (min-width:640px){.column.is-two-thirds-tablet{flex:none;width:66.66%}}@media screen and (min-width:1264px){.column.is-two-thirds-desktop{flex:none;width:66.66%}}@media screen and (min-width:1504px){.column.is-two-thirds-widescreen{flex:none;width:66.66%}}.column.is-three-quarters{flex:none;width:75%}@media screen and (max-width:640px){.column.is-three-quarters-mobile{flex:none;width:75%}}@media screen and (min-width:640px){.column.is-three-quarters-tablet{flex:none;width:75%}}@media screen and (min-width:1264px){.column.is-three-quarters-desktop{flex:none;width:75%}}@media screen and (min-width:1504px){.column.is-three-quarters-widescreen{flex:none;width:75%}}.column.is-four-fifths{flex:none;width:80%}@media screen and (max-width:640px){.column.is-four-fifths-mobile{flex:none;width:80%}}@media screen and (min-width:640px){.column.is-four-fifths-tablet{flex:none;width:80%}}@media screen and (min-width:1264px){.column.is-four-fifths-desktop{flex:none;width:80%}}@media screen and (min-width:1504px){.column.is-four-fifths-widescreen{flex:none;width:80%}}.column.is-full{flex:none;width:100%}@media screen and (max-width:640px){.column.is-full-mobile{flex:none;width:100%}}@media screen and (min-width:640px){.column.is-full-tablet{flex:none;width:100%}}@media screen and (min-width:1264px){.column.is-full-desktop{flex:none;width:100%}}@media screen and (min-width:1504px){.column.is-full-widescreen{flex:none;width:100%}}.columns{display:flex;flex-wrap:wrap;margin-left:-1rem;margin-right:-1rem}.container{display:block;margin-left:auto;margin-right:auto;max-width:1264px;padding-left:1.5rem;padding-right:1.5rem;width:100%}.crumb{color:currentColor;cursor:pointer;font-weight:700;opacity:.6;padding:.5rem 1.5rem .5rem .75rem;position:relative;text-decoration:none}.crumb:hover{opacity:1;transition:opacity .3s}.crumb:not(:last-child)::after{border-right:2px solid currentColor;border-top:2px solid currentColor;content:'';display:block;height:.5rem;position:absolute;right:.25rem;top:1rem;transform:rotate(45deg);width:.5rem}.crumb.is-active{cursor:default;opacity:1;pointer-events:none}.crumbs{border-radius:default;display:flex;flex-wrap:nowrap;margin-bottom:1rem;overflow:hidden;overflow-x:auto;padding:.5rem;white-space:nowrap!important}.divider{background-color:#ebedef;border:0;display:block;height:.125rem;padding:0}.divider:not(:first-child){margin-top:1rem}.divider:not(:last-child){margin-bottom:1rem}.input{background-color:#ebedef;border:.125rem solid transparent;border-radius:.5rem;box-sizing:border-box;color:inherit;display:block;font-family:inherit;font-size:inherit;font-weight:400;line-height:inherit;margin:0;min-width:0;outline:0;padding:.625rem 1rem;width:100%}.input:focus{border-color:#1c76fd}.label{align-items:center;color:inherit;display:flex;font-size:1rem;font-weight:700;min-width:0;padding-bottom:.25rem;padding-top:.25rem;width:100%}.menu{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#ebedef;border-radius:.5rem;border:.125rem solid transparent;color:currentColor;cursor:pointer;display:block;height:3rem;opacity:.8;padding-left:.75rem;padding-right:.75rem;position:relative;width:3rem;z-index:400}.menu:hover{opacity:1}.menu:before{border-top:.25rem solid currentColor;border-bottom:.25rem solid currentColor;content:'';height:1.25rem;left:.5rem;position:absolute;width:1.75rem;top:.75rem}.menu:after{background-color:currentColor;content:'';height:.25rem;left:.5rem;position:absolute;width:1.75rem;top:1.25rem}.modal{background-color:#fff;border-radius:.5rem;display:block;max-height:90vh;max-width:600px;overflow-y:auto;padding:2rem;width:100%}.navlink{border-radius:.5rem;color:inherit;cursor:pointer;display:block;font-weight:700;margin:0;padding:.75rem;text-decoration:none!important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:100%}.navlink.is-active,.navlink:hover{color:#1c76fd}.navlink.is-disabled{opacity:.5;pointer-events:none}.paragraph{display:block;margin-bottom:1rem;margin-top:0}.progress{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#ebedef;border:none;border-radius:999px;color:#1c76fd;display:block;height:.5rem;margin:0!important;overflow:hidden;padding:0!important;width:100%}.progress::-webkit-progress-bar{background-color:transparent}.progress::-webkit-progress-value{background-color:currentColor}.progress::-moz-progress-bar{background-color:currentColor}.radio{-webkit-appearance:none;-moz-appearance:none;appearance:none;box-sizing:border-box;color:#1c76fd;cursor:pointer;display:inline-block;height:1.25rem;margin:.125rem;position:relative;width:1.25rem}.radio:before{border-radius:100%;border:.1875rem solid #ebedef;content:'';display:block;height:1.25rem;left:0;position:absolute;top:0;width:1.25rem}.radio:after{background-color:transparent;border-radius:999px;content:'';display:block;height:.5rem;left:.375rem;position:absolute;top:.375rem;width:.5rem}.radio:hover:after{background-color:#ebedef}.radio:checked:after{background-color:currentColor!important}.radio:checked:before{border-color:currentColor!important}.scrim{align-items:center;background-color:rgba(0,0,0,.5);display:flex;height:100%;justify-content:center;left:0;overflow-y:hidden;overflow-x:hidden;position:fixed;top:0;width:100%;z-index:400}.select{background-color:#ebedef;border:.125rem solid transparent;border-radius:.5rem;box-sizing:border-box;color:inherit;display:block;font-size:inherit;line-height:inherit;margin:0;min-height:3rem;min-width:0;outline:0;padding:.625rem 1rem;width:100%}.select:focus{border-color:#1c76fd}.slider{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#ebedef;border-radius:1rem;color:#1c76fd;cursor:pointer;display:block;height:.25rem;margin-bottom:.5rem;margin-top:.5rem;min-width:0;outline:0;transition:opacity .2s;width:100%}.slider:-moz-range-thumb,.slider:-ms-thumb,.slider:-webkit-slider-thumb{background-color:currentColor;border:none;border-radius:999px;box-sizing:border-box;height:1rem;width:1rem}.slider:-webkit-slider-thumb{-webkit-appearance:none;appearance:none}.slider:-ms-thumb{margin-top:0}.spinner{color:#1c76fd;display:inline-block;height:2rem;position:relative;width:2rem}.spinner:after,.spinner:before{border:.25rem solid transparent;border-radius:100%;content:'';display:block;height:2rem;left:0;position:absolute;top:0;width:2rem}.spinner:before{border-color:currentColor;opacity:.2}.spinner:after{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-name:spinnerAnimation;animation-name:spinnerAnimation;-webkit-animation-timing-function:linear;animation-timing-function:linear;border-top-color:currentColor}.spinner.is-secondary{color:#3542d4}@-webkit-keyframes spinnerAnimation{from{transform:rotate(0)}to{transform:rotate(359deg)}}@keyframes spinnerAnimation{from{transform:rotate(0)}to{transform:rotate(359deg)}}.switch{-webkit-appearance:none;-moz-appearance:none;appearance:none;box-sizing:border-box;color:#1c76fd;cursor:pointer;display:inline-block;height:1.25rem;position:relative;width:2rem}.switch:after{background-color:#fff;border-radius:100%;content:'';display:block;height:.875rem;left:.1875rem;position:absolute;top:.1875rem;transition:left .3s;width:.875rem;z-index:2}.switch:before{background-color:#ebedef;border-radius:2rem;content:'';display:block;height:100%;left:0;position:absolute;top:0;transition:background-color .3s;width:100%;z-index:1}.switch:checked:after{left:1rem}.switch:checked:before{background-color:currentColor}.table{background-color:transparent;border-collapse:separate;border-spacing:0;border-width:0;box-sizing:border-box;display:table;margin-bottom:2rem;width:100%}.table tr{box-sizing:border-box;display:table-row}.table td,.table th{box-sizing:border-box;display:table-cell;line-height:inherit;padding:1rem}.table thead{box-sizing:border-box;display:table-header-group}.table thead th{font-weight:600;text-align:left;vertical-align:bottom}.table tbody{display:table-row-group;vertical-align:middle}.table tbody td{vertical-align:top}.table thead tr:first-child th:first-child{border-top-left-radius:.5rem}.table thead tr:first-child th:last-child{border-top-right-radius:.5rem}.table tbody tr:last-child td:first-child{border-bottom-left-radius:.5rem}.table tbody tr:last-child td:last-child{border-bottom-right-radius:.5rem}.table.is-divided thead th{border-bottom:.125rem solid #ebedef}.table.is-divided tbody td{border-top:.125rem solid #ebedef}.table.is-bordered td,.table.is-bordered th{border:.125rem solid #ebedef}.table.is-bordered td:not(:last-child),.table.is-bordered th:not(:last-child){border-right-width:0!important}.table.is-bordered tbody tr:not(:last-child) td{border-bottom-width:0!important}.table.is-fixed{table-layout:fixed}.textarea{background-color:#ebedef;border:.125rem solid transparent;border-radius:.5rem;box-sizing:border-box;color:inherit;display:block;font-family:inherit;font-size:inherit;line-height:inherit;margin:0;min-width:0;outline:0;padding:.625rem 1rem;resize:vertical;width:100%}.textarea:focus{border-color:#1c76fd}.title{display:block;font-weight:700;line-height:1.25;margin-bottom:.5em;padding:0}.title:not(:first-child){margin-top:2rem}.title.is-1{font-size:2.5rem}.title.is-2{font-size:2rem}.title.is-3{font-size:1.75rem}.title.is-4{font-size:1.5rem}.title.is-5{font-size:1.25rem}.title.is-6{font-size:16px}.has-bg-primary{background-color:#1c76fd}.has-bg-secondary{background-color:#3542d4}.has-bg-muted{background-color:#ebedef}.has-bg-text{background-color:#363f4f}.has-bg-heading{background-color:#1d2734}.has-bg-background{background-color:#fff}.has-bg-gray-100{background-color:#f6f7f9}.has-bg-gray-200{background-color:#ebedef}.has-bg-gray-300{background-color:#d4d8dd}.has-bg-gray-400{background-color:#a4abb6}.has-bg-gray-500{background-color:#747c8b}.has-bg-gray-600{background-color:#4b5563}.has-bg-gray-700{background-color:#363f4f}.has-bg-gray-800{background-color:#1d2734}.has-bg-gray-900{background-color:#101623}.has-bg-neutral-100{background-color:#fafafa}.has-bg-neutral-200{background-color:#eaeaec}.has-bg-neutral-300{background-color:#dadadd}.has-bg-neutral-400{background-color:#a7a7af}.has-bg-neutral-500{background-color:#76767f}.has-bg-neutral-600{background-color:#55555e}.has-bg-neutral-700{background-color:#44444b}.has-bg-neutral-800{background-color:#2c2c30}.has-bg-neutral-900{background-color:#1d1d20}.has-bg-warm-100{background-color:#fafaf9}.has-bg-warm-200{background-color:#f0f0ef}.has-bg-warm-300{background-color:#e0dddc}.has-bg-warm-400{background-color:#b2aca9}.has-bg-warm-500{background-color:#817974}.has-bg-warm-600{background-color:#5d5651}.has-bg-warm-700{background-color:#48423d}.has-bg-warm-800{background-color:#2e2a29}.has-bg-warm-900{background-color:#211e1c}.has-bg-red-100{background-color:#fef6f6}.has-bg-red-200{background-color:#fbe5e5}.has-bg-red-300{background-color:#f7c5c5}.has-bg-red-400{background-color:#eb7870}.has-bg-red-500{background-color:#e23636}.has-bg-red-600{background-color:#a61c1c}.has-bg-red-700{background-color:#7a1515}.has-bg-red-800{background-color:#500c0c}.has-bg-red-900{background-color:#350808}.has-bg-orange-100{background-color:#fef8f6}.has-bg-orange-200{background-color:#fde9e2}.has-bg-orange-300{background-color:#fbd0c1}.has-bg-orange-400{background-color:#f38d68}.has-bg-orange-500{background-color:#e85621}.has-bg-orange-600{background-color:#ae3d13}.has-bg-orange-700{background-color:#832c0c}.has-bg-orange-800{background-color:#551c07}.has-bg-orange-900{background-color:#381305}.has-bg-beige-100{background-color:#fdf9f6}.has-bg-beige-200{background-color:#faefe5}.has-bg-beige-300{background-color:#f4dcc7}.has-bg-beige-400{background-color:#e6a875}.has-bg-beige-500{background-color:#d97c30}.has-bg-beige-600{background-color:#a45a1e}.has-bg-beige-700{background-color:#7d4517}.has-bg-beige-800{background-color:#4e2b0e}.has-bg-beige-900{background-color:#341c09}.has-bg-yellow-100{background-color:#fffcf5}.has-bg-yellow-200{background-color:#fef6e1}.has-bg-yellow-300{background-color:#feebbe}.has-bg-yellow-400{background-color:#fbc850}.has-bg-yellow-500{background-color:#f0a905}.has-bg-yellow-600{background-color:#be8004}.has-bg-yellow-700{background-color:#905604}.has-bg-yellow-800{background-color:#593103}.has-bg-yellow-900{background-color:#3b2002}.has-bg-green-100{background-color:#f7fdf9}.has-bg-green-200{background-color:#e7f9ee}.has-bg-green-300{background-color:#cbf1d9}.has-bg-green-400{background-color:#72da9b}.has-bg-green-500{background-color:#34c56e}.has-bg-green-600{background-color:#299956}.has-bg-green-700{background-color:#1e713f}.has-bg-green-800{background-color:#134929}.has-bg-green-900{background-color:#0d301b}.has-bg-mint-100{background-color:#f7fdfb}.has-bg-mint-200{background-color:#e7f8f4}.has-bg-mint-300{background-color:#cbf0e7}.has-bg-mint-400{background-color:#80dbc4}.has-bg-mint-500{background-color:#38c7a3}.has-bg-mint-600{background-color:#2b977c}.has-bg-mint-700{background-color:#21735f}.has-bg-mint-800{background-color:#14483b}.has-bg-mint-900{background-color:#0d3027}.has-bg-aqua-100{background-color:#f6fcfe}.has-bg-aqua-200{background-color:#e4f7fb}.has-bg-aqua-300{background-color:#c1ecf6}.has-bg-aqua-400{background-color:#75d7ea}.has-bg-aqua-500{background-color:#21bede}.has-bg-aqua-600{background-color:#1991a9}.has-bg-aqua-700{background-color:#136e81}.has-bg-aqua-800{background-color:#0c4550}.has-bg-aqua-900{background-color:#082e35}.has-bg-blue-100{background-color:#f5f9ff}.has-bg-blue-200{background-color:#cce2ff}.has-bg-blue-300{background-color:#9bc5fd}.has-bg-blue-400{background-color:#63a8fd}.has-bg-blue-500{background-color:#1c76fd}.has-bg-blue-600{background-color:#025cca}.has-bg-blue-700{background-color:#024597}.has-bg-blue-800{background-color:#022464}.has-bg-blue-900{background-color:#011232}.has-bg-royal-100{background-color:#f6f7fd}.has-bg-royal-200{background-color:#e5e7fa}.has-bg-royal-300{background-color:#c7cbf4}.has-bg-royal-400{background-color:#7d85e3}.has-bg-royal-500{background-color:#3542d4}.has-bg-royal-600{background-color:#202ba2}.has-bg-royal-700{background-color:#18217b}.has-bg-royal-800{background-color:#0f144d}.has-bg-royal-900{background-color:#0a0d33}.has-bg-purple-100{background-color:#f9f7fd}.has-bg-purple-200{background-color:#ebe5fa}.has-bg-purple-300{background-color:#d5c8f3}.has-bg-purple-400{background-color:#9678e2}.has-bg-purple-500{background-color:#6235d4}.has-bg-purple-600{background-color:#4622a0}.has-bg-purple-700{background-color:#351a7a}.has-bg-purple-800{background-color:#21104c}.has-bg-purple-900{background-color:#160b32}.has-bg-pink-100{background-color:#fdf6fa}.has-bg-pink-200{background-color:#fae5f1}.has-bg-pink-300{background-color:#f5c7e0}.has-bg-pink-400{background-color:#e675b3}.has-bg-pink-500{background-color:#d9308d}.has-bg-pink-600{background-color:#a41e68}.has-bg-pink-700{background-color:#7d174f}.has-bg-pink-800{background-color:#4e0e31}.has-bg-pink-900{background-color:#340921}.has-bg-primary-hover:hover{background-color:#1c76fd}.has-bg-secondary-hover:hover{background-color:#3542d4}.has-bg-muted-hover:hover{background-color:#ebedef}.has-bg-text-hover:hover{background-color:#363f4f}.has-bg-heading-hover:hover{background-color:#1d2734}.has-bg-background-hover:hover{background-color:#fff}.has-bg-gray-100-hover:hover{background-color:#f6f7f9}.has-bg-gray-200-hover:hover{background-color:#ebedef}.has-bg-gray-300-hover:hover{background-color:#d4d8dd}.has-bg-gray-400-hover:hover{background-color:#a4abb6}.has-bg-gray-500-hover:hover{background-color:#747c8b}.has-bg-gray-600-hover:hover{background-color:#4b5563}.has-bg-gray-700-hover:hover{background-color:#363f4f}.has-bg-gray-800-hover:hover{background-color:#1d2734}.has-bg-gray-900-hover:hover{background-color:#101623}.has-bg-neutral-100-hover:hover{background-color:#fafafa}.has-bg-neutral-200-hover:hover{background-color:#eaeaec}.has-bg-neutral-300-hover:hover{background-color:#dadadd}.has-bg-neutral-400-hover:hover{background-color:#a7a7af}.has-bg-neutral-500-hover:hover{background-color:#76767f}.has-bg-neutral-600-hover:hover{background-color:#55555e}.has-bg-neutral-700-hover:hover{background-color:#44444b}.has-bg-neutral-800-hover:hover{background-color:#2c2c30}.has-bg-neutral-900-hover:hover{background-color:#1d1d20}.has-bg-warm-100-hover:hover{background-color:#fafaf9}.has-bg-warm-200-hover:hover{background-color:#f0f0ef}.has-bg-warm-300-hover:hover{background-color:#e0dddc}.has-bg-warm-400-hover:hover{background-color:#b2aca9}.has-bg-warm-500-hover:hover{background-color:#817974}.has-bg-warm-600-hover:hover{background-color:#5d5651}.has-bg-warm-700-hover:hover{background-color:#48423d}.has-bg-warm-800-hover:hover{background-color:#2e2a29}.has-bg-warm-900-hover:hover{background-color:#211e1c}.has-bg-red-100-hover:hover{background-color:#fef6f6}.has-bg-red-200-hover:hover{background-color:#fbe5e5}.has-bg-red-300-hover:hover{background-color:#f7c5c5}.has-bg-red-400-hover:hover{background-color:#eb7870}.has-bg-red-500-hover:hover{background-color:#e23636}.has-bg-red-600-hover:hover{background-color:#a61c1c}.has-bg-red-700-hover:hover{background-color:#7a1515}.has-bg-red-800-hover:hover{background-color:#500c0c}.has-bg-red-900-hover:hover{background-color:#350808}.has-bg-orange-100-hover:hover{background-color:#fef8f6}.has-bg-orange-200-hover:hover{background-color:#fde9e2}.has-bg-orange-300-hover:hover{background-color:#fbd0c1}.has-bg-orange-400-hover:hover{background-color:#f38d68}.has-bg-orange-500-hover:hover{background-color:#e85621}.has-bg-orange-600-hover:hover{background-color:#ae3d13}.has-bg-orange-700-hover:hover{background-color:#832c0c}.has-bg-orange-800-hover:hover{background-color:#551c07}.has-bg-orange-900-hover:hover{background-color:#381305}.has-bg-beige-100-hover:hover{background-color:#fdf9f6}.has-bg-beige-200-hover:hover{background-color:#faefe5}.has-bg-beige-300-hover:hover{background-color:#f4dcc7}.has-bg-beige-400-hover:hover{background-color:#e6a875}.has-bg-beige-500-hover:hover{background-color:#d97c30}.has-bg-beige-600-hover:hover{background-color:#a45a1e}.has-bg-beige-700-hover:hover{background-color:#7d4517}.has-bg-beige-800-hover:hover{background-color:#4e2b0e}.has-bg-beige-900-hover:hover{background-color:#341c09}.has-bg-yellow-100-hover:hover{background-color:#fffcf5}.has-bg-yellow-200-hover:hover{background-color:#fef6e1}.has-bg-yellow-300-hover:hover{background-color:#feebbe}.has-bg-yellow-400-hover:hover{background-color:#fbc850}.has-bg-yellow-500-hover:hover{background-color:#f0a905}.has-bg-yellow-600-hover:hover{background-color:#be8004}.has-bg-yellow-700-hover:hover{background-color:#905604}.has-bg-yellow-800-hover:hover{background-color:#593103}.has-bg-yellow-900-hover:hover{background-color:#3b2002}.has-bg-green-100-hover:hover{background-color:#f7fdf9}.has-bg-green-200-hover:hover{background-color:#e7f9ee}.has-bg-green-300-hover:hover{background-color:#cbf1d9}.has-bg-green-400-hover:hover{background-color:#72da9b}.has-bg-green-500-hover:hover{background-color:#34c56e}.has-bg-green-600-hover:hover{background-color:#299956}.has-bg-green-700-hover:hover{background-color:#1e713f}.has-bg-green-800-hover:hover{background-color:#134929}.has-bg-green-900-hover:hover{background-color:#0d301b}.has-bg-mint-100-hover:hover{background-color:#f7fdfb}.has-bg-mint-200-hover:hover{background-color:#e7f8f4}.has-bg-mint-300-hover:hover{background-color:#cbf0e7}.has-bg-mint-400-hover:hover{background-color:#80dbc4}.has-bg-mint-500-hover:hover{background-color:#38c7a3}.has-bg-mint-600-hover:hover{background-color:#2b977c}.has-bg-mint-700-hover:hover{background-color:#21735f}.has-bg-mint-800-hover:hover{background-color:#14483b}.has-bg-mint-900-hover:hover{background-color:#0d3027}.has-bg-aqua-100-hover:hover{background-color:#f6fcfe}.has-bg-aqua-200-hover:hover{background-color:#e4f7fb}.has-bg-aqua-300-hover:hover{background-color:#c1ecf6}.has-bg-aqua-400-hover:hover{background-color:#75d7ea}.has-bg-aqua-500-hover:hover{background-color:#21bede}.has-bg-aqua-600-hover:hover{background-color:#1991a9}.has-bg-aqua-700-hover:hover{background-color:#136e81}.has-bg-aqua-800-hover:hover{background-color:#0c4550}.has-bg-aqua-900-hover:hover{background-color:#082e35}.has-bg-blue-100-hover:hover{background-color:#f5f9ff}.has-bg-blue-200-hover:hover{background-color:#cce2ff}.has-bg-blue-300-hover:hover{background-color:#9bc5fd}.has-bg-blue-400-hover:hover{background-color:#63a8fd}.has-bg-blue-500-hover:hover{background-color:#1c76fd}.has-bg-blue-600-hover:hover{background-color:#025cca}.has-bg-blue-700-hover:hover{background-color:#024597}.has-bg-blue-800-hover:hover{background-color:#022464}.has-bg-blue-900-hover:hover{background-color:#011232}.has-bg-royal-100-hover:hover{background-color:#f6f7fd}.has-bg-royal-200-hover:hover{background-color:#e5e7fa}.has-bg-royal-300-hover:hover{background-color:#c7cbf4}.has-bg-royal-400-hover:hover{background-color:#7d85e3}.has-bg-royal-500-hover:hover{background-color:#3542d4}.has-bg-royal-600-hover:hover{background-color:#202ba2}.has-bg-royal-700-hover:hover{background-color:#18217b}.has-bg-royal-800-hover:hover{background-color:#0f144d}.has-bg-royal-900-hover:hover{background-color:#0a0d33}.has-bg-purple-100-hover:hover{background-color:#f9f7fd}.has-bg-purple-200-hover:hover{background-color:#ebe5fa}.has-bg-purple-300-hover:hover{background-color:#d5c8f3}.has-bg-purple-400-hover:hover{background-color:#9678e2}.has-bg-purple-500-hover:hover{background-color:#6235d4}.has-bg-purple-600-hover:hover{background-color:#4622a0}.has-bg-purple-700-hover:hover{background-color:#351a7a}.has-bg-purple-800-hover:hover{background-color:#21104c}.has-bg-purple-900-hover:hover{background-color:#160b32}.has-bg-pink-100-hover:hover{background-color:#fdf6fa}.has-bg-pink-200-hover:hover{background-color:#fae5f1}.has-bg-pink-300-hover:hover{background-color:#f5c7e0}.has-bg-pink-400-hover:hover{background-color:#e675b3}.has-bg-pink-500-hover:hover{background-color:#d9308d}.has-bg-pink-600-hover:hover{background-color:#a41e68}.has-bg-pink-700-hover:hover{background-color:#7d174f}.has-bg-pink-800-hover:hover{background-color:#4e0e31}.has-bg-pink-900-hover:hover{background-color:#340921}.has-bg-primary-focus:focus{background-color:#1c76fd}.has-bg-secondary-focus:focus{background-color:#3542d4}.has-bg-muted-focus:focus{background-color:#ebedef}.has-bg-text-focus:focus{background-color:#363f4f}.has-bg-heading-focus:focus{background-color:#1d2734}.has-bg-background-focus:focus{background-color:#fff}.has-bg-gray-100-focus:focus{background-color:#f6f7f9}.has-bg-gray-200-focus:focus{background-color:#ebedef}.has-bg-gray-300-focus:focus{background-color:#d4d8dd}.has-bg-gray-400-focus:focus{background-color:#a4abb6}.has-bg-gray-500-focus:focus{background-color:#747c8b}.has-bg-gray-600-focus:focus{background-color:#4b5563}.has-bg-gray-700-focus:focus{background-color:#363f4f}.has-bg-gray-800-focus:focus{background-color:#1d2734}.has-bg-gray-900-focus:focus{background-color:#101623}.has-bg-neutral-100-focus:focus{background-color:#fafafa}.has-bg-neutral-200-focus:focus{background-color:#eaeaec}.has-bg-neutral-300-focus:focus{background-color:#dadadd}.has-bg-neutral-400-focus:focus{background-color:#a7a7af}.has-bg-neutral-500-focus:focus{background-color:#76767f}.has-bg-neutral-600-focus:focus{background-color:#55555e}.has-bg-neutral-700-focus:focus{background-color:#44444b}.has-bg-neutral-800-focus:focus{background-color:#2c2c30}.has-bg-neutral-900-focus:focus{background-color:#1d1d20}.has-bg-warm-100-focus:focus{background-color:#fafaf9}.has-bg-warm-200-focus:focus{background-color:#f0f0ef}.has-bg-warm-300-focus:focus{background-color:#e0dddc}.has-bg-warm-400-focus:focus{background-color:#b2aca9}.has-bg-warm-500-focus:focus{background-color:#817974}.has-bg-warm-600-focus:focus{background-color:#5d5651}.has-bg-warm-700-focus:focus{background-color:#48423d}.has-bg-warm-800-focus:focus{background-color:#2e2a29}.has-bg-warm-900-focus:focus{background-color:#211e1c}.has-bg-red-100-focus:focus{background-color:#fef6f6}.has-bg-red-200-focus:focus{background-color:#fbe5e5}.has-bg-red-300-focus:focus{background-color:#f7c5c5}.has-bg-red-400-focus:focus{background-color:#eb7870}.has-bg-red-500-focus:focus{background-color:#e23636}.has-bg-red-600-focus:focus{background-color:#a61c1c}.has-bg-red-700-focus:focus{background-color:#7a1515}.has-bg-red-800-focus:focus{background-color:#500c0c}.has-bg-red-900-focus:focus{background-color:#350808}.has-bg-orange-100-focus:focus{background-color:#fef8f6}.has-bg-orange-200-focus:focus{background-color:#fde9e2}.has-bg-orange-300-focus:focus{background-color:#fbd0c1}.has-bg-orange-400-focus:focus{background-color:#f38d68}.has-bg-orange-500-focus:focus{background-color:#e85621}.has-bg-orange-600-focus:focus{background-color:#ae3d13}.has-bg-orange-700-focus:focus{background-color:#832c0c}.has-bg-orange-800-focus:focus{background-color:#551c07}.has-bg-orange-900-focus:focus{background-color:#381305}.has-bg-beige-100-focus:focus{background-color:#fdf9f6}.has-bg-beige-200-focus:focus{background-color:#faefe5}.has-bg-beige-300-focus:focus{background-color:#f4dcc7}.has-bg-beige-400-focus:focus{background-color:#e6a875}.has-bg-beige-500-focus:focus{background-color:#d97c30}.has-bg-beige-600-focus:focus{background-color:#a45a1e}.has-bg-beige-700-focus:focus{background-color:#7d4517}.has-bg-beige-800-focus:focus{background-color:#4e2b0e}.has-bg-beige-900-focus:focus{background-color:#341c09}.has-bg-yellow-100-focus:focus{background-color:#fffcf5}.has-bg-yellow-200-focus:focus{background-color:#fef6e1}.has-bg-yellow-300-focus:focus{background-color:#feebbe}.has-bg-yellow-400-focus:focus{background-color:#fbc850}.has-bg-yellow-500-focus:focus{background-color:#f0a905}.has-bg-yellow-600-focus:focus{background-color:#be8004}.has-bg-yellow-700-focus:focus{background-color:#905604}.has-bg-yellow-800-focus:focus{background-color:#593103}.has-bg-yellow-900-focus:focus{background-color:#3b2002}.has-bg-green-100-focus:focus{background-color:#f7fdf9}.has-bg-green-200-focus:focus{background-color:#e7f9ee}.has-bg-green-300-focus:focus{background-color:#cbf1d9}.has-bg-green-400-focus:focus{background-color:#72da9b}.has-bg-green-500-focus:focus{background-color:#34c56e}.has-bg-green-600-focus:focus{background-color:#299956}.has-bg-green-700-focus:focus{background-color:#1e713f}.has-bg-green-800-focus:focus{background-color:#134929}.has-bg-green-900-focus:focus{background-color:#0d301b}.has-bg-mint-100-focus:focus{background-color:#f7fdfb}.has-bg-mint-200-focus:focus{background-color:#e7f8f4}.has-bg-mint-300-focus:focus{background-color:#cbf0e7}.has-bg-mint-400-focus:focus{background-color:#80dbc4}.has-bg-mint-500-focus:focus{background-color:#38c7a3}.has-bg-mint-600-focus:focus{background-color:#2b977c}.has-bg-mint-700-focus:focus{background-color:#21735f}.has-bg-mint-800-focus:focus{background-color:#14483b}.has-bg-mint-900-focus:focus{background-color:#0d3027}.has-bg-aqua-100-focus:focus{background-color:#f6fcfe}.has-bg-aqua-200-focus:focus{background-color:#e4f7fb}.has-bg-aqua-300-focus:focus{background-color:#c1ecf6}.has-bg-aqua-400-focus:focus{background-color:#75d7ea}.has-bg-aqua-500-focus:focus{background-color:#21bede}.has-bg-aqua-600-focus:focus{background-color:#1991a9}.has-bg-aqua-700-focus:focus{background-color:#136e81}.has-bg-aqua-800-focus:focus{background-color:#0c4550}.has-bg-aqua-900-focus:focus{background-color:#082e35}.has-bg-blue-100-focus:focus{background-color:#f5f9ff}.has-bg-blue-200-focus:focus{background-color:#cce2ff}.has-bg-blue-300-focus:focus{background-color:#9bc5fd}.has-bg-blue-400-focus:focus{background-color:#63a8fd}.has-bg-blue-500-focus:focus{background-color:#1c76fd}.has-bg-blue-600-focus:focus{background-color:#025cca}.has-bg-blue-700-focus:focus{background-color:#024597}.has-bg-blue-800-focus:focus{background-color:#022464}.has-bg-blue-900-focus:focus{background-color:#011232}.has-bg-royal-100-focus:focus{background-color:#f6f7fd}.has-bg-royal-200-focus:focus{background-color:#e5e7fa}.has-bg-royal-300-focus:focus{background-color:#c7cbf4}.has-bg-royal-400-focus:focus{background-color:#7d85e3}.has-bg-royal-500-focus:focus{background-color:#3542d4}.has-bg-royal-600-focus:focus{background-color:#202ba2}.has-bg-royal-700-focus:focus{background-color:#18217b}.has-bg-royal-800-focus:focus{background-color:#0f144d}.has-bg-royal-900-focus:focus{background-color:#0a0d33}.has-bg-purple-100-focus:focus{background-color:#f9f7fd}.has-bg-purple-200-focus:focus{background-color:#ebe5fa}.has-bg-purple-300-focus:focus{background-color:#d5c8f3}.has-bg-purple-400-focus:focus{background-color:#9678e2}.has-bg-purple-500-focus:focus{background-color:#6235d4}.has-bg-purple-600-focus:focus{background-color:#4622a0}.has-bg-purple-700-focus:focus{background-color:#351a7a}.has-bg-purple-800-focus:focus{background-color:#21104c}.has-bg-purple-900-focus:focus{background-color:#160b32}.has-bg-pink-100-focus:focus{background-color:#fdf6fa}.has-bg-pink-200-focus:focus{background-color:#fae5f1}.has-bg-pink-300-focus:focus{background-color:#f5c7e0}.has-bg-pink-400-focus:focus{background-color:#e675b3}.has-bg-pink-500-focus:focus{background-color:#d9308d}.has-bg-pink-600-focus:focus{background-color:#a41e68}.has-bg-pink-700-focus:focus{background-color:#7d174f}.has-bg-pink-800-focus:focus{background-color:#4e0e31}.has-bg-pink-900-focus:focus{background-color:#340921}.has-bg-white,.has-bg-white-focus:focus,.has-bg-white-hover:hover{background-color:#fff}.has-bg-black,.has-bg-black-focus:focus,.has-bg-black-hover:hover{background-color:#000}.has-bg-current,.has-bg-current-focus:focus,.has-bg-current-hover:hover{background-color:currentColor}.has-bg-transparent,.has-bg-transparent-focus:focus,.has-bg-transparent-hover:hover{background-color:transparent}.has-text-primary{color:#1c76fd}.has-text-secondary{color:#3542d4}.has-text-muted{color:#ebedef}.has-text-text{color:#363f4f}.has-text-heading{color:#1d2734}.has-text-background{color:#fff}.has-text-gray-100{color:#f6f7f9}.has-text-gray-200{color:#ebedef}.has-text-gray-300{color:#d4d8dd}.has-text-gray-400{color:#a4abb6}.has-text-gray-500{color:#747c8b}.has-text-gray-600{color:#4b5563}.has-text-gray-700{color:#363f4f}.has-text-gray-800{color:#1d2734}.has-text-gray-900{color:#101623}.has-text-neutral-100{color:#fafafa}.has-text-neutral-200{color:#eaeaec}.has-text-neutral-300{color:#dadadd}.has-text-neutral-400{color:#a7a7af}.has-text-neutral-500{color:#76767f}.has-text-neutral-600{color:#55555e}.has-text-neutral-700{color:#44444b}.has-text-neutral-800{color:#2c2c30}.has-text-neutral-900{color:#1d1d20}.has-text-warm-100{color:#fafaf9}.has-text-warm-200{color:#f0f0ef}.has-text-warm-300{color:#e0dddc}.has-text-warm-400{color:#b2aca9}.has-text-warm-500{color:#817974}.has-text-warm-600{color:#5d5651}.has-text-warm-700{color:#48423d}.has-text-warm-800{color:#2e2a29}.has-text-warm-900{color:#211e1c}.has-text-red-100{color:#fef6f6}.has-text-red-200{color:#fbe5e5}.has-text-red-300{color:#f7c5c5}.has-text-red-400{color:#eb7870}.has-text-red-500{color:#e23636}.has-text-red-600{color:#a61c1c}.has-text-red-700{color:#7a1515}.has-text-red-800{color:#500c0c}.has-text-red-900{color:#350808}.has-text-orange-100{color:#fef8f6}.has-text-orange-200{color:#fde9e2}.has-text-orange-300{color:#fbd0c1}.has-text-orange-400{color:#f38d68}.has-text-orange-500{color:#e85621}.has-text-orange-600{color:#ae3d13}.has-text-orange-700{color:#832c0c}.has-text-orange-800{color:#551c07}.has-text-orange-900{color:#381305}.has-text-beige-100{color:#fdf9f6}.has-text-beige-200{color:#faefe5}.has-text-beige-300{color:#f4dcc7}.has-text-beige-400{color:#e6a875}.has-text-beige-500{color:#d97c30}.has-text-beige-600{color:#a45a1e}.has-text-beige-700{color:#7d4517}.has-text-beige-800{color:#4e2b0e}.has-text-beige-900{color:#341c09}.has-text-yellow-100{color:#fffcf5}.has-text-yellow-200{color:#fef6e1}.has-text-yellow-300{color:#feebbe}.has-text-yellow-400{color:#fbc850}.has-text-yellow-500{color:#f0a905}.has-text-yellow-600{color:#be8004}.has-text-yellow-700{color:#905604}.has-text-yellow-800{color:#593103}.has-text-yellow-900{color:#3b2002}.has-text-green-100{color:#f7fdf9}.has-text-green-200{color:#e7f9ee}.has-text-green-300{color:#cbf1d9}.has-text-green-400{color:#72da9b}.has-text-green-500{color:#34c56e}.has-text-green-600{color:#299956}.has-text-green-700{color:#1e713f}.has-text-green-800{color:#134929}.has-text-green-900{color:#0d301b}.has-text-mint-100{color:#f7fdfb}.has-text-mint-200{color:#e7f8f4}.has-text-mint-300{color:#cbf0e7}.has-text-mint-400{color:#80dbc4}.has-text-mint-500{color:#38c7a3}.has-text-mint-600{color:#2b977c}.has-text-mint-700{color:#21735f}.has-text-mint-800{color:#14483b}.has-text-mint-900{color:#0d3027}.has-text-aqua-100{color:#f6fcfe}.has-text-aqua-200{color:#e4f7fb}.has-text-aqua-300{color:#c1ecf6}.has-text-aqua-400{color:#75d7ea}.has-text-aqua-500{color:#21bede}.has-text-aqua-600{color:#1991a9}.has-text-aqua-700{color:#136e81}.has-text-aqua-800{color:#0c4550}.has-text-aqua-900{color:#082e35}.has-text-blue-100{color:#f5f9ff}.has-text-blue-200{color:#cce2ff}.has-text-blue-300{color:#9bc5fd}.has-text-blue-400{color:#63a8fd}.has-text-blue-500{color:#1c76fd}.has-text-blue-600{color:#025cca}.has-text-blue-700{color:#024597}.has-text-blue-800{color:#022464}.has-text-blue-900{color:#011232}.has-text-royal-100{color:#f6f7fd}.has-text-royal-200{color:#e5e7fa}.has-text-royal-300{color:#c7cbf4}.has-text-royal-400{color:#7d85e3}.has-text-royal-500{color:#3542d4}.has-text-royal-600{color:#202ba2}.has-text-royal-700{color:#18217b}.has-text-royal-800{color:#0f144d}.has-text-royal-900{color:#0a0d33}.has-text-purple-100{color:#f9f7fd}.has-text-purple-200{color:#ebe5fa}.has-text-purple-300{color:#d5c8f3}.has-text-purple-400{color:#9678e2}.has-text-purple-500{color:#6235d4}.has-text-purple-600{color:#4622a0}.has-text-purple-700{color:#351a7a}.has-text-purple-800{color:#21104c}.has-text-purple-900{color:#160b32}.has-text-pink-100{color:#fdf6fa}.has-text-pink-200{color:#fae5f1}.has-text-pink-300{color:#f5c7e0}.has-text-pink-400{color:#e675b3}.has-text-pink-500{color:#d9308d}.has-text-pink-600{color:#a41e68}.has-text-pink-700{color:#7d174f}.has-text-pink-800{color:#4e0e31}.has-text-pink-900{color:#340921}.has-text-primary-hover:hover{color:#1c76fd}.has-text-secondary-hover:hover{color:#3542d4}.has-text-muted-hover:hover{color:#ebedef}.has-text-text-hover:hover{color:#363f4f}.has-text-heading-hover:hover{color:#1d2734}.has-text-background-hover:hover{color:#fff}.has-text-gray-100-hover:hover{color:#f6f7f9}.has-text-gray-200-hover:hover{color:#ebedef}.has-text-gray-300-hover:hover{color:#d4d8dd}.has-text-gray-400-hover:hover{color:#a4abb6}.has-text-gray-500-hover:hover{color:#747c8b}.has-text-gray-600-hover:hover{color:#4b5563}.has-text-gray-700-hover:hover{color:#363f4f}.has-text-gray-800-hover:hover{color:#1d2734}.has-text-gray-900-hover:hover{color:#101623}.has-text-neutral-100-hover:hover{color:#fafafa}.has-text-neutral-200-hover:hover{color:#eaeaec}.has-text-neutral-300-hover:hover{color:#dadadd}.has-text-neutral-400-hover:hover{color:#a7a7af}.has-text-neutral-500-hover:hover{color:#76767f}.has-text-neutral-600-hover:hover{color:#55555e}.has-text-neutral-700-hover:hover{color:#44444b}.has-text-neutral-800-hover:hover{color:#2c2c30}.has-text-neutral-900-hover:hover{color:#1d1d20}.has-text-warm-100-hover:hover{color:#fafaf9}.has-text-warm-200-hover:hover{color:#f0f0ef}.has-text-warm-300-hover:hover{color:#e0dddc}.has-text-warm-400-hover:hover{color:#b2aca9}.has-text-warm-500-hover:hover{color:#817974}.has-text-warm-600-hover:hover{color:#5d5651}.has-text-warm-700-hover:hover{color:#48423d}.has-text-warm-800-hover:hover{color:#2e2a29}.has-text-warm-900-hover:hover{color:#211e1c}.has-text-red-100-hover:hover{color:#fef6f6}.has-text-red-200-hover:hover{color:#fbe5e5}.has-text-red-300-hover:hover{color:#f7c5c5}.has-text-red-400-hover:hover{color:#eb7870}.has-text-red-500-hover:hover{color:#e23636}.has-text-red-600-hover:hover{color:#a61c1c}.has-text-red-700-hover:hover{color:#7a1515}.has-text-red-800-hover:hover{color:#500c0c}.has-text-red-900-hover:hover{color:#350808}.has-text-orange-100-hover:hover{color:#fef8f6}.has-text-orange-200-hover:hover{color:#fde9e2}.has-text-orange-300-hover:hover{color:#fbd0c1}.has-text-orange-400-hover:hover{color:#f38d68}.has-text-orange-500-hover:hover{color:#e85621}.has-text-orange-600-hover:hover{color:#ae3d13}.has-text-orange-700-hover:hover{color:#832c0c}.has-text-orange-800-hover:hover{color:#551c07}.has-text-orange-900-hover:hover{color:#381305}.has-text-beige-100-hover:hover{color:#fdf9f6}.has-text-beige-200-hover:hover{color:#faefe5}.has-text-beige-300-hover:hover{color:#f4dcc7}.has-text-beige-400-hover:hover{color:#e6a875}.has-text-beige-500-hover:hover{color:#d97c30}.has-text-beige-600-hover:hover{color:#a45a1e}.has-text-beige-700-hover:hover{color:#7d4517}.has-text-beige-800-hover:hover{color:#4e2b0e}.has-text-beige-900-hover:hover{color:#341c09}.has-text-yellow-100-hover:hover{color:#fffcf5}.has-text-yellow-200-hover:hover{color:#fef6e1}.has-text-yellow-300-hover:hover{color:#feebbe}.has-text-yellow-400-hover:hover{color:#fbc850}.has-text-yellow-500-hover:hover{color:#f0a905}.has-text-yellow-600-hover:hover{color:#be8004}.has-text-yellow-700-hover:hover{color:#905604}.has-text-yellow-800-hover:hover{color:#593103}.has-text-yellow-900-hover:hover{color:#3b2002}.has-text-green-100-hover:hover{color:#f7fdf9}.has-text-green-200-hover:hover{color:#e7f9ee}.has-text-green-300-hover:hover{color:#cbf1d9}.has-text-green-400-hover:hover{color:#72da9b}.has-text-green-500-hover:hover{color:#34c56e}.has-text-green-600-hover:hover{color:#299956}.has-text-green-700-hover:hover{color:#1e713f}.has-text-green-800-hover:hover{color:#134929}.has-text-green-900-hover:hover{color:#0d301b}.has-text-mint-100-hover:hover{color:#f7fdfb}.has-text-mint-200-hover:hover{color:#e7f8f4}.has-text-mint-300-hover:hover{color:#cbf0e7}.has-text-mint-400-hover:hover{color:#80dbc4}.has-text-mint-500-hover:hover{color:#38c7a3}.has-text-mint-600-hover:hover{color:#2b977c}.has-text-mint-700-hover:hover{color:#21735f}.has-text-mint-800-hover:hover{color:#14483b}.has-text-mint-900-hover:hover{color:#0d3027}.has-text-aqua-100-hover:hover{color:#f6fcfe}.has-text-aqua-200-hover:hover{color:#e4f7fb}.has-text-aqua-300-hover:hover{color:#c1ecf6}.has-text-aqua-400-hover:hover{color:#75d7ea}.has-text-aqua-500-hover:hover{color:#21bede}.has-text-aqua-600-hover:hover{color:#1991a9}.has-text-aqua-700-hover:hover{color:#136e81}.has-text-aqua-800-hover:hover{color:#0c4550}.has-text-aqua-900-hover:hover{color:#082e35}.has-text-blue-100-hover:hover{color:#f5f9ff}.has-text-blue-200-hover:hover{color:#cce2ff}.has-text-blue-300-hover:hover{color:#9bc5fd}.has-text-blue-400-hover:hover{color:#63a8fd}.has-text-blue-500-hover:hover{color:#1c76fd}.has-text-blue-600-hover:hover{color:#025cca}.has-text-blue-700-hover:hover{color:#024597}.has-text-blue-800-hover:hover{color:#022464}.has-text-blue-900-hover:hover{color:#011232}.has-text-royal-100-hover:hover{color:#f6f7fd}.has-text-royal-200-hover:hover{color:#e5e7fa}.has-text-royal-300-hover:hover{color:#c7cbf4}.has-text-royal-400-hover:hover{color:#7d85e3}.has-text-royal-500-hover:hover{color:#3542d4}.has-text-royal-600-hover:hover{color:#202ba2}.has-text-royal-700-hover:hover{color:#18217b}.has-text-royal-800-hover:hover{color:#0f144d}.has-text-royal-900-hover:hover{color:#0a0d33}.has-text-purple-100-hover:hover{color:#f9f7fd}.has-text-purple-200-hover:hover{color:#ebe5fa}.has-text-purple-300-hover:hover{color:#d5c8f3}.has-text-purple-400-hover:hover{color:#9678e2}.has-text-purple-500-hover:hover{color:#6235d4}.has-text-purple-600-hover:hover{color:#4622a0}.has-text-purple-700-hover:hover{color:#351a7a}.has-text-purple-800-hover:hover{color:#21104c}.has-text-purple-900-hover:hover{color:#160b32}.has-text-pink-100-hover:hover{color:#fdf6fa}.has-text-pink-200-hover:hover{color:#fae5f1}.has-text-pink-300-hover:hover{color:#f5c7e0}.has-text-pink-400-hover:hover{color:#e675b3}.has-text-pink-500-hover:hover{color:#d9308d}.has-text-pink-600-hover:hover{color:#a41e68}.has-text-pink-700-hover:hover{color:#7d174f}.has-text-pink-800-hover:hover{color:#4e0e31}.has-text-pink-900-hover:hover{color:#340921}.has-text-primary-focus:focus{color:#1c76fd}.has-text-secondary-focus:focus{color:#3542d4}.has-text-muted-focus:focus{color:#ebedef}.has-text-text-focus:focus{color:#363f4f}.has-text-heading-focus:focus{color:#1d2734}.has-text-background-focus:focus{color:#fff}.has-text-gray-100-focus:focus{color:#f6f7f9}.has-text-gray-200-focus:focus{color:#ebedef}.has-text-gray-300-focus:focus{color:#d4d8dd}.has-text-gray-400-focus:focus{color:#a4abb6}.has-text-gray-500-focus:focus{color:#747c8b}.has-text-gray-600-focus:focus{color:#4b5563}.has-text-gray-700-focus:focus{color:#363f4f}.has-text-gray-800-focus:focus{color:#1d2734}.has-text-gray-900-focus:focus{color:#101623}.has-text-neutral-100-focus:focus{color:#fafafa}.has-text-neutral-200-focus:focus{color:#eaeaec}.has-text-neutral-300-focus:focus{color:#dadadd}.has-text-neutral-400-focus:focus{color:#a7a7af}.has-text-neutral-500-focus:focus{color:#76767f}.has-text-neutral-600-focus:focus{color:#55555e}.has-text-neutral-700-focus:focus{color:#44444b}.has-text-neutral-800-focus:focus{color:#2c2c30}.has-text-neutral-900-focus:focus{color:#1d1d20}.has-text-warm-100-focus:focus{color:#fafaf9}.has-text-warm-200-focus:focus{color:#f0f0ef}.has-text-warm-300-focus:focus{color:#e0dddc}.has-text-warm-400-focus:focus{color:#b2aca9}.has-text-warm-500-focus:focus{color:#817974}.has-text-warm-600-focus:focus{color:#5d5651}.has-text-warm-700-focus:focus{color:#48423d}.has-text-warm-800-focus:focus{color:#2e2a29}.has-text-warm-900-focus:focus{color:#211e1c}.has-text-red-100-focus:focus{color:#fef6f6}.has-text-red-200-focus:focus{color:#fbe5e5}.has-text-red-300-focus:focus{color:#f7c5c5}.has-text-red-400-focus:focus{color:#eb7870}.has-text-red-500-focus:focus{color:#e23636}.has-text-red-600-focus:focus{color:#a61c1c}.has-text-red-700-focus:focus{color:#7a1515}.has-text-red-800-focus:focus{color:#500c0c}.has-text-red-900-focus:focus{color:#350808}.has-text-orange-100-focus:focus{color:#fef8f6}.has-text-orange-200-focus:focus{color:#fde9e2}.has-text-orange-300-focus:focus{color:#fbd0c1}.has-text-orange-400-focus:focus{color:#f38d68}.has-text-orange-500-focus:focus{color:#e85621}.has-text-orange-600-focus:focus{color:#ae3d13}.has-text-orange-700-focus:focus{color:#832c0c}.has-text-orange-800-focus:focus{color:#551c07}.has-text-orange-900-focus:focus{color:#381305}.has-text-beige-100-focus:focus{color:#fdf9f6}.has-text-beige-200-focus:focus{color:#faefe5}.has-text-beige-300-focus:focus{color:#f4dcc7}.has-text-beige-400-focus:focus{color:#e6a875}.has-text-beige-500-focus:focus{color:#d97c30}.has-text-beige-600-focus:focus{color:#a45a1e}.has-text-beige-700-focus:focus{color:#7d4517}.has-text-beige-800-focus:focus{color:#4e2b0e}.has-text-beige-900-focus:focus{color:#341c09}.has-text-yellow-100-focus:focus{color:#fffcf5}.has-text-yellow-200-focus:focus{color:#fef6e1}.has-text-yellow-300-focus:focus{color:#feebbe}.has-text-yellow-400-focus:focus{color:#fbc850}.has-text-yellow-500-focus:focus{color:#f0a905}.has-text-yellow-600-focus:focus{color:#be8004}.has-text-yellow-700-focus:focus{color:#905604}.has-text-yellow-800-focus:focus{color:#593103}.has-text-yellow-900-focus:focus{color:#3b2002}.has-text-green-100-focus:focus{color:#f7fdf9}.has-text-green-200-focus:focus{color:#e7f9ee}.has-text-green-300-focus:focus{color:#cbf1d9}.has-text-green-400-focus:focus{color:#72da9b}.has-text-green-500-focus:focus{color:#34c56e}.has-text-green-600-focus:focus{color:#299956}.has-text-green-700-focus:focus{color:#1e713f}.has-text-green-800-focus:focus{color:#134929}.has-text-green-900-focus:focus{color:#0d301b}.has-text-mint-100-focus:focus{color:#f7fdfb}.has-text-mint-200-focus:focus{color:#e7f8f4}.has-text-mint-300-focus:focus{color:#cbf0e7}.has-text-mint-400-focus:focus{color:#80dbc4}.has-text-mint-500-focus:focus{color:#38c7a3}.has-text-mint-600-focus:focus{color:#2b977c}.has-text-mint-700-focus:focus{color:#21735f}.has-text-mint-800-focus:focus{color:#14483b}.has-text-mint-900-focus:focus{color:#0d3027}.has-text-aqua-100-focus:focus{color:#f6fcfe}.has-text-aqua-200-focus:focus{color:#e4f7fb}.has-text-aqua-300-focus:focus{color:#c1ecf6}.has-text-aqua-400-focus:focus{color:#75d7ea}.has-text-aqua-500-focus:focus{color:#21bede}.has-text-aqua-600-focus:focus{color:#1991a9}.has-text-aqua-700-focus:focus{color:#136e81}.has-text-aqua-800-focus:focus{color:#0c4550}.has-text-aqua-900-focus:focus{color:#082e35}.has-text-blue-100-focus:focus{color:#f5f9ff}.has-text-blue-200-focus:focus{color:#cce2ff}.has-text-blue-300-focus:focus{color:#9bc5fd}.has-text-blue-400-focus:focus{color:#63a8fd}.has-text-blue-500-focus:focus{color:#1c76fd}.has-text-blue-600-focus:focus{color:#025cca}.has-text-blue-700-focus:focus{color:#024597}.has-text-blue-800-focus:focus{color:#022464}.has-text-blue-900-focus:focus{color:#011232}.has-text-royal-100-focus:focus{color:#f6f7fd}.has-text-royal-200-focus:focus{color:#e5e7fa}.has-text-royal-300-focus:focus{color:#c7cbf4}.has-text-royal-400-focus:focus{color:#7d85e3}.has-text-royal-500-focus:focus{color:#3542d4}.has-text-royal-600-focus:focus{color:#202ba2}.has-text-royal-700-focus:focus{color:#18217b}.has-text-royal-800-focus:focus{color:#0f144d}.has-text-royal-900-focus:focus{color:#0a0d33}.has-text-purple-100-focus:focus{color:#f9f7fd}.has-text-purple-200-focus:focus{color:#ebe5fa}.has-text-purple-300-focus:focus{color:#d5c8f3}.has-text-purple-400-focus:focus{color:#9678e2}.has-text-purple-500-focus:focus{color:#6235d4}.has-text-purple-600-focus:focus{color:#4622a0}.has-text-purple-700-focus:focus{color:#351a7a}.has-text-purple-800-focus:focus{color:#21104c}.has-text-purple-900-focus:focus{color:#160b32}.has-text-pink-100-focus:focus{color:#fdf6fa}.has-text-pink-200-focus:focus{color:#fae5f1}.has-text-pink-300-focus:focus{color:#f5c7e0}.has-text-pink-400-focus:focus{color:#e675b3}.has-text-pink-500-focus:focus{color:#d9308d}.has-text-pink-600-focus:focus{color:#a41e68}.has-text-pink-700-focus:focus{color:#7d174f}.has-text-pink-800-focus:focus{color:#4e0e31}.has-text-pink-900-focus:focus{color:#340921}.has-text-white,.has-text-white-focus:focus,.has-text-white-hover:hover{color:#fff}.has-text-black,.has-text-black-focus:focus,.has-text-black-hover:hover{color:#000}.has-text-current,.has-text-current-focus:focus,.has-text-current-hover:hover{color:currentColor}.has-text-transparent,.has-text-transparent-focus:focus,.has-text-transparent-hover:hover{color:transparent}.has-font-body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif}.has-font-heading{font-family:inherit}.has-font-sans{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif}.has-font-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,'Liberation Mono','Courier New',monospace}.has-size-0{font-size:.875rem}.has-size-1{font-size:16px}.has-size-2{font-size:1.25rem}.has-size-3{font-size:1.5rem}.has-size-4{font-size:1.75rem}.has-size-5{font-size:2rem}.has-size-6{font-size:2.5rem}.has-size-7{font-size:3rem}.has-size-8{font-size:3.5rem}.has-size-9{font-size:4rem}.has-size-10{font-size:4.5rem}.has-weight-body{font-weight:400}.has-weight-bold,.has-weight-heading{font-weight:700}.has-weight-black{font-weight:900}.has-lh-heading{line-height:1.25}.has-lh-body{line-height:1.5}.has-lh-none{line-height:1}.has-lh-tight{line-height:1.25}.has-lh-normal{line-height:1.5}.has-lh-loose{line-height:2}.has-opacity-0{opacity:0}.has-opacity-25{opacity:.25}.has-opacity-50{opacity:.5}.has-opacity-75{opacity:.75}.has-opacity-100{opacity:100}.has-opacity-0-hover:hover{opacity:0}.has-opacity-25-hover:hover{opacity:.25}.has-opacity-50-hover:hover{opacity:.5}.has-opacity-75-hover:hover{opacity:.75}.has-opacity-100-hover:hover{opacity:100}.has-radius-sm{border-radius:.25rem}.has-radius-md{border-radius:.5rem}.has-radius-lg{border-radius:.75rem}.has-radius-xl{border-radius:1rem}.has-radius-none{border-radius:0}.has-radius-full{border-radius:9999px}.has-shadow-sm{box-shadow:0 .25rem 1rem -.125rem rgba(54,63,79,.15),0 0 0 1px rgba(54,63,79,.02)}.has-shadow-md{box-shadow:0 .5rem 1rem -.25rem rgba(54,63,79,.2),0 0 0 1px rgba(54,63,79,.02)}.has-shadow-lg{box-shadow:0 1rem 1rem -.5rem rgba(54,63,79,.25),0 0 0 1px rgba(54,63,79,.02)}.has-shadow-none{box-shadow:none}.has-w-0{width:0}.has-w-1{width:.25rem}.has-w-2{width:.5rem}.has-w-3{width:.75rem}.has-w-4{width:1rem}.has-w-6{width:1.5rem}.has-w-8{width:2rem}.has-w-12{width:3rem}.has-w-16{width:4rem}.has-w-24{width:6rem}.has-w-32{width:8rem}.has-w-40{width:10rem}.has-w-48{width:12rem}.has-w-64{width:16rem}.has-w-80{width:20rem}.has-w-96{width:24rem}.has-w-192{width:48rem}@media screen and (max-width:640px){.has-opacity-0-mobile{opacity:0}.has-opacity-25-mobile{opacity:.25}.has-opacity-50-mobile{opacity:.5}.has-opacity-75-mobile{opacity:.75}.has-opacity-100-mobile{opacity:100}.has-w-0-mobile{width:0}.has-w-1-mobile{width:.25rem}.has-w-2-mobile{width:.5rem}.has-w-3-mobile{width:.75rem}.has-w-4-mobile{width:1rem}.has-w-6-mobile{width:1.5rem}.has-w-8-mobile{width:2rem}.has-w-12-mobile{width:3rem}.has-w-16-mobile{width:4rem}.has-w-24-mobile{width:6rem}.has-w-32-mobile{width:8rem}.has-w-40-mobile{width:10rem}.has-w-48-mobile{width:12rem}.has-w-64-mobile{width:16rem}.has-w-80-mobile{width:20rem}.has-w-96-mobile{width:24rem}.has-w-192-mobile{width:48rem}}@media screen and (min-width:640px){.has-opacity-0-tablet{opacity:0}.has-opacity-25-tablet{opacity:.25}.has-opacity-50-tablet{opacity:.5}.has-opacity-75-tablet{opacity:.75}.has-opacity-100-tablet{opacity:100}.has-w-0-tablet{width:0}.has-w-1-tablet{width:.25rem}.has-w-2-tablet{width:.5rem}.has-w-3-tablet{width:.75rem}.has-w-4-tablet{width:1rem}.has-w-6-tablet{width:1.5rem}.has-w-8-tablet{width:2rem}.has-w-12-tablet{width:3rem}.has-w-16-tablet{width:4rem}.has-w-24-tablet{width:6rem}.has-w-32-tablet{width:8rem}.has-w-40-tablet{width:10rem}.has-w-48-tablet{width:12rem}.has-w-64-tablet{width:16rem}.has-w-80-tablet{width:20rem}.has-w-96-tablet{width:24rem}.has-w-192-tablet{width:48rem}}@media screen and (min-width:1264px){.has-opacity-0-desktop{opacity:0}.has-opacity-25-desktop{opacity:.25}.has-opacity-50-desktop{opacity:.5}.has-opacity-75-desktop{opacity:.75}.has-opacity-100-desktop{opacity:100}.has-w-0-desktop{width:0}.has-w-1-desktop{width:.25rem}.has-w-2-desktop{width:.5rem}.has-w-3-desktop{width:.75rem}.has-w-4-desktop{width:1rem}.has-w-6-desktop{width:1.5rem}.has-w-8-desktop{width:2rem}.has-w-12-desktop{width:3rem}.has-w-16-desktop{width:4rem}.has-w-24-desktop{width:6rem}.has-w-32-desktop{width:8rem}.has-w-40-desktop{width:10rem}.has-w-48-desktop{width:12rem}.has-w-64-desktop{width:16rem}.has-w-80-desktop{width:20rem}.has-w-96-desktop{width:24rem}.has-w-192-desktop{width:48rem}}@media screen and (min-width:1504px){.has-opacity-0-widescreen{opacity:0}.has-opacity-25-widescreen{opacity:.25}.has-opacity-50-widescreen{opacity:.5}.has-opacity-75-widescreen{opacity:.75}.has-opacity-100-widescreen{opacity:100}.has-w-0-widescreen{width:0}.has-w-1-widescreen{width:.25rem}.has-w-2-widescreen{width:.5rem}.has-w-3-widescreen{width:.75rem}.has-w-4-widescreen{width:1rem}.has-w-6-widescreen{width:1.5rem}.has-w-8-widescreen{width:2rem}.has-w-12-widescreen{width:3rem}.has-w-16-widescreen{width:4rem}.has-w-24-widescreen{width:6rem}.has-w-32-widescreen{width:8rem}.has-w-40-widescreen{width:10rem}.has-w-48-widescreen{width:12rem}.has-w-64-widescreen{width:16rem}.has-w-80-widescreen{width:20rem}.has-w-96-widescreen{width:24rem}.has-w-192-widescreen{width:48rem}.has-w-none-widescreen{width:0}}.has-w-none{width:0}@media screen and (max-width:640px){.has-w-none-mobile{width:0}}@media screen and (min-width:640px){.has-w-none-tablet{width:0}}@media screen and (min-width:1264px){.has-w-none-desktop{width:0}.has-w-one-desktop{width:1px}}.has-w-one{width:1px}@media screen and (max-width:640px){.has-w-one-mobile{width:1px}}@media screen and (min-width:640px){.has-w-one-tablet{width:1px}}@media screen and (min-width:1504px){.has-w-one-widescreen{width:1px}.has-w-half-widescreen{width:50%}}.has-w-half{width:50%}@media screen and (max-width:640px){.has-w-half-mobile{width:50%}}@media screen and (min-width:640px){.has-w-half-tablet{width:50%}}@media screen and (min-width:1264px){.has-w-half-desktop{width:50%}.has-w-full-desktop{width:100%}}.has-w-full{width:100%}@media screen and (max-width:640px){.has-w-full-mobile{width:100%}}@media screen and (min-width:640px){.has-w-full-tablet{width:100%}}@media screen and (min-width:1504px){.has-w-full-widescreen{width:100%}.has-w-auto-widescreen{width:auto}}.has-w-auto{width:auto}@media screen and (max-width:640px){.has-w-auto-mobile{width:auto}}@media screen and (min-width:640px){.has-w-auto-tablet{width:auto}}@media screen and (min-width:1264px){.has-w-auto-desktop{width:auto}.has-w-screen-desktop{width:100vw}}.has-w-screen{width:100vw}.has-minw-0{min-width:0}.has-minw-1{min-width:.25rem}.has-minw-2{min-width:.5rem}.has-minw-3{min-width:.75rem}.has-minw-4{min-width:1rem}.has-minw-6{min-width:1.5rem}.has-minw-8{min-width:2rem}.has-minw-12{min-width:3rem}.has-minw-16{min-width:4rem}.has-minw-24{min-width:6rem}.has-minw-32{min-width:8rem}.has-minw-40{min-width:10rem}.has-minw-48{min-width:12rem}.has-minw-64{min-width:16rem}.has-minw-80{min-width:20rem}.has-minw-96{min-width:24rem}.has-minw-192{min-width:48rem}@media screen and (max-width:640px){.has-w-screen-mobile{width:100vw}.has-minw-0-mobile{min-width:0}.has-minw-1-mobile{min-width:.25rem}.has-minw-2-mobile{min-width:.5rem}.has-minw-3-mobile{min-width:.75rem}.has-minw-4-mobile{min-width:1rem}.has-minw-6-mobile{min-width:1.5rem}.has-minw-8-mobile{min-width:2rem}.has-minw-12-mobile{min-width:3rem}.has-minw-16-mobile{min-width:4rem}.has-minw-24-mobile{min-width:6rem}.has-minw-32-mobile{min-width:8rem}.has-minw-40-mobile{min-width:10rem}.has-minw-48-mobile{min-width:12rem}.has-minw-64-mobile{min-width:16rem}.has-minw-80-mobile{min-width:20rem}.has-minw-96-mobile{min-width:24rem}.has-minw-192-mobile{min-width:48rem}}@media screen and (min-width:640px){.has-w-screen-tablet{width:100vw}.has-minw-0-tablet{min-width:0}.has-minw-1-tablet{min-width:.25rem}.has-minw-2-tablet{min-width:.5rem}.has-minw-3-tablet{min-width:.75rem}.has-minw-4-tablet{min-width:1rem}.has-minw-6-tablet{min-width:1.5rem}.has-minw-8-tablet{min-width:2rem}.has-minw-12-tablet{min-width:3rem}.has-minw-16-tablet{min-width:4rem}.has-minw-24-tablet{min-width:6rem}.has-minw-32-tablet{min-width:8rem}.has-minw-40-tablet{min-width:10rem}.has-minw-48-tablet{min-width:12rem}.has-minw-64-tablet{min-width:16rem}.has-minw-80-tablet{min-width:20rem}.has-minw-96-tablet{min-width:24rem}.has-minw-192-tablet{min-width:48rem}}@media screen and (min-width:1264px){.has-minw-0-desktop{min-width:0}.has-minw-1-desktop{min-width:.25rem}.has-minw-2-desktop{min-width:.5rem}.has-minw-3-desktop{min-width:.75rem}.has-minw-4-desktop{min-width:1rem}.has-minw-6-desktop{min-width:1.5rem}.has-minw-8-desktop{min-width:2rem}.has-minw-12-desktop{min-width:3rem}.has-minw-16-desktop{min-width:4rem}.has-minw-24-desktop{min-width:6rem}.has-minw-32-desktop{min-width:8rem}.has-minw-40-desktop{min-width:10rem}.has-minw-48-desktop{min-width:12rem}.has-minw-64-desktop{min-width:16rem}.has-minw-80-desktop{min-width:20rem}.has-minw-96-desktop{min-width:24rem}.has-minw-192-desktop{min-width:48rem}}@media screen and (min-width:1504px){.has-w-screen-widescreen{width:100vw}.has-minw-0-widescreen{min-width:0}.has-minw-1-widescreen{min-width:.25rem}.has-minw-2-widescreen{min-width:.5rem}.has-minw-3-widescreen{min-width:.75rem}.has-minw-4-widescreen{min-width:1rem}.has-minw-6-widescreen{min-width:1.5rem}.has-minw-8-widescreen{min-width:2rem}.has-minw-12-widescreen{min-width:3rem}.has-minw-16-widescreen{min-width:4rem}.has-minw-24-widescreen{min-width:6rem}.has-minw-32-widescreen{min-width:8rem}.has-minw-40-widescreen{min-width:10rem}.has-minw-48-widescreen{min-width:12rem}.has-minw-64-widescreen{min-width:16rem}.has-minw-80-widescreen{min-width:20rem}.has-minw-96-widescreen{min-width:24rem}.has-minw-192-widescreen{min-width:48rem}.has-minw-none-widescreen{min-width:0}}.has-minw-none{min-width:0}@media screen and (max-width:640px){.has-minw-none-mobile{min-width:0}}@media screen and (min-width:640px){.has-minw-none-tablet{min-width:0}}@media screen and (min-width:1264px){.has-minw-none-desktop{min-width:0}.has-minw-one-desktop{min-width:1px}}.has-minw-one{min-width:1px}@media screen and (max-width:640px){.has-minw-one-mobile{min-width:1px}}@media screen and (min-width:640px){.has-minw-one-tablet{min-width:1px}}@media screen and (min-width:1504px){.has-minw-one-widescreen{min-width:1px}.has-minw-half-widescreen{min-width:50%}}.has-minw-half{min-width:50%}@media screen and (max-width:640px){.has-minw-half-mobile{min-width:50%}}@media screen and (min-width:640px){.has-minw-half-tablet{min-width:50%}}@media screen and (min-width:1264px){.has-minw-half-desktop{min-width:50%}.has-minw-full-desktop{min-width:100%}}.has-minw-full{min-width:100%}@media screen and (max-width:640px){.has-minw-full-mobile{min-width:100%}}@media screen and (min-width:640px){.has-minw-full-tablet{min-width:100%}}@media screen and (min-width:1504px){.has-minw-full-widescreen{min-width:100%}.has-minw-auto-widescreen{min-width:auto}}.has-minw-auto{min-width:auto}@media screen and (max-width:640px){.has-minw-auto-mobile{min-width:auto}}@media screen and (min-width:640px){.has-minw-auto-tablet{min-width:auto}}@media screen and (min-width:1264px){.has-minw-auto-desktop{min-width:auto}.has-minw-screen-desktop{min-width:100vw}}.has-minw-screen{min-width:100vw}.has-maxw-0{max-width:0}.has-maxw-1{max-width:.25rem}.has-maxw-2{max-width:.5rem}.has-maxw-3{max-width:.75rem}.has-maxw-4{max-width:1rem}.has-maxw-6{max-width:1.5rem}.has-maxw-8{max-width:2rem}.has-maxw-12{max-width:3rem}.has-maxw-16{max-width:4rem}.has-maxw-24{max-width:6rem}.has-maxw-32{max-width:8rem}.has-maxw-40{max-width:10rem}.has-maxw-48{max-width:12rem}.has-maxw-64{max-width:16rem}.has-maxw-80{max-width:20rem}.has-maxw-96{max-width:24rem}.has-maxw-192{max-width:48rem}@media screen and (max-width:640px){.has-minw-screen-mobile{min-width:100vw}.has-maxw-0-mobile{max-width:0}.has-maxw-1-mobile{max-width:.25rem}.has-maxw-2-mobile{max-width:.5rem}.has-maxw-3-mobile{max-width:.75rem}.has-maxw-4-mobile{max-width:1rem}.has-maxw-6-mobile{max-width:1.5rem}.has-maxw-8-mobile{max-width:2rem}.has-maxw-12-mobile{max-width:3rem}.has-maxw-16-mobile{max-width:4rem}.has-maxw-24-mobile{max-width:6rem}.has-maxw-32-mobile{max-width:8rem}.has-maxw-40-mobile{max-width:10rem}.has-maxw-48-mobile{max-width:12rem}.has-maxw-64-mobile{max-width:16rem}.has-maxw-80-mobile{max-width:20rem}.has-maxw-96-mobile{max-width:24rem}.has-maxw-192-mobile{max-width:48rem}}@media screen and (min-width:640px){.has-minw-screen-tablet{min-width:100vw}.has-maxw-0-tablet{max-width:0}.has-maxw-1-tablet{max-width:.25rem}.has-maxw-2-tablet{max-width:.5rem}.has-maxw-3-tablet{max-width:.75rem}.has-maxw-4-tablet{max-width:1rem}.has-maxw-6-tablet{max-width:1.5rem}.has-maxw-8-tablet{max-width:2rem}.has-maxw-12-tablet{max-width:3rem}.has-maxw-16-tablet{max-width:4rem}.has-maxw-24-tablet{max-width:6rem}.has-maxw-32-tablet{max-width:8rem}.has-maxw-40-tablet{max-width:10rem}.has-maxw-48-tablet{max-width:12rem}.has-maxw-64-tablet{max-width:16rem}.has-maxw-80-tablet{max-width:20rem}.has-maxw-96-tablet{max-width:24rem}.has-maxw-192-tablet{max-width:48rem}}@media screen and (min-width:1264px){.has-maxw-0-desktop{max-width:0}.has-maxw-1-desktop{max-width:.25rem}.has-maxw-2-desktop{max-width:.5rem}.has-maxw-3-desktop{max-width:.75rem}.has-maxw-4-desktop{max-width:1rem}.has-maxw-6-desktop{max-width:1.5rem}.has-maxw-8-desktop{max-width:2rem}.has-maxw-12-desktop{max-width:3rem}.has-maxw-16-desktop{max-width:4rem}.has-maxw-24-desktop{max-width:6rem}.has-maxw-32-desktop{max-width:8rem}.has-maxw-40-desktop{max-width:10rem}.has-maxw-48-desktop{max-width:12rem}.has-maxw-64-desktop{max-width:16rem}.has-maxw-80-desktop{max-width:20rem}.has-maxw-96-desktop{max-width:24rem}.has-maxw-192-desktop{max-width:48rem}}@media screen and (min-width:1504px){.has-minw-screen-widescreen{min-width:100vw}.has-maxw-0-widescreen{max-width:0}.has-maxw-1-widescreen{max-width:.25rem}.has-maxw-2-widescreen{max-width:.5rem}.has-maxw-3-widescreen{max-width:.75rem}.has-maxw-4-widescreen{max-width:1rem}.has-maxw-6-widescreen{max-width:1.5rem}.has-maxw-8-widescreen{max-width:2rem}.has-maxw-12-widescreen{max-width:3rem}.has-maxw-16-widescreen{max-width:4rem}.has-maxw-24-widescreen{max-width:6rem}.has-maxw-32-widescreen{max-width:8rem}.has-maxw-40-widescreen{max-width:10rem}.has-maxw-48-widescreen{max-width:12rem}.has-maxw-64-widescreen{max-width:16rem}.has-maxw-80-widescreen{max-width:20rem}.has-maxw-96-widescreen{max-width:24rem}.has-maxw-192-widescreen{max-width:48rem}.has-maxw-none-widescreen{max-width:0}}.has-maxw-none{max-width:0}@media screen and (max-width:640px){.has-maxw-none-mobile{max-width:0}}@media screen and (min-width:640px){.has-maxw-none-tablet{max-width:0}}@media screen and (min-width:1264px){.has-maxw-none-desktop{max-width:0}.has-maxw-one-desktop{max-width:1px}}.has-maxw-one{max-width:1px}@media screen and (max-width:640px){.has-maxw-one-mobile{max-width:1px}}@media screen and (min-width:640px){.has-maxw-one-tablet{max-width:1px}}@media screen and (min-width:1504px){.has-maxw-one-widescreen{max-width:1px}.has-maxw-half-widescreen{max-width:50%}}.has-maxw-half{max-width:50%}@media screen and (max-width:640px){.has-maxw-half-mobile{max-width:50%}}@media screen and (min-width:640px){.has-maxw-half-tablet{max-width:50%}}@media screen and (min-width:1264px){.has-maxw-half-desktop{max-width:50%}.has-maxw-full-desktop{max-width:100%}}.has-maxw-full{max-width:100%}@media screen and (max-width:640px){.has-maxw-full-mobile{max-width:100%}}@media screen and (min-width:640px){.has-maxw-full-tablet{max-width:100%}}@media screen and (min-width:1504px){.has-maxw-full-widescreen{max-width:100%}.has-maxw-auto-widescreen{max-width:auto}}.has-maxw-auto{max-width:auto}@media screen and (max-width:640px){.has-maxw-auto-mobile{max-width:auto}}@media screen and (min-width:640px){.has-maxw-auto-tablet{max-width:auto}}@media screen and (min-width:1264px){.has-maxw-auto-desktop{max-width:auto}.has-maxw-screen-desktop{max-width:100vw}}.has-maxw-screen{max-width:100vw}.has-h-0{height:0}.has-h-1{height:.25rem}.has-h-2{height:.5rem}.has-h-3{height:.75rem}.has-h-4{height:1rem}.has-h-6{height:1.5rem}.has-h-8{height:2rem}.has-h-12{height:3rem}.has-h-16{height:4rem}.has-h-24{height:6rem}.has-h-32{height:8rem}.has-h-40{height:10rem}.has-h-48{height:12rem}.has-h-64{height:16rem}.has-h-80{height:20rem}.has-h-96{height:24rem}.has-h-192{height:48rem}@media screen and (max-width:640px){.has-maxw-screen-mobile{max-width:100vw}.has-h-0-mobile{height:0}.has-h-1-mobile{height:.25rem}.has-h-2-mobile{height:.5rem}.has-h-3-mobile{height:.75rem}.has-h-4-mobile{height:1rem}.has-h-6-mobile{height:1.5rem}.has-h-8-mobile{height:2rem}.has-h-12-mobile{height:3rem}.has-h-16-mobile{height:4rem}.has-h-24-mobile{height:6rem}.has-h-32-mobile{height:8rem}.has-h-40-mobile{height:10rem}.has-h-48-mobile{height:12rem}.has-h-64-mobile{height:16rem}.has-h-80-mobile{height:20rem}.has-h-96-mobile{height:24rem}.has-h-192-mobile{height:48rem}}@media screen and (min-width:640px){.has-maxw-screen-tablet{max-width:100vw}.has-h-0-tablet{height:0}.has-h-1-tablet{height:.25rem}.has-h-2-tablet{height:.5rem}.has-h-3-tablet{height:.75rem}.has-h-4-tablet{height:1rem}.has-h-6-tablet{height:1.5rem}.has-h-8-tablet{height:2rem}.has-h-12-tablet{height:3rem}.has-h-16-tablet{height:4rem}.has-h-24-tablet{height:6rem}.has-h-32-tablet{height:8rem}.has-h-40-tablet{height:10rem}.has-h-48-tablet{height:12rem}.has-h-64-tablet{height:16rem}.has-h-80-tablet{height:20rem}.has-h-96-tablet{height:24rem}.has-h-192-tablet{height:48rem}}@media screen and (min-width:1264px){.has-h-0-desktop{height:0}.has-h-1-desktop{height:.25rem}.has-h-2-desktop{height:.5rem}.has-h-3-desktop{height:.75rem}.has-h-4-desktop{height:1rem}.has-h-6-desktop{height:1.5rem}.has-h-8-desktop{height:2rem}.has-h-12-desktop{height:3rem}.has-h-16-desktop{height:4rem}.has-h-24-desktop{height:6rem}.has-h-32-desktop{height:8rem}.has-h-40-desktop{height:10rem}.has-h-48-desktop{height:12rem}.has-h-64-desktop{height:16rem}.has-h-80-desktop{height:20rem}.has-h-96-desktop{height:24rem}.has-h-192-desktop{height:48rem}}@media screen and (min-width:1504px){.has-maxw-screen-widescreen{max-width:100vw}.has-h-0-widescreen{height:0}.has-h-1-widescreen{height:.25rem}.has-h-2-widescreen{height:.5rem}.has-h-3-widescreen{height:.75rem}.has-h-4-widescreen{height:1rem}.has-h-6-widescreen{height:1.5rem}.has-h-8-widescreen{height:2rem}.has-h-12-widescreen{height:3rem}.has-h-16-widescreen{height:4rem}.has-h-24-widescreen{height:6rem}.has-h-32-widescreen{height:8rem}.has-h-40-widescreen{height:10rem}.has-h-48-widescreen{height:12rem}.has-h-64-widescreen{height:16rem}.has-h-80-widescreen{height:20rem}.has-h-96-widescreen{height:24rem}.has-h-192-widescreen{height:48rem}.has-h-none-widescreen{height:0}}.has-h-none{height:0}@media screen and (max-width:640px){.has-h-none-mobile{height:0}}@media screen and (min-width:640px){.has-h-none-tablet{height:0}}@media screen and (min-width:1264px){.has-h-none-desktop{height:0}.has-h-one-desktop{height:1px}}.has-h-one{height:1px}@media screen and (max-width:640px){.has-h-one-mobile{height:1px}}@media screen and (min-width:640px){.has-h-one-tablet{height:1px}}@media screen and (min-width:1504px){.has-h-one-widescreen{height:1px}.has-h-half-widescreen{height:50%}}.has-h-half{height:50%}@media screen and (max-width:640px){.has-h-half-mobile{height:50%}}@media screen and (min-width:640px){.has-h-half-tablet{height:50%}}@media screen and (min-width:1264px){.has-h-half-desktop{height:50%}.has-h-full-desktop{height:100%}}.has-h-full{height:100%}@media screen and (max-width:640px){.has-h-full-mobile{height:100%}}@media screen and (min-width:640px){.has-h-full-tablet{height:100%}}@media screen and (min-width:1504px){.has-h-full-widescreen{height:100%}.has-h-auto-widescreen{height:auto}}.has-h-auto{height:auto}@media screen and (max-width:640px){.has-h-auto-mobile{height:auto}}@media screen and (min-width:640px){.has-h-auto-tablet{height:auto}}@media screen and (min-width:1264px){.has-h-auto-desktop{height:auto}.has-h-screen-desktop{height:100vh}}.has-h-screen{height:100vh}.has-minh-0{min-height:0}.has-minh-1{min-height:.25rem}.has-minh-2{min-height:.5rem}.has-minh-3{min-height:.75rem}.has-minh-4{min-height:1rem}.has-minh-6{min-height:1.5rem}.has-minh-8{min-height:2rem}.has-minh-12{min-height:3rem}.has-minh-16{min-height:4rem}.has-minh-24{min-height:6rem}.has-minh-32{min-height:8rem}.has-minh-40{min-height:10rem}.has-minh-48{min-height:12rem}.has-minh-64{min-height:16rem}.has-minh-80{min-height:20rem}.has-minh-96{min-height:24rem}.has-minh-192{min-height:48rem}@media screen and (max-width:640px){.has-h-screen-mobile{height:100vh}.has-minh-0-mobile{min-height:0}.has-minh-1-mobile{min-height:.25rem}.has-minh-2-mobile{min-height:.5rem}.has-minh-3-mobile{min-height:.75rem}.has-minh-4-mobile{min-height:1rem}.has-minh-6-mobile{min-height:1.5rem}.has-minh-8-mobile{min-height:2rem}.has-minh-12-mobile{min-height:3rem}.has-minh-16-mobile{min-height:4rem}.has-minh-24-mobile{min-height:6rem}.has-minh-32-mobile{min-height:8rem}.has-minh-40-mobile{min-height:10rem}.has-minh-48-mobile{min-height:12rem}.has-minh-64-mobile{min-height:16rem}.has-minh-80-mobile{min-height:20rem}.has-minh-96-mobile{min-height:24rem}.has-minh-192-mobile{min-height:48rem}}@media screen and (min-width:640px){.has-h-screen-tablet{height:100vh}.has-minh-0-tablet{min-height:0}.has-minh-1-tablet{min-height:.25rem}.has-minh-2-tablet{min-height:.5rem}.has-minh-3-tablet{min-height:.75rem}.has-minh-4-tablet{min-height:1rem}.has-minh-6-tablet{min-height:1.5rem}.has-minh-8-tablet{min-height:2rem}.has-minh-12-tablet{min-height:3rem}.has-minh-16-tablet{min-height:4rem}.has-minh-24-tablet{min-height:6rem}.has-minh-32-tablet{min-height:8rem}.has-minh-40-tablet{min-height:10rem}.has-minh-48-tablet{min-height:12rem}.has-minh-64-tablet{min-height:16rem}.has-minh-80-tablet{min-height:20rem}.has-minh-96-tablet{min-height:24rem}.has-minh-192-tablet{min-height:48rem}}@media screen and (min-width:1264px){.has-minh-0-desktop{min-height:0}.has-minh-1-desktop{min-height:.25rem}.has-minh-2-desktop{min-height:.5rem}.has-minh-3-desktop{min-height:.75rem}.has-minh-4-desktop{min-height:1rem}.has-minh-6-desktop{min-height:1.5rem}.has-minh-8-desktop{min-height:2rem}.has-minh-12-desktop{min-height:3rem}.has-minh-16-desktop{min-height:4rem}.has-minh-24-desktop{min-height:6rem}.has-minh-32-desktop{min-height:8rem}.has-minh-40-desktop{min-height:10rem}.has-minh-48-desktop{min-height:12rem}.has-minh-64-desktop{min-height:16rem}.has-minh-80-desktop{min-height:20rem}.has-minh-96-desktop{min-height:24rem}.has-minh-192-desktop{min-height:48rem}}@media screen and (min-width:1504px){.has-h-screen-widescreen{height:100vh}.has-minh-0-widescreen{min-height:0}.has-minh-1-widescreen{min-height:.25rem}.has-minh-2-widescreen{min-height:.5rem}.has-minh-3-widescreen{min-height:.75rem}.has-minh-4-widescreen{min-height:1rem}.has-minh-6-widescreen{min-height:1.5rem}.has-minh-8-widescreen{min-height:2rem}.has-minh-12-widescreen{min-height:3rem}.has-minh-16-widescreen{min-height:4rem}.has-minh-24-widescreen{min-height:6rem}.has-minh-32-widescreen{min-height:8rem}.has-minh-40-widescreen{min-height:10rem}.has-minh-48-widescreen{min-height:12rem}.has-minh-64-widescreen{min-height:16rem}.has-minh-80-widescreen{min-height:20rem}.has-minh-96-widescreen{min-height:24rem}.has-minh-192-widescreen{min-height:48rem}.has-minh-none-widescreen{min-height:0}}.has-minh-none{min-height:0}@media screen and (max-width:640px){.has-minh-none-mobile{min-height:0}}@media screen and (min-width:640px){.has-minh-none-tablet{min-height:0}}@media screen and (min-width:1264px){.has-minh-none-desktop{min-height:0}.has-minh-one-desktop{min-height:1px}}.has-minh-one{min-height:1px}@media screen and (max-width:640px){.has-minh-one-mobile{min-height:1px}}@media screen and (min-width:640px){.has-minh-one-tablet{min-height:1px}}@media screen and (min-width:1504px){.has-minh-one-widescreen{min-height:1px}.has-minh-half-widescreen{min-height:50%}}.has-minh-half{min-height:50%}@media screen and (max-width:640px){.has-minh-half-mobile{min-height:50%}}@media screen and (min-width:640px){.has-minh-half-tablet{min-height:50%}}@media screen and (min-width:1264px){.has-minh-half-desktop{min-height:50%}.has-minh-full-desktop{min-height:100%}}.has-minh-full{min-height:100%}@media screen and (max-width:640px){.has-minh-full-mobile{min-height:100%}}@media screen and (min-width:640px){.has-minh-full-tablet{min-height:100%}}@media screen and (min-width:1504px){.has-minh-full-widescreen{min-height:100%}.has-minh-auto-widescreen{min-height:auto}}.has-minh-auto{min-height:auto}@media screen and (max-width:640px){.has-minh-auto-mobile{min-height:auto}}@media screen and (min-width:640px){.has-minh-auto-tablet{min-height:auto}}@media screen and (min-width:1264px){.has-minh-auto-desktop{min-height:auto}.has-minh-screen-desktop{min-height:100vh}}.has-minh-screen{min-height:100vh}.has-maxh-0{max-height:0}.has-maxh-1{max-height:.25rem}.has-maxh-2{max-height:.5rem}.has-maxh-3{max-height:.75rem}.has-maxh-4{max-height:1rem}.has-maxh-6{max-height:1.5rem}.has-maxh-8{max-height:2rem}.has-maxh-12{max-height:3rem}.has-maxh-16{max-height:4rem}.has-maxh-24{max-height:6rem}.has-maxh-32{max-height:8rem}.has-maxh-40{max-height:10rem}.has-maxh-48{max-height:12rem}.has-maxh-64{max-height:16rem}.has-maxh-80{max-height:20rem}.has-maxh-96{max-height:24rem}.has-maxh-192{max-height:48rem}@media screen and (max-width:640px){.has-minh-screen-mobile{min-height:100vh}.has-maxh-0-mobile{max-height:0}.has-maxh-1-mobile{max-height:.25rem}.has-maxh-2-mobile{max-height:.5rem}.has-maxh-3-mobile{max-height:.75rem}.has-maxh-4-mobile{max-height:1rem}.has-maxh-6-mobile{max-height:1.5rem}.has-maxh-8-mobile{max-height:2rem}.has-maxh-12-mobile{max-height:3rem}.has-maxh-16-mobile{max-height:4rem}.has-maxh-24-mobile{max-height:6rem}.has-maxh-32-mobile{max-height:8rem}.has-maxh-40-mobile{max-height:10rem}.has-maxh-48-mobile{max-height:12rem}.has-maxh-64-mobile{max-height:16rem}.has-maxh-80-mobile{max-height:20rem}.has-maxh-96-mobile{max-height:24rem}.has-maxh-192-mobile{max-height:48rem}}@media screen and (min-width:640px){.has-minh-screen-tablet{min-height:100vh}.has-maxh-0-tablet{max-height:0}.has-maxh-1-tablet{max-height:.25rem}.has-maxh-2-tablet{max-height:.5rem}.has-maxh-3-tablet{max-height:.75rem}.has-maxh-4-tablet{max-height:1rem}.has-maxh-6-tablet{max-height:1.5rem}.has-maxh-8-tablet{max-height:2rem}.has-maxh-12-tablet{max-height:3rem}.has-maxh-16-tablet{max-height:4rem}.has-maxh-24-tablet{max-height:6rem}.has-maxh-32-tablet{max-height:8rem}.has-maxh-40-tablet{max-height:10rem}.has-maxh-48-tablet{max-height:12rem}.has-maxh-64-tablet{max-height:16rem}.has-maxh-80-tablet{max-height:20rem}.has-maxh-96-tablet{max-height:24rem}.has-maxh-192-tablet{max-height:48rem}}@media screen and (min-width:1264px){.has-maxh-0-desktop{max-height:0}.has-maxh-1-desktop{max-height:.25rem}.has-maxh-2-desktop{max-height:.5rem}.has-maxh-3-desktop{max-height:.75rem}.has-maxh-4-desktop{max-height:1rem}.has-maxh-6-desktop{max-height:1.5rem}.has-maxh-8-desktop{max-height:2rem}.has-maxh-12-desktop{max-height:3rem}.has-maxh-16-desktop{max-height:4rem}.has-maxh-24-desktop{max-height:6rem}.has-maxh-32-desktop{max-height:8rem}.has-maxh-40-desktop{max-height:10rem}.has-maxh-48-desktop{max-height:12rem}.has-maxh-64-desktop{max-height:16rem}.has-maxh-80-desktop{max-height:20rem}.has-maxh-96-desktop{max-height:24rem}.has-maxh-192-desktop{max-height:48rem}}@media screen and (min-width:1504px){.has-minh-screen-widescreen{min-height:100vh}.has-maxh-0-widescreen{max-height:0}.has-maxh-1-widescreen{max-height:.25rem}.has-maxh-2-widescreen{max-height:.5rem}.has-maxh-3-widescreen{max-height:.75rem}.has-maxh-4-widescreen{max-height:1rem}.has-maxh-6-widescreen{max-height:1.5rem}.has-maxh-8-widescreen{max-height:2rem}.has-maxh-12-widescreen{max-height:3rem}.has-maxh-16-widescreen{max-height:4rem}.has-maxh-24-widescreen{max-height:6rem}.has-maxh-32-widescreen{max-height:8rem}.has-maxh-40-widescreen{max-height:10rem}.has-maxh-48-widescreen{max-height:12rem}.has-maxh-64-widescreen{max-height:16rem}.has-maxh-80-widescreen{max-height:20rem}.has-maxh-96-widescreen{max-height:24rem}.has-maxh-192-widescreen{max-height:48rem}.has-maxh-none-widescreen{max-height:0}}.has-maxh-none{max-height:0}@media screen and (max-width:640px){.has-maxh-none-mobile{max-height:0}}@media screen and (min-width:640px){.has-maxh-none-tablet{max-height:0}}@media screen and (min-width:1264px){.has-maxh-none-desktop{max-height:0}.has-maxh-one-desktop{max-height:1px}}.has-maxh-one{max-height:1px}@media screen and (max-width:640px){.has-maxh-one-mobile{max-height:1px}}@media screen and (min-width:640px){.has-maxh-one-tablet{max-height:1px}}@media screen and (min-width:1504px){.has-maxh-one-widescreen{max-height:1px}.has-maxh-half-widescreen{max-height:50%}}.has-maxh-half{max-height:50%}@media screen and (max-width:640px){.has-maxh-half-mobile{max-height:50%}}@media screen and (min-width:640px){.has-maxh-half-tablet{max-height:50%}}@media screen and (min-width:1264px){.has-maxh-half-desktop{max-height:50%}.has-maxh-full-desktop{max-height:100%}}.has-maxh-full{max-height:100%}@media screen and (max-width:640px){.has-maxh-full-mobile{max-height:100%}}@media screen and (min-width:640px){.has-maxh-full-tablet{max-height:100%}}@media screen and (min-width:1504px){.has-maxh-full-widescreen{max-height:100%}.has-maxh-auto-widescreen{max-height:auto}}.has-maxh-auto{max-height:auto}@media screen and (max-width:640px){.has-maxh-auto-mobile{max-height:auto}}@media screen and (min-width:640px){.has-maxh-auto-tablet{max-height:auto}}@media screen and (min-width:1264px){.has-maxh-auto-desktop{max-height:auto}.has-maxh-screen-desktop{max-height:100vh}}.has-maxh-screen{max-height:100vh}.has-s-0{height:0;width:0}.has-s-1{height:.25rem;width:.25rem}.has-s-2{height:.5rem;width:.5rem}.has-s-3{height:.75rem;width:.75rem}.has-s-4{height:1rem;width:1rem}.has-s-6{height:1.5rem;width:1.5rem}.has-s-8{height:2rem;width:2rem}.has-s-12{height:3rem;width:3rem}.has-s-16{height:4rem;width:4rem}.has-s-24{height:6rem;width:6rem}.has-s-32{height:8rem;width:8rem}.has-s-40{height:10rem;width:10rem}.has-s-48{height:12rem;width:12rem}.has-s-64{height:16rem;width:16rem}.has-s-80{height:20rem;width:20rem}.has-s-96{height:24rem;width:24rem}.has-s-192{height:48rem;width:48rem}@media screen and (max-width:640px){.has-maxh-screen-mobile{max-height:100vh}.has-s-0-mobile{height:0;width:0}.has-s-1-mobile{height:.25rem;width:.25rem}.has-s-2-mobile{height:.5rem;width:.5rem}.has-s-3-mobile{height:.75rem;width:.75rem}.has-s-4-mobile{height:1rem;width:1rem}.has-s-6-mobile{height:1.5rem;width:1.5rem}.has-s-8-mobile{height:2rem;width:2rem}.has-s-12-mobile{height:3rem;width:3rem}.has-s-16-mobile{height:4rem;width:4rem}.has-s-24-mobile{height:6rem;width:6rem}.has-s-32-mobile{height:8rem;width:8rem}.has-s-40-mobile{height:10rem;width:10rem}.has-s-48-mobile{height:12rem;width:12rem}.has-s-64-mobile{height:16rem;width:16rem}.has-s-80-mobile{height:20rem;width:20rem}.has-s-96-mobile{height:24rem;width:24rem}.has-s-192-mobile{height:48rem;width:48rem}}@media screen and (min-width:640px){.has-maxh-screen-tablet{max-height:100vh}.has-s-0-tablet{height:0;width:0}.has-s-1-tablet{height:.25rem;width:.25rem}.has-s-2-tablet{height:.5rem;width:.5rem}.has-s-3-tablet{height:.75rem;width:.75rem}.has-s-4-tablet{height:1rem;width:1rem}.has-s-6-tablet{height:1.5rem;width:1.5rem}.has-s-8-tablet{height:2rem;width:2rem}.has-s-12-tablet{height:3rem;width:3rem}.has-s-16-tablet{height:4rem;width:4rem}.has-s-24-tablet{height:6rem;width:6rem}.has-s-32-tablet{height:8rem;width:8rem}.has-s-40-tablet{height:10rem;width:10rem}.has-s-48-tablet{height:12rem;width:12rem}.has-s-64-tablet{height:16rem;width:16rem}.has-s-80-tablet{height:20rem;width:20rem}.has-s-96-tablet{height:24rem;width:24rem}.has-s-192-tablet{height:48rem;width:48rem}}@media screen and (min-width:1264px){.has-s-0-desktop{height:0;width:0}.has-s-1-desktop{height:.25rem;width:.25rem}.has-s-2-desktop{height:.5rem;width:.5rem}.has-s-3-desktop{height:.75rem;width:.75rem}.has-s-4-desktop{height:1rem;width:1rem}.has-s-6-desktop{height:1.5rem;width:1.5rem}.has-s-8-desktop{height:2rem;width:2rem}.has-s-12-desktop{height:3rem;width:3rem}.has-s-16-desktop{height:4rem;width:4rem}.has-s-24-desktop{height:6rem;width:6rem}.has-s-32-desktop{height:8rem;width:8rem}.has-s-40-desktop{height:10rem;width:10rem}.has-s-48-desktop{height:12rem;width:12rem}.has-s-64-desktop{height:16rem;width:16rem}.has-s-80-desktop{height:20rem;width:20rem}.has-s-96-desktop{height:24rem;width:24rem}.has-s-192-desktop{height:48rem;width:48rem}}@media screen and (min-width:1504px){.has-maxh-screen-widescreen{max-height:100vh}.has-s-0-widescreen{height:0;width:0}.has-s-1-widescreen{height:.25rem;width:.25rem}.has-s-2-widescreen{height:.5rem;width:.5rem}.has-s-3-widescreen{height:.75rem;width:.75rem}.has-s-4-widescreen{height:1rem;width:1rem}.has-s-6-widescreen{height:1.5rem;width:1.5rem}.has-s-8-widescreen{height:2rem;width:2rem}.has-s-12-widescreen{height:3rem;width:3rem}.has-s-16-widescreen{height:4rem;width:4rem}.has-s-24-widescreen{height:6rem;width:6rem}.has-s-32-widescreen{height:8rem;width:8rem}.has-s-40-widescreen{height:10rem;width:10rem}.has-s-48-widescreen{height:12rem;width:12rem}.has-s-64-widescreen{height:16rem;width:16rem}.has-s-80-widescreen{height:20rem;width:20rem}.has-s-96-widescreen{height:24rem;width:24rem}.has-s-192-widescreen{height:48rem;width:48rem}.has-s-none-widescreen{height:0;width:0}}.has-s-none{height:0;width:0}@media screen and (max-width:640px){.has-s-none-mobile{height:0;width:0}}@media screen and (min-width:640px){.has-s-none-tablet{height:0;width:0}}@media screen and (min-width:1264px){.has-s-none-desktop{height:0;width:0}.has-s-one-desktop{height:1px;width:1px}}.has-s-one{height:1px;width:1px}@media screen and (max-width:640px){.has-s-one-mobile{height:1px;width:1px}}@media screen and (min-width:640px){.has-s-one-tablet{height:1px;width:1px}}@media screen and (min-width:1504px){.has-s-one-widescreen{height:1px;width:1px}.has-s-half-widescreen{height:50%;width:50%}}.has-s-half{height:50%;width:50%}@media screen and (max-width:640px){.has-s-half-mobile{height:50%;width:50%}}@media screen and (min-width:640px){.has-s-half-tablet{height:50%;width:50%}}@media screen and (min-width:1264px){.has-s-half-desktop{height:50%;width:50%}.has-s-full-desktop{height:100%;width:100%}}.has-s-full{height:100%;width:100%}.has-bottom-none{bottom:0}@media screen and (max-width:640px){.has-s-full-mobile{height:100%;width:100%}.has-bottom-none-mobile{bottom:0}}@media screen and (min-width:640px){.has-s-full-tablet{height:100%;width:100%}.has-bottom-none-tablet{bottom:0}}@media screen and (min-width:1264px){.has-bottom-none-desktop{bottom:0}}@media screen and (min-width:1504px){.has-s-full-widescreen{height:100%;width:100%}.has-bottom-none-widescreen{bottom:0}.has-bottom-one-widescreen{bottom:1px}}.has-bottom-one{bottom:1px}@media screen and (max-width:640px){.has-bottom-one-mobile{bottom:1px}}@media screen and (min-width:640px){.has-bottom-one-tablet{bottom:1px}}@media screen and (min-width:1264px){.has-bottom-one-desktop{bottom:1px}.has-bottom-half-desktop{bottom:50%}}.has-bottom-half{bottom:50%}@media screen and (max-width:640px){.has-bottom-half-mobile{bottom:50%}}@media screen and (min-width:640px){.has-bottom-half-tablet{bottom:50%}}@media screen and (min-width:1504px){.has-bottom-half-widescreen{bottom:50%}.has-bottom-full-widescreen{bottom:100%}}.has-bottom-full{bottom:100%}.has-left-none{left:0}@media screen and (max-width:640px){.has-bottom-full-mobile{bottom:100%}.has-left-none-mobile{left:0}}@media screen and (min-width:640px){.has-bottom-full-tablet{bottom:100%}.has-left-none-tablet{left:0}}@media screen and (min-width:1264px){.has-bottom-full-desktop{bottom:100%}.has-left-none-desktop{left:0}}@media screen and (min-width:1504px){.has-left-none-widescreen{left:0}.has-left-one-widescreen{left:1px}}.has-left-one{left:1px}@media screen and (max-width:640px){.has-left-one-mobile{left:1px}}@media screen and (min-width:640px){.has-left-one-tablet{left:1px}}@media screen and (min-width:1264px){.has-left-one-desktop{left:1px}.has-left-half-desktop{left:50%}}.has-left-half{left:50%}@media screen and (max-width:640px){.has-left-half-mobile{left:50%}}@media screen and (min-width:640px){.has-left-half-tablet{left:50%}}@media screen and (min-width:1504px){.has-left-half-widescreen{left:50%}.has-left-full-widescreen{left:100%}}.has-left-full{left:100%}.has-right-none{right:0}@media screen and (max-width:640px){.has-left-full-mobile{left:100%}.has-right-none-mobile{right:0}}@media screen and (min-width:640px){.has-left-full-tablet{left:100%}.has-right-none-tablet{right:0}}@media screen and (min-width:1264px){.has-left-full-desktop{left:100%}.has-right-none-desktop{right:0}}@media screen and (min-width:1504px){.has-right-none-widescreen{right:0}.has-right-one-widescreen{right:1px}}.has-right-one{right:1px}@media screen and (max-width:640px){.has-right-one-mobile{right:1px}}@media screen and (min-width:640px){.has-right-one-tablet{right:1px}}@media screen and (min-width:1264px){.has-right-one-desktop{right:1px}.has-right-half-desktop{right:50%}}.has-right-half{right:50%}@media screen and (max-width:640px){.has-right-half-mobile{right:50%}}@media screen and (min-width:640px){.has-right-half-tablet{right:50%}}@media screen and (min-width:1504px){.has-right-half-widescreen{right:50%}.has-right-full-widescreen{right:100%}}.has-right-full{right:100%}.has-top-none{top:0}@media screen and (max-width:640px){.has-right-full-mobile{right:100%}.has-top-none-mobile{top:0}}@media screen and (min-width:640px){.has-right-full-tablet{right:100%}.has-top-none-tablet{top:0}}@media screen and (min-width:1264px){.has-right-full-desktop{right:100%}.has-top-none-desktop{top:0}}@media screen and (min-width:1504px){.has-top-none-widescreen{top:0}.has-top-one-widescreen{top:1px}}.has-top-one{top:1px}@media screen and (max-width:640px){.has-top-one-mobile{top:1px}}@media screen and (min-width:640px){.has-top-one-tablet{top:1px}}@media screen and (min-width:1264px){.has-top-one-desktop{top:1px}.has-top-half-desktop{top:50%}}.has-top-half{top:50%}@media screen and (max-width:640px){.has-top-half-mobile{top:50%}}@media screen and (min-width:640px){.has-top-half-tablet{top:50%}}@media screen and (min-width:1504px){.has-top-half-widescreen{top:50%}.has-top-full-widescreen{top:100%}}.has-top-full{top:100%}.has-p-0{padding:0}.has-p-1{padding:.25rem}.has-p-2{padding:.5rem}.has-p-3{padding:.75rem}.has-p-4{padding:1rem}.has-p-6{padding:1.5rem}.has-p-8{padding:2rem}.has-p-12{padding:3rem}.has-p-16{padding:4rem}.has-p-24{padding:6rem}.has-p-32{padding:8rem}.has-p-40{padding:10rem}.has-p-48{padding:12rem}.has-p-64{padding:16rem}.has-p-80{padding:20rem}.has-p-96{padding:24rem}@media screen and (max-width:640px){.has-top-full-mobile{top:100%}.has-p-0-mobile{padding:0}.has-p-1-mobile{padding:.25rem}.has-p-2-mobile{padding:.5rem}.has-p-3-mobile{padding:.75rem}.has-p-4-mobile{padding:1rem}.has-p-6-mobile{padding:1.5rem}.has-p-8-mobile{padding:2rem}.has-p-12-mobile{padding:3rem}.has-p-16-mobile{padding:4rem}.has-p-24-mobile{padding:6rem}.has-p-32-mobile{padding:8rem}.has-p-40-mobile{padding:10rem}.has-p-48-mobile{padding:12rem}.has-p-64-mobile{padding:16rem}.has-p-80-mobile{padding:20rem}.has-p-96-mobile{padding:24rem}}@media screen and (min-width:640px){.has-top-full-tablet{top:100%}.has-p-0-tablet{padding:0}.has-p-1-tablet{padding:.25rem}.has-p-2-tablet{padding:.5rem}.has-p-3-tablet{padding:.75rem}.has-p-4-tablet{padding:1rem}.has-p-6-tablet{padding:1.5rem}.has-p-8-tablet{padding:2rem}.has-p-12-tablet{padding:3rem}.has-p-16-tablet{padding:4rem}.has-p-24-tablet{padding:6rem}.has-p-32-tablet{padding:8rem}.has-p-40-tablet{padding:10rem}.has-p-48-tablet{padding:12rem}.has-p-64-tablet{padding:16rem}.has-p-80-tablet{padding:20rem}.has-p-96-tablet{padding:24rem}}@media screen and (min-width:1264px){.has-top-full-desktop{top:100%}.has-p-0-desktop{padding:0}.has-p-1-desktop{padding:.25rem}.has-p-2-desktop{padding:.5rem}.has-p-3-desktop{padding:.75rem}.has-p-4-desktop{padding:1rem}.has-p-6-desktop{padding:1.5rem}.has-p-8-desktop{padding:2rem}.has-p-12-desktop{padding:3rem}.has-p-16-desktop{padding:4rem}.has-p-24-desktop{padding:6rem}.has-p-32-desktop{padding:8rem}.has-p-40-desktop{padding:10rem}.has-p-48-desktop{padding:12rem}.has-p-64-desktop{padding:16rem}.has-p-80-desktop{padding:20rem}.has-p-96-desktop{padding:24rem}}@media screen and (min-width:1504px){.has-p-0-widescreen{padding:0}.has-p-1-widescreen{padding:.25rem}.has-p-2-widescreen{padding:.5rem}.has-p-3-widescreen{padding:.75rem}.has-p-4-widescreen{padding:1rem}.has-p-6-widescreen{padding:1.5rem}.has-p-8-widescreen{padding:2rem}.has-p-12-widescreen{padding:3rem}.has-p-16-widescreen{padding:4rem}.has-p-24-widescreen{padding:6rem}.has-p-32-widescreen{padding:8rem}.has-p-40-widescreen{padding:10rem}.has-p-48-widescreen{padding:12rem}.has-p-64-widescreen{padding:16rem}.has-p-80-widescreen{padding:20rem}.has-p-96-widescreen{padding:24rem}.has-p-none-widescreen{padding:0}}.has-p-none{padding:0}@media screen and (max-width:640px){.has-p-none-mobile{padding:0}}@media screen and (min-width:640px){.has-p-none-tablet{padding:0}}@media screen and (min-width:1264px){.has-p-none-desktop{padding:0}.has-p-one-desktop{padding:1px}}.has-p-one{padding:1px}@media screen and (max-width:640px){.has-p-one-mobile{padding:1px}}@media screen and (min-width:640px){.has-p-one-tablet{padding:1px}}@media screen and (min-width:1504px){.has-p-one-widescreen{padding:1px}.has-p-half-widescreen{padding:50%}}.has-p-half{padding:50%}@media screen and (max-width:640px){.has-p-half-mobile{padding:50%}}@media screen and (min-width:640px){.has-p-half-tablet{padding:50%}}@media screen and (min-width:1264px){.has-p-half-desktop{padding:50%}.has-p-full-desktop{padding:100%}}.has-p-full{padding:100%}@media screen and (max-width:640px){.has-p-full-mobile{padding:100%}}@media screen and (min-width:640px){.has-p-full-tablet{padding:100%}}@media screen and (min-width:1504px){.has-p-full-widescreen{padding:100%}.has-p-auto-widescreen{padding:auto}}.has-p-auto{padding:auto}@media screen and (max-width:640px){.has-p-auto-mobile{padding:auto}}@media screen and (min-width:640px){.has-p-auto-tablet{padding:auto}}@media screen and (min-width:1264px){.has-p-auto-desktop{padding:auto}}.has-px-0{padding-left:0;padding-right:0}.has-px-1{padding-left:.25rem;padding-right:.25rem}.has-px-2{padding-left:.5rem;padding-right:.5rem}.has-px-3{padding-left:.75rem;padding-right:.75rem}.has-px-4{padding-left:1rem;padding-right:1rem}.has-px-6{padding-left:1.5rem;padding-right:1.5rem}.has-px-8{padding-left:2rem;padding-right:2rem}.has-px-12{padding-left:3rem;padding-right:3rem}.has-px-16{padding-left:4rem;padding-right:4rem}.has-px-24{padding-left:6rem;padding-right:6rem}.has-px-32{padding-left:8rem;padding-right:8rem}.has-px-40{padding-left:10rem;padding-right:10rem}.has-px-48{padding-left:12rem;padding-right:12rem}.has-px-64{padding-left:16rem;padding-right:16rem}.has-px-80{padding-left:20rem;padding-right:20rem}.has-px-96{padding-left:24rem;padding-right:24rem}@media screen and (max-width:640px){.has-px-0-mobile{padding-left:0;padding-right:0}.has-px-1-mobile{padding-left:.25rem;padding-right:.25rem}.has-px-2-mobile{padding-left:.5rem;padding-right:.5rem}.has-px-3-mobile{padding-left:.75rem;padding-right:.75rem}.has-px-4-mobile{padding-left:1rem;padding-right:1rem}.has-px-6-mobile{padding-left:1.5rem;padding-right:1.5rem}.has-px-8-mobile{padding-left:2rem;padding-right:2rem}.has-px-12-mobile{padding-left:3rem;padding-right:3rem}.has-px-16-mobile{padding-left:4rem;padding-right:4rem}.has-px-24-mobile{padding-left:6rem;padding-right:6rem}.has-px-32-mobile{padding-left:8rem;padding-right:8rem}.has-px-40-mobile{padding-left:10rem;padding-right:10rem}.has-px-48-mobile{padding-left:12rem;padding-right:12rem}.has-px-64-mobile{padding-left:16rem;padding-right:16rem}.has-px-80-mobile{padding-left:20rem;padding-right:20rem}.has-px-96-mobile{padding-left:24rem;padding-right:24rem}}@media screen and (min-width:640px){.has-px-0-tablet{padding-left:0;padding-right:0}.has-px-1-tablet{padding-left:.25rem;padding-right:.25rem}.has-px-2-tablet{padding-left:.5rem;padding-right:.5rem}.has-px-3-tablet{padding-left:.75rem;padding-right:.75rem}.has-px-4-tablet{padding-left:1rem;padding-right:1rem}.has-px-6-tablet{padding-left:1.5rem;padding-right:1.5rem}.has-px-8-tablet{padding-left:2rem;padding-right:2rem}.has-px-12-tablet{padding-left:3rem;padding-right:3rem}.has-px-16-tablet{padding-left:4rem;padding-right:4rem}.has-px-24-tablet{padding-left:6rem;padding-right:6rem}.has-px-32-tablet{padding-left:8rem;padding-right:8rem}.has-px-40-tablet{padding-left:10rem;padding-right:10rem}.has-px-48-tablet{padding-left:12rem;padding-right:12rem}.has-px-64-tablet{padding-left:16rem;padding-right:16rem}.has-px-80-tablet{padding-left:20rem;padding-right:20rem}.has-px-96-tablet{padding-left:24rem;padding-right:24rem}}@media screen and (min-width:1264px){.has-px-0-desktop{padding-left:0;padding-right:0}.has-px-1-desktop{padding-left:.25rem;padding-right:.25rem}.has-px-2-desktop{padding-left:.5rem;padding-right:.5rem}.has-px-3-desktop{padding-left:.75rem;padding-right:.75rem}.has-px-4-desktop{padding-left:1rem;padding-right:1rem}.has-px-6-desktop{padding-left:1.5rem;padding-right:1.5rem}.has-px-8-desktop{padding-left:2rem;padding-right:2rem}.has-px-12-desktop{padding-left:3rem;padding-right:3rem}.has-px-16-desktop{padding-left:4rem;padding-right:4rem}.has-px-24-desktop{padding-left:6rem;padding-right:6rem}.has-px-32-desktop{padding-left:8rem;padding-right:8rem}.has-px-40-desktop{padding-left:10rem;padding-right:10rem}.has-px-48-desktop{padding-left:12rem;padding-right:12rem}.has-px-64-desktop{padding-left:16rem;padding-right:16rem}.has-px-80-desktop{padding-left:20rem;padding-right:20rem}.has-px-96-desktop{padding-left:24rem;padding-right:24rem}}@media screen and (min-width:1504px){.has-px-0-widescreen{padding-left:0;padding-right:0}.has-px-1-widescreen{padding-left:.25rem;padding-right:.25rem}.has-px-2-widescreen{padding-left:.5rem;padding-right:.5rem}.has-px-3-widescreen{padding-left:.75rem;padding-right:.75rem}.has-px-4-widescreen{padding-left:1rem;padding-right:1rem}.has-px-6-widescreen{padding-left:1.5rem;padding-right:1.5rem}.has-px-8-widescreen{padding-left:2rem;padding-right:2rem}.has-px-12-widescreen{padding-left:3rem;padding-right:3rem}.has-px-16-widescreen{padding-left:4rem;padding-right:4rem}.has-px-24-widescreen{padding-left:6rem;padding-right:6rem}.has-px-32-widescreen{padding-left:8rem;padding-right:8rem}.has-px-40-widescreen{padding-left:10rem;padding-right:10rem}.has-px-48-widescreen{padding-left:12rem;padding-right:12rem}.has-px-64-widescreen{padding-left:16rem;padding-right:16rem}.has-px-80-widescreen{padding-left:20rem;padding-right:20rem}.has-px-96-widescreen{padding-left:24rem;padding-right:24rem}.has-px-none-widescreen{padding-left:0;padding-right:0}}.has-px-none{padding-left:0;padding-right:0}@media screen and (max-width:640px){.has-px-none-mobile{padding-left:0;padding-right:0}}@media screen and (min-width:640px){.has-px-none-tablet{padding-left:0;padding-right:0}}@media screen and (min-width:1264px){.has-px-none-desktop{padding-left:0;padding-right:0}.has-px-one-desktop{padding-left:1px;padding-right:1px}}.has-px-one{padding-left:1px;padding-right:1px}@media screen and (max-width:640px){.has-px-one-mobile{padding-left:1px;padding-right:1px}}@media screen and (min-width:640px){.has-px-one-tablet{padding-left:1px;padding-right:1px}}@media screen and (min-width:1504px){.has-px-one-widescreen{padding-left:1px;padding-right:1px}.has-px-half-widescreen{padding-left:50%;padding-right:50%}}.has-px-half{padding-left:50%;padding-right:50%}@media screen and (max-width:640px){.has-px-half-mobile{padding-left:50%;padding-right:50%}}@media screen and (min-width:640px){.has-px-half-tablet{padding-left:50%;padding-right:50%}}@media screen and (min-width:1264px){.has-px-half-desktop{padding-left:50%;padding-right:50%}.has-px-full-desktop{padding-left:100%;padding-right:100%}}.has-px-full{padding-left:100%;padding-right:100%}@media screen and (max-width:640px){.has-px-full-mobile{padding-left:100%;padding-right:100%}}@media screen and (min-width:640px){.has-px-full-tablet{padding-left:100%;padding-right:100%}}@media screen and (min-width:1504px){.has-px-full-widescreen{padding-left:100%;padding-right:100%}.has-px-auto-widescreen{padding-left:auto;padding-right:auto}}.has-px-auto{padding-left:auto;padding-right:auto}.has-py-0{padding-top:0;padding-bottom:0}.has-py-1{padding-top:.25rem;padding-bottom:.25rem}.has-py-2{padding-top:.5rem;padding-bottom:.5rem}.has-py-3{padding-top:.75rem;padding-bottom:.75rem}.has-py-4{padding-top:1rem;padding-bottom:1rem}.has-py-6{padding-top:1.5rem;padding-bottom:1.5rem}.has-py-8{padding-top:2rem;padding-bottom:2rem}.has-py-12{padding-top:3rem;padding-bottom:3rem}.has-py-16{padding-top:4rem;padding-bottom:4rem}.has-py-24{padding-top:6rem;padding-bottom:6rem}.has-py-32{padding-top:8rem;padding-bottom:8rem}.has-py-40{padding-top:10rem;padding-bottom:10rem}.has-py-48{padding-top:12rem;padding-bottom:12rem}.has-py-64{padding-top:16rem;padding-bottom:16rem}.has-py-80{padding-top:20rem;padding-bottom:20rem}.has-py-96{padding-top:24rem;padding-bottom:24rem}@media screen and (max-width:640px){.has-px-auto-mobile{padding-left:auto;padding-right:auto}.has-py-0-mobile{padding-top:0;padding-bottom:0}.has-py-1-mobile{padding-top:.25rem;padding-bottom:.25rem}.has-py-2-mobile{padding-top:.5rem;padding-bottom:.5rem}.has-py-3-mobile{padding-top:.75rem;padding-bottom:.75rem}.has-py-4-mobile{padding-top:1rem;padding-bottom:1rem}.has-py-6-mobile{padding-top:1.5rem;padding-bottom:1.5rem}.has-py-8-mobile{padding-top:2rem;padding-bottom:2rem}.has-py-12-mobile{padding-top:3rem;padding-bottom:3rem}.has-py-16-mobile{padding-top:4rem;padding-bottom:4rem}.has-py-24-mobile{padding-top:6rem;padding-bottom:6rem}.has-py-32-mobile{padding-top:8rem;padding-bottom:8rem}.has-py-40-mobile{padding-top:10rem;padding-bottom:10rem}.has-py-48-mobile{padding-top:12rem;padding-bottom:12rem}.has-py-64-mobile{padding-top:16rem;padding-bottom:16rem}.has-py-80-mobile{padding-top:20rem;padding-bottom:20rem}.has-py-96-mobile{padding-top:24rem;padding-bottom:24rem}}@media screen and (min-width:640px){.has-px-auto-tablet{padding-left:auto;padding-right:auto}.has-py-0-tablet{padding-top:0;padding-bottom:0}.has-py-1-tablet{padding-top:.25rem;padding-bottom:.25rem}.has-py-2-tablet{padding-top:.5rem;padding-bottom:.5rem}.has-py-3-tablet{padding-top:.75rem;padding-bottom:.75rem}.has-py-4-tablet{padding-top:1rem;padding-bottom:1rem}.has-py-6-tablet{padding-top:1.5rem;padding-bottom:1.5rem}.has-py-8-tablet{padding-top:2rem;padding-bottom:2rem}.has-py-12-tablet{padding-top:3rem;padding-bottom:3rem}.has-py-16-tablet{padding-top:4rem;padding-bottom:4rem}.has-py-24-tablet{padding-top:6rem;padding-bottom:6rem}.has-py-32-tablet{padding-top:8rem;padding-bottom:8rem}.has-py-40-tablet{padding-top:10rem;padding-bottom:10rem}.has-py-48-tablet{padding-top:12rem;padding-bottom:12rem}.has-py-64-tablet{padding-top:16rem;padding-bottom:16rem}.has-py-80-tablet{padding-top:20rem;padding-bottom:20rem}.has-py-96-tablet{padding-top:24rem;padding-bottom:24rem}}@media screen and (min-width:1264px){.has-px-auto-desktop{padding-left:auto;padding-right:auto}.has-py-0-desktop{padding-top:0;padding-bottom:0}.has-py-1-desktop{padding-top:.25rem;padding-bottom:.25rem}.has-py-2-desktop{padding-top:.5rem;padding-bottom:.5rem}.has-py-3-desktop{padding-top:.75rem;padding-bottom:.75rem}.has-py-4-desktop{padding-top:1rem;padding-bottom:1rem}.has-py-6-desktop{padding-top:1.5rem;padding-bottom:1.5rem}.has-py-8-desktop{padding-top:2rem;padding-bottom:2rem}.has-py-12-desktop{padding-top:3rem;padding-bottom:3rem}.has-py-16-desktop{padding-top:4rem;padding-bottom:4rem}.has-py-24-desktop{padding-top:6rem;padding-bottom:6rem}.has-py-32-desktop{padding-top:8rem;padding-bottom:8rem}.has-py-40-desktop{padding-top:10rem;padding-bottom:10rem}.has-py-48-desktop{padding-top:12rem;padding-bottom:12rem}.has-py-64-desktop{padding-top:16rem;padding-bottom:16rem}.has-py-80-desktop{padding-top:20rem;padding-bottom:20rem}.has-py-96-desktop{padding-top:24rem;padding-bottom:24rem}}@media screen and (min-width:1504px){.has-py-0-widescreen{padding-top:0;padding-bottom:0}.has-py-1-widescreen{padding-top:.25rem;padding-bottom:.25rem}.has-py-2-widescreen{padding-top:.5rem;padding-bottom:.5rem}.has-py-3-widescreen{padding-top:.75rem;padding-bottom:.75rem}.has-py-4-widescreen{padding-top:1rem;padding-bottom:1rem}.has-py-6-widescreen{padding-top:1.5rem;padding-bottom:1.5rem}.has-py-8-widescreen{padding-top:2rem;padding-bottom:2rem}.has-py-12-widescreen{padding-top:3rem;padding-bottom:3rem}.has-py-16-widescreen{padding-top:4rem;padding-bottom:4rem}.has-py-24-widescreen{padding-top:6rem;padding-bottom:6rem}.has-py-32-widescreen{padding-top:8rem;padding-bottom:8rem}.has-py-40-widescreen{padding-top:10rem;padding-bottom:10rem}.has-py-48-widescreen{padding-top:12rem;padding-bottom:12rem}.has-py-64-widescreen{padding-top:16rem;padding-bottom:16rem}.has-py-80-widescreen{padding-top:20rem;padding-bottom:20rem}.has-py-96-widescreen{padding-top:24rem;padding-bottom:24rem}.has-py-none-widescreen{padding-top:0;padding-bottom:0}}.has-py-none{padding-top:0;padding-bottom:0}@media screen and (max-width:640px){.has-py-none-mobile{padding-top:0;padding-bottom:0}}@media screen and (min-width:640px){.has-py-none-tablet{padding-top:0;padding-bottom:0}}@media screen and (min-width:1264px){.has-py-none-desktop{padding-top:0;padding-bottom:0}.has-py-one-desktop{padding-top:1px;padding-bottom:1px}}.has-py-one{padding-top:1px;padding-bottom:1px}@media screen and (max-width:640px){.has-py-one-mobile{padding-top:1px;padding-bottom:1px}}@media screen and (min-width:640px){.has-py-one-tablet{padding-top:1px;padding-bottom:1px}}@media screen and (min-width:1504px){.has-py-one-widescreen{padding-top:1px;padding-bottom:1px}.has-py-half-widescreen{padding-top:50%;padding-bottom:50%}}.has-py-half{padding-top:50%;padding-bottom:50%}@media screen and (max-width:640px){.has-py-half-mobile{padding-top:50%;padding-bottom:50%}}@media screen and (min-width:640px){.has-py-half-tablet{padding-top:50%;padding-bottom:50%}}@media screen and (min-width:1264px){.has-py-half-desktop{padding-top:50%;padding-bottom:50%}.has-py-full-desktop{padding-top:100%;padding-bottom:100%}}.has-py-full{padding-top:100%;padding-bottom:100%}@media screen and (max-width:640px){.has-py-full-mobile{padding-top:100%;padding-bottom:100%}}@media screen and (min-width:640px){.has-py-full-tablet{padding-top:100%;padding-bottom:100%}}@media screen and (min-width:1504px){.has-py-full-widescreen{padding-top:100%;padding-bottom:100%}.has-py-auto-widescreen{padding-top:auto;padding-bottom:auto}}.has-py-auto{padding-top:auto;padding-bottom:auto}@media screen and (max-width:640px){.has-py-auto-mobile{padding-top:auto;padding-bottom:auto}}@media screen and (min-width:640px){.has-py-auto-tablet{padding-top:auto;padding-bottom:auto}}@media screen and (min-width:1264px){.has-py-auto-desktop{padding-top:auto;padding-bottom:auto}}.has-pt-0{padding-top:0}.has-pt-1{padding-top:.25rem}.has-pt-2{padding-top:.5rem}.has-pt-3{padding-top:.75rem}.has-pt-4{padding-top:1rem}.has-pt-6{padding-top:1.5rem}.has-pt-8{padding-top:2rem}.has-pt-12{padding-top:3rem}.has-pt-16{padding-top:4rem}.has-pt-24{padding-top:6rem}.has-pt-32{padding-top:8rem}.has-pt-40{padding-top:10rem}.has-pt-48{padding-top:12rem}.has-pt-64{padding-top:16rem}.has-pt-80{padding-top:20rem}.has-pt-96{padding-top:24rem}@media screen and (max-width:640px){.has-pt-0-mobile{padding-top:0}.has-pt-1-mobile{padding-top:.25rem}.has-pt-2-mobile{padding-top:.5rem}.has-pt-3-mobile{padding-top:.75rem}.has-pt-4-mobile{padding-top:1rem}.has-pt-6-mobile{padding-top:1.5rem}.has-pt-8-mobile{padding-top:2rem}.has-pt-12-mobile{padding-top:3rem}.has-pt-16-mobile{padding-top:4rem}.has-pt-24-mobile{padding-top:6rem}.has-pt-32-mobile{padding-top:8rem}.has-pt-40-mobile{padding-top:10rem}.has-pt-48-mobile{padding-top:12rem}.has-pt-64-mobile{padding-top:16rem}.has-pt-80-mobile{padding-top:20rem}.has-pt-96-mobile{padding-top:24rem}}@media screen and (min-width:640px){.has-pt-0-tablet{padding-top:0}.has-pt-1-tablet{padding-top:.25rem}.has-pt-2-tablet{padding-top:.5rem}.has-pt-3-tablet{padding-top:.75rem}.has-pt-4-tablet{padding-top:1rem}.has-pt-6-tablet{padding-top:1.5rem}.has-pt-8-tablet{padding-top:2rem}.has-pt-12-tablet{padding-top:3rem}.has-pt-16-tablet{padding-top:4rem}.has-pt-24-tablet{padding-top:6rem}.has-pt-32-tablet{padding-top:8rem}.has-pt-40-tablet{padding-top:10rem}.has-pt-48-tablet{padding-top:12rem}.has-pt-64-tablet{padding-top:16rem}.has-pt-80-tablet{padding-top:20rem}.has-pt-96-tablet{padding-top:24rem}}@media screen and (min-width:1264px){.has-pt-0-desktop{padding-top:0}.has-pt-1-desktop{padding-top:.25rem}.has-pt-2-desktop{padding-top:.5rem}.has-pt-3-desktop{padding-top:.75rem}.has-pt-4-desktop{padding-top:1rem}.has-pt-6-desktop{padding-top:1.5rem}.has-pt-8-desktop{padding-top:2rem}.has-pt-12-desktop{padding-top:3rem}.has-pt-16-desktop{padding-top:4rem}.has-pt-24-desktop{padding-top:6rem}.has-pt-32-desktop{padding-top:8rem}.has-pt-40-desktop{padding-top:10rem}.has-pt-48-desktop{padding-top:12rem}.has-pt-64-desktop{padding-top:16rem}.has-pt-80-desktop{padding-top:20rem}.has-pt-96-desktop{padding-top:24rem}}@media screen and (min-width:1504px){.has-pt-0-widescreen{padding-top:0}.has-pt-1-widescreen{padding-top:.25rem}.has-pt-2-widescreen{padding-top:.5rem}.has-pt-3-widescreen{padding-top:.75rem}.has-pt-4-widescreen{padding-top:1rem}.has-pt-6-widescreen{padding-top:1.5rem}.has-pt-8-widescreen{padding-top:2rem}.has-pt-12-widescreen{padding-top:3rem}.has-pt-16-widescreen{padding-top:4rem}.has-pt-24-widescreen{padding-top:6rem}.has-pt-32-widescreen{padding-top:8rem}.has-pt-40-widescreen{padding-top:10rem}.has-pt-48-widescreen{padding-top:12rem}.has-pt-64-widescreen{padding-top:16rem}.has-pt-80-widescreen{padding-top:20rem}.has-pt-96-widescreen{padding-top:24rem}.has-pt-none-widescreen{padding-top:0}}.has-pt-none{padding-top:0}@media screen and (max-width:640px){.has-pt-none-mobile{padding-top:0}}@media screen and (min-width:640px){.has-pt-none-tablet{padding-top:0}}@media screen and (min-width:1264px){.has-pt-none-desktop{padding-top:0}.has-pt-one-desktop{padding-top:1px}}.has-pt-one{padding-top:1px}@media screen and (max-width:640px){.has-pt-one-mobile{padding-top:1px}}@media screen and (min-width:640px){.has-pt-one-tablet{padding-top:1px}}@media screen and (min-width:1504px){.has-pt-one-widescreen{padding-top:1px}.has-pt-half-widescreen{padding-top:50%}}.has-pt-half{padding-top:50%}@media screen and (max-width:640px){.has-pt-half-mobile{padding-top:50%}}@media screen and (min-width:640px){.has-pt-half-tablet{padding-top:50%}}@media screen and (min-width:1264px){.has-pt-half-desktop{padding-top:50%}.has-pt-full-desktop{padding-top:100%}}.has-pt-full{padding-top:100%}@media screen and (max-width:640px){.has-pt-full-mobile{padding-top:100%}}@media screen and (min-width:640px){.has-pt-full-tablet{padding-top:100%}}@media screen and (min-width:1504px){.has-pt-full-widescreen{padding-top:100%}.has-pt-auto-widescreen{padding-top:auto}}.has-pt-auto{padding-top:auto}.has-pb-0{padding-bottom:0}.has-pb-1{padding-bottom:.25rem}.has-pb-2{padding-bottom:.5rem}.has-pb-3{padding-bottom:.75rem}.has-pb-4{padding-bottom:1rem}.has-pb-6{padding-bottom:1.5rem}.has-pb-8{padding-bottom:2rem}.has-pb-12{padding-bottom:3rem}.has-pb-16{padding-bottom:4rem}.has-pb-24{padding-bottom:6rem}.has-pb-32{padding-bottom:8rem}.has-pb-40{padding-bottom:10rem}.has-pb-48{padding-bottom:12rem}.has-pb-64{padding-bottom:16rem}.has-pb-80{padding-bottom:20rem}.has-pb-96{padding-bottom:24rem}@media screen and (max-width:640px){.has-pt-auto-mobile{padding-top:auto}.has-pb-0-mobile{padding-bottom:0}.has-pb-1-mobile{padding-bottom:.25rem}.has-pb-2-mobile{padding-bottom:.5rem}.has-pb-3-mobile{padding-bottom:.75rem}.has-pb-4-mobile{padding-bottom:1rem}.has-pb-6-mobile{padding-bottom:1.5rem}.has-pb-8-mobile{padding-bottom:2rem}.has-pb-12-mobile{padding-bottom:3rem}.has-pb-16-mobile{padding-bottom:4rem}.has-pb-24-mobile{padding-bottom:6rem}.has-pb-32-mobile{padding-bottom:8rem}.has-pb-40-mobile{padding-bottom:10rem}.has-pb-48-mobile{padding-bottom:12rem}.has-pb-64-mobile{padding-bottom:16rem}.has-pb-80-mobile{padding-bottom:20rem}.has-pb-96-mobile{padding-bottom:24rem}}@media screen and (min-width:640px){.has-pt-auto-tablet{padding-top:auto}.has-pb-0-tablet{padding-bottom:0}.has-pb-1-tablet{padding-bottom:.25rem}.has-pb-2-tablet{padding-bottom:.5rem}.has-pb-3-tablet{padding-bottom:.75rem}.has-pb-4-tablet{padding-bottom:1rem}.has-pb-6-tablet{padding-bottom:1.5rem}.has-pb-8-tablet{padding-bottom:2rem}.has-pb-12-tablet{padding-bottom:3rem}.has-pb-16-tablet{padding-bottom:4rem}.has-pb-24-tablet{padding-bottom:6rem}.has-pb-32-tablet{padding-bottom:8rem}.has-pb-40-tablet{padding-bottom:10rem}.has-pb-48-tablet{padding-bottom:12rem}.has-pb-64-tablet{padding-bottom:16rem}.has-pb-80-tablet{padding-bottom:20rem}.has-pb-96-tablet{padding-bottom:24rem}}@media screen and (min-width:1264px){.has-pt-auto-desktop{padding-top:auto}.has-pb-0-desktop{padding-bottom:0}.has-pb-1-desktop{padding-bottom:.25rem}.has-pb-2-desktop{padding-bottom:.5rem}.has-pb-3-desktop{padding-bottom:.75rem}.has-pb-4-desktop{padding-bottom:1rem}.has-pb-6-desktop{padding-bottom:1.5rem}.has-pb-8-desktop{padding-bottom:2rem}.has-pb-12-desktop{padding-bottom:3rem}.has-pb-16-desktop{padding-bottom:4rem}.has-pb-24-desktop{padding-bottom:6rem}.has-pb-32-desktop{padding-bottom:8rem}.has-pb-40-desktop{padding-bottom:10rem}.has-pb-48-desktop{padding-bottom:12rem}.has-pb-64-desktop{padding-bottom:16rem}.has-pb-80-desktop{padding-bottom:20rem}.has-pb-96-desktop{padding-bottom:24rem}}@media screen and (min-width:1504px){.has-pb-0-widescreen{padding-bottom:0}.has-pb-1-widescreen{padding-bottom:.25rem}.has-pb-2-widescreen{padding-bottom:.5rem}.has-pb-3-widescreen{padding-bottom:.75rem}.has-pb-4-widescreen{padding-bottom:1rem}.has-pb-6-widescreen{padding-bottom:1.5rem}.has-pb-8-widescreen{padding-bottom:2rem}.has-pb-12-widescreen{padding-bottom:3rem}.has-pb-16-widescreen{padding-bottom:4rem}.has-pb-24-widescreen{padding-bottom:6rem}.has-pb-32-widescreen{padding-bottom:8rem}.has-pb-40-widescreen{padding-bottom:10rem}.has-pb-48-widescreen{padding-bottom:12rem}.has-pb-64-widescreen{padding-bottom:16rem}.has-pb-80-widescreen{padding-bottom:20rem}.has-pb-96-widescreen{padding-bottom:24rem}.has-pb-none-widescreen{padding-bottom:0}}.has-pb-none{padding-bottom:0}@media screen and (max-width:640px){.has-pb-none-mobile{padding-bottom:0}}@media screen and (min-width:640px){.has-pb-none-tablet{padding-bottom:0}}@media screen and (min-width:1264px){.has-pb-none-desktop{padding-bottom:0}.has-pb-one-desktop{padding-bottom:1px}}.has-pb-one{padding-bottom:1px}@media screen and (max-width:640px){.has-pb-one-mobile{padding-bottom:1px}}@media screen and (min-width:640px){.has-pb-one-tablet{padding-bottom:1px}}@media screen and (min-width:1504px){.has-pb-one-widescreen{padding-bottom:1px}.has-pb-half-widescreen{padding-bottom:50%}}.has-pb-half{padding-bottom:50%}@media screen and (max-width:640px){.has-pb-half-mobile{padding-bottom:50%}}@media screen and (min-width:640px){.has-pb-half-tablet{padding-bottom:50%}}@media screen and (min-width:1264px){.has-pb-half-desktop{padding-bottom:50%}.has-pb-full-desktop{padding-bottom:100%}}.has-pb-full{padding-bottom:100%}@media screen and (max-width:640px){.has-pb-full-mobile{padding-bottom:100%}}@media screen and (min-width:640px){.has-pb-full-tablet{padding-bottom:100%}}@media screen and (min-width:1504px){.has-pb-full-widescreen{padding-bottom:100%}.has-pb-auto-widescreen{padding-bottom:auto}}.has-pb-auto{padding-bottom:auto}.has-pl-0{padding-left:0}.has-pl-1{padding-left:.25rem}.has-pl-2{padding-left:.5rem}.has-pl-3{padding-left:.75rem}.has-pl-4{padding-left:1rem}.has-pl-6{padding-left:1.5rem}.has-pl-8{padding-left:2rem}.has-pl-12{padding-left:3rem}.has-pl-16{padding-left:4rem}.has-pl-24{padding-left:6rem}.has-pl-32{padding-left:8rem}.has-pl-40{padding-left:10rem}.has-pl-48{padding-left:12rem}.has-pl-64{padding-left:16rem}.has-pl-80{padding-left:20rem}.has-pl-96{padding-left:24rem}@media screen and (max-width:640px){.has-pb-auto-mobile{padding-bottom:auto}.has-pl-0-mobile{padding-left:0}.has-pl-1-mobile{padding-left:.25rem}.has-pl-2-mobile{padding-left:.5rem}.has-pl-3-mobile{padding-left:.75rem}.has-pl-4-mobile{padding-left:1rem}.has-pl-6-mobile{padding-left:1.5rem}.has-pl-8-mobile{padding-left:2rem}.has-pl-12-mobile{padding-left:3rem}.has-pl-16-mobile{padding-left:4rem}.has-pl-24-mobile{padding-left:6rem}.has-pl-32-mobile{padding-left:8rem}.has-pl-40-mobile{padding-left:10rem}.has-pl-48-mobile{padding-left:12rem}.has-pl-64-mobile{padding-left:16rem}.has-pl-80-mobile{padding-left:20rem}.has-pl-96-mobile{padding-left:24rem}}@media screen and (min-width:640px){.has-pb-auto-tablet{padding-bottom:auto}.has-pl-0-tablet{padding-left:0}.has-pl-1-tablet{padding-left:.25rem}.has-pl-2-tablet{padding-left:.5rem}.has-pl-3-tablet{padding-left:.75rem}.has-pl-4-tablet{padding-left:1rem}.has-pl-6-tablet{padding-left:1.5rem}.has-pl-8-tablet{padding-left:2rem}.has-pl-12-tablet{padding-left:3rem}.has-pl-16-tablet{padding-left:4rem}.has-pl-24-tablet{padding-left:6rem}.has-pl-32-tablet{padding-left:8rem}.has-pl-40-tablet{padding-left:10rem}.has-pl-48-tablet{padding-left:12rem}.has-pl-64-tablet{padding-left:16rem}.has-pl-80-tablet{padding-left:20rem}.has-pl-96-tablet{padding-left:24rem}}@media screen and (min-width:1264px){.has-pb-auto-desktop{padding-bottom:auto}.has-pl-0-desktop{padding-left:0}.has-pl-1-desktop{padding-left:.25rem}.has-pl-2-desktop{padding-left:.5rem}.has-pl-3-desktop{padding-left:.75rem}.has-pl-4-desktop{padding-left:1rem}.has-pl-6-desktop{padding-left:1.5rem}.has-pl-8-desktop{padding-left:2rem}.has-pl-12-desktop{padding-left:3rem}.has-pl-16-desktop{padding-left:4rem}.has-pl-24-desktop{padding-left:6rem}.has-pl-32-desktop{padding-left:8rem}.has-pl-40-desktop{padding-left:10rem}.has-pl-48-desktop{padding-left:12rem}.has-pl-64-desktop{padding-left:16rem}.has-pl-80-desktop{padding-left:20rem}.has-pl-96-desktop{padding-left:24rem}}@media screen and (min-width:1504px){.has-pl-0-widescreen{padding-left:0}.has-pl-1-widescreen{padding-left:.25rem}.has-pl-2-widescreen{padding-left:.5rem}.has-pl-3-widescreen{padding-left:.75rem}.has-pl-4-widescreen{padding-left:1rem}.has-pl-6-widescreen{padding-left:1.5rem}.has-pl-8-widescreen{padding-left:2rem}.has-pl-12-widescreen{padding-left:3rem}.has-pl-16-widescreen{padding-left:4rem}.has-pl-24-widescreen{padding-left:6rem}.has-pl-32-widescreen{padding-left:8rem}.has-pl-40-widescreen{padding-left:10rem}.has-pl-48-widescreen{padding-left:12rem}.has-pl-64-widescreen{padding-left:16rem}.has-pl-80-widescreen{padding-left:20rem}.has-pl-96-widescreen{padding-left:24rem}.has-pl-none-widescreen{padding-left:0}}.has-pl-none{padding-left:0}@media screen and (max-width:640px){.has-pl-none-mobile{padding-left:0}}@media screen and (min-width:640px){.has-pl-none-tablet{padding-left:0}}@media screen and (min-width:1264px){.has-pl-none-desktop{padding-left:0}.has-pl-one-desktop{padding-left:1px}}.has-pl-one{padding-left:1px}@media screen and (max-width:640px){.has-pl-one-mobile{padding-left:1px}}@media screen and (min-width:640px){.has-pl-one-tablet{padding-left:1px}}@media screen and (min-width:1504px){.has-pl-one-widescreen{padding-left:1px}.has-pl-half-widescreen{padding-left:50%}}.has-pl-half{padding-left:50%}@media screen and (max-width:640px){.has-pl-half-mobile{padding-left:50%}}@media screen and (min-width:640px){.has-pl-half-tablet{padding-left:50%}}@media screen and (min-width:1264px){.has-pl-half-desktop{padding-left:50%}.has-pl-full-desktop{padding-left:100%}}.has-pl-full{padding-left:100%}@media screen and (max-width:640px){.has-pl-full-mobile{padding-left:100%}}@media screen and (min-width:640px){.has-pl-full-tablet{padding-left:100%}}@media screen and (min-width:1504px){.has-pl-full-widescreen{padding-left:100%}.has-pl-auto-widescreen{padding-left:auto}}.has-pl-auto{padding-left:auto}.has-pr-0{padding-right:0}.has-pr-1{padding-right:.25rem}.has-pr-2{padding-right:.5rem}.has-pr-3{padding-right:.75rem}.has-pr-4{padding-right:1rem}.has-pr-6{padding-right:1.5rem}.has-pr-8{padding-right:2rem}.has-pr-12{padding-right:3rem}.has-pr-16{padding-right:4rem}.has-pr-24{padding-right:6rem}.has-pr-32{padding-right:8rem}.has-pr-40{padding-right:10rem}.has-pr-48{padding-right:12rem}.has-pr-64{padding-right:16rem}.has-pr-80{padding-right:20rem}.has-pr-96{padding-right:24rem}@media screen and (max-width:640px){.has-pl-auto-mobile{padding-left:auto}.has-pr-0-mobile{padding-right:0}.has-pr-1-mobile{padding-right:.25rem}.has-pr-2-mobile{padding-right:.5rem}.has-pr-3-mobile{padding-right:.75rem}.has-pr-4-mobile{padding-right:1rem}.has-pr-6-mobile{padding-right:1.5rem}.has-pr-8-mobile{padding-right:2rem}.has-pr-12-mobile{padding-right:3rem}.has-pr-16-mobile{padding-right:4rem}.has-pr-24-mobile{padding-right:6rem}.has-pr-32-mobile{padding-right:8rem}.has-pr-40-mobile{padding-right:10rem}.has-pr-48-mobile{padding-right:12rem}.has-pr-64-mobile{padding-right:16rem}.has-pr-80-mobile{padding-right:20rem}.has-pr-96-mobile{padding-right:24rem}}@media screen and (min-width:640px){.has-pl-auto-tablet{padding-left:auto}.has-pr-0-tablet{padding-right:0}.has-pr-1-tablet{padding-right:.25rem}.has-pr-2-tablet{padding-right:.5rem}.has-pr-3-tablet{padding-right:.75rem}.has-pr-4-tablet{padding-right:1rem}.has-pr-6-tablet{padding-right:1.5rem}.has-pr-8-tablet{padding-right:2rem}.has-pr-12-tablet{padding-right:3rem}.has-pr-16-tablet{padding-right:4rem}.has-pr-24-tablet{padding-right:6rem}.has-pr-32-tablet{padding-right:8rem}.has-pr-40-tablet{padding-right:10rem}.has-pr-48-tablet{padding-right:12rem}.has-pr-64-tablet{padding-right:16rem}.has-pr-80-tablet{padding-right:20rem}.has-pr-96-tablet{padding-right:24rem}}@media screen and (min-width:1264px){.has-pl-auto-desktop{padding-left:auto}.has-pr-0-desktop{padding-right:0}.has-pr-1-desktop{padding-right:.25rem}.has-pr-2-desktop{padding-right:.5rem}.has-pr-3-desktop{padding-right:.75rem}.has-pr-4-desktop{padding-right:1rem}.has-pr-6-desktop{padding-right:1.5rem}.has-pr-8-desktop{padding-right:2rem}.has-pr-12-desktop{padding-right:3rem}.has-pr-16-desktop{padding-right:4rem}.has-pr-24-desktop{padding-right:6rem}.has-pr-32-desktop{padding-right:8rem}.has-pr-40-desktop{padding-right:10rem}.has-pr-48-desktop{padding-right:12rem}.has-pr-64-desktop{padding-right:16rem}.has-pr-80-desktop{padding-right:20rem}.has-pr-96-desktop{padding-right:24rem}}@media screen and (min-width:1504px){.has-pr-0-widescreen{padding-right:0}.has-pr-1-widescreen{padding-right:.25rem}.has-pr-2-widescreen{padding-right:.5rem}.has-pr-3-widescreen{padding-right:.75rem}.has-pr-4-widescreen{padding-right:1rem}.has-pr-6-widescreen{padding-right:1.5rem}.has-pr-8-widescreen{padding-right:2rem}.has-pr-12-widescreen{padding-right:3rem}.has-pr-16-widescreen{padding-right:4rem}.has-pr-24-widescreen{padding-right:6rem}.has-pr-32-widescreen{padding-right:8rem}.has-pr-40-widescreen{padding-right:10rem}.has-pr-48-widescreen{padding-right:12rem}.has-pr-64-widescreen{padding-right:16rem}.has-pr-80-widescreen{padding-right:20rem}.has-pr-96-widescreen{padding-right:24rem}.has-pr-none-widescreen{padding-right:0}}.has-pr-none{padding-right:0}@media screen and (max-width:640px){.has-pr-none-mobile{padding-right:0}}@media screen and (min-width:640px){.has-pr-none-tablet{padding-right:0}}@media screen and (min-width:1264px){.has-pr-none-desktop{padding-right:0}.has-pr-one-desktop{padding-right:1px}}.has-pr-one{padding-right:1px}@media screen and (max-width:640px){.has-pr-one-mobile{padding-right:1px}}@media screen and (min-width:640px){.has-pr-one-tablet{padding-right:1px}}@media screen and (min-width:1504px){.has-pr-one-widescreen{padding-right:1px}.has-pr-half-widescreen{padding-right:50%}}.has-pr-half{padding-right:50%}@media screen and (max-width:640px){.has-pr-half-mobile{padding-right:50%}}@media screen and (min-width:640px){.has-pr-half-tablet{padding-right:50%}}@media screen and (min-width:1264px){.has-pr-half-desktop{padding-right:50%}.has-pr-full-desktop{padding-right:100%}}.has-pr-full{padding-right:100%}@media screen and (max-width:640px){.has-pr-full-mobile{padding-right:100%}}@media screen and (min-width:640px){.has-pr-full-tablet{padding-right:100%}}@media screen and (min-width:1504px){.has-pr-full-widescreen{padding-right:100%}.has-pr-auto-widescreen{padding-right:auto}}.has-pr-auto{padding-right:auto}.has-m-0{margin:0}.has-m-1{margin:.25rem}.has-m-2{margin:.5rem}.has-m-3{margin:.75rem}.has-m-4{margin:1rem}.has-m-6{margin:1.5rem}.has-m-8{margin:2rem}.has-m-12{margin:3rem}.has-m-16{margin:4rem}.has-m-24{margin:6rem}.has-m-32{margin:8rem}.has-m-40{margin:10rem}.has-m-48{margin:12rem}.has-m-64{margin:16rem}.has-m-80{margin:20rem}.has-m-96{margin:24rem}@media screen and (max-width:640px){.has-pr-auto-mobile{padding-right:auto}.has-m-0-mobile{margin:0}.has-m-1-mobile{margin:.25rem}.has-m-2-mobile{margin:.5rem}.has-m-3-mobile{margin:.75rem}.has-m-4-mobile{margin:1rem}.has-m-6-mobile{margin:1.5rem}.has-m-8-mobile{margin:2rem}.has-m-12-mobile{margin:3rem}.has-m-16-mobile{margin:4rem}.has-m-24-mobile{margin:6rem}.has-m-32-mobile{margin:8rem}.has-m-40-mobile{margin:10rem}.has-m-48-mobile{margin:12rem}.has-m-64-mobile{margin:16rem}.has-m-80-mobile{margin:20rem}.has-m-96-mobile{margin:24rem}}@media screen and (min-width:640px){.has-pr-auto-tablet{padding-right:auto}.has-m-0-tablet{margin:0}.has-m-1-tablet{margin:.25rem}.has-m-2-tablet{margin:.5rem}.has-m-3-tablet{margin:.75rem}.has-m-4-tablet{margin:1rem}.has-m-6-tablet{margin:1.5rem}.has-m-8-tablet{margin:2rem}.has-m-12-tablet{margin:3rem}.has-m-16-tablet{margin:4rem}.has-m-24-tablet{margin:6rem}.has-m-32-tablet{margin:8rem}.has-m-40-tablet{margin:10rem}.has-m-48-tablet{margin:12rem}.has-m-64-tablet{margin:16rem}.has-m-80-tablet{margin:20rem}.has-m-96-tablet{margin:24rem}}@media screen and (min-width:1264px){.has-pr-auto-desktop{padding-right:auto}.has-m-0-desktop{margin:0}.has-m-1-desktop{margin:.25rem}.has-m-2-desktop{margin:.5rem}.has-m-3-desktop{margin:.75rem}.has-m-4-desktop{margin:1rem}.has-m-6-desktop{margin:1.5rem}.has-m-8-desktop{margin:2rem}.has-m-12-desktop{margin:3rem}.has-m-16-desktop{margin:4rem}.has-m-24-desktop{margin:6rem}.has-m-32-desktop{margin:8rem}.has-m-40-desktop{margin:10rem}.has-m-48-desktop{margin:12rem}.has-m-64-desktop{margin:16rem}.has-m-80-desktop{margin:20rem}.has-m-96-desktop{margin:24rem}}@media screen and (min-width:1504px){.has-m-0-widescreen{margin:0}.has-m-1-widescreen{margin:.25rem}.has-m-2-widescreen{margin:.5rem}.has-m-3-widescreen{margin:.75rem}.has-m-4-widescreen{margin:1rem}.has-m-6-widescreen{margin:1.5rem}.has-m-8-widescreen{margin:2rem}.has-m-12-widescreen{margin:3rem}.has-m-16-widescreen{margin:4rem}.has-m-24-widescreen{margin:6rem}.has-m-32-widescreen{margin:8rem}.has-m-40-widescreen{margin:10rem}.has-m-48-widescreen{margin:12rem}.has-m-64-widescreen{margin:16rem}.has-m-80-widescreen{margin:20rem}.has-m-96-widescreen{margin:24rem}.has-m-none-widescreen{margin:0}}.has-m-none{margin:0}@media screen and (max-width:640px){.has-m-none-mobile{margin:0}}@media screen and (min-width:640px){.has-m-none-tablet{margin:0}}@media screen and (min-width:1264px){.has-m-none-desktop{margin:0}.has-m-one-desktop{margin:1px}}.has-m-one{margin:1px}@media screen and (max-width:640px){.has-m-one-mobile{margin:1px}}@media screen and (min-width:640px){.has-m-one-tablet{margin:1px}}@media screen and (min-width:1504px){.has-m-one-widescreen{margin:1px}.has-m-half-widescreen{margin:50%}}.has-m-half{margin:50%}@media screen and (max-width:640px){.has-m-half-mobile{margin:50%}}@media screen and (min-width:640px){.has-m-half-tablet{margin:50%}}@media screen and (min-width:1264px){.has-m-half-desktop{margin:50%}.has-m-full-desktop{margin:100%}}.has-m-full{margin:100%}@media screen and (max-width:640px){.has-m-full-mobile{margin:100%}}@media screen and (min-width:640px){.has-m-full-tablet{margin:100%}}@media screen and (min-width:1504px){.has-m-full-widescreen{margin:100%}.has-m-auto-widescreen{margin:auto}}.has-m-auto{margin:auto}@media screen and (max-width:640px){.has-m-auto-mobile{margin:auto}}@media screen and (min-width:640px){.has-m-auto-tablet{margin:auto}}@media screen and (min-width:1264px){.has-m-auto-desktop{margin:auto}}.has-mx-0{margin-left:0;margin-right:0}.has-mx-1{margin-left:.25rem;margin-right:.25rem}.has-mx-2{margin-left:.5rem;margin-right:.5rem}.has-mx-3{margin-left:.75rem;margin-right:.75rem}.has-mx-4{margin-left:1rem;margin-right:1rem}.has-mx-6{margin-left:1.5rem;margin-right:1.5rem}.has-mx-8{margin-left:2rem;margin-right:2rem}.has-mx-12{margin-left:3rem;margin-right:3rem}.has-mx-16{margin-left:4rem;margin-right:4rem}.has-mx-24{margin-left:6rem;margin-right:6rem}.has-mx-32{margin-left:8rem;margin-right:8rem}.has-mx-40{margin-left:10rem;margin-right:10rem}.has-mx-48{margin-left:12rem;margin-right:12rem}.has-mx-64{margin-left:16rem;margin-right:16rem}.has-mx-80{margin-left:20rem;margin-right:20rem}.has-mx-96{margin-left:24rem;margin-right:24rem}@media screen and (max-width:640px){.has-mx-0-mobile{margin-left:0;margin-right:0}.has-mx-1-mobile{margin-left:.25rem;margin-right:.25rem}.has-mx-2-mobile{margin-left:.5rem;margin-right:.5rem}.has-mx-3-mobile{margin-left:.75rem;margin-right:.75rem}.has-mx-4-mobile{margin-left:1rem;margin-right:1rem}.has-mx-6-mobile{margin-left:1.5rem;margin-right:1.5rem}.has-mx-8-mobile{margin-left:2rem;margin-right:2rem}.has-mx-12-mobile{margin-left:3rem;margin-right:3rem}.has-mx-16-mobile{margin-left:4rem;margin-right:4rem}.has-mx-24-mobile{margin-left:6rem;margin-right:6rem}.has-mx-32-mobile{margin-left:8rem;margin-right:8rem}.has-mx-40-mobile{margin-left:10rem;margin-right:10rem}.has-mx-48-mobile{margin-left:12rem;margin-right:12rem}.has-mx-64-mobile{margin-left:16rem;margin-right:16rem}.has-mx-80-mobile{margin-left:20rem;margin-right:20rem}.has-mx-96-mobile{margin-left:24rem;margin-right:24rem}}@media screen and (min-width:640px){.has-mx-0-tablet{margin-left:0;margin-right:0}.has-mx-1-tablet{margin-left:.25rem;margin-right:.25rem}.has-mx-2-tablet{margin-left:.5rem;margin-right:.5rem}.has-mx-3-tablet{margin-left:.75rem;margin-right:.75rem}.has-mx-4-tablet{margin-left:1rem;margin-right:1rem}.has-mx-6-tablet{margin-left:1.5rem;margin-right:1.5rem}.has-mx-8-tablet{margin-left:2rem;margin-right:2rem}.has-mx-12-tablet{margin-left:3rem;margin-right:3rem}.has-mx-16-tablet{margin-left:4rem;margin-right:4rem}.has-mx-24-tablet{margin-left:6rem;margin-right:6rem}.has-mx-32-tablet{margin-left:8rem;margin-right:8rem}.has-mx-40-tablet{margin-left:10rem;margin-right:10rem}.has-mx-48-tablet{margin-left:12rem;margin-right:12rem}.has-mx-64-tablet{margin-left:16rem;margin-right:16rem}.has-mx-80-tablet{margin-left:20rem;margin-right:20rem}.has-mx-96-tablet{margin-left:24rem;margin-right:24rem}}@media screen and (min-width:1264px){.has-mx-0-desktop{margin-left:0;margin-right:0}.has-mx-1-desktop{margin-left:.25rem;margin-right:.25rem}.has-mx-2-desktop{margin-left:.5rem;margin-right:.5rem}.has-mx-3-desktop{margin-left:.75rem;margin-right:.75rem}.has-mx-4-desktop{margin-left:1rem;margin-right:1rem}.has-mx-6-desktop{margin-left:1.5rem;margin-right:1.5rem}.has-mx-8-desktop{margin-left:2rem;margin-right:2rem}.has-mx-12-desktop{margin-left:3rem;margin-right:3rem}.has-mx-16-desktop{margin-left:4rem;margin-right:4rem}.has-mx-24-desktop{margin-left:6rem;margin-right:6rem}.has-mx-32-desktop{margin-left:8rem;margin-right:8rem}.has-mx-40-desktop{margin-left:10rem;margin-right:10rem}.has-mx-48-desktop{margin-left:12rem;margin-right:12rem}.has-mx-64-desktop{margin-left:16rem;margin-right:16rem}.has-mx-80-desktop{margin-left:20rem;margin-right:20rem}.has-mx-96-desktop{margin-left:24rem;margin-right:24rem}}@media screen and (min-width:1504px){.has-mx-0-widescreen{margin-left:0;margin-right:0}.has-mx-1-widescreen{margin-left:.25rem;margin-right:.25rem}.has-mx-2-widescreen{margin-left:.5rem;margin-right:.5rem}.has-mx-3-widescreen{margin-left:.75rem;margin-right:.75rem}.has-mx-4-widescreen{margin-left:1rem;margin-right:1rem}.has-mx-6-widescreen{margin-left:1.5rem;margin-right:1.5rem}.has-mx-8-widescreen{margin-left:2rem;margin-right:2rem}.has-mx-12-widescreen{margin-left:3rem;margin-right:3rem}.has-mx-16-widescreen{margin-left:4rem;margin-right:4rem}.has-mx-24-widescreen{margin-left:6rem;margin-right:6rem}.has-mx-32-widescreen{margin-left:8rem;margin-right:8rem}.has-mx-40-widescreen{margin-left:10rem;margin-right:10rem}.has-mx-48-widescreen{margin-left:12rem;margin-right:12rem}.has-mx-64-widescreen{margin-left:16rem;margin-right:16rem}.has-mx-80-widescreen{margin-left:20rem;margin-right:20rem}.has-mx-96-widescreen{margin-left:24rem;margin-right:24rem}.has-mx-none-widescreen{margin-left:0;margin-right:0}}.has-mx-none{margin-left:0;margin-right:0}@media screen and (max-width:640px){.has-mx-none-mobile{margin-left:0;margin-right:0}}@media screen and (min-width:640px){.has-mx-none-tablet{margin-left:0;margin-right:0}}@media screen and (min-width:1264px){.has-mx-none-desktop{margin-left:0;margin-right:0}.has-mx-one-desktop{margin-left:1px;margin-right:1px}}.has-mx-one{margin-left:1px;margin-right:1px}@media screen and (max-width:640px){.has-mx-one-mobile{margin-left:1px;margin-right:1px}}@media screen and (min-width:640px){.has-mx-one-tablet{margin-left:1px;margin-right:1px}}@media screen and (min-width:1504px){.has-mx-one-widescreen{margin-left:1px;margin-right:1px}.has-mx-half-widescreen{margin-left:50%;margin-right:50%}}.has-mx-half{margin-left:50%;margin-right:50%}@media screen and (max-width:640px){.has-mx-half-mobile{margin-left:50%;margin-right:50%}}@media screen and (min-width:640px){.has-mx-half-tablet{margin-left:50%;margin-right:50%}}@media screen and (min-width:1264px){.has-mx-half-desktop{margin-left:50%;margin-right:50%}.has-mx-full-desktop{margin-left:100%;margin-right:100%}}.has-mx-full{margin-left:100%;margin-right:100%}@media screen and (max-width:640px){.has-mx-full-mobile{margin-left:100%;margin-right:100%}}@media screen and (min-width:640px){.has-mx-full-tablet{margin-left:100%;margin-right:100%}}@media screen and (min-width:1504px){.has-mx-full-widescreen{margin-left:100%;margin-right:100%}.has-mx-auto-widescreen{margin-left:auto;margin-right:auto}}.has-mx-auto{margin-left:auto;margin-right:auto}.has-my-0{margin-top:0;margin-bottom:0}.has-my-1{margin-top:.25rem;margin-bottom:.25rem}.has-my-2{margin-top:.5rem;margin-bottom:.5rem}.has-my-3{margin-top:.75rem;margin-bottom:.75rem}.has-my-4{margin-top:1rem;margin-bottom:1rem}.has-my-6{margin-top:1.5rem;margin-bottom:1.5rem}.has-my-8{margin-top:2rem;margin-bottom:2rem}.has-my-12{margin-top:3rem;margin-bottom:3rem}.has-my-16{margin-top:4rem;margin-bottom:4rem}.has-my-24{margin-top:6rem;margin-bottom:6rem}.has-my-32{margin-top:8rem;margin-bottom:8rem}.has-my-40{margin-top:10rem;margin-bottom:10rem}.has-my-48{margin-top:12rem;margin-bottom:12rem}.has-my-64{margin-top:16rem;margin-bottom:16rem}.has-my-80{margin-top:20rem;margin-bottom:20rem}.has-my-96{margin-top:24rem;margin-bottom:24rem}@media screen and (max-width:640px){.has-mx-auto-mobile{margin-left:auto;margin-right:auto}.has-my-0-mobile{margin-top:0;margin-bottom:0}.has-my-1-mobile{margin-top:.25rem;margin-bottom:.25rem}.has-my-2-mobile{margin-top:.5rem;margin-bottom:.5rem}.has-my-3-mobile{margin-top:.75rem;margin-bottom:.75rem}.has-my-4-mobile{margin-top:1rem;margin-bottom:1rem}.has-my-6-mobile{margin-top:1.5rem;margin-bottom:1.5rem}.has-my-8-mobile{margin-top:2rem;margin-bottom:2rem}.has-my-12-mobile{margin-top:3rem;margin-bottom:3rem}.has-my-16-mobile{margin-top:4rem;margin-bottom:4rem}.has-my-24-mobile{margin-top:6rem;margin-bottom:6rem}.has-my-32-mobile{margin-top:8rem;margin-bottom:8rem}.has-my-40-mobile{margin-top:10rem;margin-bottom:10rem}.has-my-48-mobile{margin-top:12rem;margin-bottom:12rem}.has-my-64-mobile{margin-top:16rem;margin-bottom:16rem}.has-my-80-mobile{margin-top:20rem;margin-bottom:20rem}.has-my-96-mobile{margin-top:24rem;margin-bottom:24rem}}@media screen and (min-width:640px){.has-mx-auto-tablet{margin-left:auto;margin-right:auto}.has-my-0-tablet{margin-top:0;margin-bottom:0}.has-my-1-tablet{margin-top:.25rem;margin-bottom:.25rem}.has-my-2-tablet{margin-top:.5rem;margin-bottom:.5rem}.has-my-3-tablet{margin-top:.75rem;margin-bottom:.75rem}.has-my-4-tablet{margin-top:1rem;margin-bottom:1rem}.has-my-6-tablet{margin-top:1.5rem;margin-bottom:1.5rem}.has-my-8-tablet{margin-top:2rem;margin-bottom:2rem}.has-my-12-tablet{margin-top:3rem;margin-bottom:3rem}.has-my-16-tablet{margin-top:4rem;margin-bottom:4rem}.has-my-24-tablet{margin-top:6rem;margin-bottom:6rem}.has-my-32-tablet{margin-top:8rem;margin-bottom:8rem}.has-my-40-tablet{margin-top:10rem;margin-bottom:10rem}.has-my-48-tablet{margin-top:12rem;margin-bottom:12rem}.has-my-64-tablet{margin-top:16rem;margin-bottom:16rem}.has-my-80-tablet{margin-top:20rem;margin-bottom:20rem}.has-my-96-tablet{margin-top:24rem;margin-bottom:24rem}}@media screen and (min-width:1264px){.has-mx-auto-desktop{margin-left:auto;margin-right:auto}.has-my-0-desktop{margin-top:0;margin-bottom:0}.has-my-1-desktop{margin-top:.25rem;margin-bottom:.25rem}.has-my-2-desktop{margin-top:.5rem;margin-bottom:.5rem}.has-my-3-desktop{margin-top:.75rem;margin-bottom:.75rem}.has-my-4-desktop{margin-top:1rem;margin-bottom:1rem}.has-my-6-desktop{margin-top:1.5rem;margin-bottom:1.5rem}.has-my-8-desktop{margin-top:2rem;margin-bottom:2rem}.has-my-12-desktop{margin-top:3rem;margin-bottom:3rem}.has-my-16-desktop{margin-top:4rem;margin-bottom:4rem}.has-my-24-desktop{margin-top:6rem;margin-bottom:6rem}.has-my-32-desktop{margin-top:8rem;margin-bottom:8rem}.has-my-40-desktop{margin-top:10rem;margin-bottom:10rem}.has-my-48-desktop{margin-top:12rem;margin-bottom:12rem}.has-my-64-desktop{margin-top:16rem;margin-bottom:16rem}.has-my-80-desktop{margin-top:20rem;margin-bottom:20rem}.has-my-96-desktop{margin-top:24rem;margin-bottom:24rem}}@media screen and (min-width:1504px){.has-my-0-widescreen{margin-top:0;margin-bottom:0}.has-my-1-widescreen{margin-top:.25rem;margin-bottom:.25rem}.has-my-2-widescreen{margin-top:.5rem;margin-bottom:.5rem}.has-my-3-widescreen{margin-top:.75rem;margin-bottom:.75rem}.has-my-4-widescreen{margin-top:1rem;margin-bottom:1rem}.has-my-6-widescreen{margin-top:1.5rem;margin-bottom:1.5rem}.has-my-8-widescreen{margin-top:2rem;margin-bottom:2rem}.has-my-12-widescreen{margin-top:3rem;margin-bottom:3rem}.has-my-16-widescreen{margin-top:4rem;margin-bottom:4rem}.has-my-24-widescreen{margin-top:6rem;margin-bottom:6rem}.has-my-32-widescreen{margin-top:8rem;margin-bottom:8rem}.has-my-40-widescreen{margin-top:10rem;margin-bottom:10rem}.has-my-48-widescreen{margin-top:12rem;margin-bottom:12rem}.has-my-64-widescreen{margin-top:16rem;margin-bottom:16rem}.has-my-80-widescreen{margin-top:20rem;margin-bottom:20rem}.has-my-96-widescreen{margin-top:24rem;margin-bottom:24rem}.has-my-none-widescreen{margin-top:0;margin-bottom:0}}.has-my-none{margin-top:0;margin-bottom:0}@media screen and (max-width:640px){.has-my-none-mobile{margin-top:0;margin-bottom:0}}@media screen and (min-width:640px){.has-my-none-tablet{margin-top:0;margin-bottom:0}}@media screen and (min-width:1264px){.has-my-none-desktop{margin-top:0;margin-bottom:0}.has-my-one-desktop{margin-top:1px;margin-bottom:1px}}.has-my-one{margin-top:1px;margin-bottom:1px}@media screen and (max-width:640px){.has-my-one-mobile{margin-top:1px;margin-bottom:1px}}@media screen and (min-width:640px){.has-my-one-tablet{margin-top:1px;margin-bottom:1px}}@media screen and (min-width:1504px){.has-my-one-widescreen{margin-top:1px;margin-bottom:1px}.has-my-half-widescreen{margin-top:50%;margin-bottom:50%}}.has-my-half{margin-top:50%;margin-bottom:50%}@media screen and (max-width:640px){.has-my-half-mobile{margin-top:50%;margin-bottom:50%}}@media screen and (min-width:640px){.has-my-half-tablet{margin-top:50%;margin-bottom:50%}}@media screen and (min-width:1264px){.has-my-half-desktop{margin-top:50%;margin-bottom:50%}.has-my-full-desktop{margin-top:100%;margin-bottom:100%}}.has-my-full{margin-top:100%;margin-bottom:100%}@media screen and (max-width:640px){.has-my-full-mobile{margin-top:100%;margin-bottom:100%}}@media screen and (min-width:640px){.has-my-full-tablet{margin-top:100%;margin-bottom:100%}}@media screen and (min-width:1504px){.has-my-full-widescreen{margin-top:100%;margin-bottom:100%}.has-my-auto-widescreen{margin-top:auto;margin-bottom:auto}}.has-my-auto{margin-top:auto;margin-bottom:auto}@media screen and (max-width:640px){.has-my-auto-mobile{margin-top:auto;margin-bottom:auto}}@media screen and (min-width:640px){.has-my-auto-tablet{margin-top:auto;margin-bottom:auto}}@media screen and (min-width:1264px){.has-my-auto-desktop{margin-top:auto;margin-bottom:auto}}.has-mt-0{margin-top:0}.has-mt-1{margin-top:.25rem}.has-mt-2{margin-top:.5rem}.has-mt-3{margin-top:.75rem}.has-mt-4{margin-top:1rem}.has-mt-6{margin-top:1.5rem}.has-mt-8{margin-top:2rem}.has-mt-12{margin-top:3rem}.has-mt-16{margin-top:4rem}.has-mt-24{margin-top:6rem}.has-mt-32{margin-top:8rem}.has-mt-40{margin-top:10rem}.has-mt-48{margin-top:12rem}.has-mt-64{margin-top:16rem}.has-mt-80{margin-top:20rem}.has-mt-96{margin-top:24rem}@media screen and (max-width:640px){.has-mt-0-mobile{margin-top:0}.has-mt-1-mobile{margin-top:.25rem}.has-mt-2-mobile{margin-top:.5rem}.has-mt-3-mobile{margin-top:.75rem}.has-mt-4-mobile{margin-top:1rem}.has-mt-6-mobile{margin-top:1.5rem}.has-mt-8-mobile{margin-top:2rem}.has-mt-12-mobile{margin-top:3rem}.has-mt-16-mobile{margin-top:4rem}.has-mt-24-mobile{margin-top:6rem}.has-mt-32-mobile{margin-top:8rem}.has-mt-40-mobile{margin-top:10rem}.has-mt-48-mobile{margin-top:12rem}.has-mt-64-mobile{margin-top:16rem}.has-mt-80-mobile{margin-top:20rem}.has-mt-96-mobile{margin-top:24rem}}@media screen and (min-width:640px){.has-mt-0-tablet{margin-top:0}.has-mt-1-tablet{margin-top:.25rem}.has-mt-2-tablet{margin-top:.5rem}.has-mt-3-tablet{margin-top:.75rem}.has-mt-4-tablet{margin-top:1rem}.has-mt-6-tablet{margin-top:1.5rem}.has-mt-8-tablet{margin-top:2rem}.has-mt-12-tablet{margin-top:3rem}.has-mt-16-tablet{margin-top:4rem}.has-mt-24-tablet{margin-top:6rem}.has-mt-32-tablet{margin-top:8rem}.has-mt-40-tablet{margin-top:10rem}.has-mt-48-tablet{margin-top:12rem}.has-mt-64-tablet{margin-top:16rem}.has-mt-80-tablet{margin-top:20rem}.has-mt-96-tablet{margin-top:24rem}}@media screen and (min-width:1264px){.has-mt-0-desktop{margin-top:0}.has-mt-1-desktop{margin-top:.25rem}.has-mt-2-desktop{margin-top:.5rem}.has-mt-3-desktop{margin-top:.75rem}.has-mt-4-desktop{margin-top:1rem}.has-mt-6-desktop{margin-top:1.5rem}.has-mt-8-desktop{margin-top:2rem}.has-mt-12-desktop{margin-top:3rem}.has-mt-16-desktop{margin-top:4rem}.has-mt-24-desktop{margin-top:6rem}.has-mt-32-desktop{margin-top:8rem}.has-mt-40-desktop{margin-top:10rem}.has-mt-48-desktop{margin-top:12rem}.has-mt-64-desktop{margin-top:16rem}.has-mt-80-desktop{margin-top:20rem}.has-mt-96-desktop{margin-top:24rem}}@media screen and (min-width:1504px){.has-mt-0-widescreen{margin-top:0}.has-mt-1-widescreen{margin-top:.25rem}.has-mt-2-widescreen{margin-top:.5rem}.has-mt-3-widescreen{margin-top:.75rem}.has-mt-4-widescreen{margin-top:1rem}.has-mt-6-widescreen{margin-top:1.5rem}.has-mt-8-widescreen{margin-top:2rem}.has-mt-12-widescreen{margin-top:3rem}.has-mt-16-widescreen{margin-top:4rem}.has-mt-24-widescreen{margin-top:6rem}.has-mt-32-widescreen{margin-top:8rem}.has-mt-40-widescreen{margin-top:10rem}.has-mt-48-widescreen{margin-top:12rem}.has-mt-64-widescreen{margin-top:16rem}.has-mt-80-widescreen{margin-top:20rem}.has-mt-96-widescreen{margin-top:24rem}.has-mt-none-widescreen{margin-top:0}}.has-mt-none{margin-top:0}@media screen and (max-width:640px){.has-mt-none-mobile{margin-top:0}}@media screen and (min-width:640px){.has-mt-none-tablet{margin-top:0}}@media screen and (min-width:1264px){.has-mt-none-desktop{margin-top:0}.has-mt-one-desktop{margin-top:1px}}.has-mt-one{margin-top:1px}@media screen and (max-width:640px){.has-mt-one-mobile{margin-top:1px}}@media screen and (min-width:640px){.has-mt-one-tablet{margin-top:1px}}@media screen and (min-width:1504px){.has-mt-one-widescreen{margin-top:1px}.has-mt-half-widescreen{margin-top:50%}}.has-mt-half{margin-top:50%}@media screen and (max-width:640px){.has-mt-half-mobile{margin-top:50%}}@media screen and (min-width:640px){.has-mt-half-tablet{margin-top:50%}}@media screen and (min-width:1264px){.has-mt-half-desktop{margin-top:50%}.has-mt-full-desktop{margin-top:100%}}.has-mt-full{margin-top:100%}@media screen and (max-width:640px){.has-mt-full-mobile{margin-top:100%}}@media screen and (min-width:640px){.has-mt-full-tablet{margin-top:100%}}@media screen and (min-width:1504px){.has-mt-full-widescreen{margin-top:100%}.has-mt-auto-widescreen{margin-top:auto}}.has-mt-auto{margin-top:auto}.has-mb-0{margin-bottom:0}.has-mb-1{margin-bottom:.25rem}.has-mb-2{margin-bottom:.5rem}.has-mb-3{margin-bottom:.75rem}.has-mb-4{margin-bottom:1rem}.has-mb-6{margin-bottom:1.5rem}.has-mb-8{margin-bottom:2rem}.has-mb-12{margin-bottom:3rem}.has-mb-16{margin-bottom:4rem}.has-mb-24{margin-bottom:6rem}.has-mb-32{margin-bottom:8rem}.has-mb-40{margin-bottom:10rem}.has-mb-48{margin-bottom:12rem}.has-mb-64{margin-bottom:16rem}.has-mb-80{margin-bottom:20rem}.has-mb-96{margin-bottom:24rem}@media screen and (max-width:640px){.has-mt-auto-mobile{margin-top:auto}.has-mb-0-mobile{margin-bottom:0}.has-mb-1-mobile{margin-bottom:.25rem}.has-mb-2-mobile{margin-bottom:.5rem}.has-mb-3-mobile{margin-bottom:.75rem}.has-mb-4-mobile{margin-bottom:1rem}.has-mb-6-mobile{margin-bottom:1.5rem}.has-mb-8-mobile{margin-bottom:2rem}.has-mb-12-mobile{margin-bottom:3rem}.has-mb-16-mobile{margin-bottom:4rem}.has-mb-24-mobile{margin-bottom:6rem}.has-mb-32-mobile{margin-bottom:8rem}.has-mb-40-mobile{margin-bottom:10rem}.has-mb-48-mobile{margin-bottom:12rem}.has-mb-64-mobile{margin-bottom:16rem}.has-mb-80-mobile{margin-bottom:20rem}.has-mb-96-mobile{margin-bottom:24rem}}@media screen and (min-width:640px){.has-mt-auto-tablet{margin-top:auto}.has-mb-0-tablet{margin-bottom:0}.has-mb-1-tablet{margin-bottom:.25rem}.has-mb-2-tablet{margin-bottom:.5rem}.has-mb-3-tablet{margin-bottom:.75rem}.has-mb-4-tablet{margin-bottom:1rem}.has-mb-6-tablet{margin-bottom:1.5rem}.has-mb-8-tablet{margin-bottom:2rem}.has-mb-12-tablet{margin-bottom:3rem}.has-mb-16-tablet{margin-bottom:4rem}.has-mb-24-tablet{margin-bottom:6rem}.has-mb-32-tablet{margin-bottom:8rem}.has-mb-40-tablet{margin-bottom:10rem}.has-mb-48-tablet{margin-bottom:12rem}.has-mb-64-tablet{margin-bottom:16rem}.has-mb-80-tablet{margin-bottom:20rem}.has-mb-96-tablet{margin-bottom:24rem}}@media screen and (min-width:1264px){.has-mt-auto-desktop{margin-top:auto}.has-mb-0-desktop{margin-bottom:0}.has-mb-1-desktop{margin-bottom:.25rem}.has-mb-2-desktop{margin-bottom:.5rem}.has-mb-3-desktop{margin-bottom:.75rem}.has-mb-4-desktop{margin-bottom:1rem}.has-mb-6-desktop{margin-bottom:1.5rem}.has-mb-8-desktop{margin-bottom:2rem}.has-mb-12-desktop{margin-bottom:3rem}.has-mb-16-desktop{margin-bottom:4rem}.has-mb-24-desktop{margin-bottom:6rem}.has-mb-32-desktop{margin-bottom:8rem}.has-mb-40-desktop{margin-bottom:10rem}.has-mb-48-desktop{margin-bottom:12rem}.has-mb-64-desktop{margin-bottom:16rem}.has-mb-80-desktop{margin-bottom:20rem}.has-mb-96-desktop{margin-bottom:24rem}}@media screen and (min-width:1504px){.has-mb-0-widescreen{margin-bottom:0}.has-mb-1-widescreen{margin-bottom:.25rem}.has-mb-2-widescreen{margin-bottom:.5rem}.has-mb-3-widescreen{margin-bottom:.75rem}.has-mb-4-widescreen{margin-bottom:1rem}.has-mb-6-widescreen{margin-bottom:1.5rem}.has-mb-8-widescreen{margin-bottom:2rem}.has-mb-12-widescreen{margin-bottom:3rem}.has-mb-16-widescreen{margin-bottom:4rem}.has-mb-24-widescreen{margin-bottom:6rem}.has-mb-32-widescreen{margin-bottom:8rem}.has-mb-40-widescreen{margin-bottom:10rem}.has-mb-48-widescreen{margin-bottom:12rem}.has-mb-64-widescreen{margin-bottom:16rem}.has-mb-80-widescreen{margin-bottom:20rem}.has-mb-96-widescreen{margin-bottom:24rem}.has-mb-none-widescreen{margin-bottom:0}}.has-mb-none{margin-bottom:0}@media screen and (max-width:640px){.has-mb-none-mobile{margin-bottom:0}}@media screen and (min-width:640px){.has-mb-none-tablet{margin-bottom:0}}@media screen and (min-width:1264px){.has-mb-none-desktop{margin-bottom:0}.has-mb-one-desktop{margin-bottom:1px}}.has-mb-one{margin-bottom:1px}@media screen and (max-width:640px){.has-mb-one-mobile{margin-bottom:1px}}@media screen and (min-width:640px){.has-mb-one-tablet{margin-bottom:1px}}@media screen and (min-width:1504px){.has-mb-one-widescreen{margin-bottom:1px}.has-mb-half-widescreen{margin-bottom:50%}}.has-mb-half{margin-bottom:50%}@media screen and (max-width:640px){.has-mb-half-mobile{margin-bottom:50%}}@media screen and (min-width:640px){.has-mb-half-tablet{margin-bottom:50%}}@media screen and (min-width:1264px){.has-mb-half-desktop{margin-bottom:50%}.has-mb-full-desktop{margin-bottom:100%}}.has-mb-full{margin-bottom:100%}@media screen and (max-width:640px){.has-mb-full-mobile{margin-bottom:100%}}@media screen and (min-width:640px){.has-mb-full-tablet{margin-bottom:100%}}@media screen and (min-width:1504px){.has-mb-full-widescreen{margin-bottom:100%}.has-mb-auto-widescreen{margin-bottom:auto}}.has-mb-auto{margin-bottom:auto}.has-ml-0{margin-left:0}.has-ml-1{margin-left:.25rem}.has-ml-2{margin-left:.5rem}.has-ml-3{margin-left:.75rem}.has-ml-4{margin-left:1rem}.has-ml-6{margin-left:1.5rem}.has-ml-8{margin-left:2rem}.has-ml-12{margin-left:3rem}.has-ml-16{margin-left:4rem}.has-ml-24{margin-left:6rem}.has-ml-32{margin-left:8rem}.has-ml-40{margin-left:10rem}.has-ml-48{margin-left:12rem}.has-ml-64{margin-left:16rem}.has-ml-80{margin-left:20rem}.has-ml-96{margin-left:24rem}@media screen and (max-width:640px){.has-mb-auto-mobile{margin-bottom:auto}.has-ml-0-mobile{margin-left:0}.has-ml-1-mobile{margin-left:.25rem}.has-ml-2-mobile{margin-left:.5rem}.has-ml-3-mobile{margin-left:.75rem}.has-ml-4-mobile{margin-left:1rem}.has-ml-6-mobile{margin-left:1.5rem}.has-ml-8-mobile{margin-left:2rem}.has-ml-12-mobile{margin-left:3rem}.has-ml-16-mobile{margin-left:4rem}.has-ml-24-mobile{margin-left:6rem}.has-ml-32-mobile{margin-left:8rem}.has-ml-40-mobile{margin-left:10rem}.has-ml-48-mobile{margin-left:12rem}.has-ml-64-mobile{margin-left:16rem}.has-ml-80-mobile{margin-left:20rem}.has-ml-96-mobile{margin-left:24rem}}@media screen and (min-width:640px){.has-mb-auto-tablet{margin-bottom:auto}.has-ml-0-tablet{margin-left:0}.has-ml-1-tablet{margin-left:.25rem}.has-ml-2-tablet{margin-left:.5rem}.has-ml-3-tablet{margin-left:.75rem}.has-ml-4-tablet{margin-left:1rem}.has-ml-6-tablet{margin-left:1.5rem}.has-ml-8-tablet{margin-left:2rem}.has-ml-12-tablet{margin-left:3rem}.has-ml-16-tablet{margin-left:4rem}.has-ml-24-tablet{margin-left:6rem}.has-ml-32-tablet{margin-left:8rem}.has-ml-40-tablet{margin-left:10rem}.has-ml-48-tablet{margin-left:12rem}.has-ml-64-tablet{margin-left:16rem}.has-ml-80-tablet{margin-left:20rem}.has-ml-96-tablet{margin-left:24rem}}@media screen and (min-width:1264px){.has-mb-auto-desktop{margin-bottom:auto}.has-ml-0-desktop{margin-left:0}.has-ml-1-desktop{margin-left:.25rem}.has-ml-2-desktop{margin-left:.5rem}.has-ml-3-desktop{margin-left:.75rem}.has-ml-4-desktop{margin-left:1rem}.has-ml-6-desktop{margin-left:1.5rem}.has-ml-8-desktop{margin-left:2rem}.has-ml-12-desktop{margin-left:3rem}.has-ml-16-desktop{margin-left:4rem}.has-ml-24-desktop{margin-left:6rem}.has-ml-32-desktop{margin-left:8rem}.has-ml-40-desktop{margin-left:10rem}.has-ml-48-desktop{margin-left:12rem}.has-ml-64-desktop{margin-left:16rem}.has-ml-80-desktop{margin-left:20rem}.has-ml-96-desktop{margin-left:24rem}}@media screen and (min-width:1504px){.has-ml-0-widescreen{margin-left:0}.has-ml-1-widescreen{margin-left:.25rem}.has-ml-2-widescreen{margin-left:.5rem}.has-ml-3-widescreen{margin-left:.75rem}.has-ml-4-widescreen{margin-left:1rem}.has-ml-6-widescreen{margin-left:1.5rem}.has-ml-8-widescreen{margin-left:2rem}.has-ml-12-widescreen{margin-left:3rem}.has-ml-16-widescreen{margin-left:4rem}.has-ml-24-widescreen{margin-left:6rem}.has-ml-32-widescreen{margin-left:8rem}.has-ml-40-widescreen{margin-left:10rem}.has-ml-48-widescreen{margin-left:12rem}.has-ml-64-widescreen{margin-left:16rem}.has-ml-80-widescreen{margin-left:20rem}.has-ml-96-widescreen{margin-left:24rem}.has-ml-none-widescreen{margin-left:0}}.has-ml-none{margin-left:0}@media screen and (max-width:640px){.has-ml-none-mobile{margin-left:0}}@media screen and (min-width:640px){.has-ml-none-tablet{margin-left:0}}@media screen and (min-width:1264px){.has-ml-none-desktop{margin-left:0}.has-ml-one-desktop{margin-left:1px}}.has-ml-one{margin-left:1px}@media screen and (max-width:640px){.has-ml-one-mobile{margin-left:1px}}@media screen and (min-width:640px){.has-ml-one-tablet{margin-left:1px}}@media screen and (min-width:1504px){.has-ml-one-widescreen{margin-left:1px}.has-ml-half-widescreen{margin-left:50%}}.has-ml-half{margin-left:50%}@media screen and (max-width:640px){.has-ml-half-mobile{margin-left:50%}}@media screen and (min-width:640px){.has-ml-half-tablet{margin-left:50%}}@media screen and (min-width:1264px){.has-ml-half-desktop{margin-left:50%}.has-ml-full-desktop{margin-left:100%}}.has-ml-full{margin-left:100%}@media screen and (max-width:640px){.has-ml-full-mobile{margin-left:100%}}@media screen and (min-width:640px){.has-ml-full-tablet{margin-left:100%}}@media screen and (min-width:1504px){.has-ml-full-widescreen{margin-left:100%}.has-ml-auto-widescreen{margin-left:auto}}.has-ml-auto{margin-left:auto}.has-mr-0{margin-right:0}.has-mr-1{margin-right:.25rem}.has-mr-2{margin-right:.5rem}.has-mr-3{margin-right:.75rem}.has-mr-4{margin-right:1rem}.has-mr-6{margin-right:1.5rem}.has-mr-8{margin-right:2rem}.has-mr-12{margin-right:3rem}.has-mr-16{margin-right:4rem}.has-mr-24{margin-right:6rem}.has-mr-32{margin-right:8rem}.has-mr-40{margin-right:10rem}.has-mr-48{margin-right:12rem}.has-mr-64{margin-right:16rem}.has-mr-80{margin-right:20rem}.has-mr-96{margin-right:24rem}@media screen and (max-width:640px){.has-ml-auto-mobile{margin-left:auto}.has-mr-0-mobile{margin-right:0}.has-mr-1-mobile{margin-right:.25rem}.has-mr-2-mobile{margin-right:.5rem}.has-mr-3-mobile{margin-right:.75rem}.has-mr-4-mobile{margin-right:1rem}.has-mr-6-mobile{margin-right:1.5rem}.has-mr-8-mobile{margin-right:2rem}.has-mr-12-mobile{margin-right:3rem}.has-mr-16-mobile{margin-right:4rem}.has-mr-24-mobile{margin-right:6rem}.has-mr-32-mobile{margin-right:8rem}.has-mr-40-mobile{margin-right:10rem}.has-mr-48-mobile{margin-right:12rem}.has-mr-64-mobile{margin-right:16rem}.has-mr-80-mobile{margin-right:20rem}.has-mr-96-mobile{margin-right:24rem}}@media screen and (min-width:640px){.has-ml-auto-tablet{margin-left:auto}.has-mr-0-tablet{margin-right:0}.has-mr-1-tablet{margin-right:.25rem}.has-mr-2-tablet{margin-right:.5rem}.has-mr-3-tablet{margin-right:.75rem}.has-mr-4-tablet{margin-right:1rem}.has-mr-6-tablet{margin-right:1.5rem}.has-mr-8-tablet{margin-right:2rem}.has-mr-12-tablet{margin-right:3rem}.has-mr-16-tablet{margin-right:4rem}.has-mr-24-tablet{margin-right:6rem}.has-mr-32-tablet{margin-right:8rem}.has-mr-40-tablet{margin-right:10rem}.has-mr-48-tablet{margin-right:12rem}.has-mr-64-tablet{margin-right:16rem}.has-mr-80-tablet{margin-right:20rem}.has-mr-96-tablet{margin-right:24rem}}@media screen and (min-width:1264px){.has-ml-auto-desktop{margin-left:auto}.has-mr-0-desktop{margin-right:0}.has-mr-1-desktop{margin-right:.25rem}.has-mr-2-desktop{margin-right:.5rem}.has-mr-3-desktop{margin-right:.75rem}.has-mr-4-desktop{margin-right:1rem}.has-mr-6-desktop{margin-right:1.5rem}.has-mr-8-desktop{margin-right:2rem}.has-mr-12-desktop{margin-right:3rem}.has-mr-16-desktop{margin-right:4rem}.has-mr-24-desktop{margin-right:6rem}.has-mr-32-desktop{margin-right:8rem}.has-mr-40-desktop{margin-right:10rem}.has-mr-48-desktop{margin-right:12rem}.has-mr-64-desktop{margin-right:16rem}.has-mr-80-desktop{margin-right:20rem}.has-mr-96-desktop{margin-right:24rem}}@media screen and (min-width:1504px){.has-mr-0-widescreen{margin-right:0}.has-mr-1-widescreen{margin-right:.25rem}.has-mr-2-widescreen{margin-right:.5rem}.has-mr-3-widescreen{margin-right:.75rem}.has-mr-4-widescreen{margin-right:1rem}.has-mr-6-widescreen{margin-right:1.5rem}.has-mr-8-widescreen{margin-right:2rem}.has-mr-12-widescreen{margin-right:3rem}.has-mr-16-widescreen{margin-right:4rem}.has-mr-24-widescreen{margin-right:6rem}.has-mr-32-widescreen{margin-right:8rem}.has-mr-40-widescreen{margin-right:10rem}.has-mr-48-widescreen{margin-right:12rem}.has-mr-64-widescreen{margin-right:16rem}.has-mr-80-widescreen{margin-right:20rem}.has-mr-96-widescreen{margin-right:24rem}.has-mr-none-widescreen{margin-right:0}}.has-mr-none{margin-right:0}@media screen and (max-width:640px){.has-mr-none-mobile{margin-right:0}}@media screen and (min-width:640px){.has-mr-none-tablet{margin-right:0}}@media screen and (min-width:1264px){.has-mr-none-desktop{margin-right:0}.has-mr-one-desktop{margin-right:1px}}.has-mr-one{margin-right:1px}@media screen and (max-width:640px){.has-mr-one-mobile{margin-right:1px}}@media screen and (min-width:640px){.has-mr-one-tablet{margin-right:1px}}@media screen and (min-width:1504px){.has-mr-one-widescreen{margin-right:1px}.has-mr-half-widescreen{margin-right:50%}}.has-mr-half{margin-right:50%}@media screen and (max-width:640px){.has-mr-half-mobile{margin-right:50%}}@media screen and (min-width:640px){.has-mr-half-tablet{margin-right:50%}}@media screen and (min-width:1264px){.has-mr-half-desktop{margin-right:50%}.has-mr-full-desktop{margin-right:100%}}.has-mr-full{margin-right:100%}@media screen and (max-width:640px){.has-mr-full-mobile{margin-right:100%}}@media screen and (min-width:640px){.has-mr-full-tablet{margin-right:100%}}@media screen and (min-width:1504px){.has-mr-full-widescreen{margin-right:100%}.has-mr-auto-widescreen{margin-right:auto}}.has-mr-auto{margin-right:auto}.has-flex-none{flex:none}@media screen and (max-width:640px){.has-mr-auto-mobile{margin-right:auto}.has-flex-none-mobile{flex:none}}@media screen and (min-width:640px){.has-mr-auto-tablet{margin-right:auto}.has-flex-none-tablet{flex:none}}@media screen and (min-width:1264px){.has-mr-auto-desktop{margin-right:auto}.has-flex-none-desktop{flex:none}}@media screen and (min-width:1504px){.has-flex-none-widescreen{flex:none}}.has-flex-initial{flex:initial}@media screen and (max-width:640px){.has-flex-initial-mobile{flex:initial}}@media screen and (min-width:640px){.has-flex-initial-tablet{flex:initial}}@media screen and (min-width:1264px){.has-flex-initial-desktop{flex:initial}}@media screen and (min-width:1504px){.has-flex-initial-widescreen{flex:initial}}.has-flex-auto{flex:auto}@media screen and (max-width:640px){.has-flex-auto-mobile{flex:auto}}@media screen and (min-width:640px){.has-flex-auto-tablet{flex:auto}}@media screen and (min-width:1264px){.has-flex-auto-desktop{flex:auto}}@media screen and (min-width:1504px){.has-flex-auto-widescreen{flex:auto}}.has-direction-row{flex-direction:row}@media screen and (max-width:640px){.has-direction-row-mobile{flex-direction:row}}@media screen and (min-width:640px){.has-direction-row-tablet{flex-direction:row}}@media screen and (min-width:1264px){.has-direction-row-desktop{flex-direction:row}}@media screen and (min-width:1504px){.has-direction-row-widescreen{flex-direction:row}}.has-direction-column{flex-direction:column}@media screen and (max-width:640px){.has-direction-column-mobile{flex-direction:column}}@media screen and (min-width:640px){.has-direction-column-tablet{flex-direction:column}}@media screen and (min-width:1264px){.has-direction-column-desktop{flex-direction:column}}@media screen and (min-width:1504px){.has-direction-column-widescreen{flex-direction:column}}.has-direction-row-rev{flex-direction:row-reverse}@media screen and (max-width:640px){.has-direction-row-rev-mobile{flex-direction:row-reverse}}@media screen and (min-width:640px){.has-direction-row-rev-tablet{flex-direction:row-reverse}}@media screen and (min-width:1264px){.has-direction-row-rev-desktop{flex-direction:row-reverse}}@media screen and (min-width:1504px){.has-direction-row-rev-widescreen{flex-direction:row-reverse}}.has-direction-column-rev{flex-direction:column-reverse}@media screen and (max-width:640px){.has-direction-column-rev-mobile{flex-direction:column-reverse}}@media screen and (min-width:640px){.has-direction-column-rev-tablet{flex-direction:column-reverse}}@media screen and (min-width:1264px){.has-direction-column-rev-desktop{flex-direction:column-reverse}}@media screen and (min-width:1504px){.has-direction-column-rev-widescreen{flex-direction:column-reverse}}.has-flex-grow{flex-grow:1}@media screen and (max-width:640px){.has-flex-grow-mobile{flex-grow:1}}@media screen and (min-width:640px){.has-flex-grow-tablet{flex-grow:1}}@media screen and (min-width:1264px){.has-flex-grow-desktop{flex-grow:1}}@media screen and (min-width:1504px){.has-flex-grow-widescreen{flex-grow:1}}.has-flex-no-grow{flex-grow:0}@media screen and (max-width:640px){.has-flex-no-grow-mobile{flex-grow:0}}@media screen and (min-width:640px){.has-flex-no-grow-tablet{flex-grow:0}}@media screen and (min-width:1264px){.has-flex-no-grow-desktop{flex-grow:0}}@media screen and (min-width:1504px){.has-flex-no-grow-widescreen{flex-grow:0}}.has-flex-shrink{flex-shrink:1}@media screen and (max-width:640px){.has-flex-shrink-mobile{flex-shrink:1}}@media screen and (min-width:640px){.has-flex-shrink-tablet{flex-shrink:1}}@media screen and (min-width:1264px){.has-flex-shrink-desktop{flex-shrink:1}}@media screen and (min-width:1504px){.has-flex-shrink-widescreen{flex-shrink:1}}.has-flex-no-shrink{flex-shrink:0}@media screen and (max-width:640px){.has-flex-no-shrink-mobile{flex-shrink:0}}@media screen and (min-width:640px){.has-flex-no-shrink-tablet{flex-shrink:0}}@media screen and (min-width:1264px){.has-flex-no-shrink-desktop{flex-shrink:0}}@media screen and (min-width:1504px){.has-flex-no-shrink-widescreen{flex-shrink:0}}.has-flex-wrap{flex-wrap:wrap}@media screen and (max-width:640px){.has-flex-wrap-mobile{flex-wrap:wrap}}@media screen and (min-width:640px){.has-flex-wrap-tablet{flex-wrap:wrap}}@media screen and (min-width:1264px){.has-flex-wrap-desktop{flex-wrap:wrap}}@media screen and (min-width:1504px){.has-flex-wrap-widescreen{flex-wrap:wrap}}.has-flex-wrap-rev{flex-wrap:wrap-reverse}@media screen and (max-width:640px){.has-flex-wrap-rev-mobile{flex-wrap:wrap-reverse}}@media screen and (min-width:640px){.has-flex-wrap-rev-tablet{flex-wrap:wrap-reverse}}@media screen and (min-width:1264px){.has-flex-wrap-rev-desktop{flex-wrap:wrap-reverse}}@media screen and (min-width:1504px){.has-flex-wrap-rev-widescreen{flex-wrap:wrap-reverse}}.has-flex-no-wrap{flex-wrap:nowrap}.has-content-start{align-content:flex-start}@media screen and (max-width:640px){.has-flex-no-wrap-mobile{flex-wrap:nowrap}.has-content-start-mobile{align-content:flex-start}}@media screen and (min-width:640px){.has-flex-no-wrap-tablet{flex-wrap:nowrap}.has-content-start-tablet{align-content:flex-start}}@media screen and (min-width:1264px){.has-flex-no-wrap-desktop{flex-wrap:nowrap}.has-content-start-desktop{align-content:flex-start}}@media screen and (min-width:1504px){.has-flex-no-wrap-widescreen{flex-wrap:nowrap}.has-content-start-widescreen{align-content:flex-start}.has-content-end-widescreen{align-content:flex-end}}.has-content-end{align-content:flex-end}@media screen and (max-width:640px){.has-content-end-mobile{align-content:flex-end}}@media screen and (min-width:640px){.has-content-end-tablet{align-content:flex-end}}@media screen and (min-width:1264px){.has-content-end-desktop{align-content:flex-end}.has-content-center-desktop{align-content:center}}.has-content-center{align-content:center}@media screen and (max-width:640px){.has-content-center-mobile{align-content:center}}@media screen and (min-width:640px){.has-content-center-tablet{align-content:center}}@media screen and (min-width:1504px){.has-content-center-widescreen{align-content:center}.has-content-between-widescreen{align-content:space-between}}.has-content-between{align-content:space-between}@media screen and (max-width:640px){.has-content-between-mobile{align-content:space-between}}@media screen and (min-width:640px){.has-content-between-tablet{align-content:space-between}}@media screen and (min-width:1264px){.has-content-between-desktop{align-content:space-between}.has-content-around-desktop{align-content:space-around}}.has-content-around{align-content:space-around}@media screen and (max-width:640px){.has-content-around-mobile{align-content:space-around}}@media screen and (min-width:640px){.has-content-around-tablet{align-content:space-around}}@media screen and (min-width:1504px){.has-content-around-widescreen{align-content:space-around}.has-content-evenly-widescreen{align-content:space-evenly}}.has-content-evenly{align-content:space-evenly}.has-items-start{align-items:flex-start}@media screen and (max-width:640px){.has-content-evenly-mobile{align-content:space-evenly}.has-items-start-mobile{align-items:flex-start}}@media screen and (min-width:640px){.has-content-evenly-tablet{align-content:space-evenly}.has-items-start-tablet{align-items:flex-start}}@media screen and (min-width:1264px){.has-content-evenly-desktop{align-content:space-evenly}.has-items-start-desktop{align-items:flex-start}}@media screen and (min-width:1504px){.has-items-start-widescreen{align-items:flex-start}}.has-items-end{align-items:flex-end}@media screen and (max-width:640px){.has-items-end-mobile{align-items:flex-end}}@media screen and (min-width:640px){.has-items-end-tablet{align-items:flex-end}}@media screen and (min-width:1264px){.has-items-end-desktop{align-items:flex-end}}@media screen and (min-width:1504px){.has-items-end-widescreen{align-items:flex-end}}.has-items-center{align-items:center}@media screen and (max-width:640px){.has-items-center-mobile{align-items:center}}@media screen and (min-width:640px){.has-items-center-tablet{align-items:center}}@media screen and (min-width:1264px){.has-items-center-desktop{align-items:center}}@media screen and (min-width:1504px){.has-items-center-widescreen{align-items:center}}.has-items-stretch{align-items:stretch}@media screen and (max-width:640px){.has-items-stretch-mobile{align-items:stretch}}@media screen and (min-width:640px){.has-items-stretch-tablet{align-items:stretch}}@media screen and (min-width:1264px){.has-items-stretch-desktop{align-items:stretch}}@media screen and (min-width:1504px){.has-items-stretch-widescreen{align-items:stretch}}.has-items-baseline{align-items:baseline}.has-self-auto{align-self:auto}@media screen and (max-width:640px){.has-items-baseline-mobile{align-items:baseline}.has-self-auto-mobile{align-self:auto}}@media screen and (min-width:640px){.has-items-baseline-tablet{align-items:baseline}.has-self-auto-tablet{align-self:auto}}@media screen and (min-width:1264px){.has-items-baseline-desktop{align-items:baseline}.has-self-auto-desktop{align-self:auto}}@media screen and (min-width:1504px){.has-items-baseline-widescreen{align-items:baseline}.has-self-auto-widescreen{align-self:auto}.has-self-start-widescreen{align-self:flex-start}}.has-self-start{align-self:flex-start}@media screen and (max-width:640px){.has-self-start-mobile{align-self:flex-start}}@media screen and (min-width:640px){.has-self-start-tablet{align-self:flex-start}}@media screen and (min-width:1264px){.has-self-start-desktop{align-self:flex-start}.has-self-end-desktop{align-self:flex-end}}.has-self-end{align-self:flex-end}@media screen and (max-width:640px){.has-self-end-mobile{align-self:flex-end}}@media screen and (min-width:640px){.has-self-end-tablet{align-self:flex-end}}@media screen and (min-width:1504px){.has-self-end-widescreen{align-self:flex-end}.has-self-center-widescreen{align-self:center}}.has-self-center{align-self:center}@media screen and (max-width:640px){.has-self-center-mobile{align-self:center}}@media screen and (min-width:640px){.has-self-center-tablet{align-self:center}}@media screen and (min-width:1264px){.has-self-center-desktop{align-self:center}.has-self-stretch-desktop{align-self:stretch}}.has-self-stretch{align-self:stretch}@media screen and (max-width:640px){.has-self-stretch-mobile{align-self:stretch}}@media screen and (min-width:640px){.has-self-stretch-tablet{align-self:stretch}}@media screen and (min-width:1504px){.has-self-stretch-widescreen{align-self:stretch}.has-self-baseline-widescreen{align-self:baseline}}.has-self-baseline{align-self:baseline}.has-justify-start{justify-content:flex-start}@media screen and (max-width:640px){.has-self-baseline-mobile{align-self:baseline}.has-justify-start-mobile{justify-content:flex-start}}@media screen and (min-width:640px){.has-self-baseline-tablet{align-self:baseline}.has-justify-start-tablet{justify-content:flex-start}}@media screen and (min-width:1264px){.has-self-baseline-desktop{align-self:baseline}.has-justify-start-desktop{justify-content:flex-start}}@media screen and (min-width:1504px){.has-justify-start-widescreen{justify-content:flex-start}}.has-justify-end{justify-content:flex-end}@media screen and (max-width:640px){.has-justify-end-mobile{justify-content:flex-end}}@media screen and (min-width:640px){.has-justify-end-tablet{justify-content:flex-end}}@media screen and (min-width:1264px){.has-justify-end-desktop{justify-content:flex-end}}@media screen and (min-width:1504px){.has-justify-end-widescreen{justify-content:flex-end}}.has-justify-center{justify-content:center}@media screen and (max-width:640px){.has-justify-center-mobile{justify-content:center}}@media screen and (min-width:640px){.has-justify-center-tablet{justify-content:center}}@media screen and (min-width:1264px){.has-justify-center-desktop{justify-content:center}}@media screen and (min-width:1504px){.has-justify-center-widescreen{justify-content:center}}.has-justify-between{justify-content:space-between}@media screen and (max-width:640px){.has-justify-between-mobile{justify-content:space-between}}@media screen and (min-width:640px){.has-justify-between-tablet{justify-content:space-between}}@media screen and (min-width:1264px){.has-justify-between-desktop{justify-content:space-between}}@media screen and (min-width:1504px){.has-justify-between-widescreen{justify-content:space-between}}.has-justify-around{justify-content:space-around}@media screen and (max-width:640px){.has-justify-around-mobile{justify-content:space-around}}@media screen and (min-width:640px){.has-justify-around-tablet{justify-content:space-around}}@media screen and (min-width:1264px){.has-justify-around-desktop{justify-content:space-around}}@media screen and (min-width:1504px){.has-justify-around-widescreen{justify-content:space-around}}.has-justify-evenly{justify-content:space-evenly}@media screen and (max-width:640px){.has-justify-evenly-mobile{justify-content:space-evenly}}@media screen and (min-width:640px){.has-justify-evenly-tablet{justify-content:space-evenly}}@media screen and (min-width:1264px){.has-justify-evenly-desktop{justify-content:space-evenly}}@media screen and (min-width:1504px){.has-justify-evenly-widescreen{justify-content:space-evenly}}.has-justify-items-start{justify-items:start}@media screen and (max-width:640px){.has-justify-items-start-mobile{justify-items:start}}@media screen and (min-width:640px){.has-justify-items-start-tablet{justify-items:start}}@media screen and (min-width:1264px){.has-justify-items-start-desktop{justify-items:start}}@media screen and (min-width:1504px){.has-justify-items-start-widescreen{justify-items:start}}.has-justify-items-end{justify-items:end}@media screen and (max-width:640px){.has-justify-items-end-mobile{justify-items:end}}@media screen and (min-width:640px){.has-justify-items-end-tablet{justify-items:end}}@media screen and (min-width:1264px){.has-justify-items-end-desktop{justify-items:end}}@media screen and (min-width:1504px){.has-justify-items-end-widescreen{justify-items:end}}.has-justify-items-center{justify-items:center}@media screen and (max-width:640px){.has-justify-items-center-mobile{justify-items:center}}@media screen and (min-width:640px){.has-justify-items-center-tablet{justify-items:center}}@media screen and (min-width:1264px){.has-justify-items-center-desktop{justify-items:center}}@media screen and (min-width:1504px){.has-justify-items-center-widescreen{justify-items:center}}.has-justify-items-stretch{justify-items:stretch}@media screen and (max-width:640px){.has-justify-items-stretch-mobile{justify-items:stretch}}@media screen and (min-width:640px){.has-justify-items-stretch-tablet{justify-items:stretch}}@media screen and (min-width:1264px){.has-justify-items-stretch-desktop{justify-items:stretch}}@media screen and (min-width:1504px){.has-justify-items-stretch-widescreen{justify-items:stretch}}.has-justify-self-auto{justify-self:auto}@media screen and (max-width:640px){.has-justify-self-auto-mobile{justify-self:auto}}@media screen and (min-width:640px){.has-justify-self-auto-tablet{justify-self:auto}}@media screen and (min-width:1264px){.has-justify-self-auto-desktop{justify-self:auto}}@media screen and (min-width:1504px){.has-justify-self-auto-widescreen{justify-self:auto}}.has-justify-self-start{justify-self:start}@media screen and (max-width:640px){.has-justify-self-start-mobile{justify-self:start}}@media screen and (min-width:640px){.has-justify-self-start-tablet{justify-self:start}}@media screen and (min-width:1264px){.has-justify-self-start-desktop{justify-self:start}}@media screen and (min-width:1504px){.has-justify-self-start-widescreen{justify-self:start}}.has-justify-self-end{justify-self:end}@media screen and (max-width:640px){.has-justify-self-end-mobile{justify-self:end}}@media screen and (min-width:640px){.has-justify-self-end-tablet{justify-self:end}}@media screen and (min-width:1264px){.has-justify-self-end-desktop{justify-self:end}}@media screen and (min-width:1504px){.has-justify-self-end-widescreen{justify-self:end}}.has-justify-self-center{justify-self:center}@media screen and (max-width:640px){.has-justify-self-center-mobile{justify-self:center}}@media screen and (min-width:640px){.has-justify-self-center-tablet{justify-self:center}}@media screen and (min-width:1264px){.has-justify-self-center-desktop{justify-self:center}}@media screen and (min-width:1504px){.has-justify-self-center-widescreen{justify-self:center}}.has-justify-self-stretch{justify-self:stretch}.has-order-none{order:0}@media screen and (max-width:640px){.has-justify-self-stretch-mobile{justify-self:stretch}.has-order-none-mobile{order:0}}@media screen and (min-width:640px){.has-justify-self-stretch-tablet{justify-self:stretch}.has-order-none-tablet{order:0}}@media screen and (min-width:1264px){.has-justify-self-stretch-desktop{justify-self:stretch}.has-order-none-desktop{order:0}}@media screen and (min-width:1504px){.has-justify-self-stretch-widescreen{justify-self:stretch}.has-order-none-widescreen{order:0}.has-order-first-widescreen{order:-999}}.has-order-first{order:-999}@media screen and (max-width:640px){.has-order-first-mobile{order:-999}}@media screen and (min-width:640px){.has-order-first-tablet{order:-999}}@media screen and (min-width:1264px){.has-order-first-desktop{order:-999}.has-order-last-desktop{order:999}}.has-order-last{order:999}.has-text-justified{text-align:justify}.has-text-left{text-align:left}.has-text-center{text-align:center}.has-text-right{text-align:right}.has-align-baseline{vertical-align:baseline}.has-align-top{vertical-align:top}.has-align-middle{vertical-align:middle}.has-align-bottom{vertical-align:bottom}.has-align-text-top{vertical-align:text-top}.has-align-text-bottom{vertical-align:text-bottom}.is-clickable{cursor:pointer!important}.is-not-allowed{cursor:not-allowed!important}.is-block{display:block}@media screen and (max-width:640px){.has-order-last-mobile{order:999}.is-block-mobile{display:block}}@media screen and (min-width:640px){.has-order-last-tablet{order:999}.is-block-tablet{display:block}}@media screen and (min-width:1264px){.is-block-desktop{display:block}}@media screen and (min-width:1504px){.has-order-last-widescreen{order:999}.is-block-widescreen{display:block}.is-flex-widescreen{display:flex}}.is-flex{display:flex}@media screen and (max-width:640px){.is-flex-mobile{display:flex}}@media screen and (min-width:640px){.is-flex-tablet{display:flex}}@media screen and (min-width:1264px){.is-flex-desktop{display:flex}.is-inline-desktop{display:inline}}.is-inline{display:inline}@media screen and (max-width:640px){.is-inline-mobile{display:inline}}@media screen and (min-width:640px){.is-inline-tablet{display:inline}}@media screen and (min-width:1504px){.is-inline-widescreen{display:inline}.is-inline-block-widescreen{display:inline-block}}.is-inline-block{display:inline-block}@media screen and (max-width:640px){.is-inline-block-mobile{display:inline-block}}@media screen and (min-width:640px){.is-inline-block-tablet{display:inline-block}}@media screen and (min-width:1264px){.is-inline-block-desktop{display:inline-block}.is-inline-flex-desktop{display:inline-flex}}.is-inline-flex{display:inline-flex}@media screen and (max-width:640px){.is-inline-flex-mobile{display:inline-flex}}@media screen and (min-width:640px){.is-inline-flex-tablet{display:inline-flex}}@media screen and (min-width:1504px){.is-inline-flex-widescreen{display:inline-flex}.is-hidden-widescreen{display:none}}.is-hidden{display:none}.is-aligned-left{float:left}@media screen and (max-width:640px){.is-hidden-mobile{display:none}.is-aligned-left-mobile{float:left}}@media screen and (min-width:640px){.is-hidden-tablet{display:none}.is-aligned-left-tablet{float:left}}@media screen and (min-width:1264px){.is-hidden-desktop{display:none}.is-aligned-left-desktop{float:left}}@media screen and (min-width:1504px){.is-aligned-left-widescreen{float:left}.is-aligned-right-widescreen{float:right}}.is-aligned-right{float:right}.is-clipped{overflow:hidden!important}@media screen and (max-width:640px){.is-aligned-right-mobile{float:right}.is-clipped-mobile{overflow:hidden!important}}@media screen and (min-width:640px){.is-aligned-right-tablet{float:right}.is-clipped-tablet{overflow:hidden!important}}@media screen and (min-width:1264px){.is-aligned-right-desktop{float:right}.is-clipped-desktop{overflow:hidden!important}}@media screen and (min-width:1504px){.is-clipped-widescreen{overflow:hidden!important}.is-scrollable-widescreen{overflow:auto!important}}.is-scrollable{overflow:auto!important}.is-relative{position:relative}@media screen and (max-width:640px){.is-scrollable-mobile{overflow:auto!important}.is-relative-mobile{position:relative}}@media screen and (min-width:640px){.is-scrollable-tablet{overflow:auto!important}.is-relative-tablet{position:relative}}@media screen and (min-width:1264px){.is-scrollable-desktop{overflow:auto!important}.is-relative-desktop{position:relative}}@media screen and (min-width:1504px){.is-relative-widescreen{position:relative}.is-absolute-widescreen{position:absolute}}.is-absolute{position:absolute}@media screen and (max-width:640px){.is-absolute-mobile{position:absolute}}@media screen and (min-width:640px){.is-absolute-tablet{position:absolute}}@media screen and (min-width:1264px){.is-absolute-desktop{position:absolute}}.is-sticky{position:-webkit-sticky;position:sticky}@media screen and (max-width:640px){.is-sticky-mobile{position:-webkit-sticky;position:sticky}}@media screen and (min-width:640px){.is-sticky-tablet{position:-webkit-sticky;position:sticky}}@media screen and (min-width:1264px){.is-sticky-desktop{position:-webkit-sticky;position:sticky}}@media screen and (min-width:1504px){.is-sticky-widescreen{position:-webkit-sticky;position:sticky}.is-fixed-widescreen{position:fixed}}.is-fixed{position:fixed}@media screen and (max-width:640px){.is-fixed-mobile{position:fixed}}@media screen and (min-width:640px){.is-fixed-tablet{position:fixed}}@media screen and (min-width:1264px){.is-fixed-desktop{position:fixed}}.is-italic{font-style:italic}.is-underlined{text-decoration:underline}.is-not-underlined{text-decoration:none!important}.is-capitalized{text-transform:capitalize}.is-lowercase{text-transform:lowercase}.is-uppercase{text-transform:uppercase}.is-radiusless{border-radius:0!important}.is-shadowless{box-shadow:none!important}.is-unselectable{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}[class*=" icon-"],[class^=icon-]{align-self:center;display:inline-flex;line-height:1;text-rendering:auto;vertical-align:-.125em}[class*=" icon-"]:before,[class^=icon-]:before{content:'';display:inline-block;width:1em;height:1em;background-color:currentColor}.icon-align-center:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m33.75 7.5c1.25 0 1.25 1.25 1.25 1.25v2.5c0 1.25-1.25 1.25-1.25 1.25h-17.5c-1.25 0-1.25-1.25-1.25-1.25v-2.5c0-1.25 1.25-1.25 1.25-1.25zm7.5 10c1.25 0 1.25 1.25 1.25 1.25v2.5c0 1.25-1.25 1.25-1.25 1.25h-32.5c-1.25 0-1.25-1.25-1.25-1.25v-2.5c0-1.25 1.25-1.25 1.25-1.25zm-7.5 10c1.25 0 1.25 1.25 1.25 1.25v2.5c0 1.25-1.25 1.25-1.25 1.25h-17.5c-1.25 0-1.25-1.25-1.25-1.25v-2.5c0-1.25 1.25-1.25 1.25-1.25zm7.5 10c1.25 0 1.25 1.25 1.25 1.25v2.5c0 1.25-1.25 1.25-1.25 1.25h-32.5c-1.25 0-1.25-1.25-1.25-1.25v-2.5c0-1.25 1.25-1.25 1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-align-justify:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m41.25 7.5c1.25 0 1.25 1.25 1.25 1.25v2.5c0 1.25-1.25 1.25-1.25 1.25h-32.5c-1.25 0-1.25-1.25-1.25-1.25v-2.5c0-1.25 1.25-1.25 1.25-1.25zm0 10c1.25 0 1.25 1.25 1.25 1.25v2.5c0 1.25-1.25 1.25-1.25 1.25h-32.5c-1.25 0-1.25-1.25-1.25-1.25v-2.5c0-1.25 1.25-1.25 1.25-1.25zm0 10c1.25 0 1.25 1.25 1.25 1.25v2.5c0 1.25-1.25 1.25-1.25 1.25h-32.5c-1.25 0-1.25-1.25-1.25-1.25v-2.5c0-1.25 1.25-1.25 1.25-1.25zm0 10c1.25 0 1.25 1.25 1.25 1.25v2.5c0 1.25-1.25 1.25-1.25 1.25h-32.5c-1.25 0-1.25-1.25-1.25-1.25v-2.5c0-1.25 1.25-1.25 1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-align-left:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m26.25 7.5c1.25 0 1.25 1.25 1.25 1.25v2.5c0 1.25-1.25 1.25-1.25 1.25h-17.5c-1.25 0-1.25-1.25-1.25-1.25v-2.5c0-1.25 1.25-1.25 1.25-1.25zm15 10c1.25 0 1.25 1.25 1.25 1.25v2.5c0 1.25-1.25 1.25-1.25 1.25h-32.5c-1.25 0-1.25-1.25-1.25-1.25v-2.5c0-1.25 1.25-1.25 1.25-1.25zm-15 10c1.25 0 1.25 1.25 1.25 1.25v2.5c0 1.25-1.25 1.25-1.25 1.25h-17.5c-1.25 0-1.25-1.25-1.25-1.25v-2.5c0-1.25 1.25-1.25 1.25-1.25zm15 10c1.25 0 1.25 1.25 1.25 1.25v2.5c0 1.25-1.25 1.25-1.25 1.25h-32.5c-1.25 0-1.25-1.25-1.25-1.25v-2.5c0-1.25 1.25-1.25 1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-align-right:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m23.75 7.5c-1.25 0-1.25 1.25-1.25 1.25v2.5c0 1.25 1.25 1.25 1.25 1.25h17.5c1.25 0 1.25-1.25 1.25-1.25v-2.5c0-1.25-1.25-1.25-1.25-1.25h-17.5zm-15 10c-1.25 0-1.25 1.25-1.25 1.25v2.5c0 1.25 1.25 1.25 1.25 1.25h32.5c1.25 0 1.25-1.25 1.25-1.25v-2.5c0-1.25-1.25-1.25-1.25-1.25h-32.5zm15 10c-1.25 0-1.25 1.25-1.25 1.25v2.5c0 1.25 1.25 1.25 1.25 1.25h17.5c1.25 0 1.25-1.25 1.25-1.25v-2.5c0-1.25-1.25-1.25-1.25-1.25h-17.5zm-15 10c-1.25 0-1.25 1.25-1.25 1.25v2.5c0 1.25 1.25 1.25 1.25 1.25h32.5c1.25 0 1.25-1.25 1.25-1.25v-2.5c0-1.25-1.25-1.25-1.25-1.25h-32.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-announcement:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m43.75 7.5c-1.25 0-1.25 1.25-1.25 1.25v1.25l-35 10s0-2.5-2.5-2.5-2.5 2.5-2.5 2.5v10s0 2.5 2.5 2.5 2.5-2.5 2.5-2.5l5.0664 1.4473c-0.035392 0.33742-0.066406 0.679-0.066406 1.0527 0 0 0 7.5 7.5 7.5 4.2297 0 6.0727-2.3846 6.877-4.4648l15.623 4.4648v1.25c0 1.25 1.25 1.25 1.25 1.25h2.5c1.25 0 1.25-1.25 1.25-1.25v-32.5c0-1.25-1.25-1.25-1.25-1.25zm-28.473 24.723 9.1602 2.6172c-0.59664 1.302-1.8286 2.6602-4.4375 2.6602-5 0-5-5-5-5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-archive:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m7.5 7.5s-2.5 0-2.5 2.5v5h40v-5s0-2.5-2.5-2.5h-35zm0 10v22.5s0 2.5 2.5 2.5h30s2.5 0 2.5-2.5v-22.5h-35zm12.5 2.5h5 5s1.25 0 1.25 1.25-1.25 1.25-1.25 1.25h-5-5s-1.25 0-1.25-1.25 1.25-1.25 1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-arrow-down:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m28.75 7.5s3.75 0 3.75 3.75v13.75h6.25c3.75 0 3.75 2.5 3.75 3.75s-1.25 2.5-1.25 2.5l-12.5 12.5s-3.75 3.75-7.5 0l-12.5-12.5s-1.25-1.25-1.25-2.5 0-3.75 3.75-3.75h6.25v-13.75s0-3.75 3.75-3.75z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-arrow-left:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m42.5 28.75s0 3.75-3.75 3.75h-13.75v6.25c0 3.75-2.5 3.75-3.75 3.75s-2.5-1.25-2.5-1.25l-12.5-12.5s-3.75-3.75 0-7.5l12.5-12.5s1.25-1.25 2.5-1.25c0 0 3.75 0 3.75 3.75v6.25h13.75s3.75 0 3.75 3.75z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-arrow-right:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m7.5 28.75s0 3.75 3.75 3.75h13.75v6.25c0 3.75 2.5 3.75 3.75 3.75s2.5-1.25 2.5-1.25l12.5-12.5s3.75-3.75 0-7.5l-12.5-12.5s-1.25-1.25-2.5-1.25c0 0-3.75 0-3.75 3.75v6.25h-13.75s-3.75 0-3.75 3.75z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-arrow-up:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m28.75 42.5s3.75 0 3.75-3.75v-13.75h6.25c3.75 0 3.75-2.5 3.75-3.75s-1.25-2.5-1.25-2.5l-12.5-12.5s-3.75-3.75-7.5 0l-12.5 12.5s-1.25 1.25-1.25 2.5c0 0 0 3.75 3.75 3.75h6.25v13.75s0 3.75 3.75 3.75z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-arrows:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m22.5 22.5h-7.5v-3.75s0-2.5-2.5-2.5c-1.25 0-2.5 1.25-2.5 1.25l-5 5s-2.5 2.5 0 5l5 5s1.25 1.25 2.5 1.25c2.5 0 2.5-2.5 2.5-2.5v-3.75h7.5v7.5h-3.75s-2.5 0-2.5 2.5c0 1.25 1.25 2.5 1.25 2.5l5 5s2.5 2.5 5 0l5-5s1.25-1.25 1.25-2.5c0-2.5-2.5-2.5-2.5-2.5h-3.75v-7.5h7.5v3.75s0 2.5 2.5 2.5c1.25 0 2.5-1.25 2.5-1.25l5-5s2.5-2.5 0-5l-5-5s-1.25-1.25-2.5-1.25c-2.5 0-2.5 2.5-2.5 2.5v3.75h-7.5v-7.5h3.75s2.5 0 2.5-2.5c0-1.25-1.25-2.5-1.25-2.5l-5-5s-2.5-2.5-5 0l-5 5s-1.25 1.25-1.25 2.5c0 2.5 2.5 2.5 2.5 2.5h3.75z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-attachment:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m36.25 17.5v20s7e-5 10-11.25 10c-11.25 0-11.25-10-11.25-10v-26.25s2.61e-4 -8.7503 8.75-8.75c8.7497 2.823e-4 8.75 8.75 8.75 8.75v21.25s-2.3e-5 6.25-6.25 6.25c-6.25 1e-6 -6.25-6.25-6.25-6.25l-6.11e-4 -17.5s0-1.25 1.25-1.25l1.25 1e-6c1.25 0 1.25 1.25 1.25 1.25l5.68e-4 17.5s2.4e-5 2.5001 2.5 2.5 2.5-2.5 2.5-2.5v-21.25s2.3e-5 -4.9999-5-5c-5 0-5 5-5 5v26.25s-2.82e-4 6.2497 7.5 6.25c7.5 0 7.5-6.25 7.5-6.25l-9.8e-5 -22.5s0-1.25 1.25-1.25h1.25c1.25 0 1.25 1.25 1.25 1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-backpack:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m22.5 5c-3.75 0-3.75 3.75-3.75 3.75v2.5s-11.25 1.25-11.25 12.5v16.25s0 5 5 5v-16.25c0-5 5-5 5-5h15s5 0 5 5v16.25c5 0 5-5 5-5v-16.25c0-11.25-11.25-12.5-11.25-12.5v-2.5s0-3.75-3.75-3.75zm1.25 3.75h2.5s1.25 0 1.25 1.25v1.25h-5v-1.25c0-1.25 1.25-1.25 1.25-1.25zm-5 18.75s-2.5 0-2.5 2.5v2.5h17.5v-2.5s0-2.5-2.5-2.5zm-2.5 7.5v7.5s0 2.5 2.5 2.5h12.5s2.5 0 2.5-2.5v-7.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-bars:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m8.75 10c-1.25 0-1.25 1.25-1.25 1.25v3.75s0 1.25 1.25 1.25h32.5c1.25 0 1.25-1.25 1.25-1.25v-3.75s0-1.25-1.25-1.25zm0 11.25c-1.25 0-1.25 1.25-1.25 1.25v3.75s0 1.25 1.25 1.25h32.5c1.25 0 1.25-1.25 1.25-1.25v-3.75s0-1.25-1.25-1.25zm0 11.25c-1.25 0-1.25 1.25-1.25 1.25v3.75s0 1.25 1.25 1.25h32.5c1.25 0 1.25-1.25 1.25-1.25v-3.75s0-1.25-1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-basket:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m31.781 6.959c-0.42174-0.027283-0.906 0.072266-1.4473 0.38477-2.1651 1.25-0.91406 3.416-0.91406 3.416l5.334 9.2402h-19.508l5.334-9.2402s1.251-2.166-0.91406-3.416c-0.54127-0.3125-1.0256-0.41001-1.4473-0.38281-1.2649 0.08158-1.9688 1.2988-1.9688 1.2988l-6.7773 11.74h-5.7227c-1.25 0-1.25 1.25-1.25 1.25v2.5c0 1.25 1.25 1.25 1.25 1.25h1.25l3.75 15c1.25 2.5 3.75 2.5 3.75 2.5h25s2.5 0 3.75-2.5l3.75-15h1.25c1.25 0 1.25-1.25 1.25-1.25v-2.5c0-1.25-1.25-1.25-1.25-1.25h-5.7227l-6.7773-11.74s-0.70353-1.2189-1.9688-1.3008zm-16.781 19.291c2.5 0 2.5 2.5 2.5 2.5v6.25s0 2.5-2.5 2.5-2.5-2.5-2.5-2.5v-6.25c0-2.5 2.5-2.5 2.5-2.5zm10 0c2.5 0 2.5 2.5 2.5 2.5v6.25s0 2.5-2.5 2.5-2.5-2.5-2.5-2.5v-6.25c0-2.5 2.5-2.5 2.5-2.5zm10 0c2.5 0 2.5 2.5 2.5 2.5v6.25s0 2.5-2.5 2.5-2.5-2.5-2.5-2.5v-6.25c0-2.5 2.5-2.5 2.5-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-bell:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m25 5c-2.5 0-2.5 2.5-2.5 2.5v2.6914c-9.9937 1.5479-10 12.309-10 12.309s0 7.5-2.5 8.75c-2.7131 1.3566-2.5 3.75-2.5 3.75 0 2.5 2.5 2.5 2.5 2.5h30s2.5 0 2.5-2.5c0 0 0-2.5-2.5-3.75s-2.5-8.75-2.5-8.75-0.0063-10.761-10-12.309v-2.6914s0-2.5-2.5-2.5zm-5 35s0 5 5 5 5-5 5-5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-bold:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m13.75 7.5s-1.25 0-1.25 1.25v32.5s0 1.25 1.25 1.25h12.5s11.25 0 11.25-11.25c0-3.882-1.3489-6.4032-3.1035-8.0684 1.079-1.2836 1.8535-3.0923 1.8535-5.6816 0-10-8.75-10-8.75-10zm5 6.25h7.5c5 0 5 7.5 0 7.5h-7.5zm0 13.75h7.5c6.25 0 6.25 8.75 0 8.75h-7.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-book:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m15 5c-7.5 0-7.5 7.5-7.5 7.5v25c0 7.5 7.5 7.5 7.5 7.5h25s2.5 0 2.5-2.5c0-1.448-0.83518-2.0444-1.541-2.3008-0.64614-1.3883-1.0428-3.2753-0.13867-5.3066 1.6783-0.47685 1.6797-2.3926 1.6797-2.3926v-25c0-2.5-2.5-2.5-2.5-2.5zm3.75 7.5h15s1.25 0 1.25 1.25-1.25 1.25-1.25 1.25h-15s-1.25 0-1.25-1.25 1.25-1.25 1.25-1.25zm0 5h15s1.25 0 1.25 1.25-1.25 1.25-1.25 1.25h-15s-1.25 0-1.25-1.25 1.25-1.25 1.25-1.25zm-1.25 17.5h18.75c-0.4355 1.3416-0.60124 3.1067 0 5h-18.75s-2.5 0-2.5-2.5 2.5-2.5 2.5-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-bookmark:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m17.5 5s-5 0-5 5v35l12.5-10 12.5 10v-35s0-5-5-5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-box:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m11.25 6.25-6.25 7.5h16.25l1.25-7.5zm16.25 0 1.25 7.5h16.25l-6.25-7.5zm-22.5 10v23.75s0 3.75 3.75 3.75h32.5s3.75 0 3.75-3.75v-23.75h-16.25v10s0 1.25-1.25 1.25h-5c-1.25 0-1.25-1.25-1.25-1.25v-10z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-briefcase:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m21.25 8.75c-5 0-5 3.75-5 3.75v2.5h-6.25s-5 0-5 5v5h40v-5s0-5-5-5h-6.25v-2.5s0-3.75-5-3.75h-7.5zm0 3.75h7.5s1.25 0 1.25 1.25v1.25h-10v-1.25s0-1.25 1.25-1.25zm-16.25 15v10s0 5 5 5h30s5 0 5-5v-10h-15v2.5s0 2.5-2.5 2.5h-5s-2.5 0-2.5-2.5v-2.5h-15z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-bring-forward:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m8.75 5s-3.75 0-3.75 3.75v20s0 3.75 3.75 3.75h6.25v-5.1212l-5 0.12118v-17.5h17.5v5h5v-6.25s0-3.75-3.75-3.75zm12.5 12.5s-3.75 0-3.75 3.75v20s0 3.75 3.75 3.75h20s3.75 0 3.75-3.75v-20s0-3.75-3.75-3.75z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-brush:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m5 5 5 22.5h30l5-22.5h-7.5l-3.75 15v-15h-17.5v15l-3.75-15zm5 27.5c0 5 5 5 5 5h5v2.5s0 5 5 5 5-5 5-5v-2.5h5c5 0 5-5 5-5v-2.5h-30zm15 6.25s1.25 0 1.25 1.25-1.25 1.25-1.25 1.25-1.25 0-1.25-1.25 1.25-1.25 1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-calendar:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m16.25 5s-1.25 0-1.25 1.25v3.75h-3.75s-3.75 0-3.75 3.75v3.75h35v-3.75s0-3.75-3.75-3.75h-3.75v-3.75s0-1.25-1.25-1.25h-2.5s-1.25 0-1.25 1.25v3.75h-5-5v-3.75s0-1.25-1.25-1.25h-2.5zm-8.75 15v21.25s0 3.75 3.75 3.75h27.5s3.75 0 3.75-3.75v-21.25h-35zm12.5 2.5h2.5c1.25 0 1.25 1.25 1.25 1.25v2.5c0 1.25-1.25 1.25-1.25 1.25h-2.5c-1.25 0-1.25-1.25-1.25-1.25v-2.5c0-1.25 1.25-1.25 1.25-1.25zm7.5 0h2.5c1.25 0 1.25 1.25 1.25 1.25v2.5c0 1.25-1.25 1.25-1.25 1.25h-2.5c-1.25 0-1.25-1.25-1.25-1.25v-2.5c0-1.25 1.25-1.25 1.25-1.25zm7.5 0h2.5c1.25 0 1.25 1.25 1.25 1.25v2.5c0 1.25-1.25 1.25-1.25 1.25h-2.5c-1.25 0-1.25-1.25-1.25-1.25v-2.5c0-1.25 1.25-1.25 1.25-1.25zm-22.5 7.5h2.5c1.25 0 1.25 1.25 1.25 1.25v2.5c0 1.25-1.25 1.25-1.25 1.25h-2.5c-1.25 0-1.25-1.25-1.25-1.25v-2.5c0-1.25 1.25-1.25 1.25-1.25zm7.5 0h2.5c1.25 0 1.25 1.25 1.25 1.25v2.5c0 1.25-1.25 1.25-1.25 1.25h-2.5c-1.25 0-1.25-1.25-1.25-1.25v-2.5c0-1.25 1.25-1.25 1.25-1.25zm7.5 0h2.5c1.25 0 1.25 1.25 1.25 1.25v2.5c0 1.25-1.25 1.25-1.25 1.25h-2.5c-1.25 0-1.25-1.25-1.25-1.25v-2.5c0-1.25 1.25-1.25 1.25-1.25zm7.5 0h2.5c1.25 0 1.25 1.25 1.25 1.25v2.5c0 1.25-1.25 1.25-1.25 1.25h-2.5c-1.25 0-1.25-1.25-1.25-1.25v-2.5c0-1.25 1.25-1.25 1.25-1.25zm-22.5 7.5h2.5c1.25 0 1.25 1.25 1.25 1.25v2.5c0 1.25-1.25 1.25-1.25 1.25h-2.5c-1.25 0-1.25-1.25-1.25-1.25v-2.5c0-1.25 1.25-1.25 1.25-1.25zm7.5 0h2.5c1.25 0 1.25 1.25 1.25 1.25v2.5c0 1.25-1.25 1.25-1.25 1.25h-2.5c-1.25 0-1.25-1.25-1.25-1.25v-2.5c0-1.25 1.25-1.25 1.25-1.25zm7.5 0h2.5c1.25 0 1.25 1.25 1.25 1.25v2.5c0 1.25-1.25 1.25-1.25 1.25h-2.5c-1.25 0-1.25-1.25-1.25-1.25v-2.5c0-1.25 1.25-1.25 1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-camera:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m20 7.5c-2.5 0-3.75 2.5-3.75 2.5l-1.25 2.5h-5c-5 0-5 5-5 5v20c0 5 5 5 5 5h30c5 0 5-5 5-5v-20c0-5-5-5-5-5h-5l-1.25-2.5s-1.25-2.5-3.75-2.5zm5 10a10 10 0 0 1 10 10 10 10 0 0 1-10 10 10 10 0 0 1-10-10 10 10 0 0 1 10-10zm0 3.75a6.25 6.25 0 0 0-6.25 6.25 6.25 6.25 0 0 0 6.25 6.25 6.25 6.25 0 0 0 6.25-6.25 6.25 6.25 0 0 0-6.25-6.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-cart:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m6.25 6.25s-2.5 0-2.5 2.5 2.5 2.5 2.5 2.5h5l3.75 23.75c-0.23567 0.26176 2.5-1.25 2.5-1.25-5 0-5 5-5 5s0 5 5 5 5-5 5-5 0-5-5-5l3.75 2.5h12.5l2.5-2.5c-5 0-5 5-5 5s0 5 5 5 5-5 5-5 0-5-5-5l2.5 2.5s2.5 0 2.5-2.5-2.5-2.5-2.5-2.5h-18.75l-0.40448-2.5 20.404-1.25c1.9347 0 2.5-1.25 2.5-1.25l3.75-11.25c0.4289-0.88454 0-2.5-1.25-2.5h-28.75l-1.25-6.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-chart-bar:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m22.5 10s1.25 0 1.25 1.25v22.5s0 1.25-1.25 1.25h-5s-1.25 0-1.25-1.25v-22.5s0-1.25 1.25-1.25zm20 3.75s1.25 0 1.25 1.25v18.75s0 1.25-1.25 1.25h-5s-1.25 0-1.25-1.25v-18.75s0-1.25 1.25-1.25zm-10 5s1.25 0 1.25 1.25v13.75s0 1.25-1.25 1.25h-5s-1.25 0-1.25-1.25v-13.75s0-1.25 1.25-1.25zm-20 2.5s1.25 0 1.25 1.25v11.25s0 1.25-1.25 1.25h-5s-1.25 0-1.25-1.25v-11.25s0-1.25 1.25-1.25zm31.25 15c1.25 0 1.25 1.25 1.25 1.25v1.25c0 1.25-1.25 1.25-1.25 1.25h-37.5c-1.25 0-1.25-1.25-1.25-1.25v-1.25c0-1.25 1.25-1.25 1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-chart-line:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m40 11.25s-3.75 0-3.75 3.75c0 0.41883 0.051658 0.78474 0.13477 1.1152l-6.3848 6.3848-7.5-7.5-11.422 11.422c-0.60283-0.16392-1.0781-0.17188-1.0781-0.17188s-3.75 0-3.75 3.75 3.75 3.75 3.75 3.75 3.75 0 3.75-3.75c0-0.41883-0.051658-0.78474-0.13477-1.1152l8.8848-8.8848 7.5 7.5 8.9219-8.9219c0.60283 0.16392 1.0781 0.17188 1.0781 0.17188s3.75 0 3.75-3.75-3.75-3.75-3.75-3.75zm-33.75 25c-1.25 0-1.25 1.25-1.25 1.25v1.25c0 1.25 1.25 1.25 1.25 1.25h37.5c1.25 0 1.25-1.25 1.25-1.25v-1.25c0-1.25-1.25-1.25-1.25-1.25h-37.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-check:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m20 30-7.5-7.5s-1.25-1.25-2.5 0l-1.25 1.25-1.25 1.25s-1.25 1.25 0 2.5l11.25 11.25s1.25 1.25 2.5 0l21.25-21.25s1.25-1.25 0-2.5l-1.25-1.25-1.25-1.25s-1.25-1.25-2.5 0z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-chevron-down:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m10 25 12.5 12.5s2.5 2.5 5 0l17.5-17.5s1.25-1.25 0-2.5l-5-5s-1.25-1.25-2.5 0l-12.5 12.5-12.5-12.5s-1.25-1.25-2.5 0c-1.25 1.25-5 5-5 5s-1.25 1.25 0 2.5 5 5 5 5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-chevron-left:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m25 40-12.5-12.5s-2.5-2.5 0-5l17.5-17.5s1.25-1.25 2.5 0l5 5s1.25 1.25 0 2.5l-12.5 12.5 12.5 12.5s1.25 1.25 0 2.5l-5 5s-1.25 1.25-2.5 0l-5-5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-chevron-right:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m25 40 12.5-12.5s2.5-2.5 0-5l-17.5-17.5s-1.25-1.25-2.5 0l-5 5s-1.25 1.25 0 2.5l12.5 12.5-12.5 12.5s-1.25 1.25 0 2.5l5 5s1.25 1.25 2.5 0l5-5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-chevron-up:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m10 25 12.5-12.5s2.5-2.5 5 0l17.5 17.5s1.25 1.25 0 2.5l-5 5s-1.25 1.25-2.5 0l-12.5-12.5-12.5 12.5s-1.25 1.25-2.5 0c-1.25-1.25-5-5-5-5s-1.25-1.25 0-2.5 5-5 5-5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-circle-half:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m25 5a20 20 0 0 0-20 20 20 20 0 0 0 20 20 20 20 0 0 0 20-20 20 20 0 0 0-20-20zm0 5c8.2843 0 15 6.7157 15 15s-6.7157 15-15 15z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-circle:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m45 25a20 20 0 0 1-20 20 20 20 0 0 1-20-20 20 20 0 0 1 20-20 20 20 0 0 1 20 20z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-clipboard:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m25 5c-5 0-5 5-5 5h-3.75v3.75c0 1.25 1.25 1.25 1.25 1.25h15c1.25 0 1.25-1.25 1.25-1.25v-3.75h-3.75s0-5-5-5zm0 2.5a2.5 2.5 0 0 1 2.5 2.5 2.5 2.5 0 0 1 -2.5 2.5 2.5 2.5 0 0 1 -2.5 -2.5 2.5 2.5 0 0 1 2.5 -2.5zm-12.5 2.5c-2.5 0-2.5 2.5-2.5 2.5v30c0 2.5 2.5 2.5 2.5 2.5h25c2.5 0 2.5-2.5 2.5-2.5v-30c0-2.5-2.5-2.5-2.5-2.5h-1.25v5c0 2.5-2.5 2.5-2.5 2.5h-17.5c-2.5 0-2.5-2.5-2.5-2.5v-5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-clock:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m25 5c-11.046 0-20 8.9543-20 20s8.9543 20 20 20 20-8.9543 20-20-8.9543-20-20-20zm-1.25 6.25h2.5s1.25 0 1.25 1.25v12.5l5 5c1.25 1.25 0 2.5 0 2.5l-1.25 1.25s-1.25 1.25-2.5 0l-5-5s-1.25-1.25-1.25-2.5v-13.75s0-1.25 1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-clone:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m18.75 5c-3.75 0-3.75 3.75-3.75 3.75v22.5c0 3.75 3.75 3.75 3.75 3.75h22.5c3.75 0 3.75-3.75 3.75-3.75v-22.5c0-3.75-3.75-3.75-3.75-3.75h-22.5zm-10 10c-3.75 0-3.75 3.75-3.75 3.75v22.5c0 3.75 3.75 3.75 3.75 3.75h22.5c3.75 0 3.75-3.75 3.75-3.75v-3.75h-16.25c-6.25 0-6.25-6.25-6.25-6.25v-16.25h-3.75z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-cloud-download:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m20 8.75s-12.5 0-12.5 12.5c0 0.42569 0.016915 0.83328 0.044922 1.2305-2.5149 1.2425-5.0449 3.7395-5.0449 8.7695 0 10 10 10 10 10h25s10 0 10-10c0-5-2.5-7.5-5-8.75 0-7.5-7.5-7.5-7.5-7.5s-1.8182 0.0053-3.6641 0.90039c-1.3985-3.3947-4.4826-7.1504-11.336-7.1504zm1.25 8.75h2.5s1.25 0 1.25 1.25v8.75h5s1.25 0 1.25 1.25-1.25 2.5-1.25 2.5l-6.25 6.25c-1.25 1.25-2.5 0-2.5 0l-6.25-6.25s-1.25-1.25-1.25-2.5c0 0 0-1.25 1.25-1.25h5v-8.75s0-1.25 1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-cloud-upload:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m20 8.75s-12.5 0-12.5 12.5c0 0.42569 0.016915 0.83328 0.044922 1.2305-2.5149 1.2425-5.0449 3.7395-5.0449 8.7695 0 10 10 10 10 10h25s10 0 10-10c0-5-2.5-7.5-5-8.75 0-7.5-7.5-7.5-7.5-7.5s-1.8182 0.0053-3.6641 0.90039c-1.3985-3.3947-4.4826-7.1504-11.336-7.1504zm2.4102 8.2012c0.40283-0.036621 0.87109 0.080078 1.3398 0.54883l6.25 6.25s1.25 1.25 1.25 2.5-1.25 1.25-1.25 1.25h-5v8.75c0 1.25-1.25 1.25-1.25 1.25h-2.5c-1.25 0-1.25-1.25-1.25-1.25v-8.75h-5c-1.25 0-1.25-1.25-1.25-1.25 0-1.25 1.25-2.5 1.25-2.5l6.25-6.25s0.48877-0.48779 1.1602-0.54883z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-cloud:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m20 8.75s-12.5 0-12.5 12.5c0 0.42569 0.016915 0.83328 0.044922 1.2305-2.5149 1.2425-5.0449 3.7395-5.0449 8.7695 0 10 10 10 10 10h25s10 0 10-10c0-5-2.5-7.5-5-8.75 0-7.5-7.5-7.5-7.5-7.5s-1.8182 0.005292-3.6641 0.90039c-1.3985-3.3947-4.4826-7.1504-11.336-7.1504z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-code:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m27.039 6.2031c-0.38217 0.011337-0.93061 0.16725-1.1328 0.92188l-9.0586 33.809s-0.32264 1.2077 0.88477 1.5312l4.8301 1.293s1.2077 0.3246 1.5312-0.88281l9.0586-33.809s0.32264-1.2077-0.88477-1.5312l-4.8301-1.293s-0.16914-0.045865-0.39844-0.039062zm-14.422 6.9922c-0.77545-0.036926-1.3672 0.55469-1.3672 0.55469l-10 10c-1.25 1.25 0 2.5 0 2.5l10 10s1.25 1.25 2.5 0l2.5-2.5c1.25-1.25 0-2.5 0-2.5l-6.25-6.25 6.25-6.25s1.25-1.25 0-2.5l-2.5-2.5c-0.39062-0.39062-0.78033-0.5379-1.1328-0.55469zm24.766 0c-0.35248 0.016785-0.74219 0.16406-1.1328 0.55469l-2.5 2.5c-1.25 1.25 0 2.5 0 2.5l6.25 6.25-6.25 6.25s-1.25 1.25 0 2.5l2.5 2.5c1.25 1.25 2.5 0 2.5 0l10-10s1.25-1.25 0-2.5l-10-10s-0.59174-0.59161-1.3672-0.55469z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-coffee:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='M 8.75 7.5 C 6.25 7.5 6.25 10 6.25 10 L 6.25 27.5 C 6.25 35 13.75 35 13.75 35 L 28.75 35 C 28.75 35 36.25 35 36.25 27.5 L 41.25 27.5 C 43.75 27.5 43.75 25 43.75 25 L 43.75 12.5 C 43.75 10 41.25 10 41.25 10 L 36.25 10 C 36.25 10 36.25 7.5 33.75 7.5 L 8.75 7.5 z M 36.25 13.75 L 38.75 13.75 C 40 13.75 40 15 40 15 L 40 22.5 C 40 23.75 38.75 23.75 38.75 23.75 L 36.25 23.75 L 36.25 13.75 z M 3.75 37.5 C 3.75 37.5 2.5 37.5 2.5 38.75 C 2.5 42.5 6.25 42.5 6.25 42.5 L 43.75 42.5 C 43.75 42.5 47.5 42.5 47.5 38.75 C 47.5 37.5 46.25 37.5 46.25 37.5 L 3.75 37.5 z '/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-comment:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m5 10v33.75c0 1.25 1.25 1.25 1.25 1.25 1.25 0 2.5-1.25 2.5-1.25l6.25-6.25h25s5 0 5-5v-22.5s0-5-5-5h-30s-5 0-5 5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-compress:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m31.25 27.5s-3.75 0-3.75 3.75v7.5s0 1.25 1.25 2.5 2.5 0 2.5 0l2.5-2.2266 6.25 5.9766s1.25 1.25 2.5 0l2.5-2.5c1.25-1.25 0-2.5 0-2.5l-6.25-6.25 2.5-2.5s1.25-1.25 0-2.5-2.5-1.25-2.5-1.25zm-26.25 12.5s-1.25 1.25 0 2.5l2.5 2.5c1.25 1.25 2.5 0 2.5 0l6.25-6.25 2.5 2.5s1.25 1.25 2.5 0 1.25-2.5 1.25-2.5v-7.5s0-3.75-3.75-3.75h-7.5s-1.25 0-2.5 1.25 0 2.5 0 2.5l2.5 2.5zm5-35s-1.25-1.25-2.5 0l-2.5 2.5c-1.25 1.25 0 2.5 0 2.5l6.25 6.25-2.5 2.5s-1.25 1.25 0 2.5 2.5 1.25 2.5 1.25h7.5s3.75 0 3.75-3.75v-7.5s0-1.25-1.25-2.5-2.5 0-2.5 0l-2.5 2.5zm35 5s1.25-1.25 0-2.5l-2.5-2.5c-1.25-1.25-2.5 0-2.5 0l-6.25 6.25-2.5-2.5s-1.25-1.25-2.5 0-1.25 2.5-1.25 2.5v7.5s0 3.75 3.75 3.75h7.5s1.25 0 2.5-1.25 0-2.5 0-2.5l-2.5-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-copy:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m20 5s-2.5 0-2.5 2.5v27.5s0 2.5 2.5 2.5h20s2.5 0 2.5-2.5v-20h-7.5s-2.5 0-2.5-2.5v-7.5zm15 0v5s0 2.5 2.5 2.5h5zm-25 7.5c-2.5 0-2.5 2.5-2.5 2.5v27.5c0 2.5 2.5 2.5 2.5 2.5h20c2.5 0 2.5-2.5 2.5-2.5v-2.5h-15s-2.5 0-2.5-2.5v-25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-corner:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m12.5 5s-7.5 0-7.5 7.5v6.25s0 2.5 2.5 2.5h2.5s2.5 0 2.5-2.5v-3.75s0-2.5 2.5-2.5h3.75s2.5 0 2.5-2.5v-2.5s0-2.5-2.5-2.5zm18.75 0s-2.5 0-2.5 2.5v2.5s0 2.5 2.5 2.5h3.75s2.5 0 2.5 2.5v3.75s0 2.5 2.5 2.5h2.5s2.5 0 2.5-2.5v-6.25s0-7.5-7.5-7.5zm-23.75 23.75s-2.5 0-2.5 2.5v6.25s0 7.5 7.5 7.5h6.25s2.5 0 2.5-2.5v-2.5s0-2.5-2.5-2.5h-3.75s-2.5 0-2.5-2.5v-3.75s0-2.5-2.5-2.5zm32.5 0s-2.5 0-2.5 2.5v3.75s0 2.5-2.5 2.5h-3.75s-2.5 0-2.5 2.5v2.5s0 2.5 2.5 2.5h6.25s7.5 0 7.5-7.5v-6.25s0-2.5-2.5-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-credit-card:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m6.25 7.5s-3.75 0-3.75 3.75v3.75h45v-3.75s0-3.75-3.75-3.75h-37.5zm-3.75 15v16.25c0 3.75 3.75 3.75 3.75 3.75h37.5c3.75 0 3.75-3.75 3.75-3.75v-16.25h-45zm6.25 2.5h7.5c1.25 0 1.25 1.25 1.25 1.25v2.5c0 1.25-1.25 1.25-1.25 1.25h-7.5c-1.25 0-1.25-1.25-1.25-1.25v-2.5c0-1.25 1.25-1.25 1.25-1.25zm0 7.5h20s1.25 0 1.25 1.25v2.5s0 1.25-1.25 1.25h-20s-1.25 0-1.25-1.25v-2.5s0-1.25 1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-crop:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m12.5 5c-2.5 0-2.5 2.5-2.5 2.5v2.5h-2.5c-2.5 0-2.5 2.5-2.5 2.5v2.5c0 2.5 2.5 2.5 2.5 2.5h2.5v20c0 2.5 2.5 2.5 2.5 2.5h17.5v-7.5h-12.5v-25c0-2.5-2.5-2.5-2.5-2.5h-2.5zm7.5 5v7.5h12.5v25c0 2.5 2.5 2.5 2.5 2.5h2.5c2.5 0 2.5-2.5 2.5-2.5v-2.5h2.5c2.5 0 2.5-2.5 2.5-2.5v-2.5c0-2.5-2.5-2.5-2.5-2.5h-2.5v-20c0-2.5-2.5-2.5-2.5-2.5h-17.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-cross:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m25 20-8.75-8.75s-1.25-1.25-2.5 0l-2.5 2.5s-1.25 1.25 0 2.5l8.75 8.75-8.75 8.75s-1.25 1.25 0 2.5l2.5 2.5s1.25 1.25 2.5 0l8.75-8.75 8.75 8.75s1.25 1.25 2.5 0l2.5-2.5s1.25-1.25 0-2.5l-8.75-8.75 8.75-8.75s1.25-1.25 0-2.5l-2.5-2.5s-1.25-1.25-2.5 0z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-cut:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m15 7.5a7.5 7.5 0 0 0 -7.5 7.5 7.5 7.5 0 0 0 7.5 7.5 7.5 7.5 0 0 0 2.1719 -0.32812l2.8281 2.8281-2.8262 2.8262a7.5 7.5 0 0 0 -2.1738 -0.32617 7.5 7.5 0 0 0 -7.5 7.5 7.5 7.5 0 0 0 7.5 7.5 7.5 7.5 0 0 0 7.5 -7.5 7.5 7.5 0 0 0 -0.32812 -2.1719l2.8281-2.8281 7.5 7.5s5 5 10 0l-12.5-12.5 12.5-12.5s-2.363-2.3645-5.4648-2.2168c-1.4099 0.067152-2.9726 0.654-4.5352 2.2168l-7.5 7.5-2.8262-2.8262a7.5 7.5 0 0 0 0.32617 -2.1738 7.5 7.5 0 0 0 -7.5 -7.5zm0 3.75a3.75 3.75 0 0 1 3.75 3.75 3.75 3.75 0 0 1 -3.75 3.75 3.75 3.75 0 0 1 -3.75 -3.75 3.75 3.75 0 0 1 3.75 -3.75zm10 11.25a2.5 2.5 0 0 1 2.5 2.5 2.5 2.5 0 0 1 -2.5 2.5 2.5 2.5 0 0 1 -2.5 -2.5 2.5 2.5 0 0 1 2.5 -2.5zm-10 8.75a3.75 3.75 0 0 1 3.75 3.75 3.75 3.75 0 0 1 -3.75 3.75 3.75 3.75 0 0 1 -3.75 -3.75 3.75 3.75 0 0 1 3.75 -3.75z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-dashboard:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m10 7.5s-2.5 0-2.5 2.5v15c0 2.5 2.5 2.5 2.5 2.5h10s2.5 0 2.5-2.5v-15s0-2.5-2.5-2.5h-10zm20 0s-2.5 0-2.5 2.5v5c0 2.5 2.5 2.5 2.5 2.5h10s2.5 0 2.5-2.5v-5s0-2.5-2.5-2.5h-10zm0 15s-2.5 0-2.5 2.5v15c0 2.5 2.5 2.5 2.5 2.5h10s2.5 0 2.5-2.5v-15s0-2.5-2.5-2.5h-10zm-20 10s-2.5 0-2.5 2.5v5c0 2.5 2.5 2.5 2.5 2.5h10s2.5 0 2.5-2.5v-5s0-2.5-2.5-2.5h-10z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-desktop:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m6.25 5s-3.75 0-3.75 3.75v25s0 3.75 3.75 3.75h13.75v2.5s0 1.25-1.25 1.25h-3.75s-1.25 0-1.25 1.25v1.25s0 1.25 1.25 1.25h20s1.25 0 1.25-1.25v-1.25s0-1.25-1.25-1.25h-3.75s-1.2699-1.59e-4 -1.25-1.25v-2.5h13.75s3.75 0 3.75-3.75v-25s0-3.75-3.75-3.75zm3.75 5h30c2.5 0 2.5 2.5 2.5 2.5v17.5c0 2.5-2.5 2.5-2.5 2.5h-30c-2.5 0-2.5-2.5-2.5-2.5v-17.5c0-2.5 2.5-2.5 2.5-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-diamond:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m23.75 6.25-15 17.5c-0.52736 0.80558-0.59473 1.6354 0 2.5l15 17.5c0.83333 1.2411 1.6667 1.2411 2.5 0l15-17.5c0.56147-0.83333 0.56147-1.6667 0-2.5l-15-17.5c-0.83333-1.2116-1.6667-1.2116-2.5 0z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-directions:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m23.75 5s-1.25 0-1.25 1.25v1.25h-11.25l-5 3.75s-1.25 1.25 0 2.5l5 3.75h11.25v6.25h-12.5c-2.5 0-2.5 2.5-2.5 2.5v5s0 2.5 2.5 2.5h12.5v10s0 1.25 1.25 1.25h2.5c1.25 0 1.25-1.25 1.25-1.25v-10h11.25l5-3.75c1.25-1.25 0-2.5 0-2.5l-5-3.75h-11.25v-6.25h12.5c2.5 0 2.5-2.5 2.5-2.5v-5s0-2.5-2.5-2.5h-12.5v-1.25s0-1.25-1.25-1.25h-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-discount:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m6.25 10s-3.75 0-3.75 3.75v6.25c5 0 5 5 5 5s0 5-5 5v6.25c0 3.75 3.75 3.75 3.75 3.75h37.5s3.75 0 3.75-3.75v-6.25c-5 0-5-5-5-5s0-5 5-5v-6.25c0-3.75-3.75-3.75-3.75-3.75zm22.338 5.6152c0.34876 0.02093 0.61914 0.17774 0.61914 0.17774l2.166 1.25c1.0825 0.625 0.45703 1.707 0.45703 1.707l-8.75 15.156c-0.625 1.0825-1.707 0.45703-1.707 0.45703l-2.166-1.25c-1.0825-0.625-0.45703-1.707-0.45703-1.707l8.75-15.156c0.3125-0.54127 0.73913-0.6557 1.0879-0.63477zm-11.088 1.8848c1.3807 0 2.5 1.1193 2.5 2.5s-1.1193 2.5-2.5 2.5-2.5-1.1193-2.5-2.5 1.1193-2.5 2.5-2.5zm15 10c1.3807 0 2.5 1.1193 2.5 2.5s-1.1193 2.5-2.5 2.5-2.5-1.1193-2.5-2.5 1.1193-2.5 2.5-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-disk:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m11.25 7.5s-3.75 0-3.75 3.75v27.5c0 3.75 3.75 3.75 3.75 3.75h27.5c3.75 0 3.75-3.75 3.75-3.75v-23.75l-7.5-7.5h-1.25v8.75s0 2.5-2.5 2.5h-11.25c-2.5 0-2.5-2.5-2.5-2.5v-8.75zm16.25 1.25c-1.25 0-1.25 1.25-1.25 1.25v6.25s0 1.25 1.25 1.25h2.5c1.25 0 1.25-1.25 1.25-1.25v-6.25s0-1.25-1.25-1.25zm-12.5 16.25h20s2.5 0 2.5 2.5v7.5s0 2.5-2.5 2.5h-20s-2.5 0-2.5-2.5v-7.5c0-2.5 2.5-2.5 2.5-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-dna:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m8.75 5c-1.25 0-1.25 1.25-1.25 1.25 0 13.75 12.5 18.75 12.5 18.75s-12.5 5-12.5 18.75c0 0 0 1.25 1.25 1.25h2.5c1.25 0 1.25-1.25 1.25-1.25 0-0.87872 0.05286-1.7109 0.14844-2.5h24.703c0.095578 0.78911 0.14844 1.6213 0.14844 2.5 0 0 0 1.25 1.25 1.25h2.5c1.25 0 1.25-1.25 1.25-1.25 0-13.75-12.5-18.75-12.5-18.75s12.5-5 12.5-18.75c0 0 0-1.25-1.25-1.25h-2.5c-1.25 0-1.25 1.25-1.25 1.25 0 0.87872-0.05286 1.7109-0.14844 2.5h-24.703c-0.095578-0.78911-0.14844-1.6213-0.14844-2.5 0 0 0-1.25-1.25-1.25zm4.7793 7.5h22.941c-0.32773 0.91051-0.72023 1.742-1.1621 2.5h-20.617c-0.44188-0.75802-0.83438-1.5895-1.1621-2.5zm4.2734 6.25h14.395c-3.4069 2.9789-7.1973 3.75-7.1973 3.75s-3.7903-0.77109-7.1973-3.75zm7.1973 8.75s3.7903 0.77109 7.1973 3.75h-14.395c3.4069-2.9789 7.1973-3.75 7.1973-3.75zm-10.309 7.5h20.617c0.44188 0.75802 0.83438 1.5895 1.1621 2.5h-22.941c0.32773-0.91051 0.72023-1.742 1.1621-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-download:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m22.5 5c-2.5 0-2.5 2.5-2.5 2.5v10h-5c-3.75 0-3.75 2.5-3.75 3.75s1.25 2.5 1.25 2.5l8.75 8.75c3.75 3.75 7.5 0 7.5 0l8.75-8.75s1.25-1.25 1.25-2.5 0-3.75-3.75-3.75h-5v-10c0-2.5-2.5-2.5-2.5-2.5zm-15 31.25s-2.5 0-2.5 2.5v3.75s0 2.5 2.5 2.5h35s2.5 0 2.5-2.5v-3.75s0-2.5-2.5-2.5zm33.125 2.5a1.875 1.875 0 0 1 1.875 1.875 1.875 1.875 0 0 1-1.875 1.875 1.875 1.875 0 0 1-1.875-1.875 1.875 1.875 0 0 1 1.875-1.875z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-edit:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m38.518 5.1426c-0.70496 0.033569-1.4863 0.32617-2.2676 1.1074l-3.7504 3.75 7.5 7.5 3.7504-3.75s2.5-2.5 0-5l-2.5-2.5s-1.1815-1.1813-2.7324-1.1074zm-28.518 4.8574s-5 0-5 5v25s0 5 5 5h25s5 0 5-5v-16.25l-5 5v11.25h-25v-25h11.25l5-5zm21.25 1.25-16.25 17.5-2.5 8.75 8.75-1.25l17.5-17.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-envelope:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m8.75 10s-3.75 0-3.75 3.75v1.25l15 7.5s5 2.5 10 0l15-7.5v-1.25c0-3.75-3.75-3.75-3.75-3.75zm-3.75 8.75v17.5c0 3.75 3.75 3.75 3.75 3.75h32.5s3.75 0 3.75-3.75v-17.5l-15 7.5s-5 2.5-10 0z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-erase:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m29.768 6.3926c-0.70496 0.033569-1.4863 0.32617-2.2676 1.1074l-20 20c-2.5 2.5 0 5 0 5l5 5h15l15-15c2.5-2.5 0-5 0-5l-10-10s-1.1815-1.1813-2.7324-1.1074zm-8.5176 13.607l8.75 8.75-5 5h-10l-3.75-3.75 10-10zm-15 20c-1.25 0-1.25 1.25-1.25 1.25v2.5c0 1.25 1.25 1.25 1.25 1.25h37.5c1.25 0 1.25-1.25 1.25-1.25v-2.5c0-1.25-1.25-1.25-1.25-1.25h-37.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-exclamation:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m20 5c-1.25 0-1.25 0.87813-1.25 1.25l2.5 22.5s0.24598 1.25 1.25 1.25h5c0.99345 0 1.25-1.25 1.25-1.25l2.5-22.5c0-0.43936 0-1.25-1.25-1.25h-10zm5 27.5a6.25 6.25 0 0 0 -6.25 6.25 6.25 6.25 0 0 0 6.25 6.25 6.25 6.25 0 0 0 6.25 -6.25 6.25 6.25 0 0 0 -6.25 -6.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-expand:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m25 20-6.25-6.25 2.5-2.5s1.25-1.25 0-2.5-2.5-1.25-2.5-1.25h-7.5s-3.75 0-3.75 3.75v7.5s0 1.25 1.25 2.5 2.5 0 2.5 0l2.5-2.2268 6.25 5.9768-6.25 6.25-2.5-2.5s-1.25-1.25-2.5 0-1.25 2.5-1.25 2.5v7.5s0 3.75 3.75 3.75h7.5s1.25 0 2.5-1.25 0-2.5 0-2.5l-2.5-2.5 6.25-6.25 6.25 6.25-2.5 2.5s-1.25 1.25 0 2.5 2.5 1.25 2.5 1.25h7.5s3.75 0 3.75-3.75v-7.5s0-1.25-1.25-2.5-2.5 0-2.5 0l-2.5 2.5-6.25-6.25 6.25-6.25 2.5 2.5s1.25 1.25 2.5 0 1.25-2.5 1.25-2.5v-7.5s0-3.75-3.75-3.75h-7.5s-1.25 0-2.5 1.25 0 2.5 0 2.5l2.5 2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-external-link:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m33.75 5s-1.25 0-2.5 1.25 0 2.5 0 2.5l2.5 2.5-16.25 16.25s-1.25 1.25 0 2.5l2.5 2.5c1.25 1.25 2.5 0 2.5 0l16.25-16.25 2.5 2.5s1.25 1.25 2.5 0 1.25-2.5 1.25-2.5v-7.5s0-3.75-3.75-3.75h-7.5zm-21.25 2.5c-5 0-5 5-5 5v25c0 5 5 5 5 5h25c5 0 5-5 5-5v-10c0-1.25-1.25-1.25-1.25-1.25h-2.5c-1.25 0-1.25 1.25-1.25 1.25v10h-25v-25h10c1.25 0 1.25-1.25 1.25-1.25v-2.5c0-1.25-1.25-1.25-1.25-1.25h-10z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-face-laugh:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m25 5a20 20 0 0 0-20 20 20 20 0 0 0 20 20 20 20 0 0 0 20-20 20 20 0 0 0-20-20zm-6.25 12.5a2.5 2.5 0 0 1 2.5 2.5 2.5 2.5 0 0 1-2.5 2.5 2.5 2.5 0 0 1-2.5-2.5 2.5 2.5 0 0 1 2.5-2.5zm12.5 0a2.5 2.5 0 0 1 2.5 2.5 2.5 2.5 0 0 1-2.5 2.5 2.5 2.5 0 0 1-2.5-2.5 2.5 2.5 0 0 1 2.5-2.5zm-16.25 10h20c1.25 0 1.25 1.25 1.25 1.25s0 10-11.25 10-11.25-10-11.25-10 0-1.25 1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-face-meh:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m25 5c-11.046 0-20 8.9543-20 20s8.9543 20 20 20 20-8.9543 20-20-8.9543-20-20-20zm-6.25 12.5c1.3807 0 2.5 1.1193 2.5 2.5s-1.1193 2.5-2.5 2.5-2.5-1.1193-2.5-2.5 1.1193-2.5 2.5-2.5zm12.5 0c1.3807 0 2.5 1.1193 2.5 2.5s-1.1193 2.5-2.5 2.5-2.5-1.1193-2.5-2.5 1.1193-2.5 2.5-2.5zm-13.75 13.75h15s1.25 0 1.25 1.25-1.25 1.25-1.25 1.25h-15s-1.25 0-1.25-1.25 1.25-1.25 1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-face-sad:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m25 5a20 20 0 0 0-20 20 20 20 0 0 0 20 20 20 20 0 0 0 20-20 20 20 0 0 0-20-20zm-6.25 12.5a2.5 2.5 0 0 1 2.5 2.5 2.5 2.5 0 0 1-2.5 2.5 2.5 2.5 0 0 1-2.5-2.5 2.5 2.5 0 0 1 2.5-2.5zm12.5 0a2.5 2.5 0 0 1 2.5 2.5 2.5 2.5 0 0 1-2.5 2.5 2.5 2.5 0 0 1-2.5-2.5 2.5 2.5 0 0 1 2.5-2.5zm-6.25 11.25c3.3147 0 6.494 1.3182 8.8379 3.6621 1.227 1.1781-0.58944 2.9946-1.7676 1.7676-1.8757-1.8757-4.4177-2.9297-7.0703-2.9297s-5.1946 1.054-7.0703 2.9297c-0.23585 0.2427-0.56002 0.37942-0.89844 0.37891-1.1212-2e-3 -1.673-1.365-0.86914-2.1465 2.3439-2.3439 5.5232-3.6621 8.8379-3.6621z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-face-smile:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m25 5a20 20 0 0 0-20 20 20 20 0 0 0 20 20 20 20 0 0 0 20-20 20 20 0 0 0-20-20zm-6.25 12.5a2.5 2.5 0 0 1 2.5 2.5 2.5 2.5 0 0 1-2.5 2.5 2.5 2.5 0 0 1-2.5-2.5 2.5 2.5 0 0 1 2.5-2.5zm12.5 0a2.5 2.5 0 0 1 2.5 2.5 2.5 2.5 0 0 1-2.5 2.5 2.5 2.5 0 0 1-2.5-2.5 2.5 2.5 0 0 1 2.5-2.5zm1.7656 12.914c0.95038 0.04846 1.7425 1.2902 0.82227 2.1738-2.3439 2.3439-5.5232 3.6621-8.8379 3.6621s-6.494-1.3182-8.8379-3.6621c-0.8039-0.78152-0.25203-2.1445 0.86914-2.1465 0.33842-5.13e-4 0.66259 0.1362 0.89844 0.37891 1.8757 1.8757 4.4177 2.9297 7.0703 2.9297s5.1946-1.054 7.0703-2.9297c0.29454-0.30675 0.62852-0.4224 0.94531-0.40625z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-face-surprise:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m25 5a20 20 0 0 0-20 20 20 20 0 0 0 20 20 20 20 0 0 0 20-20 20 20 0 0 0-20-20zm-6.25 12.5a2.5 2.5 0 0 1 2.5 2.5 2.5 2.5 0 0 1-2.5 2.5 2.5 2.5 0 0 1-2.5-2.5 2.5 2.5 0 0 1 2.5-2.5zm12.5 0a2.5 2.5 0 0 1 2.5 2.5 2.5 2.5 0 0 1-2.5 2.5 2.5 2.5 0 0 1-2.5-2.5 2.5 2.5 0 0 1 2.5-2.5zm-6.25 10a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-face-wink:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m25 5c-11.046 0-20 8.9543-20 20s8.9543 20 20 20 20-8.9543 20-20-8.9543-20-20-20zm6.25 12.4c2.0379 0 3.9503 1.0963 5.1191 2.7656 1.0317 1.3773-1.1051 2.8739-2.0469 1.4336-0.70251-1.0033-1.8475-1.4004-3.0723-1.4004s-2.3698 0.3971-3.0723 1.4004c-0.94175 1.4403-3.0786-0.05625-2.0469-1.4336 1.1689-1.6693 3.0813-2.7656 5.1191-2.7656zm-12.5 0.099609c1.3807 0 2.5 1.1193 2.5 2.5s-1.1193 2.5-2.5 2.5-2.5-1.1193-2.5-2.5 1.1193-2.5 2.5-2.5zm14.266 12.914c0.95038 0.04846 1.7425 1.2902 0.82227 2.1738-2.3439 2.3439-5.5232 3.6621-8.8379 3.6621s-6.494-1.3182-8.8379-3.6621c-0.8039-0.78152-0.25203-2.1445 0.86914-2.1465 0.33842-5.13e-4 0.66259 0.1362 0.89844 0.37891 1.8757 1.8757 4.4177 2.9297 7.0703 2.9297s5.1946-1.054 7.0703-2.9297c0.29454-0.30675 0.62852-0.4224 0.94531-0.40625z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-factory:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m7.5 7.5c-2.5 0-2.5 2.5-2.5 2.5v30s0 2.5 2.5 2.5h35c2.5 0 2.5-2.5 2.5-2.5v-20s0-2.5-2.5-1.25l-11.25 6.25v-5s0-2.5-2.5-1.25l-11.25 6.25v-15s0-2.5-2.5-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-file-archive:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m12.5 5s-2.5 0-2.5 2.5v35s0 2.5 2.5 2.5h25s2.5 0 2.5-2.5v-25h-10s-2.5 0-2.5-2.5v-10h-5v2.5h-2.5v2.5h2.5v2.5h-2.5v2.5h2.5v2.5h-2.5v2.5h2.5v2.5h-2.5v2.5h2.5v2.5s1.25 5 1.25 6.25c0 0 0 3.75-3.75 3.75s-3.75-3.75-3.75-3.75c0-1.25 1.25-6.25 1.25-6.25h2.5v-2.5h-2.5v-2.5h2.5v-2.5h-2.5v-2.5h2.5v-2.5h-2.5v-2.5h2.5v-2.5h-2.5v-2.5h2.5v-2.5zm17.5 0v7.5s0 2.5 2.5 2.5h7.5zm-10 27.5a1.25 1.25 0 0 0 -1.25 1.25 1.25 1.25 0 0 0 1.25 1.25 1.25 1.25 0 0 0 1.25 -1.25 1.25 1.25 0 0 0 -1.25 -1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-file-empty:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m12.5 5s-2.5 0-2.5 2.5v35s0 2.5 2.5 2.5h25s2.5 0 2.5-2.5v-25h-10s-2.5 0-2.5-2.5v-10zm17.5 0v7.5s0 2.5 2.5 2.5h7.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-file-image:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m12.5 5s-2.5 0-2.5 2.5v35s0 2.5 2.5 2.5h25s2.5 0 2.5-2.5v-25h-10s-2.5 0-2.5-2.5v-10zm17.5 0v7.5s0 2.5 2.5 2.5h7.5zm-12.5 15a2.5 2.5 0 0 1 2.5 2.5 2.5 2.5 0 0 1 -2.5 2.5 2.5 2.5 0 0 1 -2.5 -2.5 2.5 2.5 0 0 1 2.5 -2.5zm12.59 5.7012c0.67139 0.061035 1.1602 0.54883 1.1602 0.54883l3.75 3.75v7.5h-20v-5l2.5-2.5s1.25-1.25 2.5 0l2.5 2.5 6.25-6.25c0.46875-0.46875 0.93701-0.58545 1.3398-0.54883z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-file:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m12.5 5s-2.5 0-2.5 2.5v35s0 2.5 2.5 2.5h25s2.5 0 2.5-2.5v-25h-10s-2.5 0-2.5-2.5v-10zm17.5 0v7.5s0 2.5 2.5 2.5h7.5zm-13.75 20h17.5s1.25 0 1.25 1.25-1.25 1.25-1.25 1.25h-17.5s-1.25 0-1.25-1.25 1.25-1.25 1.25-1.25zm0 5h17.5s1.25 0 1.25 1.25-1.25 1.25-1.25 1.25h-17.5s-1.25 0-1.25-1.25 1.25-1.25 1.25-1.25zm0 5h17.5s1.25 0 1.25 1.25-1.25 1.25-1.25 1.25h-17.5s-1.25 0-1.25-1.25 1.25-1.25 1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-fill:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m8.8398 4.4512c-0.40283-0.036621-0.87109 0.080078-1.3398 0.54883l-2.5 2.5s-1.25 1.25 0 2.5l5 5-6.25 6.25c-3.75 3.75 0 7.5 0 7.5l12.5 12.5c3.75 3.75 7.5 0 7.5 0l16.25-16.25c1.25-1.25 0-2.5 0-2.5l-17.5-17.5c-0.46875-0.46875-0.93701-0.58545-1.3398-0.54883-0.67139 0.061035-1.1602 0.54883-1.1602 0.54883l-5 5-5-5s-0.48877-0.48779-1.1602-0.54883zm12.41 5.5488 13.75 13.75-1.25 1.25h-26.25v-1.25l5.625-5.625 3.125 3.125s1.25 1.25 2.5 0l2.5-2.5s1.25-1.25 0-2.5l-3.125-3.125zm18.75 21.25s-3.75 5-3.75 8.75c0 0 0 3.75 3.75 3.75s3.75-3.75 3.75-3.75c0-3.75-3.75-8.75-3.75-8.75z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-filter:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m41.25 5c3.75 0 3.75 2.5 3.75 3.75s-1.25 2.5-1.25 2.5l-13.75 13.75v17.639c0-0.13914 0 2.3609-2.5 2.3609-1.25 0-2.5-1.25-2.5-1.25l-3.75-3.75s-1.25-1.25-1.25-2.5v-12.5l-13.75-13.75s-1.25-1.25-1.25-2.5 0-3.75 3.75-3.75z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-flask:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m18.75 5s-1.25 0-1.25 1.25v1.25c0 1.25 1.25 1.25 1.25 1.25v11.25s-8.75 10-8.75 17.5 7.5 7.5 7.5 7.5h15s7.5 0 7.5-7.5-8.75-17.5-8.75-17.5v-11.25s1.25 0 1.25-1.25v-1.25c0-1.25-1.25-1.25-1.25-1.25h-11.25zm3.75 3.75h5v12.5c0.05334 0.27224 5.3724 7.0067 7.6855 12.32-5.7633-0.87709-8.2404-4.8203-12.686-4.8203-3.75 0-4.2717 0.69857-6.0234 1.4883 2.5682-4.544 6.0234-8.9883 6.0234-8.9883z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-folder-open:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m6.25 10c-3.75 0-3.75 3.75-3.75 3.75v23.75l5-10c2.4718-5.0115 5-5 7.5-5h25v-3.75c0-3.75-3.75-3.75-3.75-3.75h-13.75l-5-5zm10 15c-1.25 0-3.75 0-5 2.5 0 0-7.5 12.5-7.5 15s2.5 2.5 2.5 2.5h30c1.25 0 2.5 0 3.75-2.5 0 0 7.5-12.5 7.5-15s-2.5-2.5-2.5-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-folder:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m8.75 10h11.25l5 5h16.25s3.75 0 3.75 3.75v17.5s0 3.75-3.75 3.75h-32.5s-3.75 0-3.75-3.75v-22.5s0-3.75 3.75-3.75z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-font:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m22.5 5c-2.0117 0-2.5 2.5-2.5 2.5l-11.25 32.5h-1.25s-1.25 0-1.25 1.25v2.5s0 1.25 1.25 1.25h10s1.25 0 1.25-1.25v-2.5s0-1.25-1.25-1.25h-1.25l1.75-5h14l1.75 5h-1.25s-1.25 0-1.25 1.25v2.5s0 1.25 1.25 1.25h10s1.25 0 1.25-1.25v-2.5s0-1.25-1.25-1.25h-1.25l-11.25-32.5s-0.64873-2.5-2.5-2.5zm2.5 10 4.8125 13.75h-9.625z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-gear:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m42.549 20.889c-1.5441 0.19468-3.6495-0.12837-3.9325-1.9932-0.38737-1.9236 1.8821-2.6181 2.3884-4.1715 0.73789-2.0137-1.3653-3.1789-2.4705-4.4701-1.1305-1.4502-3.3379-1.5274-4.4905-0.05852-1.0947 2.1097-4.6116 1.6749-4.8137-0.79842 0.15368-1.5512 0.05158-3.8036-1.84-4.2047-1.7126-0.15821-3.6621-0.45253-5.2526 0.28442-1.7537 1.088-0.73474 3.2287-1.4211 4.78-0.70632 1.6463-3.0768 1.7358-4.1168 0.35895-1.0032-1.551-3.2463-2.0806-4.6084-0.66064-1.1453 1.3975-3.4966 2.6154-2.7832 4.7691 0.77401 1.6187 3.4269 2.9099 2.0629 5.0121-1.041 1.8016-3.2389 0.72495-4.7733 1.4459-1.9269 0.79728-1.3675 3.1007-1.4656 4.7415-0.28287 1.8727 1.3205 3.4119 3.1721 3.1915 2.2599-0.77572 4.5721 2.1688 2.7885 3.9819-1.2881 0.99613-2.7208 2.8697-1.3936 4.4235 1.2457 1.2236 2.3317 3.0675 4.1635 3.3617 2.0761 0.28823 2.6855-2.3092 4.5861-2.4601 2.5307-0.26384 2.824 2.6641 2.7043 4.5139 0.44855 2.2819 3.1147 2.1005 4.89 1.9907 2.0119 0.48983 3.7813-1.6035 3.2528-3.5279-0.20513-1.5841 1.0918-3.3004 2.7876-2.9787 1.7987 0.29596 2.4445 2.7881 4.4541 2.4552 1.976-0.37277 3.2173-2.316 4.4355-3.7596 1.2003-2.2456-1.688-3.3583-2.2719-5.1532-0.40845-1.8955 1.6849-3.2977 3.3963-2.8323 1.7816 0.24245 3.3129-1.3786 2.9477-3.1459 0.01519-1.8241 0.43537-4.6525-2.0015-5.072l-0.39765-0.0228zm-9.1237 4.1028c0.18899 5.0653-5.0973 9.3467-10.023 8.1576-4.6504-0.87928-7.8277-6.1695-6.2569-10.674 1.3419-4.4317 6.7199-7.0773 11.017-5.226 3.0873 1.2179 5.3343 4.398 5.2633 7.7425z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-gift:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m20.09 6.9512c-0.40283-0.036621-0.87109 0.080078-1.3398 0.54883l-2.5 2.5s-1.25 1.25 0 2.5h-8.75c-2.5 0-2.5 2.5-2.5 2.5v3.75c0 1.25 1.25 1.25 1.25 1.25h37.5c1.25 0 1.25-1.25 1.25-1.25v-3.75c0-2.5-2.5-2.5-2.5-2.5h-8.75s1.25-1.25 0-2.5l-2.5-2.5s-1.25-1.25-2.5 0l-3.75 3.75-3.75-3.75s-0.48877-0.48779-1.1602-0.54883zm-12.59 15.549v17.5s0 2.5 2.5 2.5h12.5v-20h-15zm20 0v20h12.5s2.5 0 2.5-2.5v-17.5h-15z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-grid:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m10 7.5s-2.5 0-2.5 2.5v5s0 2.5 2.5 2.5h5s2.5 0 2.5-2.5v-5s0-2.5-2.5-2.5h-5zm12.5 0s-2.5 0-2.5 2.5v5s0 2.5 2.5 2.5h5s2.5 0 2.5-2.5v-5s-1.78e-4 -2.5298-2.5-2.5h-5zm12.5 0s-2.5 0-2.5 2.5v5s0 2.5 2.5 2.5h5s2.5 0 2.5-2.5v-5s0-2.5-2.5-2.5h-5zm-25 12.5s-2.5 0-2.5 2.5v5s0 2.5 2.5 2.5h5s2.5 0 2.5-2.5v-5s0-2.5-2.5-2.5h-5zm12.5 0s-2.5 0-2.5 2.5v5s0 2.5 2.5 2.5h5s2.5 0 2.5-2.5v-5s0-2.5-2.5-2.5h-5zm12.5 0s-2.5 0-2.5 2.5v5s0 2.5 2.5 2.5h5s2.5 0 2.5-2.5v-5s0-2.5-2.5-2.5h-5zm-25 12.5s-2.5 0-2.5 2.5v5s0 2.5 2.5 2.5h5s2.5 0 2.5-2.5v-5s0-2.5-2.5-2.5h-5zm12.5 0s-2.5 0-2.5 2.5v5s0 2.5 2.5 2.5h5s2.5 0 2.5-2.5v-5s0-2.5-2.5-2.5h-5zm12.5 0s-2.5 0-2.5 2.5v5s0 2.5 2.5 2.5h5s2.5 0 2.5-2.5v-5s0-2.5-2.5-2.5h-5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-heart:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m42.5 11.25c-7.5-7.5-15 0-15 0l-2.5 2.5-2.5-2.5s-7.5-7.5-15 0 1.25 15 1.25 15l13.75 13.75s2.5 2.5 5 0l13.75-13.75s8.75-7.5 1.25-15z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-hidden:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m10.09 5.7012c-0.40283-0.036621-0.87109 0.080078-1.3398 0.54883l-2.5 2.5c-1.25 1.25 0 2.5 0 2.5l32.5 32.5s1.25 1.25 2.5 0l2.5-2.5c1.25-1.25 0-2.5 0-2.5l-4.8164-4.8164c5.2221-3.5218 8.5664-7.6836 8.5664-7.6836s1.25-1.25 0-2.5c0 0-10-12.5-22.5-12.5-2.5825 0-5.0486 0.55178-7.3516 1.3984l-6.3984-6.3984s-0.48877-0.48779-1.1602-0.54883zm14.91 9.2988a10 10 0 0 1 10 10 10 10 0 0 1-0.89258 4.1074l-2.9668-2.9668a6.25 6.25 0 0 0 0.10938-1.1406 6.25 6.25 0 0 0-6.25-6.25 6.25 6.25 0 0 0-1.1406 0.10938l-2.9648-2.9648a10 10 0 0 1 4.1055-0.89453zm-16.803 3.1973c-3.5384 2.8755-5.6973 5.5527-5.6973 5.5527-1.25 1.25 0 2.5 0 2.5s10 12.5 22.5 12.5c1.1712 0 2.3203-0.10968 3.4414-0.30859l-3.4414-3.4414a10 10 0 0 1-10-10z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-house:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m23.75 7.5-6.25 6.25v-3.75s0-1.25-1.25-1.25h-2.5c-1.25 0-1.25 1.25-1.25 1.25v8.75l-7.5 7.5s-1.25 1.25 0 2.5l1.25 1.25c1.25 1.25 2.5 0 2.5 0l16.25-16.25 16.25 16.25c1.25 1.25 2.5 0 2.5 0l1.25-1.25c1.25-1.25 0-2.5 0-2.5l-18.75-18.75s-1.25-1.25-2.5 0zm1.25 10-12.5 12.5v12.5h8.75v-8.75s0-1.25 1.25-1.25h5c1.25 0 1.25 1.25 1.25 1.25v8.75h8.75v-12.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-image:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m7.5 10c-2.5 0-2.5 2.5-2.5 2.5v25s0 2.5 2.5 2.5h35c2.5 0 2.5-2.5 2.5-2.5v-25s0-2.5-2.5-2.5zm6.25 3.75s3.75 0 3.75 3.75-3.75 3.75-3.75 3.75-3.75 0-3.75-3.75 3.75-3.75 3.75-3.75zm22.5 7.5l3.75 3.75v10h-30v-5l5-5c2.5-2.5 2.5-2.5 5 0l3.75 3.75 7.5-7.5c2.5-2.5 2.5-2.5 5 0z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-inbox:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m12.5 7.5c-1.8396 0-2.5 1.25-2.5 1.25l-7.5 16.25v11.25s0 3.75 3.75 3.75h37.5c3.75 0 3.75-3.75 3.75-3.75v-11.25l-7.5-16.25s-0.55552-1.25-2.5-1.25zm1.25 5h22.5l6.25 12.5h-11.25l-2.5 5h-7.5l-2.5-5h-11.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-info:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m25 5c-2.7614 0-5 2.2386-5 5 0 2.7614 2.2386 5 5 5 2.7614 0 5-2.2386 5-5 0-2.7614-2.2386-5-5-5zm-6.25 15c-1.25 0-1.25 1.25-1.25 1.25v3.75c0 1.25 1.25 1.25 1.25 1.25h1.25v12.5h-1.25c-1.25 0-1.25 1.25-1.25 1.25v3.75s0 1.25 1.25 1.25h12.5c1.25 0 1.25-1.25 1.25-1.25v-3.75c0-1.25-1.25-1.25-1.25-1.25h-1.25v-17.5c0-1.25-1.25-1.25-1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-italic:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m21.25 7.5s-1.25 0-1.25 1.25v2.5c0 1.25 1.25 1.25 1.25 1.25h3.75l-7.5 25h-3.75c-1.25 0-1.25 1.25-1.25 1.25v2.5s0 1.25 1.25 1.25h15c1.25 0 1.25-1.25 1.25-1.25v-2.5s-0.0032-1.3399-1.25-1.25h-3.75l7.5-25h3.75s1.25 0 1.25-1.25v-2.5c0-1.25-1.25-1.25-1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-keyboard:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m6.25 10s-3.75 0-3.75 3.75v22.5c0 3.75 3.75 3.75 3.75 3.75h37.5s3.75 0 3.75-3.75v-22.5s0-3.75-3.75-3.75zm2.5 5h2.5s1.25 0 1.25 1.25v2.5s0 1.25-1.25 1.25h-2.5s-1.25 0-1.25-1.25v-2.5s0-1.25 1.25-1.25zm7.5 0h2.5s1.25 0 1.25 1.25v2.5s0 1.25-1.25 1.25h-2.5s-1.25 0-1.25-1.25v-2.5s0-1.25 1.25-1.25zm7.5 0h2.5s1.25 0 1.25 1.25v2.5s0 1.25-1.25 1.25h-2.5s-1.25 0-1.25-1.25v-2.5s0-1.25 1.25-1.25zm7.5 0h2.5s1.25 0 1.25 1.25v2.5s0 1.25-1.25 1.25h-2.5s-1.25 0-1.25-1.25v-2.5s0-1.25 1.25-1.25zm7.5 0h2.5s1.25 0 1.25 1.25v2.5s0 1.25-1.25 1.25h-2.5s-1.25 0-1.25-1.25v-2.5s0-1.25 1.25-1.25zm-30 7.5h2.5s1.25 0 1.25 1.25v2.5s0 1.25-1.25 1.25h-2.5s-1.25 0-1.25-1.25v-2.5s0-1.25 1.25-1.25zm7.5 0h2.5s1.25 0 1.25 1.25v2.5s0 1.25-1.25 1.25h-2.5s-1.25 0-1.25-1.25v-2.5s0-1.25 1.25-1.25zm7.5 0h2.5s1.25 0 1.25 1.25v2.5s0 1.25-1.25 1.25h-2.5s-1.25 0-1.25-1.25v-2.5s0-1.25 1.25-1.25zm7.5 0h2.5s1.25 0 1.25 1.25v2.5s0 1.25-1.25 1.25h-2.5s-1.25 0-1.25-1.25v-2.5s0-1.25 1.25-1.25zm7.5 0h2.5s1.25 0 1.25 1.25v2.5s0 1.25-1.25 1.25h-2.5s-1.25 0-1.25-1.25v-2.5s0-1.25 1.25-1.25zm-23.75 7.5h20s1.25 0 1.25 1.25v2.5s0 1.25-1.25 1.25h-20s-1.25 0-1.25-1.25v-2.5s0-1.25 1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-laptop:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m8.75 5s-3.75 0-3.75 3.75v26.25h40v-26.25s0-3.75-3.75-3.75h-32.5zm2.5 3.75h27.5c2.5 0 2.5 2.5 2.5 2.5v17.5c0 2.5-2.5 2.5-2.5 2.5h-27.5c-2.5 0-2.5-2.5-2.5-2.5v-17.5c0-2.5 2.5-2.5 2.5-2.5zm-11.25 28.75v2.5s0 5 5 5h40s5 0 5-5v-2.5h-20s0 2.5-2.5 2.5h-5s-2.5 0-2.5-2.5h-20z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-layers:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m22.5 7.5-15 7.5s-2.5 1.25 0 2.5l15 7.5c2.5 1.25 5 0 5 0l15-7.5s2.5-1.25 0-2.5l-15-7.5c-2.5-1.25-5 0-5 0zm17.5 15-12.5 6.25c-2.5 1.25-5 0-5 0l-12.5-6.25-2.5 1.25c-2.5 1.25 0 2.5 0 2.5l15 7.5s2.5 1.25 5 0l15-7.5c2.5-1.25 0-2.5 0-2.5zm0 8.75-12.5 6.25s-2.5 1.25-5 0l-12.5-6.25-2.5 1.25s-2.5 1.25 0 2.5l15 7.5c2.5 1.25 5 0 5 0l15-7.5s2.5-1.25 0-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-lightbulb:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m25 5s-12.5 0-12.5 12.5c0 6.25 3.75 10 3.75 10s2.5 2.5 2.5 5c0 0 0 1.25 1.25 1.25h10c1.25 0 1.25-1.25 1.25-1.25 0-2.5 2.5-5 2.5-5s3.75-3.75 3.75-10c0-12.5-12.5-12.5-12.5-12.5zm0 3.75s1.25 0 1.25 1.25-1.25 1.25-1.25 1.25c-6.25 0-6.25 6.25-6.25 6.25s0 1.25-1.25 1.25-1.25-1.25-1.25-1.25c0-8.75 8.75-8.75 8.75-8.75zm-5 27.5c-1.25 0-1.25 1.25-1.25 1.25v2.5s0 5 6.25 5 6.25-5 6.25-5v-2.5s0-1.25-1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-link:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m16.25 15c-1.25 0-10 0-10 10s10 10 10 10h5s10 0 10-10c0 0 0-1.25-1.25-1.25h-2.5c-1.25 0-1.25 1.25-1.25 1.25s0 5-5 5h-5s-5 0-5-5 5-5 5-5c1.25 0 3.75-2.5 3.75-3.75s-1.25-1.25-1.25-1.25zm12.5 0s-10 0-10 10c0 0 0 1.25 1.25 1.25h2.5c1.25 0 1.25-1.25 1.25-1.25s0-5 5-5h5s5 0 5 5-5 5-5 5c-1.25 0-3.75 2.5-3.75 3.75 0 0 0 1.25 1.25 1.25h2.5c1.25 0 10 0 10-10s-10-10-10-10z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-list-ol:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m8.2871 8.25-2.1621 2.0215l1.127 1.2051 0.79688-0.85547 0.015625 4.0547h-1.7031v1.5742h5.3281v-1.5742h-1.7168v-6.4258zm10.463 1.75c-1.25 0-1.25 1.25-1.25 1.25v2.5s0 1.25 1.25 1.25h25c1.25 0 1.25-1.25 1.25-1.25v-2.5s0-1.25-1.25-1.25zm-9.7656 10.812c-0.6042 0-1.1557 0.15027-1.6504 0.44727-0.4949 0.296-0.86513 0.70823-1.1152 1.2402l1.3281 0.92188c0.3645-0.603 0.78652-0.90625 1.2656-0.90625 0.2604 0 0.46413 0.06994 0.61523 0.21094 0.1511 0.141 0.22852 0.34056 0.22852 0.60156 0 0.24-0.12434 0.47412-0.36914 0.70312s-0.53706 0.45764-0.88086 0.68164c-0.3437 0.224-0.68745 0.46923-1.0312 0.74023-0.3438 0.27-0.63997 0.6245-0.88477 1.0625s-0.36523 0.92212-0.36523 1.4531v0.78125h5.7285l0.021484-2.4219h-1.6406v0.9375h-1.9844c0.0104-0.259 0.19343-0.53336 0.55273-0.81836 0.3594-0.287 0.75454-0.55102 1.1816-0.79102 0.4268-0.239 0.81788-0.57481 1.1719-1.0078 0.354-0.432 0.53125-0.90869 0.53125-1.4297 0-0.739-0.26025-1.3238-0.78125-1.7578-0.521-0.432-1.1615-0.64844-1.9219-0.64844zm9.7656 1.6875c-1.25 0-1.25 1.25-1.25 1.25v2.5s0 1.25 1.25 1.25h25c1.25 0 1.25-1.25 1.25-1.25v-2.5s0-1.25-1.25-1.25zm-12.422 10.984v2.375h1.6562v-0.82812c0.1667 0 0.41736-0.0046 0.75586-0.01563 0.3386-0.009995 0.59317-0.01562 0.75977-0.01562v0.01563c-0.198 0.188-0.39062 0.38756-0.57812 0.60156-0.1875 0.214-0.41082 0.49475-0.66602 0.84375-0.2552 0.349-0.42256 0.57569-0.50586 0.67969l0.40625 0.875c1.0937-0.083 1.6406 0.209 1.6406 0.875 0 0.293-0.11399 0.51306-0.33789 0.66406-0.224 0.152-0.48511 0.22656-0.78711 0.22656-0.5938 0-1.1458-0.23512-1.6562-0.70312l-0.89062 1.375c0.6874 0.687 1.5835 1.0312 2.6875 1.0312 0.8438 0 1.5472-0.23975 2.1152-0.71875s0.85156-1.1338 0.85156-1.9688c0-0.53-0.15675-0.989-0.46875-1.375-0.313-0.386-0.73237-0.63962-1.2637-0.76562l1.4805-1.7969v-1.375zm12.422 1.5156c-1.25 0-1.25 1.25-1.25 1.25v2.5s0 1.25 1.25 1.25h25c1.25 0 1.25-1.25 1.25-1.25v-2.5s0-1.25-1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-list-ul:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m8.75 8.75a3.75 3.75 0 0 0 -3.75 3.75 3.75 3.75 0 0 0 3.75 3.75 3.75 3.75 0 0 0 3.75 -3.75 3.75 3.75 0 0 0 -3.75 -3.75zm10 1.25c-1.25 0-1.25 1.25-1.25 1.25v2.5s0 1.25 1.25 1.25h25c1.25 0 1.25-1.25 1.25-1.25v-2.5s0-1.25-1.25-1.25zm-10 11.25a3.75 3.75 0 0 0 -3.75 3.75 3.75 3.75 0 0 0 3.75 3.75 3.75 3.75 0 0 0 3.75 -3.75 3.75 3.75 0 0 0 -3.75 -3.75zm10 1.25c-1.25 0-1.25 1.25-1.25 1.25v2.5s0 1.25 1.25 1.25h25c1.25 0 1.25-1.25 1.25-1.25v-2.5s0-1.25-1.25-1.25zm-10 11.25a3.75 3.75 0 0 0 -3.75 3.75 3.75 3.75 0 0 0 3.75 3.75 3.75 3.75 0 0 0 3.75 -3.75 3.75 3.75 0 0 0 -3.75 -3.75zm10 1.25c-1.25 0-1.25 1.25-1.25 1.25v2.5s0 1.25 1.25 1.25h25c1.25 0 1.25-1.25 1.25-1.25v-2.5s0-1.25-1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-location:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m25 5c-6.604 0-12.5 5.856-12.5 12.5 0 9.91 7.558 21.756 10 25 2.5 3.75 5 0 5 0 2.458-3.268 10-15.106 10-25 0-6.644-5.895-12.5-12.5-12.5zm0 5c3.866 0 7.5 3.634 7.5 7.5s-3.634 7.5-7.5 7.5-7.5-3.634-7.5-7.5 3.634-7.5 7.5-7.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-lock:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m13.75 22.5h-1.25s-5 0-5 5v12.5c0 5 5 5 5 5h25s5 0 5-5v-12.5c0-5-5-5-5-5h-1.25v-6.25s0-11.25-11.25-11.25-11.25 11.25-11.25 11.25zm5-6.25s0-6.25 6.25-6.25 6.25 6.25 6.25 6.25v6.25h-12.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-map:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m5 10v26.25c0 1.25 2.5 2.5 2.5 2.5l7.5 3.75v-30l-7.5-3.75c-2.5-1.25-2.5 1.25-2.5 1.25zm27.5-2.5-15 5v30l15-3.75zm2.5 0v31.25l7.5 3.75c2.5 1.25 2.5-1.25 2.5-1.25v-27.5c0-1.25-2.5-2.5-2.5-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-minus:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m10 21.25h30s2.5 0 2.5 2.5v2.5c0 2.5-2.5 2.5-2.5 2.5h-30s-2.5 0-2.5-2.5v-2.5c0-2.5 2.5-2.5 2.5-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-mobile:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m16.25 5s-3.75 0-3.75 3.75v32.5c0 3.75 3.75 3.75 3.75 3.75h17.5s3.75 0 3.75-3.75v-32.5s0-3.75-3.75-3.75zm0 3.75h17.5v26.25h-17.5zm8.75 28.75c1.3807 0 2.5 1.1193 2.5 2.5s-1.1193 2.5-2.5 2.5-2.5-1.1193-2.5-2.5 1.1193-2.5 2.5-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-money:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m2.5 10c-2.5 0-2.5 2.5-2.5 2.5v25s0 2.5 2.5 2.5h45c2.5 0 2.5-2.5 2.5-2.5v-25s0-2.5-2.5-2.5zm7.5 5h30c0 5 5 5 5 5v10s-5 0-5 5h-30c0-5-5-5-5-5v-10s5 0 5-5zm15 2.5c-3.75 0-6.25 2.5-6.25 7.5s2.5 7.5 6.25 7.5 6.25-2.5 6.25-7.5-2.5-7.5-6.25-7.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-moon:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m27.5 45c-11.25 0-20-7.5-20-20s8.75-20 20-20c2.5 0 3.75 1.25 3.75 1.25s1.25 1.25-1.25 2.5c-5 2.5-7.5 6.25-7.5 12.5 0 10 8.75 15 16.25 13.75 0 0 3.75-1.25 2.5 2.5s-7.5 7.5-13.75 7.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-mouse:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m21.25 5s-11.25 0-11.25 11.25v2.5h13.75v-13.75h-2.5zm5 0v13.75h13.75v-2.5c0-11.25-11.25-11.25-11.25-11.25h-2.5zm-16.25 17.5v10s0 12.5 12.5 12.5h5s12.5 0 12.5-12.5v-10h-30z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-note:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m11.25 7.5c-3.75 0-3.75 3.75-3.75 3.75v27.5c0 3.75 3.75 3.75 3.75 3.75h17.5v-10c0-3.75 3.75-3.75 3.75-3.75h10v-17.5s0-3.75-3.75-3.75h-27.5zm21.25 25v10c1.25 0 2.5-1.25 2.5-1.25l6.25-6.25s1.25-1.25 1.25-2.5h-10z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-notepad:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m15 5s-1.25 0-1.25 1.25v3.75h-2.5c-3.75 0-3.75 3.75-3.75 3.75v27.5c0 3.75 3.75 3.75 3.75 3.75h27.5c3.75 0 3.75-3.75 3.75-3.75v-27.5s0-3.75-3.75-3.75h-2.5v-3.75s0-1.25-1.25-1.25h-2.5s-1.25 0-1.25 1.25v3.75h-3.75v-3.75s0-1.25-1.25-1.25h-2.5s-1.3391 0.00318-1.25 1.25v3.75h-3.75v-3.75s0-1.25-1.25-1.25zm-1.25 10h11.25c1.25 0 1.25 1.25 1.25 1.25v2.5c0 1.25-1.25 1.25-1.25 1.25h-11.25c-1.25 0-1.25-1.25-1.25-1.25v-2.5c0-1.25 1.25-1.25 1.25-1.25zm0 8.75h22.5c1.25 0 1.25 1.25 1.25 1.25v2.5c0 1.25-1.25 1.25-1.25 1.25h-22.5c-1.25 0-1.25-1.25-1.25-1.25v-2.5c0-1.25 1.25-1.25 1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-palette:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m5 25c0 20 20 20 20 20s5 0 5-5c0-1.25-1.25-2.5-1.25-2.5s-2.5-3.75 1.25-3.75c2.5 0 2.5 1.25 5 1.25 0 0 10 0 10-10 0 0 0-20-20-20s-20 20-20 20zm13.75-15c2.0437 0 3.7501 1.7063 3.75 3.75 0 2.0436-1.7064 3.75-3.75 3.75s-3.75-1.7064-3.75-3.75c-5.5e-5 -2.0437 1.7063-3.75 3.75-3.75zm12.55 0.0497c2.0436 0 3.7003 1.6567 3.7003 3.7003-5.5e-5 2.0436-1.7064 3.75-3.75 3.75s-3.7499-1.7064-3.75-3.75c0-2.0436 1.7561-3.7003 3.7997-3.7003zm-17.55 11.2c2.0436 0 3.75 1.7064 3.75 3.75s-1.7064 3.75-3.75 3.75-3.75-1.7064-3.75-3.75 1.7064-3.75 3.75-3.75zm22.5 0c2.0437 0 3.7501 1.7063 3.75 3.75 0 2.0436-1.7064 3.75-3.75 3.75s-3.7003-1.756-3.7003-3.7996c-5.5e-5 -2.0437 1.6566-3.7004 3.7003-3.7004z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-paste:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m23.75 5h-5s-3.75 0-3.75 3.75h-5c-2.5 0-2.5 2.5-2.5 2.5v26.25c0 2.5 2.5 2.5 2.5 2.5h7.5v-17.5c0-5 5-5 5-5h12.5v-6.25c0-2.5-2.5-2.5-2.5-2.5h-5c0-3.75-3.75-3.75-3.75-3.75zm-5 2.5h5s1.25 0 1.25 1.25-1.25 1.25-1.25 1.25h-5s-1.25 0-1.25-1.25 1.25-1.25 1.25-1.25zm5 13.75s-2.5 0-2.5 2.5v18.75s0 2.5 2.5 2.5h16.25s2.5 0 2.5-2.5v-18.75s0-2.5-2.5-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-pause:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m12.5 7.5s-5 0-5 5v25s0 5 5 5h5s5 0 5-5v-25s0-5-5-5h-5zm20 0c-5 0-5 5-5 5v25c0 5 5 5 5 5h5c5 0 5-5 5-5v-25c0-5-5-5-5-5h-5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-pen:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m33.75 6.25-3.75 3.75 10 10 3.75-3.75s2.5-2.5 0-5l-5-5c-2.5004-2.5-5 0-5 0zm-5 5l-21.25 21.25-1.25 10c0 1.25 0 1.25 1.25 1.25l10-1.25 21.25-21.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-play:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m17.5 41.25c-2.5 1.25-3.75 1.25-5 1.25 0 0-3.75 0-3.75-3.75v-30c0-3.75 3.75-3.75 3.75-3.75 1.25 0 2.5 0 5 1.25l21.25 15s6.25 3.75 0 7.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-plus:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m10 21.25h11.25v-11.25s0-2.5 2.5-2.5h2.5c2.5 0 2.5 2.5 2.5 2.5v11.25h11.25s2.5 0 2.5 2.5v2.5c0 2.5-2.5 2.5-2.5 2.5h-11.25v11.25s0 2.5-2.5 2.5h-2.5c-2.5 0-2.5-2.5-2.5-2.5v-11.25h-11.25s-2.5 0-2.5-2.5v-2.5c0-2.5 2.5-2.5 2.5-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-pointer:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m22.5 31.25 6.875 11.908s0.625 1.0825 1.7075 0.45753l4.3301-2.5c1.0825-0.625 0.45753-1.7075 0.45753-1.7075l-6.875-11.908 8.3702-0.5024c2.7901-0.16747 2.6372-2.9627 0.29006-4.4976l-23.325-15.401c-2.3325-1.5401-2.1651 1.25-2.1651 1.25l1.6747 27.901c0.16747 2.7901 2.5 4.3301 4.0401 1.9976z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-potion:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m17.5 5s-1.25 0-1.25 1.25v1.25s0 1.25 1.25 1.25h1.25v8.75s-10 2.5-10 13.75 10 13.75 10 13.75h12.5s10-2.5 10-13.75-10-13.75-10-13.75v-8.75h1.25c1.25 0 1.25-1.25 1.25-1.25v-1.25s0-1.25-1.25-1.25h-7.5zm5 3.75h5v11.25s10 1.25 10 11.25c0 0.41441-0.02645 0.80711-0.0625 1.1914-7.7056-0.58717-10.355-6.1979-17.438-6.1914-3.6794 0.0034-5.8527 0.91179-7.1152 1.834 1.8277-7.1064 9.6152-8.084 9.6152-8.084z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-presentation:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m5 7.5h-1.25s-1.25 0-1.25 1.25v2.5s0 1.25 1.25 1.25h1.25v20s0 2.5 2.5 2.5h10l-5 5s-1.25 1.25 0 2.5l1.25 1.25s1.25 1.25 2.5 0l1.25-1.25 7.5-7.5 5 5 3.75 3.75s1.25 1.25 2.5 0l1.25-1.25s1.25-1.25 0-2.5l-5-5h10s2.5 0 2.5-2.5v-20h1.25s1.25 0 1.25-1.25v-2.5s0-1.25-1.25-1.25h-18.75v-1.25s0-1.25-1.25-1.25h-2.5s-1.25 0-1.25 1.25v1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-print:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m15 5c-2.5 0-2.5 2.5-2.5 2.5v2.5h25v-2.5s0-2.5-2.5-2.5zm-5 7.5s-5 0-5 5v12.5s0 2.5 2.5 2.5h2.5v-7.5h30v7.5h2.5s2.5 0 2.5-2.5v-12.5s0-5-5-5zm28.75 3.75c1.3807 0 2.5 1.1193 2.5 2.5s-1.1193 2.5-2.5 2.5-2.5-1.1193-2.5-2.5 1.1193-2.5 2.5-2.5zm-26.25 11.25v15s0 2.5 2.5 2.5h20c2.5 0 2.5-2.5 2.5-2.5v-15z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-puzzle:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m20 10c0 2.5 1.25 2.5 1.25 5 0 0 0 1.25-1.25 1.25h-8.75s-2.5 0-2.5 2.5v7.5c0 1.25 1.25 1.25 1.25 1.25 2.5 0 2.5-1.25 5-1.25 0 0 5 0 5 5s-5 5-5 5c-2.5 0-2.5-1.25-5-1.25 0 0-1.25 0-1.25 1.25v6.25s0 2.5 2.5 2.5h27.5c2.5 0 2.5-2.5 2.5-2.5v-6.25c0-1.25-1.25-1.25-1.25-1.25-2.5 0-2.5 1.25-5 1.25 0 0-5 0-5-5s5-5 5-5c2.5 0 2.5 1.25 5 1.25 0 0 1.25 0 1.25-1.25v-7.5s0-2.5-2.5-2.5h-8.75c-1.25 0-1.25-1.25-1.25-1.25 0-2.5 1.25-2.5 1.25-5 0 0 0-5-5-5s-5 5-5 5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-question:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m25 5c-7.5 0-10 2.5-13.75 6.25-1.25 1.25 0 2.5 0 2.5l3.75 3.75s1.25 1.25 2.5 0c2.4362-3.1663 4.1465-3.7483 7.5-3.75 2.5 0 5 1.25 5 3.75s-3.75 3.75-3.75 3.75c-3.75 1.25-6.25 5.7703-6.25 8.75v1.25s0 1.25 1.25 1.25h7.5c1.25 0 1.25-1.25 1.25-1.25v-1.25c0-5 10-5 10-12.5s-7.5-12.5-15-12.5zm0 30c-2.7614 0-5 2.2386-5 5s2.2386 5 5 5 5-2.2386 5-5-2.2386-5-5-5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-quote:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m7.5 7.5s-2.5 0.166-2.5 2.5v13.75s0 2.5 2.5 2.5h5c2.5 0 2.5 2.5 2.5 2.5v1.25c0 5-5 5-5 5h-1.25c-1.25 0-1.25 1.25-1.25 1.25v5s0 1.25 1.25 1.25h1.25s12.5 0 12.5-12.5v-20c0-2.5-2.5-2.5-2.5-2.5zm22.5 0c-2.5 0-2.5 2.5-2.5 2.5v13.75s0 2.5 2.5 2.5h5s2.5 0 2.5 2.5v1.25c0 5-5 5-5 5h-1.25c-1.25 0-1.25 1.25-1.25 1.25v5s0 1.25 1.25 1.25h1.25s12.5 0 12.5-12.5v-20c0-2.5-2.5-2.5-2.5-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-redo:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m35.209 6c-0.6925 0-1.25 0.5575-1.25 1.25v4.2383c-4.108-3.2679-9.64-4.3696-14.771-2.7517-6.164 1.9437-10.566 7.4287-11.129 13.868-0.5633 6.4385 2.8199 12.606 8.5527 15.59 5.5327 2.8802 12.231 2.2573 17.143-1.5234 0.08107-0.0455 0.15849-0.09616 0.23242-0.1582l0.575-0.486c0.63658-0.53416 0.7197-1.4767 0.18555-2.1133l-1.9277-2.2969c-0.53416-0.63658-1.4767-0.7197-2.1133-0.18555l-0.27734 0.23242-0.002-0.0039c-3.1053 2.6056-7.4493 3.0807-11.045 1.209-3.5956-1.8718-5.699-5.704-5.3457-9.7422s3.089-7.4471 6.9551-8.666c3.1154-0.98227 6.4434-0.37653 8.9824 1.5195h-4.7246c-0.6925 0-1.25 0.5575-1.25 1.25v2.5c0 0.6925 0.5575 1.25 1.25 1.25h9.7656c0.064 0.01 0.128 0.02 0.194 0.02h2.5c0.18175 0 0.3523-0.04216 0.50781-0.11133 0.46-0.185 0.783-0.631 0.783-1.159v-2.5c0-0.10532-0.01671-0.2071-0.04102-0.30469v-9.6758c0-0.6925-0.5575-1.25-1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-resize:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m18.75 13.75 2.5-2.5s1.25-1.25 0-2.5-2.5-1.25-2.5-1.25h-7.5s-3.75 0-3.75 3.75v7.5s0 1.25 1.25 2.5 2.5 0 2.5 0l2.5-2.2268 17.5 17.227-2.5 2.5s-1.25 1.25 0 2.5 2.5 1.25 2.5 1.25h7.5s3.75 0 3.75-3.75v-7.5s0-1.25-1.25-2.5-2.5 0-2.5 0l-2.5 2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-rocket:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m41.25 6.25c-18.75 0-26.25 11.25-26.25 11.25-5 0-10 5-10 10 0 0 0 1.25 1.25 1.25 3.75 0 6.25-1.25 6.25-1.25v3.75l6.25 6.25h3.75s-1.25 2.5-1.25 6.25c0 0 0 1.25 1.25 1.25 5 0 10-5 10-10 0 0 11.25-7.5 11.25-26.25 0-2.5 0-2.5-2.5-2.5zm-11.25 10a3.75 3.75 0 0 1 3.75 3.75 3.75 3.75 0 0 1 -3.75 3.75 3.75 3.75 0 0 1 -3.75 -3.75 3.75 3.75 0 0 1 3.75 -3.75zm-20 17.5s-2.5 1.25-2.5 6.25c0 2.5 0 2.5 2.5 2.5 5 0 6.25-2.5 6.25-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-ruler:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m5 15s-2.5 0-2.5 2.5v15s0 2.5 2.5 2.5h40s2.5 0 2.5-2.5v-15s0-2.5-2.5-2.5h-3.75v8.75s0 1.25-1.25 1.25-1.25-1.25-1.25-1.25v-8.75h-5v5s0 1.25-1.25 1.25-1.25-1.25-1.25-1.25v-5h-5v8.75s0 1.25-1.25 1.25-1.25-1.25-1.25-1.25v-8.75h-5v5s0 1.25-1.25 1.25-1.25-1.25-1.25-1.25v-5h-5v8.75s0 1.25-1.25 1.25-1.25-1.25-1.25-1.25v-8.75z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-search-minus:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m20 5c-8.2843 0-15 6.7157-15 15s6.7157 15 15 15c3.1413-0.0045 6.2018-0.99511 8.75-2.832v0.33203s0 1.25 1.25 2.5l8.75 8.75s1.25 1.25 2.5 0l2.5-2.5s1.25-1.25 0-2.5l-8.75-8.75s-1.25-1.25-2.5-1.25h-0.33984c1.8397-2.5472 2.833-5.6079 2.8398-8.75 0-8.2843-6.7157-15-15-15zm0 5c5.5228 0 10 4.4772 10 10s-4.4772 10-10 10-10-4.4772-10-10 4.4772-10 10-10zm-6.25 7.5s-1.25 0-1.25 1.25v2.5s0 1.25 1.25 1.25h12.5s1.25 0 1.25-1.25v-2.5s0-1.25-1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-search-plus:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m20 5a15 15 0 0 0 -15 15 15 15 0 0 0 15 15 15 15 0 0 0 8.75 -2.832v0.33203s0 1.25 1.25 2.5l8.75 8.75s1.25 1.25 2.5 0l2.5-2.5s1.25-1.25 0-2.5l-8.75-8.75s-1.25-1.25-2.5-1.25h-0.33984a15 15 0 0 0 2.8398 -8.75 15 15 0 0 0 -15 -15zm0 5a10 10 0 0 1 10 10 10 10 0 0 1 -10 10 10 10 0 0 1 -10 -10 10 10 0 0 1 10 -10zm-1.25 2.5s-1.25 0-1.25 1.25v3.75h-3.75s-1.25 0-1.25 1.25v2.5s0 1.25 1.25 1.25h3.75v3.75s0 1.25 1.25 1.25h2.5s1.25 0 1.25-1.25v-3.75h3.75s1.25 0 1.25-1.25v-2.5s0-1.25-1.25-1.25h-3.75v-3.75s0-1.25-1.25-1.25h-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-search:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m20 5a15 15 0 0 0 -15 15 15 15 0 0 0 15 15 15 15 0 0 0 8.75 -2.832v0.33203s0 1.25 1.25 2.5l8.75 8.75s1.25 1.25 2.5 0l2.5-2.5s1.25-1.25 0-2.5l-8.75-8.75s-1.25-1.25-2.5-1.25h-0.33984a15 15 0 0 0 2.8398 -8.75 15 15 0 0 0 -15 -15zm0 5a10 10 0 0 1 10 10 10 10 0 0 1 -10 10 10 10 0 0 1 -10 -10 10 10 0 0 1 10 -10z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-send-backward:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m8.75 5s-3.75 0-3.75 3.75v20s0 3.75 3.75 3.75h6.25v-11.25s0-6.25 6.25-6.25h11.25v-6.25s0-3.75-3.75-3.75zm12.5 12.5s-3.75 0-3.75 3.75v20s0 3.75 3.75 3.75h20s3.75 0 3.75-3.75v-20s0-3.75-3.75-3.75zm1.25 5h17.5v17.5h-17.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-server:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m7.5 7.5s-2.5 0-2.5 2.5v5s0 2.5 2.5 2.5h35s2.5 0 2.5-2.5v-5s0-2.5-2.5-2.5zm26.875 3.125c1.0355 0 1.875 0.83947 1.875 1.875s-0.83947 1.875-1.875 1.875-1.875-0.83947-1.875-1.875 0.83947-1.875 1.875-1.875zm6.25 0c1.0355 0 1.875 0.83947 1.875 1.875s-0.83947 1.875-1.875 1.875-1.875-0.83947-1.875-1.875 0.83947-1.875 1.875-1.875zm-33.125 9.375s-2.5 0-2.5 2.5v5s0 2.5 2.5 2.5h35s2.5 0 2.5-2.5v-5s0-2.5-2.5-2.5zm26.875 3.125c1.0355 0 1.875 0.83947 1.875 1.875s-0.83947 1.875-1.875 1.875-1.875-0.83947-1.875-1.875 0.83947-1.875 1.875-1.875zm6.25 0c1.0355 0 1.875 0.83947 1.875 1.875s-0.83947 1.875-1.875 1.875-1.875-0.83947-1.875-1.875 0.83947-1.875 1.875-1.875zm-33.125 9.375s-2.5 0-2.5 2.5v5s0 2.5 2.5 2.5h35s2.5 0 2.5-2.5v-5s0-2.5-2.5-2.5zm26.875 3.125c1.0355 0 1.875 0.83947 1.875 1.875s-0.83947 1.875-1.875 1.875-1.875-0.83947-1.875-1.875 0.83947-1.875 1.875-1.875zm6.25 0c1.0355 0 1.875 0.83947 1.875 1.875s-0.83947 1.875-1.875 1.875-1.875-0.83947-1.875-1.875 0.83947-1.875 1.875-1.875z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-shapes:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m34.803 5.5059c-1.2649 0.08158-1.9688 1.2988-1.9688 1.2988l-7.5 12.99s-0.49894 0.87513-0.31055 1.834c0.24118 2.1172 2.4766 2.1211 2.4766 2.1211h15s2.216-0.0023 2.4746-2.0898c0.19159-0.96113-0.30859-1.8398-0.30859-1.8398l-7.5-12.99s-0.32224-0.5518-0.91797-0.9375l0.001953-0.0019531c-0.07437-0.042938-0.1446-0.072317-0.2168-0.10742-0.11935-0.062065-0.24375-0.11487-0.38086-0.15625-0.30464-0.098608-0.5908-0.13779-0.84961-0.12109zm-27.303 20.744s-2.5 0-2.5 2.5v13.75s0 2.5 2.5 2.5h13.75s2.5 0 2.5-2.5v-13.75s0-2.5-2.5-2.5zm28.75 1.25c-4.8325 0-8.75 3.9175-8.75 8.75s3.9175 8.75 8.75 8.75 8.75-3.9175 8.75-8.75-3.9175-8.75-8.75-8.75z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-share:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m35 5c-4.1421 0-7.5 3.3579-7.5 7.5 0 0.37232 0.0355 0.73598 0.08789 1.0938l-8.3516 5.2207c-1.2058-0.82735-2.6635-1.3145-4.2363-1.3145-4.1421 0-7.5 3.3579-7.5 7.5s3.3579 7.5 7.5 7.5c1.5728 0 3.0306-0.4871 4.2363-1.3145l8.3516 5.2207c-0.05239 0.35777-0.087891 0.72144-0.087891 1.0938 0 4.1421 3.3579 7.5 7.5 7.5s7.5-3.3579 7.5-7.5-3.3579-7.5-7.5-7.5c-1.5728 0-3.0306 0.4871-4.2363 1.3145l-8.3516-5.2207c0.05239-0.35777 0.087891-0.72144 0.087891-1.0938s-0.0355-0.73598-0.08789-1.0938l8.3516-5.2207c1.2058 0.82735 2.6635 1.3145 4.2363 1.3145 4.1421 0 7.5-3.3579 7.5-7.5s-3.3579-7.5-7.5-7.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-shield-check:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m25 5c-3.75 0-15 5-15 5s-2.5 1.25-2.5 2.5c0 27.5 16.25 32.5 17.5 32.5s17.5-5 17.5-32.5c0-1.25-2.5-2.5-2.5-2.5s-11.25-5-15-5zm8.6602 11.951c0.40283-0.036621 0.87109 0.080078 1.3398 0.54883l1.25 1.25c1.25 1.25 0 2.5 0 2.5l-12.5 12.5s-1.25 1.25-2.5 0l-6.25-6.25s-1.25-1.25 0-2.5l1.2676-1.2676c1.2332-1.2332 2.4824 0.017578 2.4824 0.017578l3.75 3.75 10-10s0.48877-0.48779 1.1602-0.54883z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-shield-cross:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m25 5c-3.75 0-15 5-15 5s-2.5 1.25-2.5 2.5c0 27.5 16.25 32.5 17.5 32.5s17.5-5 17.5-32.5c0-1.25-2.5-2.5-2.5-2.5s-11.25-5-15-5zm-7.4062 8.1973c0.66729 0.065129 1.1562 0.55273 1.1562 0.55273l6.25 6.25 6.25-6.25s1.25-1.25 2.5 0l1.25 1.25c1.25 1.25 0 2.5 0 2.5l-6.25 6.25 6.25 6.25s1.25 1.25 0 2.5l-1.25 1.25c-1.25 1.25-2.5 0-2.5 0l-6.25-6.25-6.25 6.25s-1.2492 1.2508-2.4824 0.01758l-1.2676-1.2676c-1.25-1.25 0-2.5 0-2.5l6.25-6.25-6.25-6.25s-1.25-1.25 0-2.5l1.2676-1.2676c0.46246-0.46247 0.9258-0.57424 1.3262-0.53516z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-shield:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m25 5c-3.75 0-15 5-15 5s-2.5 1.25-2.5 2.5c0 27.5 16.25 32.5 17.5 32.5s17.5-5 17.5-32.5c0-1.25-2.5-2.5-2.5-2.5s-11.25-5-15-5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-siimple:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m8.75 7.5c-2.5 0-2.5 2.5-2.5 2.5v17.5c0 7.5 7.5 7.5 7.5 7.5h15s7.5 0 7.5-7.5h5c2.5 0 2.5-2.5 2.5-2.5v-12.5c0-2.5-2.5-2.5-2.5-2.5h-5s0-2.5-2.5-2.5h-12.5v3.75s0 2.5-2.5 2.5-2.5-2.5-2.5-2.5v5s0 2.5-2.5 2.5-2.5-2.5-2.5-2.5v-8.75zm27.5 6.25h2.5c1.25 0 1.25 1.25 1.25 1.25v7.5c0 1.25-1.25 1.25-1.25 1.25h-2.5zm-32.5 23.75s-1.25 0-1.25 1.25c0 3.75 3.75 3.75 3.75 3.75h37.5s3.75 0 3.75-3.75c0-1.25-1.25-1.25-1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-sliders:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m10 6.25c-3.75 0-3.75 3.75-3.75 3.75v30s0 3.75 3.75 3.75h30c3.75 0 3.75-3.75 3.75-3.75v-30s0-3.75-3.75-3.75zm6.25 7.5c1.7835 0.0028 3.4305 0.95542 4.3223 2.5h15.678c1.25 0 1.25 1.25 1.25 1.25v2.5c0 1.25-1.25 1.25-1.25 1.25h-15.676c-0.89211 1.5452-2.54 2.4979-4.3242 2.5-2.7614 0-5-2.2386-5-5s2.2386-5 5-5zm17.5 12.5c2.7614 0 5 2.2386 5 5s-2.2386 5-5 5c-1.8457 0-3.4404-1.0121-4.3066-2.5h-15.693c-1.25 0-1.25-1.25-1.25-1.25v-2.5c0-1.25 1.25-1.25 1.25-1.25h15.693c0.86622-1.4879 2.4609-2.5 4.3066-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-square-half:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m12.5 7.5s-5 0-5 5v25s0 5 5 5h25s5 0 5-5v-25s0-5-5-5zm11.25 5h11.25c2.5 0 2.5 2.5 2.5 2.5v20c0 2.5-2.5 2.5-2.5 2.5h-11.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-square-stroke:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m12.5 7.5s-5 0-5 5v25s0 5 5 5h25s5 0 5-5v-25s0-5-5-5zm2.5 5h20c2.5 0 2.5 2.5 2.5 2.5v20c0 2.5-2.5 2.5-2.5 2.5h-20s-2.5 0-2.5-2.5v-20s0-2.5 2.5-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-square:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m12.5 7.5s-5 0-5 5v25s0 5 5 5h25s5 0 5-5v-25s0-5-5-5h-25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-star:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m24.808 5.0462c-0.50412 0.079853-1.0051 0.26754-1.4503 0.53669-0.2413 0.1462-0.44016 0.353-0.57677 0.59983-1.8004 3.2427-3.3434 6.5621-4.9762 9.774-2.7179 0.34625-5.4348 0.69357-8.1527 1.0397l0.35363-0.0063c-1.1716-0.10935-2.3968 0.10017-3.5154 0.84397-0.55926 0.37189-1.1149 0.93923-1.3662 1.7447-0.25119 0.80553-0.10793 1.7402 0.30312 2.5108 0.063376 0.11792 0.14116 0.22749 0.23155 0.32623 2.4213 2.6641 4.9236 5.2092 7.3401 7.7894-0.48932 2.6143-0.97816 5.2297-1.4672 7.8441l0.03578-0.15152c-0.24431 0.8454-0.61199 2.0895-0.46099 3.4789 0.0755 0.69476 0.31422 1.5106 0.98092 2.1488 0.66672 0.63819 1.6593 0.9053 2.6144 0.84186 0.2037-0.01368 0.40299-0.06589 0.58729-0.15363 3.2007-1.5231 6.2521-3.2332 9.3104-4.8176l8.8851 5.1396-0.0084-0.02316c0.90926 0.56585 1.9144 0.61459 2.8313 0.27149 0.93799-0.35102 1.8743-1.3909 1.8693-2.6434 2.74e-4 -0.064-0.0032-0.12797-0.01056-0.19154-0.46446-3.7632-1.0444-7.4829-1.5724-11.191 1.6892-1.6388 3.3777-3.2778 5.0667-4.9165 0.01501-0.01378 0.02973-0.02779 0.04421-0.0421 0.40591-0.42419 1.5895-1.2981 2.4628-2.4835 0.43668-0.59272 0.8704-1.3548 0.82937-2.3552-0.04103-1.0003-0.69546-1.9595-1.5598-2.5529-0.1832-0.12822-0.39013-0.2155-0.60892-0.25754-3.4789-0.67242-6.9537-1.2393-10.4-1.8481-0.94747-2.1168-1.8963-4.2331-2.8439-6.3498-0.016167-0.037116-0.033732-0.073631-0.052629-0.10944-0.24693-0.45605-0.62464-1.8241-1.3872-3.0539-0.38128-0.61486-0.92901-1.2972-1.8587-1.6312-0.46486-0.16694-0.97358-0.1956-1.4777-0.11576z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-step-backward:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m10 40s0 2.5 2.5 2.5h2.5s2.5 0 2.5-2.5v-13.75l15 15c1.25 1.25 2.5 1.25 3.75 1.25 0 0 3.75 0 3.75-3.75v-27.5c0-3.75-3.75-3.75-3.75-3.75-1.25 0-2.5 0-3.75 1.25l-15 15v-13.75s0-2.5-2.5-2.5h-2.5s-2.5 0-2.5 2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-step-forward:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m40 40s0 2.5-2.5 2.5h-2.5s-2.5 0-2.5-2.5v-13.75l-15 15c-1.25 1.25-2.5 1.25-3.75 1.25 0 0-3.75 0-3.75-3.75v-27.5c0-3.75 3.75-3.75 3.75-3.75 1.25 0 2.5 0 3.75 1.25l15 15v-13.75s0-2.5 2.5-2.5h2.5s2.5 0 2.5 2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-stop:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m12.5 7.5s-5 0-5 5v25s0 5 5 5h25s5 0 5-5v-25s0-5-5-5h-25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-sun:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m24.91 5.7012c-0.67139 0.061035-1.1602 0.54883-1.1602 0.54883l-5 5h-6.25c-1.25 0-1.25 1.25-1.25 1.25v6.25l-5 5c-1.25 1.25 0 2.5 0 2.5l5 5v6.25c0 1.25 1.25 1.25 1.25 1.25h6.25l5 5c1.25 1.25 2.5 0 2.5 0l5-5h6.25c1.25 0 1.25-1.25 1.25-1.25v-6.25l5-5c1.25-1.25 0-2.5 0-2.5l-5-5v-6.25c0-1.25-1.25-1.25-1.25-1.25h-6.25l-5-5c-0.46875-0.46875-0.93701-0.58545-1.3398-0.54883zm0.089844 9.2988a10 10 0 0 1 10 10 10 10 0 0 1-10 10 10 10 0 0 1-10-10 10 10 0 0 1 10-10zm0 3.75a6.25 6.25 0 0 0-6.25 6.25 6.25 6.25 0 0 0 6.25 6.25 6.25 6.25 0 0 0 6.25-6.25 6.25 6.25 0 0 0-6.25-6.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-table:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m8.75 7.5s-3.75 0-3.75 3.75v27.5s0 3.75 3.75 3.75h32.5c3.75 0 3.75-3.75 3.75-3.75v-27.5s0-3.75-3.75-3.75zm1.25 8.75h12.5v8.75h-12.5zm17.5 0h12.5v8.75h-12.5zm-17.5 12.5h12.5v8.75h-12.5zm17.5 0h12.5v8.75h-12.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-tablet:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m11.25 5s-3.75 0-3.75 3.75v32.5c0 3.75 3.75 3.75 3.75 3.75h27.5s3.75 0 3.75-3.75v-32.5s0-3.75-3.75-3.75zm0 3.75h27.5v26.25h-27.5zm13.75 28.75c1.3807 0 2.5 1.1193 2.5 2.5s-1.1193 2.5-2.5 2.5-2.5-1.1193-2.5-2.5 1.1193-2.5 2.5-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-tag:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m30 5s-1.25 0-2.5 1.25l-20 20s-2.5 2.5 0 5l11.25 11.25c2.5 2.5 5 0 5 0l20-20c1.25-1.25 1.25-2.5 1.25-2.5v-11.25s0-3.75-3.75-3.75zm7.5 3.75a3.75 3.75 0 0 1 3.75 3.75 3.75 3.75 0 0 1 -3.75 3.75 3.75 3.75 0 0 1 -3.75 -3.75 3.75 3.75 0 0 1 3.75 -3.75z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-tasks:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m15 7.8125c-0.3125 0-0.625 0.3125-1.25 0.9375l-3.75 3.75-1.25-1.25c-1.25-1.25-1.25-1.25-2.5 0s-1.25 1.25 0 2.5l2.5 2.5c1.25 1.25 1.25 1.25 2.5 0l5-5c1.25-1.25 1.25-1.25 0-2.5-0.625-0.625-0.9375-0.9375-1.25-0.9375zm6.25 2.1875c-1.25 0-1.25 1.25-1.25 1.25v2.5s0 1.25 1.25 1.25h22.5c1.25 0 1.25-1.25 1.25-1.25v-2.5s0-1.25-1.25-1.25h-22.5zm-6.25 10.312c-0.3125 0-0.625 0.3125-1.25 0.9375l-3.75 3.75-1.25-1.25c-1.25-1.25-1.25-1.25-2.5 0s-1.25 1.25 0 2.5l2.5 2.5c1.25 1.25 1.25 1.25 2.5 0l5-5c1.25-1.25 1.25-1.25 0-2.5-0.625-0.625-0.9375-0.9375-1.25-0.9375zm6.25 2.1875c-1.25 0-1.25 1.25-1.25 1.25v2.5s0 1.25 1.25 1.25h22.5c1.25 0 1.25-1.25 1.25-1.25v-2.5s0-1.25-1.25-1.25h-22.5zm-11.25 11.25c-2.0711 0-3.75 1.6789-3.75 3.75s1.6789 3.75 3.75 3.75c2.0711 0 3.75-1.6789 3.75-3.75s-1.6789-3.75-3.75-3.75zm11.25 1.25c-1.25 0-1.25 1.25-1.25 1.25v2.5s0 1.25 1.25 1.25h22.5c1.25 0 1.25-1.25 1.25-1.25v-2.5s0-1.25-1.25-1.25h-22.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-terminal:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m6.25 10s-3.75 0-3.75 3.75v22.5c0 3.75 3.75 3.75 3.75 3.75h37.5s3.75 0 3.75-3.75v-22.5c0-3.75-3.75-3.75-3.75-3.75zm6.6582 6.1387c0.41608 0.03783 0.71875 0.33984 0.71875 0.33984l7.7461 7.7461c0.77466 0.77466 0 1.5508 0 1.5508l-7.7461 7.7461c-0.77466 0.77466-1.5488 0-1.5488 0l-0.77539-0.77539c-0.77466-0.77466 0-1.5488 0-1.5488l6.1973-6.1973-6.1973-6.1973c-0.76142-0.78768 0-1.5488 0-1.5488l0.77539-0.77539c0.2905-0.2905 0.58043-0.36254 0.83008-0.33984zm13.342 13.861h11.25c1.25 0 1.25 1.25 1.25 1.25v1.25c0 1.25-1.25 1.25-1.25 1.25h-11.25c-1.25 0-1.25-1.25-1.25-1.25v-1.25c0-1.25 1.25-1.25 1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-text:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m8.75 5s-1.25 0-1.25 1.25v8.75s0 1.25 1.25 1.25h2.5c1.25 0 1.25-1.25 1.25-1.25v-1.25s0-2.5 2.5-2.5h3.75s2.5 0 2.5 2.5v21.25s0 3.75-3.75 3.75h-1.25s-1.25 0-1.25 1.25v3.75s0 1.25 1.25 1.25h17.5s1.25 0 1.25-1.25v-3.75s0-1.25-1.25-1.25h-1.25s-3.75 0-3.75-3.75v-21.25s0-2.5 2.5-2.5h3.75s2.5 0 2.5 2.5v1.25s0 1.25 1.25 1.25h2.5s1.25 0 1.25-1.25v-8.75s0-1.25-1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-thumbtack:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m29.205 7.2595c-1.7678-1.7678-3.5355 0-3.5355 0l-0.88388 0.88388s-1.7678 1.7678 0 3.5355l2.6516 2.6516-6.1872 4.4194s-4.4194-2.6516-9.7227 2.6517c0 0-0.88388 0.88388 0 1.7678l15.91 15.91c0.88388 0.88388 1.7678 0 1.7678 0 5.3033-5.3033 2.6517-9.7227 2.6517-9.7227l4.4194-6.1872 2.6516 2.6516c1.7678 1.7678 3.5355 0 3.5355 0l0.88388-0.88388s1.7678-1.7678 0-3.5355zm-12.374 24.749s-0.88388-0.88388-1.7678 0c-0.88388 0.88388-7.955 9.7227-7.955 9.7227-0.88388 0.88388 0.88388 2.6516 1.7678 1.7678 0 0 8.8388-7.0711 9.7227-7.955 0.88388-0.88388 0-1.7678 0-1.7678z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-ticket:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m6.25 10s-3.75 0-3.75 3.75v6.25c5 0 5 5 5 5s0 5-5 5v6.25c0 3.75 3.75 3.75 3.75 3.75h37.5s3.75 0 3.75-3.75v-6.25c-5 0-5-5-5-5s0-5 5-5v-6.25c0-3.75-3.75-3.75-3.75-3.75zm25 5h5v5h-5zm0 7.5h5v5h-5zm0 7.5h5v5h-5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-tools:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m13.75 5s-6.25 1.25-6.25 7.5c0 0 0 5 5 6.25l-1.25 20s-1.25 6.25 5 6.25 5-6.25 5-6.25l-1.25-20c5-1.25 5-6.25 5-6.25 0-6.25-6.25-7.5-6.25-7.5v7.5h-5zm18.75 0-2.5 7.5 2.5 2.5v10s-5 0-5 5v10s0 5 5 5h5c5 0 5-5 5-5v-10c0-5-5-5-5-5v-10l2.5-2.5-2.5-7.5zm-16.25 32.5a2.5 2.5 0 0 1 2.5 2.5 2.5 2.5 0 0 1-2.5 2.5 2.5 2.5 0 0 1-2.5-2.5 2.5 2.5 0 0 1 2.5-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-trash:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m22.5 5s-1.25 0-1.25 1.25v1.25h-11.25c-1.25 0-1.25 1.25-1.25 1.25v2.5c0 1.25 1.25 1.25 1.25 1.25h30c1.25 0 1.25-1.25 1.25-1.25v-2.5s0-1.25-1.25-1.25h-11.25v-1.25c0-1.25-1.25-1.25-1.25-1.25zm-10 10v26.25s0 3.75 3.75 3.75h17.5c3.75 0 3.75-3.75 3.75-3.75v-26.25zm6.25 5h2.5s1.25 0 1.25 1.25v17.5s0 1.25-1.25 1.25h-2.5s-1.25 0-1.25-1.25v-17.5c0-1.25 1.25-1.25 1.25-1.25zm10 0h2.5s1.25 0 1.25 1.25v17.5c0 1.25-1.25 1.25-1.25 1.25h-2.5s-1.25 0-1.25-1.25v-17.5c0-1.25 1.25-1.25 1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-trophy:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m16.25 6.25s-1.25 0-1.25 1.25v2.5h-8.75c-1.25 0-1.25 1.25-1.25 1.25v2.5c0 10 10 10 10 10 0 3.75 3.75 7.5 7.5 7.5v7.5h-2.5c-3.75 0-3.75 3.75-3.75 3.75s0 1.25 1.25 1.25h15c1.25 0 1.25-1.25 1.25-1.25s0-3.75-3.75-3.75h-2.5v-7.5c3.75 0 7.5-3.75 7.5-7.5 0 0 10 0 10-10v-2.5s0-1.25-1.25-1.25h-8.75v-2.5c0-1.25-1.25-1.25-1.25-1.25zm-7.5 7.5h6.25v6.25s-6.25 0-6.25-6.25zm26.25 0h6.25c0 6.25-6.25 6.25-6.25 6.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-underline:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m13.75 7.5s-1.25 0-1.25 1.25v13.75s0 12.5 12.5 12.5 12.5-12.5 12.5-12.5v-13.75c0-1.25-1.25-1.25-1.25-1.25h-2.5s-1.25 0-1.25 1.25v13.75s0 7.5-7.5 7.5-7.5-7.5-7.5-7.5v-13.75c0-1.25-1.25-1.25-1.25-1.25h-2.5zm-5 30c-1.25 0-1.25 1.25-1.25 1.25v2.5c0 1.25 1.25 1.25 1.25 1.25h32.5c1.25 0 1.25-1.25 1.25-1.25v-2.5c0-1.25-1.25-1.25-1.25-1.25h-32.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-undo:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m12.791 6c0.6925 0 1.25 0.5575 1.25 1.25v4.2383c4.108-3.2679 9.64-4.3696 14.771-2.7517 6.164 1.9435 10.566 7.4287 11.129 13.867 0.5633 6.4385-2.8199 12.606-8.5527 15.59-5.5327 2.8802-12.231 2.2573-17.143-1.5234-0.08107-0.0455-0.15849-0.09616-0.23242-0.1582l-0.575-0.485c-0.63658-0.53416-0.7197-1.4767-0.18555-2.1133l1.9277-2.2969c0.53416-0.63658 1.4767-0.7197 2.1133-0.18555l0.27734 0.23242 0.002-0.0039c3.1053 2.6056 7.4493 3.0807 11.045 1.209 3.5956-1.8718 5.699-5.704 5.3457-9.7422s-3.089-7.4471-6.9551-8.666c-3.1154-0.98227-6.4434-0.37653-8.9824 1.5195h4.7246c0.6925 0 1.25 0.5575 1.25 1.25v2.5c0 0.6925-0.5575 1.25-1.25 1.25h-9.7656c-0.064 0.01-0.128 0.02-0.194 0.02h-2.5c-0.182 0-0.3523-0.042-0.5078-0.111-0.4598-0.185-0.7832-0.631-0.7832-1.159v-2.5c0-0.10532 0.01671-0.2071 0.04102-0.30469v-9.6758c0-0.6925 0.5575-1.25 1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-unlock:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m25 22.5h-17.5s-5 0-5 5v12.5c0 5 5 5 5 5h22.5s5 0 5-5v-12.5c0-5-5-5-5-5v-6.25s0-6.25 6.25-6.25 6.25 6.25 6.25 6.25v7.5c0 1.25 1.25 1.25 1.25 1.25h2.5s1.25 0 1.25-1.25v-7.5s0-11.25-11.25-11.25-11.25 11.25-11.25 11.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-upload:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m22.5 33.75c-2.5 0-2.5-2.5-2.5-2.5v-10h-5c-3.75 0-3.75-2.5-3.75-3.75s1.25-2.5 1.25-2.5l8.75-8.75c3.75-3.75 7.5 0 7.5 0l8.75 8.75s1.25 1.25 1.25 2.5 0 3.75-3.75 3.75h-5v10c0 2.5-2.5 2.5-2.5 2.5zm-15 11.25s-2.5 0-2.5-2.5v-3.75s0-2.5 2.5-2.5h35s2.5 0 2.5 2.5v3.75s0 2.5-2.5 2.5zm33.125-2.5c1.0355 0 1.875-0.83947 1.875-1.875s-0.83947-1.875-1.875-1.875-1.875 0.83947-1.875 1.875 0.83947 1.875 1.875 1.875z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-user-minus:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m17.5 5c-7.5 0-10 5-10 11.25s5 11.25 10 11.25c5.9997-0.2207 10-5 10-11.25s-2.5-11.25-10-11.25zm16.25 15s-1.25 0-1.25 1.25v2.5s0 1.25 1.25 1.25h15s1.25 0 1.25-1.25v-2.5s0-1.25-1.25-1.25zm-23.75 7.5s-10 5-10 10v5s0 2.5 2.5 2.5h30c2.5 0 2.5-2.5 2.5-2.5v-5c0-5-10-10-10-10s-2.5 2.5-7.5 2.5-7.5-2.5-7.5-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-user-plus:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m17.5 5c-7.5 0-10 5-10 11.25s5 11.25 10 11.25c5.9997-0.2207 10-5 10-11.25s-2.5-11.25-10-11.25zm22.5 8.75s-1.25 0-1.25 1.25v5h-5s-1.25 0-1.25 1.25v2.5s0 1.25 1.25 1.25h5v5s0 1.25 1.25 1.25h2.5s1.25 0 1.25-1.25v-5h5s1.25 0 1.25-1.25v-2.5s0-1.25-1.25-1.25h-5v-5s0-1.25-1.25-1.25h-2.5zm-30 13.75s-10 5-10 10v5s0 2.5 2.5 2.5h30c2.5 0 2.5-2.5 2.5-2.5v-5c0-5-10-10-10-10s-2.5 2.5-7.5 2.5-7.5-2.5-7.5-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-user:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m42.5 42.5s0 2.5-2.5 2.5h-30c-2.5 0-2.5-2.5-2.5-2.5v-5c0-5 10-10 10-10s2.5 2.5 7.5 2.5 7.5-2.5 7.5-2.5 10 5 10 10zm-17.5-15c-5 0-10-5-10-11.25s2.5-11.25 10-11.25 10 5 10 11.25-4.0003 11.029-10 11.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-vector:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m20 7.5s-2.5 0-2.5 2.5v2.5h-6.25c-0.70373-1.4739-2.1953-2.5-3.9375-2.5-2.4162 0-4.375 1.9588-4.375 4.375 0 2.4162 1.9588 4.375 4.375 4.375 1.7422 0 3.2338-1.0261 3.9375-2.5h4.1309c-4.1607 2.1562-8.2541 6.1801-8.998 13.75h-1.3828s-2.5 0-2.5 2.5v7.5c0 2.5 2.5 2.5 2.5 2.5h7.5s2.5 0 2.5-2.5v-7.5s0-2.5-2.5-2.5h-1.082c0.68191-4.9219 3.3682-7.6907 6.1738-9.248 0.44524 1.7432 2.4082 1.748 2.4082 1.748h10s1.963-0.0048 2.4082-1.748c2.8057 1.5573 5.4919 4.3261 6.1738 9.248h-1.082s-2.5 0-2.5 2.5v7.5c0 2.5 2.5 2.5 2.5 2.5h7.5s2.5 0 2.5-2.5v-7.5s0-2.5-2.5-2.5h-1.3828c-0.74395-7.5699-4.8374-11.594-8.998-13.75h3.7559c0.70373 1.4739 2.1953 2.5 3.9375 2.5 2.4162 0 4.375-1.9588 4.375-4.375 0-2.4162-1.9588-4.375-4.375-4.375-1.7422 0-3.2338 1.0261-3.9375 2.5h-5.875v-2.5s0-2.5-2.5-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-visible:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m25 11.25c-12.5 0-22.5 12.5-22.5 12.5-1.25 1.25 0 2.5 0 2.5s10 12.5 22.5 12.5 22.5-12.5 22.5-12.5 1.25-1.25 0-2.5c0 0-10-12.5-22.5-12.5zm0 3.75a10 10 0 0 1 10 10 10 10 0 0 1-10 10 10 10 0 0 1-10-10 10 10 0 0 1 10-10zm0 3.75a6.25 6.25 0 0 0-6.25 6.25 6.25 6.25 0 0 0 6.25 6.25 6.25 6.25 0 0 0 6.25-6.25 6.25 6.25 0 0 0-6.25-6.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-volume-down:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m23.75 10c-1.25 0-2.5 1.25-2.5 1.25l-6.25 6.25h-7.5c-2.5 0-2.5 2.5-2.5 2.5v10c0 2.5 2.5 2.5 2.5 2.5h7.5l6.25 6.25s1.25 1.25 2.5 1.25 1.25-1.25 1.25-1.25v-27.5c0-1.25-1.25-1.25-1.25-1.25zm6.541 8.4336c-1.1221 2.82e-4 -1.6757 1.3643-0.87109 2.1465 1.1724 1.1724 1.8301 2.7618 1.8301 4.4199s-0.65764 3.2475-1.8301 4.4199c-1.2271 1.1781 0.58944 2.9946 1.7676 1.7676 1.6406-1.6406 2.5625-3.8673 2.5625-6.1875s-0.9219-4.5469-2.5625-6.1875c-0.23538-0.24222-0.55874-0.37889-0.89648-0.37891z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-volume-mute:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m23.75 10c-1.25 0-2.5 1.25-2.5 1.25l-6.25 6.25h-7.5c-2.5 0-2.5 2.5-2.5 2.5v10c0 2.5 2.5 2.5 2.5 2.5h7.5l6.25 6.25s1.25 1.25 2.5 1.25 1.25-1.25 1.25-1.25v-27.5c0-1.25-1.25-1.25-1.25-1.25z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-volume-up:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m23.75 10c-1.25 0-2.5 1.25-2.5 1.25l-6.25 6.25h-7.5c-2.5 0-2.5 2.5-2.5 2.5v10c0 2.5 2.5 2.5 2.5 2.5h7.5l6.25 6.25s1.25 1.25 2.5 1.25 1.25-1.25 1.25-1.25v-27.5c0-1.25-1.25-1.25-1.25-1.25zm13.611 1.3633a1.2501 1.2501 0 0 0 -0.87109 2.1465c3.0478 3.0478 4.7598 7.18 4.7598 11.49s-1.712 8.4424-4.7598 11.49a1.2501 1.2501 0 1 0 1.7676 1.7676c3.516-3.516 5.4922-8.2855 5.4922-13.258s-1.9762-9.7418-5.4922-13.258a1.2501 1.2501 0 0 0 -0.89648 -0.37891zm-3.5352 3.5352a1.2501 1.2501 0 0 0 -0.87109 2.1465c2.1101 2.1101 3.2949 4.9709 3.2949 7.9551s-1.1848 5.845-3.2949 7.9551a1.2501 1.2501 0 1 0 1.7676 1.7676c2.5783-2.5783 4.0273-6.0764 4.0273-9.7227s-1.4491-7.1444-4.0273-9.7227a1.2501 1.2501 0 0 0 -0.89648 -0.37891zm-3.5352 3.5352a1.2501 1.2501 0 0 0 -0.87109 2.1465c1.1724 1.1724 1.8301 2.7618 1.8301 4.4199s-0.65764 3.2475-1.8301 4.4199a1.2501 1.2501 0 1 0 1.7676 1.7676c1.6406-1.6406 2.5625-3.8673 2.5625-6.1875s-0.9219-4.5469-2.5625-6.1875a1.2501 1.2501 0 0 0 -0.89648 -0.37891z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-wallet:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m10 10s-5 0-5 5v20s0 5 5 5h28.75s3.5894-0.0034 3.75-3.75v-2.5h-10c-3.75 0-3.75-3.75-3.75-3.75v-10s0-3.75 3.75-3.75h10v-2.5s0-3.75-3.75-3.75zm25 10s-2.5 0-2.5 2.5v5s0 2.5 2.5 2.5h7.5s2.5 0 2.5-2.5v-5s0-2.5-2.5-2.5zm2.5 2.5c1.3807 0 2.5 1.1193 2.5 2.5s-1.1193 2.5-2.5 2.5-2.5-1.1193-2.5-2.5 1.1193-2.5 2.5-2.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}.icon-window:before{--sii-icon:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' width='1em' height='1em'%3E%3Cpath fill='currentColor' d='m8.75 7.5s-3.75 0-3.75 3.75v27.5s0 3.75 3.75 3.75h32.5s3.75 0 3.75-3.75v-27.5s0-3.75-3.75-3.75zm2.5 3.75a2.5 2.5 0 0 1 2.5 2.5 2.5 2.5 0 0 1-2.5 2.5 2.5 2.5 0 0 1-2.5-2.5 2.5 2.5 0 0 1 2.5-2.5zm6.25 0c1.3807 0 2.5 1.1193 2.5 2.5s-1.1193 2.5-2.5 2.5-2.5-1.1193-2.5-2.5 1.1193-2.5 2.5-2.5zm6.25 0c1.3807 0 2.5 1.1193 2.5 2.5s-1.1193 2.5-2.5 2.5-2.5-1.1193-2.5-2.5 1.1193-2.5 2.5-2.5zm-15 8.75h32.5v18.75h-32.5z'/%3E%3C/svg%3E") no-repeat;-webkit-mask:var(--sii-icon) no-repeat;mask:var(--sii-icon) no-repeat;mask-size:100% 100%;-webkit-mask:var(--sii-icon) no-repeat;-webkit-mask-size:100% 100%}
\ No newline at end of file
--- a/themes/siimple/static/siimple.min.css	Sat Jun 18 17:32:09 2022 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,8 +0,0 @@
-@charset "UTF-8";/*!
- * @name         siimple 3.3.1
- * @description  Minimal CSS framework for flat and clean designs.
- * @homepage     https://www.siimple.xyz/
- * @repository   https://github.com/siimple/siimple
- * @bugs         https://github.com/siimple/siimple/issues
- * @license      MIT
-**/@import url(https://fonts.googleapis.com/css?family=Roboto:400,700);html{font-family:Roboto,sans-serif;font-weight:400;font-size:16px;color:#546778;font-smooth:antialiased;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility}body{margin:0}.siimple-layout{display:block;overflow-x:hidden;width:100%;height:100%;font-family:Roboto,sans-serif;font-size:16px;color:#546778;font-weight:400}.siimple-layout--left{float:left}.siimple-layout--right{float:right}.siimple-brand{font-family:Montserrat,Roboto,sans-serif}.siimple-blockquote{display:block;color:#879aab;font-size:16px;line-height:24px;border-left:4px solid #879aab;padding-top:5px;padding-bottom:5px;padding-right:10px;padding-left:20px;margin-bottom:20px;margin-left:0;margin-right:0}.siimple-code{color:#ee675d;text-decoration:none;font-size:13px;font-weight:600;background-color:#eef2f7;border-radius:3px;padding-top:2px;padding-bottom:2px;padding-left:5px;padding-right:5px}.siimple-code--dark{background-color:#546778!important;color:#fff}.siimple-h1{display:block;font-size:40px;font-weight:600;line-height:51px;color:#546778;padding:0;margin-bottom:.5em}.siimple-h1:not(:first-child){margin-top:30px}.siimple-h2{display:block;font-size:32px;font-weight:600;line-height:40px;color:#546778;padding:0;margin-bottom:.5em}.siimple-h2:not(:first-child){margin-top:30px}.siimple-h3{display:block;font-size:28px;font-weight:600;line-height:29px;color:#546778;padding:0;margin-bottom:.5em}.siimple-h3:not(:first-child){margin-top:30px}.siimple-h4{display:block;font-size:24px;font-weight:600;line-height:25px;color:#546778;padding:0;margin-bottom:.5em}.siimple-h4:not(:first-child){margin-top:30px}.siimple-h5{display:block;font-size:20px;font-weight:600;line-height:22px;color:#546778;padding:0;margin-bottom:.5em}.siimple-h5:not(:first-child){margin-top:30px}.siimple-h6{display:block;font-size:16px;font-weight:600;line-height:20px;color:#546778;padding:0;margin-bottom:.5em}.siimple-h6:not(:first-child){margin-top:30px}.siimple-link{color:#4e91e4;font-weight:600;text-decoration:none;transition:color .3s;cursor:pointer}.siimple-link:hover{color:#1b5eb1}.siimple-p,.siimple-paragraph{display:block;line-height:24px;font-size:16px;margin-top:0;margin-bottom:20px}.siimple-p--lead,.siimple-paragraph--lead{font-size:20px;line-height:30px}.siimple-pre{display:block;overflow-x:auto;width:calc(100% - 2 * 15px);color:#546778;line-height:22px;font-size:14px;background-color:#eef2f7;border-radius:5px;padding:15px;margin-bottom:20px;margin-top:0}.siimple-pre--dark{background-color:#546778!important;color:#fff}.siimple-small{font-size:13px;color:#879aab}.siimple-btn{display:inline-block;transition:background-color .3s;cursor:pointer;line-height:24px;text-align:center;text-decoration:none;font-size:16px;padding-left:15px;padding-right:15px;padding-top:5px;padding-bottom:5px;border-radius:5px;border:0;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none}.siimple-btn:hover{text-decoration:none;background-color:#eef2f7}.siimple-btn.siimple-btn--primary{background-color:#4e91e4;color:#fff}.siimple-btn.siimple-btn--primary:hover{background-color:#1b5eb1}.siimple-btn.siimple-btn--success{background-color:#4acf7f;color:#fff}.siimple-btn.siimple-btn--success:hover{background-color:#268d4f}.siimple-btn.siimple-btn--warning{background-color:#fbc850;color:#fff}.siimple-btn.siimple-btn--warning:hover{background-color:#e09f05}.siimple-btn.siimple-btn--error{background-color:#ee675d;color:#fff}.siimple-btn.siimple-btn--error:hover{background-color:#cf2316}.siimple-btn.siimple-btn--dark{background-color:#546778;color:#fff}.siimple-btn.siimple-btn--dark:hover{background-color:#2a343c}.siimple-btn.siimple-btn--light{background-color:#dde5ee;color:#546778}.siimple-btn.siimple-btn--light:hover{background-color:#cbd8e6}.siimple-btn.siimple-btn--navy{background-color:#546778;color:#fff}.siimple-btn.siimple-btn--green{background-color:#93d260;color:#fff}.siimple-btn.siimple-btn--teal{background-color:#60d2b6;color:#fff}.siimple-btn.siimple-btn--blue{background-color:#4e91e4;color:#fff}.siimple-btn.siimple-btn--purple{background-color:#ac94e8;color:#fff}.siimple-btn.siimple-btn--pink{background-color:#e77eb8;color:#fff}.siimple-btn.siimple-btn--red{background-color:#ee675d;color:#fff}.siimple-btn.siimple-btn--orange{background-color:#f78055;color:#fff}.siimple-btn.siimple-btn--yellow{background-color:#fbc850;color:#fff}.siimple-btn.siimple-btn--grey{background-color:#dde5ee;color:#546778}.siimple-btn--disabled{opacity:.6!important;cursor:not-allowed!important}.siimple-btn--small{padding-left:10px;padding-right:10px;padding-top:4px;padding-bottom:4px;font-size:12px;line-height:16px}.siimple-btn--big{padding-left:20px;padding-right:20px;padding-top:9px;padding-bottom:9px;font-size:20px;line-height:30px}.siimple-btn--fluid{width:100%;padding-left:0!important;padding-right:0!important}.siimple-btn--rounded{border-radius:50px!important}.siimple-btn-group{display:inline-block}.siimple-btn-group>.siimple-btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0;margin-left:-1px}.siimple-btn-group>.siimple-btn:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0;margin-right:-2px}.siimple-close{display:inline-block;width:20px;height:20px;cursor:pointer;transition:background-color .3s;position:relative;border-radius:100px;background-color:rgba(84,103,120,.3)}.siimple-close:after,.siimple-close:before{content:"";display:block;width:12px;height:2px;position:absolute;top:9px;left:4px;background-color:#fff}.siimple-close:after{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.siimple-close:before{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.siimple-close:hover{background-color:rgba(84,103,120,.5)}.siimple-rule{display:block;height:2px;background-color:#dde5ee;padding:0;margin-top:15px;margin-bottom:15px;border:0}.siimple-rule:first-child{margin-top:0!important}.siimple-rule:last-child{margin-bottom:0!important}@-webkit-keyframes siimple-spinner-animation{50%{background-color:transparent}}@keyframes siimple-spinner-animation{50%{background-color:transparent}}.siimple-spinner{width:10px;height:10px;content:"";-webkit-animation:siimple-spinner-animation 1s infinite ease-in-out;animation:siimple-spinner-animation 1s infinite ease-in-out;-webkit-animation-fill-mode:both;animation-fill-mode:both;border-radius:100px;display:block;text-indent:-9999em;font-size:10px;position:relative;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-animation-delay:.33s;animation-delay:.33s;margin-left:auto;margin-right:auto;margin-top:0}.siimple-spinner:before{width:10px;height:10px;content:"";-webkit-animation:siimple-spinner-animation 1s infinite ease-in-out;animation:siimple-spinner-animation 1s infinite ease-in-out;-webkit-animation-fill-mode:both;animation-fill-mode:both;border-radius:100px;position:absolute;left:calc(15px * -1);top:0}.siimple-spinner:after{width:10px;height:10px;content:"";-webkit-animation:siimple-spinner-animation 1s infinite ease-in-out;animation:siimple-spinner-animation 1s infinite ease-in-out;-webkit-animation-fill-mode:both;animation-fill-mode:both;border-radius:100px;-webkit-animation-delay:.66s;animation-delay:.66s;position:absolute;left:15px;top:0}.siimple-spinner.siimple-spinner--primary,.siimple-spinner.siimple-spinner--primary:after,.siimple-spinner.siimple-spinner--primary:before{background-color:#4e91e4}.siimple-spinner.siimple-spinner--success,.siimple-spinner.siimple-spinner--success:after,.siimple-spinner.siimple-spinner--success:before{background-color:#4acf7f}.siimple-spinner.siimple-spinner--warning,.siimple-spinner.siimple-spinner--warning:after,.siimple-spinner.siimple-spinner--warning:before{background-color:#fbc850}.siimple-spinner.siimple-spinner--error,.siimple-spinner.siimple-spinner--error:after,.siimple-spinner.siimple-spinner--error:before{background-color:#ee675d}.siimple-spinner.siimple-spinner--dark,.siimple-spinner.siimple-spinner--dark:after,.siimple-spinner.siimple-spinner--dark:before{background-color:#546778}.siimple-spinner.siimple-spinner--light,.siimple-spinner.siimple-spinner--light:after,.siimple-spinner.siimple-spinner--light:before{background-color:#dde5ee}.siimple-spinner.siimple-spinner--navy,.siimple-spinner.siimple-spinner--navy:after,.siimple-spinner.siimple-spinner--navy:before{background-color:#546778}.siimple-spinner.siimple-spinner--green,.siimple-spinner.siimple-spinner--green:after,.siimple-spinner.siimple-spinner--green:before{background-color:#93d260}.siimple-spinner.siimple-spinner--teal,.siimple-spinner.siimple-spinner--teal:after,.siimple-spinner.siimple-spinner--teal:before{background-color:#60d2b6}.siimple-spinner.siimple-spinner--blue,.siimple-spinner.siimple-spinner--blue:after,.siimple-spinner.siimple-spinner--blue:before{background-color:#4e91e4}.siimple-spinner.siimple-spinner--purple,.siimple-spinner.siimple-spinner--purple:after,.siimple-spinner.siimple-spinner--purple:before{background-color:#ac94e8}.siimple-spinner.siimple-spinner--pink,.siimple-spinner.siimple-spinner--pink:after,.siimple-spinner.siimple-spinner--pink:before{background-color:#e77eb8}.siimple-spinner.siimple-spinner--red,.siimple-spinner.siimple-spinner--red:after,.siimple-spinner.siimple-spinner--red:before{background-color:#ee675d}.siimple-spinner.siimple-spinner--orange,.siimple-spinner.siimple-spinner--orange:after,.siimple-spinner.siimple-spinner--orange:before{background-color:#f78055}.siimple-spinner.siimple-spinner--yellow,.siimple-spinner.siimple-spinner--yellow:after,.siimple-spinner.siimple-spinner--yellow:before{background-color:#fbc850}.siimple-spinner.siimple-spinner--grey,.siimple-spinner.siimple-spinner--grey:after,.siimple-spinner.siimple-spinner--grey:before{background-color:#dde5ee}.siimple-spinner--small,.siimple-spinner--small:after,.siimple-spinner--small:before{width:8px!important;height:8px!important}.siimple-spinner--small:before{left:calc(13px * -1)!important}.siimple-spinner--small:after{left:13px!important}.siimple-spinner--large,.siimple-spinner--large:after,.siimple-spinner--large:before{width:15px!important;height:15px!important}.siimple-spinner--large:before{left:calc(20px * -1)!important}.siimple-spinner--large:after{left:20px!important}.siimple-tag{display:inline-block;font-size:11px;font-weight:700;text-decoration:none;line-height:19px;border-radius:4px;padding-left:8px;padding-right:8px;vertical-align:text-top}.siimple-tag--rounded{border-radius:15px}.siimple-tag.siimple-tag--primary{background-color:#4e91e4;color:#fff}.siimple-tag.siimple-tag--success{background-color:#4acf7f;color:#fff}.siimple-tag.siimple-tag--warning{background-color:#fbc850;color:#fff}.siimple-tag.siimple-tag--error{background-color:#ee675d;color:#fff}.siimple-tag.siimple-tag--dark{background-color:#546778;color:#fff}.siimple-tag.siimple-tag--light{background-color:#dde5ee;color:#546778}.siimple-tag.siimple-tag--navy{background-color:#546778;color:#fff}.siimple-tag.siimple-tag--green{background-color:#93d260;color:#fff}.siimple-tag.siimple-tag--teal{background-color:#60d2b6;color:#fff}.siimple-tag.siimple-tag--blue{background-color:#4e91e4;color:#fff}.siimple-tag.siimple-tag--purple{background-color:#ac94e8;color:#fff}.siimple-tag.siimple-tag--pink{background-color:#e77eb8;color:#fff}.siimple-tag.siimple-tag--red{background-color:#ee675d;color:#fff}.siimple-tag.siimple-tag--orange{background-color:#f78055;color:#fff}.siimple-tag.siimple-tag--yellow{background-color:#fbc850;color:#fff}.siimple-tag.siimple-tag--grey{background-color:#dde5ee;color:#546778}.siimple-tip{display:block;position:relative;width:calc(100% - 25px - 20px - 5px);border-left-style:solid;border-left-width:5px;border-radius:5px;padding-top:10px;padding-right:20px!important;padding-bottom:10px;padding-left:25px!important;margin-bottom:20px;background-color:#eef2f7;font-size:16px;color:#546778;line-height:24px}.siimple-tip::before{position:absolute;top:10px;left:-12px;width:20px;height:20px;border-radius:100px;color:#fff;text-align:center;line-height:20px}.siimple-tip.siimple-tip--primary{border-left-color:#4e91e4}.siimple-tip.siimple-tip--primary::before{background-color:#4e91e4}.siimple-tip.siimple-tip--success{border-left-color:#4acf7f}.siimple-tip.siimple-tip--success::before{background-color:#4acf7f}.siimple-tip.siimple-tip--warning{border-left-color:#fbc850}.siimple-tip.siimple-tip--warning::before{background-color:#fbc850}.siimple-tip.siimple-tip--error{border-left-color:#ee675d}.siimple-tip.siimple-tip--error::before{background-color:#ee675d}.siimple-tip.siimple-tip--dark{border-left-color:#546778}.siimple-tip.siimple-tip--dark::before{background-color:#546778}.siimple-tip.siimple-tip--light{border-left-color:#dde5ee}.siimple-tip.siimple-tip--light::before{background-color:#dde5ee}.siimple-tip.siimple-tip--navy{border-left-color:#546778}.siimple-tip.siimple-tip--navy::before{background-color:#546778}.siimple-tip.siimple-tip--green{border-left-color:#93d260}.siimple-tip.siimple-tip--green::before{background-color:#93d260}.siimple-tip.siimple-tip--teal{border-left-color:#60d2b6}.siimple-tip.siimple-tip--teal::before{background-color:#60d2b6}.siimple-tip.siimple-tip--blue{border-left-color:#4e91e4}.siimple-tip.siimple-tip--blue::before{background-color:#4e91e4}.siimple-tip.siimple-tip--purple{border-left-color:#ac94e8}.siimple-tip.siimple-tip--purple::before{background-color:#ac94e8}.siimple-tip.siimple-tip--pink{border-left-color:#e77eb8}.siimple-tip.siimple-tip--pink::before{background-color:#e77eb8}.siimple-tip.siimple-tip--red{border-left-color:#ee675d}.siimple-tip.siimple-tip--red::before{background-color:#ee675d}.siimple-tip.siimple-tip--orange{border-left-color:#f78055}.siimple-tip.siimple-tip--orange::before{background-color:#f78055}.siimple-tip.siimple-tip--yellow{border-left-color:#fbc850}.siimple-tip.siimple-tip--yellow::before{background-color:#fbc850}.siimple-tip.siimple-tip--grey{border-left-color:#dde5ee}.siimple-tip.siimple-tip--grey::before{background-color:#dde5ee}.siimple-tip--exclamation::before{content:"!"}.siimple-tip--question::before{content:"?"}.siimple-tip--heart::before{content:"❤"}.siimple-alert{display:block;width:calc(100% - 15px - 30px);line-height:24px;font-size:16px;position:relative;border-radius:5px;background-color:#eef2f7;color:#546778;padding-top:10px;padding-right:30px;padding-bottom:10px;padding-left:15px;margin-bottom:20px}.siimple-alert-title{font-size:19px;font-weight:700;line-height:26px}.siimple-alert-close{display:block;position:absolute;top:10px;right:10px;width:16px;height:16px;cursor:pointer;opacity:.6;transition:opacity .3s}.siimple-alert-close:hover{opacity:1}.siimple-alert-close::after,.siimple-alert-close::before{content:"";width:16px;height:3px;background-color:#546778;position:absolute;border-radius:1px;top:6px}.siimple-alert-close::before{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.siimple-alert-close::after{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.siimple-alert.siimple-alert--primary{background-color:#a7c8f2;color:#1b5eb1}.siimple-alert--primary .siimple-alert-close::after,.siimple-alert--primary .siimple-alert-close::before{background-color:#1b5eb1}.siimple-alert.siimple-alert--success{background-color:#9be4b8;color:#268d4f}.siimple-alert--success .siimple-alert-close::after,.siimple-alert--success .siimple-alert-close::before{background-color:#268d4f}.siimple-alert.siimple-alert--warning{background-color:#fde7b4;color:#e09f05}.siimple-alert--warning .siimple-alert-close::after,.siimple-alert--warning .siimple-alert-close::before{background-color:#e09f05}.siimple-alert.siimple-alert--error{background-color:#f8beb9;color:#cf2316}.siimple-alert--error .siimple-alert-close::after,.siimple-alert--error .siimple-alert-close::before{background-color:#cf2316}.siimple-alert.siimple-alert--dark{background-color:#879aab;color:#2a343c}.siimple-alert--dark .siimple-alert-close::after,.siimple-alert--dark .siimple-alert-close::before{background-color:#2a343c}.siimple-alert.siimple-alert--light{background-color:#eef2f7;color:#cbd8e6}.siimple-alert--light .siimple-alert-close::after,.siimple-alert--light .siimple-alert-close::before{background-color:#cbd8e6}.siimple-alert.siimple-alert--navy{background-color:#788ea1;color:#34414b}.siimple-alert.siimple-alert--green{background-color:#bce39c;color:#6cb332}.siimple-alert.siimple-alert--teal{background-color:#9ce3d1;color:#32b393}.siimple-alert.siimple-alert--blue{background-color:#90bbee;color:#1e6ac8}.siimple-alert.siimple-alert--purple{background-color:#ded5f6;color:#7c57db}.siimple-alert.siimple-alert--pink{background-color:#f3bedb;color:#db3d94}.siimple-alert.siimple-alert--red{background-color:#f5a8a3;color:#e72618}.siimple-alert.siimple-alert--orange{background-color:#fab69e;color:#f4490b}.siimple-alert.siimple-alert--yellow{background-color:#fde09b;color:#fab005}.siimple-alert.siimple-alert--grey{background-color:#eef2f7;color:#cbd8e6}.siimple-alert .siimple-close{position:absolute!important;right:5px!important;top:5px!important}.siimple-breadcrumb{display:block;height:24px;padding-top:10px;padding-bottom:10px;padding-left:15px;padding-right:15px;margin-bottom:20px;background-color:#eef2f7;border-radius:5px;border:0}.siimple-breadcrumb-crumb,.siimple-breadcrumb-item{display:inline-block;float:left;position:relative;height:24px;line-height:24px;font-size:14px;font-weight:600;text-decoration:none;color:#4e91e4;transition:color .3s;cursor:pointer}.siimple-breadcrumb-crumb:not(:first-of-type),.siimple-breadcrumb-item:not(:first-of-type){padding-left:8px}.siimple-breadcrumb-crumb:hover,.siimple-breadcrumb-item:hover{color:#1b5eb1}.siimple-breadcrumb-crumb:not(:first-of-type)::before,.siimple-breadcrumb-item:not(:first-of-type)::before{content:"/";color:#879aab;font-weight:700!important;padding-right:8px}.siimple-breadcrumb-crumb--selected,.siimple-breadcrumb-item--selected{color:#546778!important;cursor:default!important;font-weight:400!important}.siimple-card{display:block;width:100%;margin-bottom:20px;color:#546778;font-size:16px}.siimple-card-body,.siimple-card-footer,.siimple-card-header,.siimple-card-link{display:block;line-height:24px;border-left:2px solid #eef2f7;border-right:2px solid #eef2f7;border-top:2px solid #eef2f7}.siimple-card-body:first-child,.siimple-card-footer:first-child,.siimple-card-header:first-child,.siimple-card-link:first-child{border-top-left-radius:5px;border-top-right-radius:5px}.siimple-card-body:last-child,.siimple-card-footer:last-child,.siimple-card-header:last-child,.siimple-card-link:last-child{border-bottom:2px solid #eef2f7;border-bottom-left-radius:5px;border-bottom-right-radius:5px}.siimple-card-footer,.siimple-card-header{padding:12px;background-color:#eef2f7}.siimple-card-header{font-weight:700}.siimple-card-body{padding:12px}.siimple-card-link{position:relative;color:#4e91e4;font-weight:700;font-size:15px;padding:12px;cursor:pointer;transition:background-color .3s}.siimple-card-link::before{display:block;content:"";width:11px;height:11px;border-top:3px solid #4e91e4;border-right:3px solid #4e91e4;-webkit-transform:rotate(45deg);transform:rotate(45deg);border-radius:2px;position:absolute;top:17px;right:15px;transition:right .3s}.siimple-card-link:hover{background-color:#eef2f7}.siimple-card-link:hover::before{right:12px}.siimple-card-title{display:block;font-size:18px;font-weight:700;margin-bottom:5px}.siimple-card-subtitle{display:block;font-size:15px;color:#879aab;margin-bottom:5px;line-height:23px}.siimple-card-title+.siimple-card-subtitle{margin-top:-5px!important}.siimple-list{display:block;width:100%;margin-bottom:20px;color:#546778;font-size:16px;line-height:24px}.siimple-list-item{display:block;padding:10px;background-color:#eef2f7;transition:all .3s ease;text-decoration:none;color:#546778}.siimple-list-item:first-child{border-top-left-radius:5px;border-top-right-radius:5px}.siimple-list-item:last-child{border-bottom-left-radius:5px;border-bottom-right-radius:5px}.siimple-list-item:not(:last-child){border-bottom:1px solid #dde5ee}.siimple-list--hover .siimple-list-item:not(.siimple-list-item--selected):hover{background-color:#dde5ee;cursor:pointer}.siimple-list-item--selected{background-color:#a7c8f2}.siimple-list-item--selected,.siimple-list-item--selected .siimple-list-description,.siimple-list-item--selected .siimple-list-title{color:#1b5eb1}.siimple-list-title{display:block;font-size:16px;font-weight:700;line-height:24px;text-decoration:none;color:#546778}.siimple-list-description{display:block;font-size:14px;line-height:20px;text-decoration:none;color:#879aab}.siimple-list-item .siimple-tag{float:right}.siimple-menu{display:block;width:100%;margin-bottom:20px}.siimple-menu-group{display:block;width:100%;height:25px;line-height:25px;transition:color .3s;font-size:15px;font-weight:700;text-decoration:none;color:#879aab}.siimple-menu-group:not(:first-child){margin-top:10px}.siimple-menu-group:hover{text-decoration:none!important}.siimple-menu-item{display:block;height:34px;line-height:34px;border-radius:5px;font-size:15px;font-weight:700;color:#879aab;text-decoration:none;padding-left:10px;padding-right:10px;transition:all ease .3s;cursor:pointer}.siimple-menu-item:not(.siimple-menu-item--selected):hover{text-decoration:none!important;color:#4e91e4}.siimple-menu-item--selected{background-color:#eef2f7;color:#546778}.siimple-menu-sub,.siimple-menu-submenu{display:block;padding-left:10px;margin-left:10px;margin-top:5px;margin-bottom:5px;border-left:1px solid #cbd8e6}.siimple-table{display:table;width:100%;font-size:16px;color:#546778;border-collapse:separate;border-spacing:0;border-width:0;margin-bottom:20px;background-color:transparent;box-sizing:border-box}.siimple-table-row{display:table-row;box-sizing:border-box}.siimple-table-cell{display:table-cell;line-height:24px;padding:10px;transition:background-color .3s;border-top:1px solid #cbd8e6;box-sizing:border-box;vertical-align:top}.siimple-table-cell--sortable{padding-right:20px!important;cursor:pointer;position:relative}.siimple-table-cell--sortable::after,.siimple-table-cell--sortable::before{display:block;content:"";position:absolute;right:5px;width:0;height:0;border-left:6px solid transparent;border-right:6px solid transparent;transition:all .3s}.siimple-table-cell--sortable::before{top:12px;border-bottom:8px solid #dde5ee}.siimple-table-cell--sortable::after{bottom:12px;border-top:8px solid #dde5ee}.siimple-table-cell--asc::before{border-bottom-color:#4e91e4}.siimple-table-cell--desc::after{border-top-color:#4e91e4}.siimple-table-cell--1{width:8.33%}.siimple-table-cell--2{width:16.66%}.siimple-table-cell--3{width:24.99%}.siimple-table-cell--4{width:33.33%}.siimple-table-cell--5{width:41.66%}.siimple-table-cell--6{width:49.99%}.siimple-table-cell--7{width:58.33%}.siimple-table-cell--8{width:66.66%}.siimple-table-cell--9{width:74.99%}.siimple-table-cell--10{width:83.33%}.siimple-table-cell--11{width:91.66%}.siimple-table-cell--12{width:99.99%}.siimple-table--border .siimple-table-cell{border:1px solid #cbd8e6}.siimple-table-header{display:table-header-group;box-sizing:border-box}.siimple-table--border .siimple-table-header .siimple-table-row:first-child .siimple-table-cell:first-child{border-top-left-radius:5px;border-left-width:2px}.siimple-table--border .siimple-table-header .siimple-table-row:first-child .siimple-table-cell:last-child{border-top-right-radius:5px;border-right-width:2px}.siimple-table--border .siimple-table-header .siimple-table-row:first-child .siimple-table-cell{border-top-width:2px}.siimple-table-header .siimple-table-cell{vertical-align:bottom;border-bottom:2px solid #cbd8e6;font-weight:600}.siimple-table-body{display:table-row-group;vertical-align:middle}.siimple-table-body .siimple-table-row:not(:last-child) .siimple-table-cell{border-bottom:1px solid #cbd8e6}.siimple-table--border .siimple-table-body .siimple-table-row:last-child .siimple-table-cell:first-child{border-bottom-left-radius:5px}.siimple-table--border .siimple-table-body .siimple-table-row:last-child .siimple-table-cell:last-child{border-bottom-right-radius:5px}.siimple-table--border .siimple-table-body .siimple-table-row:last-child .siimple-table-cell{border-bottom-width:2px}.siimple-table--border .siimple-table-body .siimple-table-row .siimple-table-cell:first-child{border-left-width:2px}.siimple-table--border .siimple-table-body .siimple-table-row .siimple-table-cell:last-child{border-right-width:2px}.siimple-table--striped .siimple-table-body .siimple-table-row:nth-child(odd) .siimple-table-cell{background-color:rgba(238,242,247,.8)}.siimple-table--hover .siimple-table-body .siimple-table-row:hover .siimple-table-cell{background-color:rgba(221,229,238,.8)}.siimple-table--fixed{table-layout:fixed}.siimple-table-responsive{display:block;width:100%;overflow-x:auto}.siimple-table-row--primary,.siimple-table-row--primary .siimple-table-cell{background-color:#a7c8f2!important}.siimple-table-row--success,.siimple-table-row--success .siimple-table-cell{background-color:#9be4b8!important}.siimple-table-row--warning,.siimple-table-row--warning .siimple-table-cell{background-color:#fde7b4!important}.siimple-table-row--error,.siimple-table-row--error .siimple-table-cell{background-color:#f8beb9!important}.siimple-tabs{display:block;position:relative;width:100%;height:40px;font-size:16px;margin-bottom:20px;border-bottom:2px solid #dde5ee;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none}.siimple-tabs-item,.siimple-tabs-tab{display:inline-block;float:left;height:calc(40px - 2px);line-height:40px;font-weight:600;color:#879aab;padding-left:15px;padding-right:15px;margin-bottom:-1px;border:2px solid transparent;border-top-left-radius:5px;border-top-right-radius:5px;cursor:pointer;transition:all .3s}.siimple-tabs-item:hover,.siimple-tabs-tab:hover{border-top-color:#eef2f7;border-left-color:#eef2f7;border-right-color:#eef2f7}.siimple-tabs-item--selected,.siimple-tabs-tab--selected{border-top-color:#dde5ee!important;border-left-color:#dde5ee!important;border-right-color:#dde5ee!important;border-bottom-color:#fff!important;background-color:#fff!important;color:#546778}.siimple-box{display:block;vertical-align:top;width:calc(100% - 60px);background-color:#dde5ee;border-radius:5px;padding:30px;margin-bottom:20px}.siimple-box-detail,.siimple-box-subtitle,.siimple-box-title{display:block;text-decoration:none}.siimple-box-title{font-weight:700;font-size:35px}.siimple-box-subtitle{font-weight:600;font-size:22px;opacity:.75}.siimple-box-detail{font-size:16px;line-height:22px;opacity:.5}.siimple-box-subtitle+.siimple-box-detail,.siimple-box-title+.siimple-box-detail,.siimple-box-title+.siimple-box-subtitle{margin-top:5px}.siimple-box.siimple-box--primary{background-color:#4e91e4;color:#fff}.siimple-box.siimple-box--success{background-color:#4acf7f;color:#fff}.siimple-box.siimple-box--warning{background-color:#fbc850;color:#fff}.siimple-box.siimple-box--error{background-color:#ee675d;color:#fff}.siimple-box.siimple-box--dark{background-color:#546778;color:#fff}.siimple-box.siimple-box--light{background-color:#dde5ee;color:#546778}.siimple-box.siimple-box--navy{background-color:#546778;color:#fff}.siimple-box.siimple-box--green{background-color:#93d260;color:#fff}.siimple-box.siimple-box--teal{background-color:#60d2b6;color:#fff}.siimple-box.siimple-box--blue{background-color:#4e91e4;color:#fff}.siimple-box.siimple-box--purple{background-color:#ac94e8;color:#fff}.siimple-box.siimple-box--pink{background-color:#e77eb8;color:#fff}.siimple-box.siimple-box--red{background-color:#ee675d;color:#fff}.siimple-box.siimple-box--orange{background-color:#f78055;color:#fff}.siimple-box.siimple-box--yellow{background-color:#fbc850;color:#fff}.siimple-box.siimple-box--grey{background-color:#dde5ee;color:#546778}.siimple-content{display:block;padding-top:30px;padding-bottom:30px}.siimple-content--extra-small{max-width:480px;padding-left:calc(50% - 480px / 2);padding-right:calc(50% - 480px / 2)}@media screen and (max-width:480px){.siimple-content--extra-small{width:calc(100% - 40px);padding-left:20px;padding-right:20px}}.siimple-content--small{max-width:600px;padding-left:calc(50% - 600px / 2);padding-right:calc(50% - 600px / 2)}@media screen and (max-width:600px){.siimple-content--small{width:calc(100% - 40px);padding-left:20px;padding-right:20px}}.siimple-content--medium{max-width:768px;padding-left:calc(50% - 768px / 2);padding-right:calc(50% - 768px / 2)}@media screen and (max-width:768px){.siimple-content--medium{width:calc(100% - 40px);padding-left:20px;padding-right:20px}}.siimple-content--large{max-width:960px;padding-left:calc(50% - 960px / 2);padding-right:calc(50% - 960px / 2)}@media screen and (max-width:960px){.siimple-content--large{width:calc(100% - 40px);padding-left:20px;padding-right:20px}}.siimple-content--extra-large{max-width:1280px;padding-left:calc(50% - 1280px / 2);padding-right:calc(50% - 1280px / 2)}@media screen and (max-width:1280px){.siimple-content--extra-large{width:calc(100% - 40px);padding-left:20px;padding-right:20px}}.siimple-content--fluid{width:calc(100% - 40px);padding-left:20px;padding-right:20px}.siimple-footer{display:block;padding-top:50px;padding-bottom:50px;font-size:14px;line-height:21px}.siimple-footer--extra-small{max-width:480px;padding-left:calc(50% - 480px / 2);padding-right:calc(50% - 480px / 2)}@media screen and (max-width:480px){.siimple-footer--extra-small{width:calc(100% - 40px);padding-left:20px;padding-right:20px}}.siimple-footer--small{max-width:600px;padding-left:calc(50% - 600px / 2);padding-right:calc(50% - 600px / 2)}@media screen and (max-width:600px){.siimple-footer--small{width:calc(100% - 40px);padding-left:20px;padding-right:20px}}.siimple-footer--medium{max-width:768px;padding-left:calc(50% - 768px / 2);padding-right:calc(50% - 768px / 2)}@media screen and (max-width:768px){.siimple-footer--medium{width:calc(100% - 40px);padding-left:20px;padding-right:20px}}.siimple-footer--large{max-width:960px;padding-left:calc(50% - 960px / 2);padding-right:calc(50% - 960px / 2)}@media screen and (max-width:960px){.siimple-footer--large{width:calc(100% - 40px);padding-left:20px;padding-right:20px}}.siimple-footer--extra-large{max-width:1280px;padding-left:calc(50% - 1280px / 2);padding-right:calc(50% - 1280px / 2)}@media screen and (max-width:1280px){.siimple-footer--extra-large{width:calc(100% - 40px);padding-left:20px;padding-right:20px}}.siimple-footer--fluid{width:calc(100% - 40px);padding-left:20px;padding-right:20px}.siimple-footer--light{color:#879aab;background-color:#eef2f7}.siimple-footer--dark{color:rgba(255,255,255,.8);background-color:#546778}.siimple-footer-title{display:block;font-size:20px;font-weight:700;text-decoration:none;line-height:30px}.siimple-footer-subtitle{display:block;font-size:15px;opacity:.8;text-decoration:none}.siimple-footer-group{display:block;text-transform:uppercase;text-decoration:none;font-size:15px;font-weight:700;margin-bottom:5px}.siimple-footer--light .siimple-footer-group{color:#879aab}.siimple-footer--dark .siimple-footer-group{color:rgba(255,255,255,.8)}.siimple-footer-link{display:block;text-decoration:none;font-weight:600;transition:color .3s;cursor:pointer;opacity:.85}.siimple-footer-link--inline{display:inline!important}.siimple-footer-link--inline:not(:last-child){margin-right:10px}.siimple-footer-link:hover{color:#4e91e4!important}.siimple-footer-link-description{display:block;font-size:12px;font-weight:400;margin-bottom:3px;margin-top:-4px}.siimple-footer--light .siimple-footer-link{color:#879aab}.siimple-footer--light .siimple-footer-link-description{color:#879aab!important}.siimple-footer--dark .siimple-footer-link{color:rgba(255,255,255,.8)}.siimple-footer--dark .siimple-footer-link-description{color:rgba(255,255,255,.8)!important}.siimple-footer-paragraph{display:block;margin-bottom:10px}.siimple-footer-rule{display:block;width:100%;height:2px;margin-top:20px;margin-bottom:20px;opacity:.6}.siimple-footer--light .siimple-footer-rule{background-color:#cbd8e6}.siimple-footer--dark .siimple-footer-rule{background-color:rgba(255,255,255,.6)}.siimple-footer.siimple-footer--navy{background-color:#546778;color:#fff}.siimple-footer.siimple-footer--green{background-color:#93d260;color:#fff}.siimple-footer.siimple-footer--teal{background-color:#60d2b6;color:#fff}.siimple-footer.siimple-footer--blue{background-color:#4e91e4;color:#fff}.siimple-footer.siimple-footer--purple{background-color:#ac94e8;color:#fff}.siimple-footer.siimple-footer--pink{background-color:#e77eb8;color:#fff}.siimple-footer.siimple-footer--red{background-color:#ee675d;color:#fff}.siimple-footer.siimple-footer--orange{background-color:#f78055;color:#fff}.siimple-footer.siimple-footer--yellow{background-color:#fbc850;color:#fff}.siimple-footer.siimple-footer--grey{background-color:#dde5ee;color:#546778}.siimple-jumbotron{display:block;padding-top:85px;padding-bottom:85px}.siimple-jumbotron--extra-small{max-width:480px;padding-left:calc(50% - 480px / 2);padding-right:calc(50% - 480px / 2)}@media screen and (max-width:480px){.siimple-jumbotron--extra-small{width:calc(100% - 40px);padding-left:20px;padding-right:20px}}.siimple-jumbotron--small{max-width:600px;padding-left:calc(50% - 600px / 2);padding-right:calc(50% - 600px / 2)}@media screen and (max-width:600px){.siimple-jumbotron--small{width:calc(100% - 40px);padding-left:20px;padding-right:20px}}.siimple-jumbotron--medium{max-width:768px;padding-left:calc(50% - 768px / 2);padding-right:calc(50% - 768px / 2)}@media screen and (max-width:768px){.siimple-jumbotron--medium{width:calc(100% - 40px);padding-left:20px;padding-right:20px}}.siimple-jumbotron--large{max-width:960px;padding-left:calc(50% - 960px / 2);padding-right:calc(50% - 960px / 2)}@media screen and (max-width:960px){.siimple-jumbotron--large{width:calc(100% - 40px);padding-left:20px;padding-right:20px}}.siimple-jumbotron--extra-large{max-width:1280px;padding-left:calc(50% - 1280px / 2);padding-right:calc(50% - 1280px / 2)}@media screen and (max-width:1280px){.siimple-jumbotron--extra-large{width:calc(100% - 40px);padding-left:20px;padding-right:20px}}.siimple-jumbotron--fluid{width:calc(100% - 40px);padding-left:20px;padding-right:20px}.siimple-jumbotron-detail,.siimple-jumbotron-subtitle,.siimple-jumbotron-title{display:block;text-decoration:none}.siimple-jumbotron-title{font-weight:700;font-size:40px}.siimple-jumbotron-subtitle{font-size:24px;font-weight:600;opacity:.8}.siimple-jumbotron-detail{line-height:22px;font-size:16px;opacity:.6}.siimple-jumbotron-subtitle+.siimple-jumbotron-detail,.siimple-jumbotron-title+.siimple-jumbotron-detail,.siimple-jumbotron-title+.siimple-jumbotron-subtitle{margin-top:5px}.siimple-jumbotron.siimple-jumbotron--primary{background-color:#4e91e4;color:#fff}.siimple-jumbotron.siimple-jumbotron--success{background-color:#4acf7f;color:#fff}.siimple-jumbotron.siimple-jumbotron--warning{background-color:#fbc850;color:#fff}.siimple-jumbotron.siimple-jumbotron--error{background-color:#ee675d;color:#fff}.siimple-jumbotron.siimple-jumbotron--dark{background-color:#546778;color:#fff}.siimple-jumbotron.siimple-jumbotron--light{background-color:#dde5ee;color:#546778}.siimple-jumbotron.siimple-jumbotron--navy{background-color:#546778;color:#fff}.siimple-jumbotron.siimple-jumbotron--green{background-color:#93d260;color:#fff}.siimple-jumbotron.siimple-jumbotron--teal{background-color:#60d2b6;color:#fff}.siimple-jumbotron.siimple-jumbotron--blue{background-color:#4e91e4;color:#fff}.siimple-jumbotron.siimple-jumbotron--purple{background-color:#ac94e8;color:#fff}.siimple-jumbotron.siimple-jumbotron--pink{background-color:#e77eb8;color:#fff}.siimple-jumbotron.siimple-jumbotron--red{background-color:#ee675d;color:#fff}.siimple-jumbotron.siimple-jumbotron--orange{background-color:#f78055;color:#fff}.siimple-jumbotron.siimple-jumbotron--yellow{background-color:#fbc850;color:#fff}.siimple-jumbotron.siimple-jumbotron--grey{background-color:#dde5ee;color:#546778}.siimple-navbar{display:block;z-index:3;max-width:calc(100% - 2 * 20px);height:34px;padding-top:15px;padding-bottom:15px;padding-left:20px;padding-right:20px}.siimple-navbar--extra-small{max-width:480px;padding-left:calc(50% - 480px / 2);padding-right:calc(50% - 480px / 2)}@media screen and (max-width:480px){.siimple-navbar--extra-small{width:calc(100% - 40px);padding-left:20px;padding-right:20px}}.siimple-navbar--small{max-width:600px;padding-left:calc(50% - 600px / 2);padding-right:calc(50% - 600px / 2)}@media screen and (max-width:600px){.siimple-navbar--small{width:calc(100% - 40px);padding-left:20px;padding-right:20px}}.siimple-navbar--medium{max-width:768px;padding-left:calc(50% - 768px / 2);padding-right:calc(50% - 768px / 2)}@media screen and (max-width:768px){.siimple-navbar--medium{width:calc(100% - 40px);padding-left:20px;padding-right:20px}}.siimple-navbar--large{max-width:960px;padding-left:calc(50% - 960px / 2);padding-right:calc(50% - 960px / 2)}@media screen and (max-width:960px){.siimple-navbar--large{width:calc(100% - 40px);padding-left:20px;padding-right:20px}}.siimple-navbar--extra-large{max-width:1280px;padding-left:calc(50% - 1280px / 2);padding-right:calc(50% - 1280px / 2)}@media screen and (max-width:1280px){.siimple-navbar--extra-large{width:calc(100% - 40px);padding-left:20px;padding-right:20px}}.siimple-navbar--fluid{width:calc(100% - 40px);padding-left:20px;padding-right:20px}.siimple-navbar-title{display:inline-block;height:34px;line-height:34px;text-decoration:none;font-weight:700;font-size:21px;padding-left:0;padding-right:0;cursor:pointer}.siimple-navbar-subtitle{display:inline-block;height:34px;line-height:34px;font-size:16px;text-decoration:none;cursor:pointer;padding-left:5px;opacity:.8}.siimple-navbar-item,.siimple-navbar-link{display:inline-block;height:34px;line-height:34px;padding-left:10px;padding-right:10px;text-decoration:none;text-align:center;font-size:16px;transition:opacity .3s;cursor:pointer;opacity:.9}.siimple-navbar-item:hover,.siimple-navbar-link:hover{opacity:1}.siimple-navbar.siimple-navbar--primary{color:#fff;background-color:#4e91e4}.siimple-navbar.siimple-navbar--primary .siimple-navbar-item,.siimple-navbar.siimple-navbar--primary .siimple-navbar-link,.siimple-navbar.siimple-navbar--primary .siimple-navbar-subtitle,.siimple-navbar.siimple-navbar--primary .siimple-navbar-title{color:#fff}.siimple-navbar.siimple-navbar--success{color:#fff;background-color:#4acf7f}.siimple-navbar.siimple-navbar--success .siimple-navbar-item,.siimple-navbar.siimple-navbar--success .siimple-navbar-link,.siimple-navbar.siimple-navbar--success .siimple-navbar-subtitle,.siimple-navbar.siimple-navbar--success .siimple-navbar-title{color:#fff}.siimple-navbar.siimple-navbar--warning{color:#fff;background-color:#fbc850}.siimple-navbar.siimple-navbar--warning .siimple-navbar-item,.siimple-navbar.siimple-navbar--warning .siimple-navbar-link,.siimple-navbar.siimple-navbar--warning .siimple-navbar-subtitle,.siimple-navbar.siimple-navbar--warning .siimple-navbar-title{color:#fff}.siimple-navbar.siimple-navbar--error{color:#fff;background-color:#ee675d}.siimple-navbar.siimple-navbar--error .siimple-navbar-item,.siimple-navbar.siimple-navbar--error .siimple-navbar-link,.siimple-navbar.siimple-navbar--error .siimple-navbar-subtitle,.siimple-navbar.siimple-navbar--error .siimple-navbar-title{color:#fff}.siimple-navbar.siimple-navbar--dark{color:#fff;background-color:#546778}.siimple-navbar.siimple-navbar--dark .siimple-navbar-item,.siimple-navbar.siimple-navbar--dark .siimple-navbar-link,.siimple-navbar.siimple-navbar--dark .siimple-navbar-subtitle,.siimple-navbar.siimple-navbar--dark .siimple-navbar-title{color:#fff}.siimple-navbar.siimple-navbar--light{color:#546778;background-color:#dde5ee}.siimple-navbar.siimple-navbar--light .siimple-navbar-item,.siimple-navbar.siimple-navbar--light .siimple-navbar-link,.siimple-navbar.siimple-navbar--light .siimple-navbar-subtitle,.siimple-navbar.siimple-navbar--light .siimple-navbar-title{color:#546778}.siimple-navbar.siimple-navbar--navy{background-color:#546778;color:#fff}.siimple-navbar.siimple-navbar--navy .siimple-navbar-title{color:#fff}.siimple-navbar.siimple-navbar--navy .siimple-navbar-subtitle{color:#fff}.siimple-navbar.siimple-navbar--navy .siimple-navbar-subtitle::before{background-color:#fff}.siimple-navbar.siimple-navbar--navy .siimple-navbar-item,.siimple-navbar.siimple-navbar--navy .siimple-navbar-link{color:#fff}.siimple-navbar.siimple-navbar--green{background-color:#93d260;color:#fff}.siimple-navbar.siimple-navbar--green .siimple-navbar-title{color:#fff}.siimple-navbar.siimple-navbar--green .siimple-navbar-subtitle{color:#fff}.siimple-navbar.siimple-navbar--green .siimple-navbar-subtitle::before{background-color:#fff}.siimple-navbar.siimple-navbar--green .siimple-navbar-item,.siimple-navbar.siimple-navbar--green .siimple-navbar-link{color:#fff}.siimple-navbar.siimple-navbar--teal{background-color:#60d2b6;color:#fff}.siimple-navbar.siimple-navbar--teal .siimple-navbar-title{color:#fff}.siimple-navbar.siimple-navbar--teal .siimple-navbar-subtitle{color:#fff}.siimple-navbar.siimple-navbar--teal .siimple-navbar-subtitle::before{background-color:#fff}.siimple-navbar.siimple-navbar--teal .siimple-navbar-item,.siimple-navbar.siimple-navbar--teal .siimple-navbar-link{color:#fff}.siimple-navbar.siimple-navbar--blue{background-color:#4e91e4;color:#fff}.siimple-navbar.siimple-navbar--blue .siimple-navbar-title{color:#fff}.siimple-navbar.siimple-navbar--blue .siimple-navbar-subtitle{color:#fff}.siimple-navbar.siimple-navbar--blue .siimple-navbar-subtitle::before{background-color:#fff}.siimple-navbar.siimple-navbar--blue .siimple-navbar-item,.siimple-navbar.siimple-navbar--blue .siimple-navbar-link{color:#fff}.siimple-navbar.siimple-navbar--purple{background-color:#ac94e8;color:#fff}.siimple-navbar.siimple-navbar--purple .siimple-navbar-title{color:#fff}.siimple-navbar.siimple-navbar--purple .siimple-navbar-subtitle{color:#fff}.siimple-navbar.siimple-navbar--purple .siimple-navbar-subtitle::before{background-color:#fff}.siimple-navbar.siimple-navbar--purple .siimple-navbar-item,.siimple-navbar.siimple-navbar--purple .siimple-navbar-link{color:#fff}.siimple-navbar.siimple-navbar--pink{background-color:#e77eb8;color:#fff}.siimple-navbar.siimple-navbar--pink .siimple-navbar-title{color:#fff}.siimple-navbar.siimple-navbar--pink .siimple-navbar-subtitle{color:#fff}.siimple-navbar.siimple-navbar--pink .siimple-navbar-subtitle::before{background-color:#fff}.siimple-navbar.siimple-navbar--pink .siimple-navbar-item,.siimple-navbar.siimple-navbar--pink .siimple-navbar-link{color:#fff}.siimple-navbar.siimple-navbar--red{background-color:#ee675d;color:#fff}.siimple-navbar.siimple-navbar--red .siimple-navbar-title{color:#fff}.siimple-navbar.siimple-navbar--red .siimple-navbar-subtitle{color:#fff}.siimple-navbar.siimple-navbar--red .siimple-navbar-subtitle::before{background-color:#fff}.siimple-navbar.siimple-navbar--red .siimple-navbar-item,.siimple-navbar.siimple-navbar--red .siimple-navbar-link{color:#fff}.siimple-navbar.siimple-navbar--orange{background-color:#f78055;color:#fff}.siimple-navbar.siimple-navbar--orange .siimple-navbar-title{color:#fff}.siimple-navbar.siimple-navbar--orange .siimple-navbar-subtitle{color:#fff}.siimple-navbar.siimple-navbar--orange .siimple-navbar-subtitle::before{background-color:#fff}.siimple-navbar.siimple-navbar--orange .siimple-navbar-item,.siimple-navbar.siimple-navbar--orange .siimple-navbar-link{color:#fff}.siimple-navbar.siimple-navbar--yellow{background-color:#fbc850;color:#fff}.siimple-navbar.siimple-navbar--yellow .siimple-navbar-title{color:#fff}.siimple-navbar.siimple-navbar--yellow .siimple-navbar-subtitle{color:#fff}.siimple-navbar.siimple-navbar--yellow .siimple-navbar-subtitle::before{background-color:#fff}.siimple-navbar.siimple-navbar--yellow .siimple-navbar-item,.siimple-navbar.siimple-navbar--yellow .siimple-navbar-link{color:#fff}.siimple-navbar.siimple-navbar--grey{background-color:#dde5ee;color:#546778}.siimple-navbar.siimple-navbar--grey .siimple-navbar-title{color:#546778}.siimple-navbar.siimple-navbar--grey .siimple-navbar-subtitle{color:#546778}.siimple-navbar.siimple-navbar--grey .siimple-navbar-subtitle::before{background-color:#546778}.siimple-navbar.siimple-navbar--grey .siimple-navbar-item,.siimple-navbar.siimple-navbar--grey .siimple-navbar-link{color:#546778}.siimple-checkbox{display:inline-block;position:relative;width:18px;height:18px;margin-left:10px;margin-right:10px;margin-top:8px;margin-bottom:8px;vertical-align:top}.siimple-checkbox label{width:18px;height:18px;cursor:pointer;transition:all .3s;position:absolute;top:0;left:0;border-radius:2px;background:#dde5ee}.siimple-checkbox label:after{content:"";opacity:.2;width:8px;height:4px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);transition:all .3s;position:absolute;top:5px;left:4px;background:0 0;border:2px solid #546778;border-top:0;border-right:0}.siimple-checkbox label:hover::after{opacity:.5}.siimple-checkbox input[type=checkbox]{visibility:hidden}.siimple-checkbox input[type=checkbox]:checked+label:after{opacity:1;border-color:#fff}.siimple-checkbox input[type=checkbox]:checked+label{background-color:#4e91e4}.siimple-checkbox--success input[type=checkbox]:checked+label{background-color:#4acf7f}.siimple-checkbox--error input[type=checkbox]:checked+label{background-color:#ee675d}.siimple-checkbox--warning input[type=checkbox]:checked+label{background-color:#fbc850}.siimple-field,.siimple-form-field{display:block;vertical-align:top;margin-bottom:20px;margin-top:0}.siimple-field-label,.siimple-form-field-label{display:block;vertical-align:top;font-weight:600;font-size:15px;color:#546778;margin-top:0;margin-bottom:5px}.siimple-field-helper,.siimple-form-field-helper{display:block;vertical-align:top;font-weight:400;font-size:13px;color:#879aab;margin-top:5px;margin-bottom:20px}.siimple-form{display:block;width:100%;margin-top:0;margin-bottom:20px;font-size:16px}.siimple-form-title{display:block;width:100%;vertical-align:top;font-weight:700;font-size:24px;color:#546778;margin-bottom:10px}.siimple-form-detail{display:block;width:100%;vertical-align:top;font-size:16px;line-height:24px;color:#546778;margin-bottom:20px}.siimple-form-rule{display:block;width:100%;border-bottom:1px solid #cbd8e6;margin-top:5px;margin-bottom:20px;height:0}.siimple-input{display:inline-block;height:34px;line-height:34px;font-size:14px;font-weight:400;color:#546778;padding-left:10px;padding-right:10px;padding-top:0;padding-bottom:0;border:0;border-radius:5px;outline:0;background-color:#eef2f7;vertical-align:top;box-sizing:border-box}.siimple-input--fluid{width:100%}.siimple-input--light{background-color:#fff}.siimple-input--dark{background-color:#546778;color:#fff}.siimple-label{display:inline-block;min-height:34px;line-height:34px;font-size:15px;color:#546778;font-weight:600;padding-right:10px;padding-left:0;vertical-align:top}.siimple-label--light{color:#fff}.siimple-label--dark{color:#546778}.siimple-radio{display:inline-block;width:18px;height:18px;position:relative;vertical-align:top;margin:8px;cursor:pointer}.siimple-radio>label{display:block;width:calc(18px - 2 * 3px);height:calc(18px - 2 * 3px);position:absolute;top:0;left:0;border-radius:100px;border-width:3px;border-style:solid;border-color:#dde5ee;transition:border-color .3s ease;cursor:pointer}.siimple-radio>label:after{position:absolute;display:block;content:"";width:6px;height:6px;background-color:transparent;border-radius:100px;top:calc(50% - 6px / 2);left:calc(50% - 6px / 2);transition:all .3s ease}.siimple-radio:hover>label:after{background-color:#dde5ee}.siimple-radio input[type=radio]{visibility:hidden}.siimple-radio input[type=radio]:checked+label:after{background-color:#4e91e4}.siimple-radio input[type=radio]:checked+label{border-color:#4e91e4}.siimple-radio--success input[type=radio]:checked+label:after{background-color:#4acf7f}.siimple-radio--success input[type=radio]:checked+label{border-color:#4acf7f}.siimple-radio--error input[type=radio]:checked+label:after{background-color:#ee675d}.siimple-radio--error input[type=radio]:checked+label{border-color:#ee675d}.siimple-radio--warning input[type=radio]:checked+label:after{background-color:#fbc850}.siimple-radio--warning input[type=radio]:checked+label{border-color:#fbc850}.siimple-select{display:inline-block;height:34px;line-height:34px;font-size:14px;font-weight:400;color:#546778;padding-left:10px;padding-right:10px;padding-top:0;padding-bottom:0;border:0;border-radius:5px;outline:0;background-color:#eef2f7;vertical-align:top;box-sizing:border-box}.siimple-select--fluid{width:100%}.siimple-select--light{background-color:#fff}.siimple-select--dark{background-color:#546778;color:#fff}.siimple-switch{display:inline-block;width:32px;height:18px;position:relative;border-radius:50px;margin-left:10px;margin-right:10px;margin-top:8px;margin-bottom:8px;vertical-align:top}.siimple-switch label{cursor:pointer}.siimple-switch label::after{display:block;content:"";width:14px;height:14px;border-radius:50px;transition:all .3s ease;background:#879aab;position:absolute;top:2px;left:2px;z-index:2;opacity:.6}.siimple-switch label::after:hover{opacity:1}.siimple-switch label::before{display:block;content:"";width:100%;height:100%;background-color:#dde5ee;border-radius:50px;transition:all .3s;position:absolute;top:0;z-index:1}.siimple-switch input[type=checkbox]{visibility:hidden}.siimple-switch input[type=checkbox]:checked~label::before{background-color:#4e91e4}.siimple-switch input[type=checkbox]:checked~label::after{left:16px;opacity:1;background-color:#fff}.siimple-switch--success input[type=checkbox]:checked~label::before{background-color:#4acf7f}.siimple-switch--error input[type=checkbox]:checked~label::before{background-color:#ee675d}.siimple-switch--warning input[type=checkbox]:checked~label::before{background-color:#fbc850}.siimple-textarea{display:inline-block;line-height:20px;font-size:14px;color:#546778;padding:10px;border:0;border-radius:5px;outline:0;background-color:#eef2f7;vertical-align:top;box-sizing:border-box;resize:vertical}.siimple-textarea--fluid{width:100%}.siimple-textarea--light{background-color:#fff}.siimple-textarea--dark{background-color:#546778;color:#fff}.siimple-grid{display:block;width:100%;margin-left:auto;margin-right:auto}.siimple-grid-row{display:block;margin-left:-12px;margin-right:-12px}.siimple-grid-row:after{content:" ";clear:both;display:table;line-height:0}.siimple-grid-col{display:inline-block;vertical-align:top;float:left;padding:12px}.siimple-grid-col--1{width:calc(8.33% - 2 * 12px)}.siimple-grid-col--2{width:calc(16.66% - 2 * 12px)}.siimple-grid-col--3{width:calc(24.99% - 2 * 12px)}.siimple-grid-col--4{width:calc(33.33% - 2 * 12px)}.siimple-grid-col--5{width:calc(41.66% - 2 * 12px)}.siimple-grid-col--6{width:calc(49.99% - 2 * 12px)}.siimple-grid-col--7{width:calc(58.33% - 2 * 12px)}.siimple-grid-col--8{width:calc(66.66% - 2 * 12px)}.siimple-grid-col--9{width:calc(74.99% - 2 * 12px)}.siimple-grid-col--10{width:calc(83.33% - 2 * 12px)}.siimple-grid-col--11{width:calc(91.66% - 2 * 12px)}.siimple-grid-col--12{width:calc(99.99% - 2 * 12px)}@media (max-width:1280px){.siimple-grid-col--xl-1,.siimple-grid-col-xl--1{width:calc(8.33% - 2 * 12px)}.siimple-grid-col--xl-2,.siimple-grid-col-xl--2{width:calc(16.66% - 2 * 12px)}.siimple-grid-col--xl-3,.siimple-grid-col-xl--3{width:calc(24.99% - 2 * 12px)}.siimple-grid-col--xl-4,.siimple-grid-col-xl--4{width:calc(33.33% - 2 * 12px)}.siimple-grid-col--xl-5,.siimple-grid-col-xl--5{width:calc(41.66% - 2 * 12px)}.siimple-grid-col--xl-6,.siimple-grid-col-xl--6{width:calc(49.99% - 2 * 12px)}.siimple-grid-col--xl-7,.siimple-grid-col-xl--7{width:calc(58.33% - 2 * 12px)}.siimple-grid-col--xl-8,.siimple-grid-col-xl--8{width:calc(66.66% - 2 * 12px)}.siimple-grid-col--xl-9,.siimple-grid-col-xl--9{width:calc(74.99% - 2 * 12px)}.siimple-grid-col--xl-10,.siimple-grid-col-xl--10{width:calc(83.33% - 2 * 12px)}.siimple-grid-col--xl-11,.siimple-grid-col-xl--11{width:calc(91.66% - 2 * 12px)}.siimple-grid-col--xl-12,.siimple-grid-col-xl--12{width:calc(99.99% - 2 * 12px)}.siimple-grid-col--xl-hide{display:none!important}}@media (max-width:960px){.siimple-grid-col--lg-1,.siimple-grid-col-lg--1{width:calc(8.33% - 2 * 12px)}.siimple-grid-col--lg-2,.siimple-grid-col-lg--2{width:calc(16.66% - 2 * 12px)}.siimple-grid-col--lg-3,.siimple-grid-col-lg--3{width:calc(24.99% - 2 * 12px)}.siimple-grid-col--lg-4,.siimple-grid-col-lg--4{width:calc(33.33% - 2 * 12px)}.siimple-grid-col--lg-5,.siimple-grid-col-lg--5{width:calc(41.66% - 2 * 12px)}.siimple-grid-col--lg-6,.siimple-grid-col-lg--6{width:calc(49.99% - 2 * 12px)}.siimple-grid-col--lg-7,.siimple-grid-col-lg--7{width:calc(58.33% - 2 * 12px)}.siimple-grid-col--lg-8,.siimple-grid-col-lg--8{width:calc(66.66% - 2 * 12px)}.siimple-grid-col--lg-9,.siimple-grid-col-lg--9{width:calc(74.99% - 2 * 12px)}.siimple-grid-col--lg-10,.siimple-grid-col-lg--10{width:calc(83.33% - 2 * 12px)}.siimple-grid-col--lg-11,.siimple-grid-col-lg--11{width:calc(91.66% - 2 * 12px)}.siimple-grid-col--lg-12,.siimple-grid-col-lg--12{width:calc(99.99% - 2 * 12px)}.siimple-grid-col--lg-hide{display:none!important}}@media (max-width:768px){.siimple-grid-col--md-1,.siimple-grid-col-md--1{width:calc(8.33% - 2 * 12px)}.siimple-grid-col--md-2,.siimple-grid-col-md--2{width:calc(16.66% - 2 * 12px)}.siimple-grid-col--md-3,.siimple-grid-col-md--3{width:calc(24.99% - 2 * 12px)}.siimple-grid-col--md-4,.siimple-grid-col-md--4{width:calc(33.33% - 2 * 12px)}.siimple-grid-col--md-5,.siimple-grid-col-md--5{width:calc(41.66% - 2 * 12px)}.siimple-grid-col--md-6,.siimple-grid-col-md--6{width:calc(49.99% - 2 * 12px)}.siimple-grid-col--md-7,.siimple-grid-col-md--7{width:calc(58.33% - 2 * 12px)}.siimple-grid-col--md-8,.siimple-grid-col-md--8{width:calc(66.66% - 2 * 12px)}.siimple-grid-col--md-9,.siimple-grid-col-md--9{width:calc(74.99% - 2 * 12px)}.siimple-grid-col--md-10,.siimple-grid-col-md--10{width:calc(83.33% - 2 * 12px)}.siimple-grid-col--md-11,.siimple-grid-col-md--11{width:calc(91.66% - 2 * 12px)}.siimple-grid-col--md-12,.siimple-grid-col-md--12{width:calc(99.99% - 2 * 12px)}.siimple-grid-col--md-hide{display:none!important}}@media (max-width:600px){.siimple-grid-col--sm-1,.siimple-grid-col-sm--1{width:calc(8.33% - 2 * 12px)}.siimple-grid-col--sm-2,.siimple-grid-col-sm--2{width:calc(16.66% - 2 * 12px)}.siimple-grid-col--sm-3,.siimple-grid-col-sm--3{width:calc(24.99% - 2 * 12px)}.siimple-grid-col--sm-4,.siimple-grid-col-sm--4{width:calc(33.33% - 2 * 12px)}.siimple-grid-col--sm-5,.siimple-grid-col-sm--5{width:calc(41.66% - 2 * 12px)}.siimple-grid-col--sm-6,.siimple-grid-col-sm--6{width:calc(49.99% - 2 * 12px)}.siimple-grid-col--sm-7,.siimple-grid-col-sm--7{width:calc(58.33% - 2 * 12px)}.siimple-grid-col--sm-8,.siimple-grid-col-sm--8{width:calc(66.66% - 2 * 12px)}.siimple-grid-col--sm-9,.siimple-grid-col-sm--9{width:calc(74.99% - 2 * 12px)}.siimple-grid-col--sm-10,.siimple-grid-col-sm--10{width:calc(83.33% - 2 * 12px)}.siimple-grid-col--sm-11,.siimple-grid-col-sm--11{width:calc(91.66% - 2 * 12px)}.siimple-grid-col--sm-12,.siimple-grid-col-sm--12{width:calc(99.99% - 2 * 12px)}.siimple-grid-col--sm-hide{display:none!important}}@media (max-width:480px){.siimple-grid-col--xs-1,.siimple-grid-col-xs--1{width:calc(8.33% - 2 * 12px)}.siimple-grid-col--xs-2,.siimple-grid-col-xs--2{width:calc(16.66% - 2 * 12px)}.siimple-grid-col--xs-3,.siimple-grid-col-xs--3{width:calc(24.99% - 2 * 12px)}.siimple-grid-col--xs-4,.siimple-grid-col-xs--4{width:calc(33.33% - 2 * 12px)}.siimple-grid-col--xs-5,.siimple-grid-col-xs--5{width:calc(41.66% - 2 * 12px)}.siimple-grid-col--xs-6,.siimple-grid-col-xs--6{width:calc(49.99% - 2 * 12px)}.siimple-grid-col--xs-7,.siimple-grid-col-xs--7{width:calc(58.33% - 2 * 12px)}.siimple-grid-col--xs-8,.siimple-grid-col-xs--8{width:calc(66.66% - 2 * 12px)}.siimple-grid-col--xs-9,.siimple-grid-col-xs--9{width:calc(74.99% - 2 * 12px)}.siimple-grid-col--xs-10,.siimple-grid-col-xs--10{width:calc(83.33% - 2 * 12px)}.siimple-grid-col--xs-11,.siimple-grid-col-xs--11{width:calc(91.66% - 2 * 12px)}.siimple-grid-col--xs-12,.siimple-grid-col-xs--12{width:calc(99.99% - 2 * 12px)}.siimple-grid-col--xs-hide{display:none!important}}.siimple-dropdown{position:relative}.siimple-dropdown-toggle::after{display:inline-block;content:"";height:0;width:0;margin-left:4px;border-top:6px solid #fff;border-left:4px solid transparent;border-right:4px solid transparent;vertical-align:middle}.siimple-dropdown-toggle--light::after{border-top-color:#fff}.siimple-dropdown-toggle--dark::after{border-top-color:#546778}.siimple-dropdown-content{display:none;position:absolute;top:calc(100% + 2px);left:0;min-width:150px;color:#546778;text-align:left;background-color:#fff;border-radius:5px;border:1px solid #dde5ee}.siimple-dropdown--visible .siimple-dropdown-content{display:block}.siimple-dropdown-item{display:block;line-height:24px;font-size:16px;padding-left:15px;padding-right:15px;padding-top:4px;padding-bottom:4px;white-space:nowrap;cursor:pointer;transition:background-color .3s}.siimple-dropdown-item:hover{background-color:#eef2f7}.siimple-dropdown-separator{display:block;height:0;border-top:1px solid #dde5ee;margin-top:5px;margin-bottom:5px}.siimple-modal{display:flex;width:calc(100% - 2 * 15px);height:calc(100% - 2 * 15px);position:fixed;top:0;left:0;z-index:400;padding:15px;overflow-x:hidden;overflow-y:hidden;justify-content:center;align-items:center;background-color:rgba(42,52,60,.4)}.siimple-modal-content{display:block;width:100%;background-color:#fff;border-radius:5px;padding:0}.siimple-modal-header{display:block;height:24px;padding:20px;border-top-left-radius:5px;border-top-right-radius:5px;border-bottom:1px solid #dde5ee}.siimple-modal-header-title{float:left;font-weight:700;font-size:20px;height:24px;line-height:24px}.siimple-modal-header-close{display:block;float:right;position:relative;width:16px;height:24px;cursor:pointer;opacity:.6;transition:opacity .3s}.siimple-modal-header-close:hover{opacity:1}.siimple-modal-header-close::after,.siimple-modal-header-close::before{content:"";width:16px;height:3px;background-color:#546778;position:absolute;border-radius:1px;top:10px}.siimple-modal-header-close::before{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.siimple-modal-header-close::after{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.siimple-modal-header:after{content:"";clear:both}.siimple-modal-body{display:block;overflow-y:auto;max-height:50vh;padding:20px}.siimple-modal-footer{display:block;padding:20px;color:#879aab;background-color:#eef2f7;border-bottom-left-radius:5px;border-bottom-right-radius:5px}.siimple-modal--small .siimple-modal-content{max-width:600px}.siimple-modal--medium .siimple-modal-content{max-width:768px}.siimple-modal--large .siimple-modal-content{max-width:960px}@-webkit-keyframes siimple-progress-animation{0%{background-position:0 0}100%{background-position:50px 50px}}@keyframes siimple-progress-animation{0%{background-position:0 0}100%{background-position:50px 50px}}.siimple-progress{display:block;width:100%;height:20px;padding:0!important;margin-top:0;margin-bottom:20px;border-radius:5px;background-color:#eef2f7;overflow:hidden;-webkit-appearance:none;-mz-appearance:none}.siimple-progress>span{display:block;height:100%;overflow:hidden;transition:all .3s;position:relative;text-align:center;line-height:20px;font-size:12px}.siimple-progress--striped-fast>span::after,.siimple-progress--striped-slow>span::after,.siimple-progress--striped>span::after{content:"";position:absolute;top:0;left:0;right:0;bottom:0;z-index:1px;background-size:50px 50px;background-image:linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.siimple-progress--striped>span::after{-webkit-animation:siimple-progress-animation 2.5s linear infinite;animation:siimple-progress-animation 2.5s linear infinite}.siimple-progress--striped-fast>span::after{-webkit-animation:siimple-progress-animation 1s linear infinite;animation:siimple-progress-animation 1s linear infinite}.siimple-progress--striped-slow>span::after{-webkit-animation:siimple-progress-animation 4s linear infinite;animation:siimple-progress-animation 4s linear infinite}.siimple-progress.siimple-progress--primary>span{background-color:#4e91e4;color:#fff}.siimple-progress.siimple-progress--success>span{background-color:#4acf7f;color:#fff}.siimple-progress.siimple-progress--warning>span{background-color:#fbc850;color:#fff}.siimple-progress.siimple-progress--error>span{background-color:#ee675d;color:#fff}.siimple-progress.siimple-progress--dark>span{background-color:#546778;color:#fff}.siimple-progress.siimple-progress--light>span{background-color:#dde5ee;color:#546778}.siimple-steps{display:block;margin-bottom:20px;text-align:center}.siimple-steps-item{display:inline-block;padding-top:40px;position:relative}.siimple-steps-item-bubble{display:block;width:34px;height:34px;border-radius:100px;position:absolute;left:calc(50% - 34px / 2);top:0;z-index:10;line-height:34px;font-size:20px;color:#fff}.siimple-steps-item-title{display:block;width:calc(100% - 2 * 5px);padding-left:5px;padding-right:5px;font-size:15px;line-height:22px;font-weight:700;color:#cbd8e6}.siimple-steps-item-description{display:block;width:calc(100% - 2 * 5px);padding-left:5px;padding-right:5px;font-size:13px;line-height:20px;color:#dde5ee}.siimple-steps-item:not(:last-child)::after{content:"";display:block;width:100%;height:8px;position:absolute;top:calc(26px / 2);left:50%}.siimple-steps-item--current~.siimple-steps-item .siimple-steps-item-bubble{background-color:#dde5ee!important}.siimple-steps-item--current::after,.siimple-steps-item--current~.siimple-steps-item::after{background-color:#dde5ee!important}.siimple-steps-item--current .siimple-steps-item-title{color:#546778!important}.siimple-steps-item--current .siimple-steps-item-description{color:#879aab!important}.siimple-steps-item--check .siimple-steps-item-bubble::after,.siimple-steps-item--check .siimple-steps-item-bubble::before,.siimple-steps-item--cross .siimple-steps-item-bubble::after,.siimple-steps-item--cross .siimple-steps-item-bubble::before,.siimple-steps-item--exclamation .siimple-steps-item-bubble::after,.siimple-steps-item--exclamation .siimple-steps-item-bubble::before{display:block;content:"";height:3px;position:absolute;background-color:#fff;border-radius:5px}.siimple-steps-item--check .siimple-steps-item-bubble::after{width:10px;-webkit-transform:rotate(45deg);transform:rotate(45deg);top:19px;left:6.5px}.siimple-steps-item--check .siimple-steps-item-bubble::before{width:18px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);top:16px;left:10.5px}.siimple-steps-item--cross .siimple-steps-item-bubble::after{width:20px;-webkit-transform:rotate(45deg);transform:rotate(45deg);top:15.5px;left:7px}.siimple-steps-item--cross .siimple-steps-item-bubble::before{width:20px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);top:15.5px;left:7px}.siimple-steps-item--exclamation .siimple-steps-item-bubble::after{width:3px;top:22px;left:15.5px}.siimple-steps-item--exclamation .siimple-steps-item-bubble::before{width:3px;height:11px;top:8px;left:15.5px}.siimple-steps--primary .siimple-steps-item-bubble{background-color:#4e91e4}.siimple-steps--primary .siimple-steps-item:not(:last-child)::after{background-color:#4e91e4}.siimple-steps--success .siimple-steps-item-bubble{background-color:#4acf7f}.siimple-steps--success .siimple-steps-item:not(:last-child)::after{background-color:#4acf7f}.siimple-steps--warning .siimple-steps-item-bubble{background-color:#fbc850}.siimple-steps--warning .siimple-steps-item:not(:last-child)::after{background-color:#fbc850}.siimple-steps--error .siimple-steps-item-bubble{background-color:#ee675d}.siimple-steps--error .siimple-steps-item:not(:last-child)::after{background-color:#ee675d}.siimple-steps--dark .siimple-steps-item-bubble{background-color:#546778}.siimple-steps--dark .siimple-steps-item:not(:last-child)::after{background-color:#546778}.siimple-steps--light .siimple-steps-item-bubble{background-color:#dde5ee}.siimple-steps--light .siimple-steps-item:not(:last-child)::after{background-color:#dde5ee}.siimple--color-primary{color:#4e91e4!important}.siimple--bg-primary{background-color:#4e91e4!important}.siimple--color-success{color:#4acf7f!important}.siimple--bg-success{background-color:#4acf7f!important}.siimple--color-warning{color:#fbc850!important}.siimple--bg-warning{background-color:#fbc850!important}.siimple--color-error{color:#ee675d!important}.siimple--bg-error{background-color:#ee675d!important}.siimple--color-dark{color:#546778!important}.siimple--bg-dark{background-color:#546778!important}.siimple--color-light{color:#dde5ee!important}.siimple--bg-light{background-color:#dde5ee!important}.siimple--color-white{color:#fff!important}.siimple--bg-white{background-color:#fff!important}.siimple--display-none{display:none!important}.siimple--display-block{display:block!important}.siimple--display-inline{display:inline!important}.siimple--display-inline-block{display:inline-block!important}.siimple--display-table{display:table!important}.siimple--display-table-cell{display:table-cell!important}.siimple--display-table-row{display:table-row!important}.siimple--display-flex{display:flex!important}.siimple--display-inline-flex{display:inline-flex!important}@media (max-width:1280px){.siimple--display-xl-none{display:none!important}.siimple--display-xl-block{display:block!important}.siimple--display-xl-inline{display:inline!important}.siimple--display-xl-inline-block{display:inline-block!important}.siimple--display-xl-table{display:table!important}.siimple--display-xl-table-cell{display:table-cell!important}.siimple--display-xl-table-row{display:table-row!important}.siimple--display-xl-flex{display:flex!important}.siimple--display-xl-inline-flex{display:inline-flex!important}}@media (max-width:960px){.siimple--display-lg-none{display:none!important}.siimple--display-lg-block{display:block!important}.siimple--display-lg-inline{display:inline!important}.siimple--display-lg-inline-block{display:inline-block!important}.siimple--display-lg-table{display:table!important}.siimple--display-lg-table-cell{display:table-cell!important}.siimple--display-lg-table-row{display:table-row!important}.siimple--display-lg-flex{display:flex!important}.siimple--display-lg-inline-flex{display:inline-flex!important}}@media (max-width:768px){.siimple--display-md-none{display:none!important}.siimple--display-md-block{display:block!important}.siimple--display-md-inline{display:inline!important}.siimple--display-md-inline-block{display:inline-block!important}.siimple--display-md-table{display:table!important}.siimple--display-md-table-cell{display:table-cell!important}.siimple--display-md-table-row{display:table-row!important}.siimple--display-md-flex{display:flex!important}.siimple--display-md-inline-flex{display:inline-flex!important}}@media (max-width:600px){.siimple--display-sm-none{display:none!important}.siimple--display-sm-block{display:block!important}.siimple--display-sm-inline{display:inline!important}.siimple--display-sm-inline-block{display:inline-block!important}.siimple--display-sm-table{display:table!important}.siimple--display-sm-table-cell{display:table-cell!important}.siimple--display-sm-table-row{display:table-row!important}.siimple--display-sm-flex{display:flex!important}.siimple--display-sm-inline-flex{display:inline-flex!important}}@media (max-width:480px){.siimple--display-xs-none{display:none!important}.siimple--display-xs-block{display:block!important}.siimple--display-xs-inline{display:inline!important}.siimple--display-xs-inline-block{display:inline-block!important}.siimple--display-xs-table{display:table!important}.siimple--display-xs-table-cell{display:table-cell!important}.siimple--display-xs-table-row{display:table-row!important}.siimple--display-xs-flex{display:flex!important}.siimple--display-xs-inline-flex{display:inline-flex!important}}.siimple--float-left{float:left!important}.siimple--float-right{float:right!important}.siimple--float-none{float:none!important}@media (max-width:1280px){.siimple--float-xl-left{float:left!important}.siimple--float-xl-right{float:right!important}.siimple--float-xl-none{float:none!important}}@media (max-width:960px){.siimple--float-lg-left{float:left!important}.siimple--float-lg-right{float:right!important}.siimple--float-lg-none{float:none!important}}@media (max-width:768px){.siimple--float-md-left{float:left!important}.siimple--float-md-right{float:right!important}.siimple--float-md-none{float:none!important}}@media (max-width:600px){.siimple--float-sm-left{float:left!important}.siimple--float-sm-right{float:right!important}.siimple--float-sm-none{float:none!important}}@media (max-width:480px){.siimple--float-xs-left{float:left!important}.siimple--float-xs-right{float:right!important}.siimple--float-xs-none{float:none!important}}.siimple--clearfix::after{display:block;content:"";clear:both}.siimple--lh-normal{line-height:24px!important}.siimple--lh-condensed{line-height:18px!important}.siimple--width-0{width:0%!important}.siimple--mwidth-0{max-width:0%!important}.siimple--height-0{height:0%!important}.siimple--mheight-0{max-height:0%!important}.siimple--width-25{width:25%!important}.siimple--mwidth-25{max-width:25%!important}.siimple--height-25{height:25%!important}.siimple--mheight-25{max-height:25%!important}.siimple--width-50{width:50%!important}.siimple--mwidth-50{max-width:50%!important}.siimple--height-50{height:50%!important}.siimple--mheight-50{max-height:50%!important}.siimple--width-75{width:75%!important}.siimple--mwidth-75{max-width:75%!important}.siimple--height-75{height:75%!important}.siimple--mheight-75{max-height:75%!important}.siimple--width-100{width:100%!important}.siimple--mwidth-100{max-width:100%!important}.siimple--height-100{height:100%!important}.siimple--mheight-100{max-height:100%!important}.siimple--mt-0{margin-top:0!important}.siimple--mb-0{margin-bottom:0!important}.siimple--ml-0{margin-left:0!important}.siimple--mr-0{margin-right:0!important}.siimple--mx-0{margin-left:0!important;margin-right:0!important}.siimple--my-0{margin-top:0!important;margin-bottom:0!important}.siimple--pt-0{padding-top:0!important}.siimple--pb-0{padding-bottom:0!important}.siimple--pl-0{padding-left:0!important}.siimple--pr-0{padding-right:0!important}.siimple--px-0{padding-left:0!important;padding-right:0!important}.siimple--py-0{padding-top:0!important;padding-bottom:0!important}.siimple--mt-1{margin-top:5px!important}.siimple--mb-1{margin-bottom:5px!important}.siimple--ml-1{margin-left:5px!important}.siimple--mr-1{margin-right:5px!important}.siimple--mx-1{margin-left:5px!important;margin-right:5px!important}.siimple--my-1{margin-top:5px!important;margin-bottom:5px!important}.siimple--pt-1{padding-top:5px!important}.siimple--pb-1{padding-bottom:5px!important}.siimple--pl-1{padding-left:5px!important}.siimple--pr-1{padding-right:5px!important}.siimple--px-1{padding-left:5px!important;padding-right:5px!important}.siimple--py-1{padding-top:5px!important;padding-bottom:5px!important}.siimple--mt-2{margin-top:10px!important}.siimple--mb-2{margin-bottom:10px!important}.siimple--ml-2{margin-left:10px!important}.siimple--mr-2{margin-right:10px!important}.siimple--mx-2{margin-left:10px!important;margin-right:10px!important}.siimple--my-2{margin-top:10px!important;margin-bottom:10px!important}.siimple--pt-2{padding-top:10px!important}.siimple--pb-2{padding-bottom:10px!important}.siimple--pl-2{padding-left:10px!important}.siimple--pr-2{padding-right:10px!important}.siimple--px-2{padding-left:10px!important;padding-right:10px!important}.siimple--py-2{padding-top:10px!important;padding-bottom:10px!important}.siimple--mt-3{margin-top:15px!important}.siimple--mb-3{margin-bottom:15px!important}.siimple--ml-3{margin-left:15px!important}.siimple--mr-3{margin-right:15px!important}.siimple--mx-3{margin-left:15px!important;margin-right:15px!important}.siimple--my-3{margin-top:15px!important;margin-bottom:15px!important}.siimple--pt-3{padding-top:15px!important}.siimple--pb-3{padding-bottom:15px!important}.siimple--pl-3{padding-left:15px!important}.siimple--pr-3{padding-right:15px!important}.siimple--px-3{padding-left:15px!important;padding-right:15px!important}.siimple--py-3{padding-top:15px!important;padding-bottom:15px!important}.siimple--mt-4{margin-top:25px!important}.siimple--mb-4{margin-bottom:25px!important}.siimple--ml-4{margin-left:25px!important}.siimple--mr-4{margin-right:25px!important}.siimple--mx-4{margin-left:25px!important;margin-right:25px!important}.siimple--my-4{margin-top:25px!important;margin-bottom:25px!important}.siimple--pt-4{padding-top:25px!important}.siimple--pb-4{padding-bottom:25px!important}.siimple--pl-4{padding-left:25px!important}.siimple--pr-4{padding-right:25px!important}.siimple--px-4{padding-left:25px!important;padding-right:25px!important}.siimple--py-4{padding-top:25px!important;padding-bottom:25px!important}.siimple--mt-5{margin-top:45px!important}.siimple--mb-5{margin-bottom:45px!important}.siimple--ml-5{margin-left:45px!important}.siimple--mr-5{margin-right:45px!important}.siimple--mx-5{margin-left:45px!important;margin-right:45px!important}.siimple--my-5{margin-top:45px!important;margin-bottom:45px!important}.siimple--pt-5{padding-top:45px!important}.siimple--pb-5{padding-bottom:45px!important}.siimple--pl-5{padding-left:45px!important}.siimple--pr-5{padding-right:45px!important}.siimple--px-5{padding-left:45px!important;padding-right:45px!important}.siimple--py-5{padding-top:45px!important;padding-bottom:45px!important}.siimple--mt-auto{margin-top:auto!important}.siimple--mb-auto{margin-bottom:auto!important}.siimple--ml-auto{margin-left:auto!important}.siimple--mr-auto{margin-right:auto!important}.siimple--mx-auto{margin-left:auto!important;margin-right:auto!important}.siimple--my-auto{margin-top:auto!important;margin-bottom:auto!important}.siimple--text-justify{text-align:justify!important}.siimple--text-left{text-align:left!important}.siimple--text-center{text-align:center!important}.siimple--text-right{text-align:right!important}.siimple--text-uppercase{text-transform:uppercase!important}.siimple--text-lowercase{text-transform:lowercase!important}.siimple--text-capitalize{text-transform:capitalize!important}.siimple--text-bold{font-weight:700!important}.siimple--text-italic{font-style:italic!important}.siimple--text-normal{font-weight:400!important}.siimple--text-small{font-size:13px!important}.siimple--rounded{border-radius:5px}
\ No newline at end of file