1
0

Implement voting system, remove old assets

This commit is contained in:
Marcel Schwarz 2022-07-31 23:17:09 +02:00
parent db38b92ffc
commit b9a598c4f6
69 changed files with 202 additions and 10766 deletions

View File

@ -1,7 +1,7 @@
from django.contrib import admin
# Register your models here.
from .models import Tobacco, TobaccoCategory, ClubhausEvent, EventDate
from .models import Tobacco, TobaccoCategory, ClubhausEvent, EventDate, EventDateVotes
@admin.register(Tobacco)
@ -23,6 +23,12 @@ class EventDateAdmin(admin.ModelAdmin):
ordering = ("id",)
@admin.register(EventDateVotes)
class EventDateVotesAdmin(admin.ModelAdmin):
list_display = ("id", "name", "date")
ordering = ("id",)
class EventDateInline(admin.StackedInline):
model = EventDate
extra = 0
@ -30,7 +36,8 @@ class EventDateInline(admin.StackedInline):
@admin.register(ClubhausEvent)
class ClubhausEventAdmin(admin.ModelAdmin):
list_display = ("id", "name", "date")
list_display = ("id", "name", "date", "active")
list_editable = ('active',)
ordering = ("date",)
inlines = [
EventDateInline

View File

@ -0,0 +1,18 @@
# Generated by Django 4.0.5 on 2022-07-31 19:00
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('homepage', '0006_eventdate_date'),
]
operations = [
migrations.AddField(
model_name='clubhausevent',
name='active',
field=models.BooleanField(default=False),
),
]

View File

@ -0,0 +1,22 @@
# Generated by Django 4.0.5 on 2022-07-31 19:30
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('homepage', '0007_clubhausevent_active'),
]
operations = [
migrations.CreateModel(
name='EventDateVotes',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('name', models.CharField(max_length=200)),
('date', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='homepage.eventdate', to_field='date')),
],
),
]

View File

@ -0,0 +1,17 @@
# Generated by Django 4.0.5 on 2022-07-31 19:33
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('homepage', '0008_eventdatevotes'),
]
operations = [
migrations.AlterUniqueTogether(
name='eventdatevotes',
unique_together={('name', 'date')},
),
]

View File

@ -0,0 +1,21 @@
# Generated by Django 4.0.5 on 2022-07-31 19:41
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('homepage', '0009_alter_eventdatevotes_unique_together'),
]
operations = [
migrations.AlterUniqueTogether(
name='eventdatevotes',
unique_together=set(),
),
migrations.AddConstraint(
model_name='eventdatevotes',
constraint=models.UniqueConstraint(fields=('name', 'date'), name='unique_name_date'),
),
]

View File

@ -27,15 +27,29 @@ class EventDate(models.Model):
date = models.DateTimeField(unique=True, default=timezone.now)
def __str__(self):
return f"{self.event.name}"
return f"{self.event.name} - {self.date.date().isoformat()}"
class ClubhausEvent(models.Model):
name = models.CharField(max_length=200, blank=True)
date = models.DateTimeField(blank=True, null=True)
active = models.BooleanField(default=False)
location = models.TextField(blank=True)
beverages = models.TextField(blank=True)
food = models.TextField(blank=True)
def __str__(self):
return f"{self.name}"
class EventDateVotes(models.Model):
name = models.CharField(max_length=200, blank=False)
date = models.ForeignKey(to="EventDate", to_field="date", on_delete=models.CASCADE)
class Meta:
constraints = [
models.UniqueConstraint(fields=("name", "date"), name="unique_name_date")
]
def __str__(self):
return f"{self.name} - {self.date.date.isoformat()}"

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -1,7 +0,0 @@
/*!
* Bootstrap Reboot v5.0.1 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors
* Copyright 2011-2021 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
*/*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){h1{font-size:2.5rem}}h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){h2{font-size:2rem}}h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){h3{font-size:1.75rem}}h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){h4{font-size:1.5rem}}h5{font-size:1.25rem}h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:.875em}mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -3,36 +3,18 @@
Copyright (c)2006-2014 Stephen M. McKamey.
Licensed under The MIT License.
*/
var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.findInternal=function(b,g,d){b instanceof String&&(b=String(b));for(var e=b.length,k=0;k<e;k++){var l=b[k];if(g.call(d,l,k,b))return{i:k,v:l}}return{i:-1,v:void 0}};$jscomp.ASSUME_ES5=!1;$jscomp.ASSUME_NO_NATIVE_MAP=!1;$jscomp.ASSUME_NO_NATIVE_SET=!1;$jscomp.SIMPLE_FROUND_POLYFILL=!1;
$jscomp.defineProperty=$jscomp.ASSUME_ES5||"function"==typeof Object.defineProperties?Object.defineProperty:function(b,g,d){b!=Array.prototype&&b!=Object.prototype&&(b[g]=d.value)};$jscomp.getGlobal=function(b){return"undefined"!=typeof window&&window===b?b:"undefined"!=typeof global&&null!=global?global:b};$jscomp.global=$jscomp.getGlobal(this);
$jscomp.polyfill=function(b,g,d,e){if(g){d=$jscomp.global;b=b.split(".");for(e=0;e<b.length-1;e++){var k=b[e];k in d||(d[k]={});d=d[k]}b=b[b.length-1];e=d[b];g=g(e);g!=e&&null!=g&&$jscomp.defineProperty(d,b,{configurable:!0,writable:!0,value:g})}};$jscomp.polyfill("Array.prototype.find",function(b){return b?b:function(b,d){return $jscomp.findInternal(this,b,d).v}},"es6","es3");
$jscomp.polyfill("Array.prototype.findIndex",function(b){return b?b:function(b,d){return $jscomp.findInternal(this,b,d).i}},"es6","es3");
var countdown=function(){function b(a,c){var f=a.getTime();a.setMonth(a.getMonth()+c);return Math.round((a.getTime()-f)/864E5)}function g(a){var c=a.getTime(),f=new Date(c);f.setMonth(a.getMonth()+1);return Math.round((f.getTime()-c)/864E5)}function d(a,c){c=c instanceof Date||null!==c&&isFinite(c)?new Date(+c):new Date;if(!a)return c;var f=+a.value||0;if(f)return c.setTime(c.getTime()+f),c;(f=+a.milliseconds||0)&&c.setMilliseconds(c.getMilliseconds()+f);(f=+a.seconds||0)&&c.setSeconds(c.getSeconds()+
f);(f=+a.minutes||0)&&c.setMinutes(c.getMinutes()+f);(f=+a.hours||0)&&c.setHours(c.getHours()+f);(f=+a.weeks||0)&&(f*=7);(f+=+a.days||0)&&c.setDate(c.getDate()+f);(f=+a.months||0)&&c.setMonth(c.getMonth()+f);(f=+a.millennia||0)&&(f*=10);(f+=+a.centuries||0)&&(f*=10);(f+=+a.decades||0)&&(f*=10);(f+=+a.years||0)&&c.setFullYear(c.getFullYear()+f);return c}function e(a,c){return z(a)+(1===a?u[c]:v[c])}function k(){}function l(a,c,f,b,d,e){0<=a[f]&&(c+=a[f],delete a[f]);c/=d;if(1>=c+1)return 0;if(0<=a[b]){a[b]=
+(a[b]+c).toFixed(e);switch(b){case "seconds":if(60!==a.seconds||isNaN(a.minutes))break;a.minutes++;a.seconds=0;case "minutes":if(60!==a.minutes||isNaN(a.hours))break;a.hours++;a.minutes=0;case "hours":if(24!==a.hours||isNaN(a.days))break;a.days++;a.hours=0;case "days":if(7!==a.days||isNaN(a.weeks))break;a.weeks++;a.days=0;case "weeks":if(a.weeks!==g(a.refMonth)/7||isNaN(a.months))break;a.months++;a.weeks=0;case "months":if(12!==a.months||isNaN(a.years))break;a.years++;a.months=0;case "years":if(10!==
a.years||isNaN(a.decades))break;a.decades++;a.years=0;case "decades":if(10!==a.decades||isNaN(a.centuries))break;a.centuries++;a.decades=0;case "centuries":10!==a.centuries||isNaN(a.millennia)||(a.millennia++,a.centuries=0)}return 0}return c}function t(a,c,f,d,e,k){var h=new Date;a.start=c=c||h;a.end=f=f||h;a.units=d;a.value=f.getTime()-c.getTime();0>a.value&&(h=f,f=c,c=h);if(0<a.value)return a.millennia=0,a.centuries=0,a.decades=0,a.years=0,a.months=0,a.weeks=0,a.days=0,a.hours=0,a.minutes=0,a.seconds=
0,a.milliseconds=0,a;a.refMonth=new Date(c.getFullYear(),c.getMonth(),15,12,0,0);try{a.millennia=0;a.centuries=0;a.decades=0;a.years=f.getFullYear()-c.getFullYear();a.months=f.getMonth()-c.getMonth();a.weeks=0;a.days=f.getDate()-c.getDate();a.hours=f.getHours()-c.getHours();a.minutes=f.getMinutes()-c.getMinutes();a.seconds=f.getSeconds()-c.getSeconds();a.milliseconds=f.getMilliseconds()-c.getMilliseconds();if(0>a.milliseconds){var q=r(-a.milliseconds/1E3);a.seconds-=q;a.milliseconds+=1E3*q}else 1E3<=
a.milliseconds&&(a.seconds+=n(a.milliseconds/1E3),a.milliseconds%=1E3);0>a.seconds?(q=r(-a.seconds/60),a.minutes-=q,a.seconds+=60*q):60<=a.seconds&&(a.minutes+=n(a.seconds/60),a.seconds%=60);0>a.minutes?(q=r(-a.minutes/60),a.hours-=q,a.minutes+=60*q):60<=a.minutes&&(a.hours+=n(a.minutes/60),a.minutes%=60);0>a.hours?(q=r(-a.hours/24),a.days-=q,a.hours+=24*q):24<=a.hours&&(a.days+=n(a.hours/24),a.hours%=24);for(;0>a.days;)a.months--,a.days+=b(a.refMonth,1);7<=a.days&&(a.weeks+=n(a.days/7),a.days%=7);
0>a.months?(q=r(-a.months/12),a.years-=q,a.months+=12*q):12<=a.months&&(a.years+=n(a.months/12),a.months%=12);10<=a.years&&(a.decades+=n(a.years/10),a.years%=10,10<=a.decades&&(a.centuries+=n(a.decades/10),a.decades%=10,10<=a.centuries&&(a.millennia+=n(a.centuries/10),a.centuries%=10)));c=0;!(d&1024)||c>=e?(a.centuries+=10*a.millennia,delete a.millennia):a.millennia&&c++;!(d&512)||c>=e?(a.decades+=10*a.centuries,delete a.centuries):a.centuries&&c++;!(d&256)||c>=e?(a.years+=10*a.decades,delete a.decades):
a.decades&&c++;!(d&128)||c>=e?(a.months+=12*a.years,delete a.years):a.years&&c++;!(d&64)||c>=e?(a.months&&(a.days+=b(a.refMonth,a.months)),delete a.months,7<=a.days&&(a.weeks+=n(a.days/7),a.days%=7)):a.months&&c++;!(d&32)||c>=e?(a.days+=7*a.weeks,delete a.weeks):a.weeks&&c++;!(d&16)||c>=e?(a.hours+=24*a.days,delete a.days):a.days&&c++;!(d&8)||c>=e?(a.minutes+=60*a.hours,delete a.hours):a.hours&&c++;!(d&4)||c>=e?(a.seconds+=60*a.minutes,delete a.minutes):a.minutes&&c++;!(d&2)||c>=e?(a.milliseconds+=
1E3*a.seconds,delete a.seconds):a.seconds&&c++;if(!(d&1)||c>=e){var m=l(a,0,"milliseconds","seconds",1E3,k);if(m&&(m=l(a,m,"seconds","minutes",60,k))&&(m=l(a,m,"minutes","hours",60,k))&&(m=l(a,m,"hours","days",24,k))&&(m=l(a,m,"days","weeks",7,k))&&(m=l(a,m,"weeks","months",g(a.refMonth)/7,k))){d=m;var A=a.refMonth,p=A.getTime(),B=new Date(p);B.setFullYear(A.getFullYear()+1);var E=Math.round((B.getTime()-p)/864E5);if(m=l(a,d,"months","years",E/g(a.refMonth),k))if(m=l(a,m,"years","decades",10,k))if(m=
l(a,m,"decades","centuries",10,k))if(m=l(a,m,"centuries","millennia",10,k))throw Error("Fractional unit overflow");}}}finally{delete a.refMonth}return a}function h(a,c,b,g,e){b=+b||222;g=0<g?g:NaN;e=0<e?20>e?Math.round(e):20:0;var f=null;if("function"===typeof a){var h=a;a=null}else a instanceof Date||(null!==a&&isFinite(a)?a=new Date(+a):("object"===typeof f&&(f=a),a=null));var l=null;"function"===typeof c?(h=c,c=null):c instanceof Date||(null!==c&&isFinite(c)?c=new Date(+c):("object"===typeof c&&
(l=c),c=null));f&&(a=d(f,c));l&&(c=d(l,a));if(!a&&!c)return new k;if(!h)return t(new k,a,c,b,g,e);f=b&1?1E3/30:b&2?1E3:b&4?6E4:b&8?36E5:b&16?864E5:6048E5;var m;l=function(){h(t(new k,a,c,b,g,e),m)};l();return m=setInterval(l,f)}var r=Math.ceil,n=Math.floor,u,v,w,x,y,p,z;k.prototype.toString=function(a){var c=C(this),b=c.length;if(!b)return a?""+a:y;if(1===b)return c[0];a=w+c.pop();return c.join(x)+a};k.prototype.toHTML=function(a,c){a=a||"span";var b=C(this),d=b.length;if(!d)return(c=c||y)?"<"+a+
">"+c+"</"+a+">":c;for(c=0;c<d;c++)b[c]="<"+a+">"+b[c]+"</"+a+">";if(1===d)return b[0];a=w+b.pop();return b.join(x)+a};k.prototype.addTo=function(a){return d(this,a)};var C=function(a){var c=[],b=a.millennia;b&&c.push(p(b,10));(b=a.centuries)&&c.push(p(b,9));(b=a.decades)&&c.push(p(b,8));(b=a.years)&&c.push(p(b,7));(b=a.months)&&c.push(p(b,6));(b=a.weeks)&&c.push(p(b,5));(b=a.days)&&c.push(p(b,4));(b=a.hours)&&c.push(p(b,3));(b=a.minutes)&&c.push(p(b,2));(b=a.seconds)&&c.push(p(b,1));(b=a.milliseconds)&&
c.push(p(b,0));return c};h.MILLISECONDS=1;h.SECONDS=2;h.MINUTES=4;h.HOURS=8;h.DAYS=16;h.WEEKS=32;h.MONTHS=64;h.YEARS=128;h.DECADES=256;h.CENTURIES=512;h.MILLENNIA=1024;h.DEFAULTS=222;h.ALL=2047;var F=h.setFormat=function(a){if(a){if("singular"in a||"plural"in a){var b=a.singular||[];b.split&&(b=b.split("|"));var d=a.plural||[];d.split&&(d=d.split("|"));for(var e=0;10>=e;e++)u[e]=b[e]||u[e],v[e]=d[e]||v[e]}"string"===typeof a.last&&(w=a.last);"string"===typeof a.delim&&(x=a.delim);"string"===typeof a.empty&&
(y=a.empty);"function"===typeof a.formatNumber&&(z=a.formatNumber);"function"===typeof a.formatter&&(p=a.formatter)}},D=h.resetFormat=function(){u=" millisecond; second; minute; hour; day; week; month; year; decade; century; millennium".split(";");v=" milliseconds; seconds; minutes; hours; days; weeks; months; years; decades; centuries; millennia".split(";");w=" and ";x=", ";y="";z=function(a){return a};p=e};h.setLabels=function(a,b,d,e,g,k,h){F({singular:a,plural:b,last:d,delim:e,empty:g,formatNumber:k,
formatter:h})};h.resetLabels=D;D();"undefined"!==typeof module&&module.exports?module.exports=h:"undefined"!==typeof window&&"function"===typeof window.define&&"undefined"!==typeof window.define.amd&&window.define("countdown",[],function(){return h});return h}(),DIRECTIVE_KEY_MAP={Y:"years",m:"months",n:"daysToMonth",d:"daysToWeek",w:"weeks",W:"weeksToMonth",H:"hours",M:"minutes",S:"seconds",D:"days",I:"totalHours",N:"totalMinutes",T:"totalSeconds"};
function escapedRegExp(b){b=b.toString().replace(/([.?*+^$[\]\\(){}|-])/g,"\\$1");return new RegExp(b)}
function strftime(b){return function(g){var d=g.match(/%(-|!)?[A-Z]{1}(:[^;]+;)?/gi);if(d)for(var e=0,k=d.length;e<k;++e){var l=d[e].match(/%(-|!)?([a-zA-Z]{1})(:[^;]+;)?/),t=escapedRegExp(l[0]),h=l[1]||"",r=l[3]||"",n=null;l=l[2];DIRECTIVE_KEY_MAP.hasOwnProperty(l)&&(n=DIRECTIVE_KEY_MAP[l],n=Number(b[n]));null!==n&&("!"===h&&(n=pluralize(r,n)),""===h&&10>n&&(n="0"+n.toString()),g=g.replace(t,n.toString()))}return g=g.replace(/%%/,"%")}}
function pluralize(b,g){var d="s",e="";b&&(b=b.replace(/(:|;|\s)/gi,"").split(/,/),1===b.length?d=b[0]:(e=b[0],d=b[1]));return 1<Math.abs(g)?d:e}var matchers=[];matchers.push(/^[0-9]*$/.source);matchers.push(/([0-9]{1,2}\/){2}[0-9]{4}( [0-9]{1,2}(:[0-9]{2}){2})?/.source);matchers.push(/[0-9]{4}([\/\-][0-9]{1,2}){2}( [0-9]{1,2}(:[0-9]{2}){2})?/.source);matchers=new RegExp(matchers.join("|"));
function parseDateString(b){if(b instanceof Date)return b;if(String(b).match(matchers)){if(String(b).match(/^[0-9]*$/)&&(b=Number(b)),String(b).match(/\-/)&&(b=String(b).replace(/\-/g,"/")),b=new Date(b),isValidDate(b))return b}else throw Error("Couldn't cast `"+b+"` to a date object.");}function isValidDate(b){return b instanceof Date&&!isNaN(b)}var isBuilder=document.querySelector("html").classList.contains("is-builder"),countdowns=[];
function initCountdown(b){document.querySelectorAll(".countdown:not(.countdown-inited)").forEach(function(g){var d=countdown.DAYS|countdown.HOURS|countdown.MINUTES|countdown.SECONDS;g.classList.add("countdown-inited");var e=parseDateString(g.getAttribute("data-due-date"));countdowns.find(function(d){return d.id===b.getAttribute("id")})&&(countdowns=[]);b.getAttribute("id")&&(d=countdown(e,function(b){b.strftime=strftime(b);var d=g.closest(".countdown-cont").querySelector("div.daysCountdown").getAttribute("title"),
e=g.closest(".countdown-cont").querySelector("div.hoursCountdown").getAttribute("title"),h=g.closest(".countdown-cont").querySelector("div.minutesCountdown").getAttribute("title"),k=g.closest(".countdown-cont").querySelector("div.secondsCountdown").getAttribute("title");g.innerHTML=b.strftime(['<div class="row"><div class="col-3"><div class="number-wrap"><span class="number display-2"><b>%D</b></span><span mbr-text class="period display-7">',d,'</span><span class="dot">:</span></div></div><div class="col-3"><div class="number-wrap"><span class="number display-2"><b>%H</b></span><span mbr-text class="period display-7">',
e,'</span><span class="dot">:</span></div></div><div class="col-3"><div class="number-wrap"><span class="number display-2"><b>%M</b></span><span mbr-text class="period display-7">',h,'</span><span class="dot">:</span></div></div><div class="col-3"><div class="number-wrap"><span class="number display-2"><b>%S</b></span><span mbr-text class="period display-7">',k,"</span></div></div></div>"].join(""))},d),d={id:b.getAttribute("id"),timerId:d},d.id&&countdowns.push(d))});document.querySelectorAll(".countdown:not(.countdown-inited)").forEach(function(b){new countdown(b.getAttribute("data-due-date"),
function(d){b.textContent=d.strftime("%D days %H:%M:%S")})})}
function initCountdownBuild(){document.querySelectorAll(".countdown:not(.countdown-inited)").forEach(function(b){var g=countdown.DAYS|countdown.HOURS|countdown.MINUTES|countdown.SECONDS;b.classList.add("countdown-inited");var d=parseDateString(b.getAttribute("data-due-date"));countdown(d,function(d){d.strftime=strftime(d);var e=b.closest(".countdown-cont").querySelector("div.daysCountdown").getAttribute("title"),g=b.closest(".countdown-cont").querySelector("div.hoursCountdown").getAttribute("title"),t=
b.closest(".countdown-cont").querySelector("div.minutesCountdown").getAttribute("title"),h=b.closest(".countdown-cont").querySelector("div.secondsCountdown").getAttribute("title");b.innerHTML=d.strftime(['<div class="row"><div class="col-3"><div class="number-wrap"><span class="number display-2"><b>%D</b></span><span mbr-text class="period display-7">',e,'</span><span class="dot">:</span></div></div><div class="col-3"><div class="number-wrap"><span class="number display-2"><b>%H</b></span><span mbr-text class="period display-7">',
g,'</span><span class="dot">:</span></div></div><div class="col-3"><div class="number-wrap"><span class="number display-2"><b>%M</b></span><span mbr-text class="period display-7">',t,'</span><span class="dot">:</span></div></div><div class="col-3"><div class="number-wrap"><span class="number display-2"><b>%S</b></span><span mbr-text class="period display-7">',h,"</span></div></div></div>"].join(""))},g)})}
function changeCountdown(b,g){var d=b.querySelector(".countdown");-1<g.search(/\d\d\d\d\/\d\d\/\d\d/g)&&(d.classList.remove("countdown-inited"),initCountdown(b))}
if(isBuilder)$(document).on("add.cards",function(b){0!=$(".countdown").length&&initCountdown(b.target)}).on("changeParameter.cards",function(b,g,d){if("countdown"===g){g=countdowns.find(function(d){return d.id===b.target.getAttribute("id")});var e=countdowns.findIndex(function(d){return d.id===b.target.getAttribute("id")});g&&(clearTimeout(g.timerId),countdowns.splice(e,1));changeCountdown(b.target,d)}}).on("delete.cards",function(b){if(b.target.querySelector(".countdown")){var g=countdowns.find(function(d){return d.id===
b.target.getAttribute("id")}),d=countdowns.findIndex(function(d){return d.id===b.target.getAttribute("id")});-1!==d&&(clearTimeout(g.timerId),countdowns.splice(d,1))}});else 0!=document.querySelectorAll(".countdown").length&&initCountdownBuild();
var countdown=function(){function z(a,b){var c=a.getTime();a.setMonth(a.getMonth()+b);return Math.round((a.getTime()-c)/864E5)}function v(a){var b=a.getTime(),c=new Date(b);c.setMonth(a.getMonth()+1);return Math.round((c.getTime()-b)/864E5)}function w(a,b){b=b instanceof Date||null!==b&&isFinite(b)?new Date(+b):new Date;if(!a)return b;var c=+a.value||0;if(c)return b.setTime(b.getTime()+c),b;(c=+a.milliseconds||0)&&b.setMilliseconds(b.getMilliseconds()+c);(c=+a.seconds||0)&&b.setSeconds(b.getSeconds()+
c);(c=+a.minutes||0)&&b.setMinutes(b.getMinutes()+c);(c=+a.hours||0)&&b.setHours(b.getHours()+c);(c=+a.weeks||0)&&(c*=7);(c+=+a.days||0)&&b.setDate(b.getDate()+c);(c=+a.months||0)&&b.setMonth(b.getMonth()+c);(c=+a.millennia||0)&&(c*=10);(c+=+a.centuries||0)&&(c*=10);(c+=+a.decades||0)&&(c*=10);(c+=+a.years||0)&&b.setFullYear(b.getFullYear()+c);return b}function C(a,b){return x(a)+(1===a?p[b]:q[b])}function n(){}function k(a,b,c,e,l,d){0<=a[c]&&(b+=a[c],delete a[c]);b/=l;if(1>=b+1)return 0;if(0<=a[e]){a[e]=
+(a[e]+b).toFixed(d);switch(e){case "seconds":if(60!==a.seconds||isNaN(a.minutes))break;a.minutes++;a.seconds=0;case "minutes":if(60!==a.minutes||isNaN(a.hours))break;a.hours++;a.minutes=0;case "hours":if(24!==a.hours||isNaN(a.days))break;a.days++;a.hours=0;case "days":if(7!==a.days||isNaN(a.weeks))break;a.weeks++;a.days=0;case "weeks":if(a.weeks!==v(a.refMonth)/7||isNaN(a.months))break;a.months++;a.weeks=0;case "months":if(12!==a.months||isNaN(a.years))break;a.years++;a.months=0;case "years":if(10!==
a.years||isNaN(a.decades))break;a.decades++;a.years=0;case "decades":if(10!==a.decades||isNaN(a.centuries))break;a.centuries++;a.decades=0;case "centuries":if(10!==a.centuries||isNaN(a.millennia))break;a.millennia++;a.centuries=0}return 0}return b}function A(a,b,c,e,l,d){var f=new Date;a.start=b=b||f;a.end=c=c||f;a.units=e;a.value=c.getTime()-b.getTime();0>a.value&&(f=c,c=b,b=f);a.refMonth=new Date(b.getFullYear(),b.getMonth(),15,12,0,0);try{a.millennia=0;a.centuries=0;a.decades=0;a.years=c.getFullYear()-
b.getFullYear();a.months=c.getMonth()-b.getMonth();a.weeks=0;a.days=c.getDate()-b.getDate();a.hours=c.getHours()-b.getHours();a.minutes=c.getMinutes()-b.getMinutes();a.seconds=c.getSeconds()-b.getSeconds();a.milliseconds=c.getMilliseconds()-b.getMilliseconds();var g;0>a.milliseconds?(g=s(-a.milliseconds/1E3),a.seconds-=g,a.milliseconds+=1E3*g):1E3<=a.milliseconds&&(a.seconds+=m(a.milliseconds/1E3),a.milliseconds%=1E3);0>a.seconds?(g=s(-a.seconds/60),a.minutes-=g,a.seconds+=60*g):60<=a.seconds&&(a.minutes+=
m(a.seconds/60),a.seconds%=60);0>a.minutes?(g=s(-a.minutes/60),a.hours-=g,a.minutes+=60*g):60<=a.minutes&&(a.hours+=m(a.minutes/60),a.minutes%=60);0>a.hours?(g=s(-a.hours/24),a.days-=g,a.hours+=24*g):24<=a.hours&&(a.days+=m(a.hours/24),a.hours%=24);for(;0>a.days;)a.months--,a.days+=z(a.refMonth,1);7<=a.days&&(a.weeks+=m(a.days/7),a.days%=7);0>a.months?(g=s(-a.months/12),a.years-=g,a.months+=12*g):12<=a.months&&(a.years+=m(a.months/12),a.months%=12);10<=a.years&&(a.decades+=m(a.years/10),a.years%=
10,10<=a.decades&&(a.centuries+=m(a.decades/10),a.decades%=10,10<=a.centuries&&(a.millennia+=m(a.centuries/10),a.centuries%=10)));b=0;!(e&1024)||b>=l?(a.centuries+=10*a.millennia,delete a.millennia):a.millennia&&b++;!(e&512)||b>=l?(a.decades+=10*a.centuries,delete a.centuries):a.centuries&&b++;!(e&256)||b>=l?(a.years+=10*a.decades,delete a.decades):a.decades&&b++;!(e&128)||b>=l?(a.months+=12*a.years,delete a.years):a.years&&b++;!(e&64)||b>=l?(a.months&&(a.days+=z(a.refMonth,a.months)),delete a.months,
7<=a.days&&(a.weeks+=m(a.days/7),a.days%=7)):a.months&&b++;!(e&32)||b>=l?(a.days+=7*a.weeks,delete a.weeks):a.weeks&&b++;!(e&16)||b>=l?(a.hours+=24*a.days,delete a.days):a.days&&b++;!(e&8)||b>=l?(a.minutes+=60*a.hours,delete a.hours):a.hours&&b++;!(e&4)||b>=l?(a.seconds+=60*a.minutes,delete a.minutes):a.minutes&&b++;!(e&2)||b>=l?(a.milliseconds+=1E3*a.seconds,delete a.seconds):a.seconds&&b++;if(!(e&1)||b>=l){var h=k(a,0,"milliseconds","seconds",1E3,d);if(h&&(h=k(a,h,"seconds","minutes",60,d))&&(h=
k(a,h,"minutes","hours",60,d))&&(h=k(a,h,"hours","days",24,d))&&(h=k(a,h,"days","weeks",7,d))&&(h=k(a,h,"weeks","months",v(a.refMonth)/7,d))){e=h;var n,p=a.refMonth,q=p.getTime(),r=new Date(q);r.setFullYear(p.getFullYear()+1);n=Math.round((r.getTime()-q)/864E5);if(h=k(a,e,"months","years",n/v(a.refMonth),d))if(h=k(a,h,"years","decades",10,d))if(h=k(a,h,"decades","centuries",10,d))if(h=k(a,h,"centuries","millennia",10,d))throw Error("Fractional unit overflow");}}}finally{delete a.refMonth}return a}
function d(a,b,c,e,d){var f;c=+c||222;e=0<e?e:NaN;d=0<d?20>d?Math.round(d):20:0;var k=null;"function"===typeof a?(f=a,a=null):a instanceof Date||(null!==a&&isFinite(a)?a=new Date(+a):("object"===typeof k&&(k=a),a=null));var g=null;"function"===typeof b?(f=b,b=null):b instanceof Date||(null!==b&&isFinite(b)?b=new Date(+b):("object"===typeof b&&(g=b),b=null));k&&(a=w(k,b));g&&(b=w(g,a));if(!a&&!b)return new n;if(!f)return A(new n,a,b,c,e,d);var k=c&1?1E3/30:c&2?1E3:c&4?6E4:c&8?36E5:c&16?864E5:6048E5,
h,g=function(){f(A(new n,a,b,c,e,d),h)};g();return h=setInterval(g,k)}var s=Math.ceil,m=Math.floor,p,q,r,t,u,f,x,y;n.prototype.toString=function(a){var b=y(this),c=b.length;if(!c)return a?""+a:u;if(1===c)return b[0];a=r+b.pop();return b.join(t)+a};n.prototype.toHTML=function(a,b){a=a||"span";var c=y(this),e=c.length;if(!e)return(b=b||u)?"\x3c"+a+"\x3e"+b+"\x3c/"+a+"\x3e":b;for(var d=0;d<e;d++)c[d]="\x3c"+a+"\x3e"+c[d]+"\x3c/"+a+"\x3e";if(1===e)return c[0];e=r+c.pop();return c.join(t)+e};n.prototype.addTo=
function(a){return w(this,a)};y=function(a){var b=[],c=a.millennia;c&&b.push(f(c,10));(c=a.centuries)&&b.push(f(c,9));(c=a.decades)&&b.push(f(c,8));(c=a.years)&&b.push(f(c,7));(c=a.months)&&b.push(f(c,6));(c=a.weeks)&&b.push(f(c,5));(c=a.days)&&b.push(f(c,4));(c=a.hours)&&b.push(f(c,3));(c=a.minutes)&&b.push(f(c,2));(c=a.seconds)&&b.push(f(c,1));(c=a.milliseconds)&&b.push(f(c,0));return b};d.MILLISECONDS=1;d.SECONDS=2;d.MINUTES=4;d.HOURS=8;d.DAYS=16;d.WEEKS=32;d.MONTHS=64;d.YEARS=128;d.DECADES=256;
d.CENTURIES=512;d.MILLENNIA=1024;d.DEFAULTS=222;d.ALL=2047;var D=d.setFormat=function(a){if(a){if("singular"in a||"plural"in a){var b=a.singular||[];b.split&&(b=b.split("|"));var c=a.plural||[];c.split&&(c=c.split("|"));for(var d=0;10>=d;d++)p[d]=b[d]||p[d],q[d]=c[d]||q[d]}"string"===typeof a.last&&(r=a.last);"string"===typeof a.delim&&(t=a.delim);"string"===typeof a.empty&&(u=a.empty);"function"===typeof a.formatNumber&&(x=a.formatNumber);"function"===typeof a.formatter&&(f=a.formatter)}},B=d.resetFormat=
function(){p=" millisecond; second; minute; hour; day; week; month; year; decade; century; millennium".split(";");q=" milliseconds; seconds; minutes; hours; days; weeks; months; years; decades; centuries; millennia".split(";");r=" and ";t=", ";u="";x=function(a){return a};f=C};d.setLabels=function(a,b,c,d,f,k,m){D({singular:a,plural:b,last:c,delim:d,empty:f,formatNumber:k,formatter:m})};d.resetLabels=B;B();"undefined"!==typeof module&&module.exports?module.exports=d:"undefined"!==typeof window&&("function"===
typeof window.define&&"undefined"!==typeof window.define.amd)&&window.define("countdown",[],function(){return d});return d}();

View File

@ -1,265 +0,0 @@
.navbar-dropdown {
left: 0;
padding: 0;
position: absolute;
right: 0;
top: 0;
transition: all 0.45s ease;
z-index: 1030;
background: #282828; }
.navbar-dropdown .navbar-logo {
margin-right: 0.8rem;
transition: margin 0.3s ease-in-out;
vertical-align: middle; }
.navbar-dropdown .navbar-logo img {
height: 3.125rem;
transition: all 0.3s ease-in-out; }
.navbar-dropdown .navbar-logo.mbr-iconfont {
font-size: 3.125rem;
line-height: 3.125rem; }
.navbar-dropdown .navbar-caption {
font-weight: 700;
white-space: normal;
vertical-align: -4px;
line-height: 3.125rem !important; }
.navbar-dropdown .navbar-caption, .navbar-dropdown .navbar-caption:hover {
color: inherit;
text-decoration: none; }
.navbar-dropdown .mbr-iconfont + .navbar-caption {
vertical-align: -1px; }
.navbar-dropdown.navbar-fixed-top {
position: fixed; }
.navbar-dropdown .navbar-brand span {
vertical-align: -4px; }
.navbar-dropdown.bg-color.transparent {
background: none; }
.navbar-dropdown.navbar-short .navbar-brand {
padding: 0.625rem 0; }
.navbar-dropdown.navbar-short .navbar-brand span {
vertical-align: -1px; }
.navbar-dropdown.navbar-short .navbar-caption {
line-height: 2.375rem !important;
vertical-align: -2px; }
.navbar-dropdown.navbar-short .navbar-logo {
margin-right: 0.5rem; }
.navbar-dropdown.navbar-short .navbar-logo img {
height: 2.375rem; }
.navbar-dropdown.navbar-short .navbar-logo.mbr-iconfont {
font-size: 2.375rem;
line-height: 2.375rem; }
.navbar-dropdown.navbar-short .mbr-table-cell {
height: 3.625rem; }
.navbar-dropdown .navbar-close {
left: 0.6875rem;
position: fixed;
top: 0.75rem;
z-index: 1000; }
.navbar-dropdown .hamburger-icon {
content: "";
display: inline-block;
vertical-align: middle;
width: 16px;
-webkit-box-shadow: 0 -6px 0 1px #282828,0 0 0 1px #282828,0 6px 0 1px #282828;
-moz-box-shadow: 0 -6px 0 1px #282828,0 0 0 1px #282828,0 6px 0 1px #282828;
box-shadow: 0 -6px 0 1px #282828,0 0 0 1px #282828,0 6px 0 1px #282828; }
.dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
border-bottom: 0.35em solid transparent;
border-left: 0.35em solid;
border-right: 0;
border-top: 0.35em solid transparent;
margin-left: 0.3rem; }
.dropdown-menu .dropdown-item:focus {
outline: 0; }
.nav-dropdown {
font-size: 0.75rem;
font-weight: 500;
height: auto !important; }
.nav-dropdown .nav-btn {
padding-left: 1rem; }
.nav-dropdown .link {
margin: .667em 1.667em;
font-weight: 500;
padding: 0;
transition: color .2s ease-in-out; }
.nav-dropdown .link.dropdown-toggle {
margin-right: 2.583em; }
.nav-dropdown .link.dropdown-toggle::after {
margin-left: .25rem;
border-top: 0.35em solid;
border-right: 0.35em solid transparent;
border-left: 0.35em solid transparent;
border-bottom: 0; }
.nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
margin: 0;
padding: 0.667em 3.263em 0.667em 1.667em; }
.nav-dropdown .link::after,
.nav-dropdown .dropdown-item::after {
color: inherit; }
.nav-dropdown .btn {
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0;
margin-bottom: 0;
padding-left: 1.25rem;
padding-right: 1.25rem; }
.nav-dropdown .dropdown-menu {
border-radius: 0;
border: 0;
left: 0;
margin: 0;
padding-bottom: 1.25rem;
padding-top: 1.25rem;
position: relative; }
.nav-dropdown .dropdown-submenu {
margin-left: 0.125rem;
top: 0; }
.nav-dropdown .dropdown-item {
font-weight: 500;
line-height: 2;
padding: 0.3846em 4.615em 0.3846em 1.5385em;
position: relative;
transition: color .2s ease-in-out, background-color .2s ease-in-out; }
.nav-dropdown .dropdown-item::after {
margin-top: -0.3077em;
position: absolute;
right: 1.1538em;
top: 50%; }
.nav-dropdown .dropdown-item:focus, .nav-dropdown .dropdown-item:hover {
background: none; }
@media (max-width: 767px) {
.nav-dropdown.navbar-toggleable-sm {
bottom: 0;
display: none;
left: 0;
overflow-x: hidden;
position: fixed;
top: 0;
transform: translateX(-100%);
-ms-transform: translateX(-100%);
-webkit-transform: translateX(-100%);
width: 18.75rem;
z-index: 999; } }
.nav-dropdown.navbar-toggleable-xl {
bottom: 0;
display: none;
left: 0;
overflow-x: hidden;
position: fixed;
top: 0;
transform: translateX(-100%);
-ms-transform: translateX(-100%);
-webkit-transform: translateX(-100%);
width: 18.75rem;
z-index: 999; }
.nav-dropdown-sm {
display: block !important;
overflow-x: hidden;
overflow: auto;
padding-top: 3.875rem; }
.nav-dropdown-sm::after {
content: "";
display: block;
height: 3rem;
width: 100%; }
.nav-dropdown-sm.collapse.in ~ .navbar-close {
display: block !important; }
.nav-dropdown-sm.collapsing, .nav-dropdown-sm.collapse.in {
transform: translateX(0);
-ms-transform: translateX(0);
-webkit-transform: translateX(0);
transition: all 0.25s ease-out;
-webkit-transition: all 0.25s ease-out;
background: #282828; }
.nav-dropdown-sm.collapsing[aria-expanded="false"] {
transform: translateX(-100%);
-ms-transform: translateX(-100%);
-webkit-transform: translateX(-100%); }
.nav-dropdown-sm .nav-item {
display: block;
margin-left: 0 !important;
padding-left: 0; }
.nav-dropdown-sm .link,
.nav-dropdown-sm .dropdown-item {
border-top: 1px dotted rgba(255, 255, 255, 0.1);
font-size: 0.8125rem;
line-height: 1.6;
margin: 0 !important;
padding: 0.875rem 2.4rem 0.875rem 1.5625rem !important;
position: relative;
white-space: normal; }
.nav-dropdown-sm .link:focus, .nav-dropdown-sm .link:hover,
.nav-dropdown-sm .dropdown-item:focus,
.nav-dropdown-sm .dropdown-item:hover {
background: rgba(0, 0, 0, 0.2) !important;
color: #c0a375; }
.nav-dropdown-sm .nav-btn {
position: relative;
padding: 1.5625rem 1.5625rem 0 1.5625rem; }
.nav-dropdown-sm .nav-btn::before {
border-top: 1px dotted rgba(255, 255, 255, 0.1);
content: "";
left: 0;
position: absolute;
top: 0;
width: 100%; }
.nav-dropdown-sm .nav-btn + .nav-btn {
padding-top: 0.625rem; }
.nav-dropdown-sm .nav-btn + .nav-btn::before {
display: none; }
.nav-dropdown-sm .btn {
padding: 0.625rem 0; }
.nav-dropdown-sm .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
margin-left: .25rem;
border-top: 0.35em solid;
border-right: 0.35em solid transparent;
border-left: 0.35em solid transparent;
border-bottom: 0; }
.nav-dropdown-sm .dropdown-toggle[data-toggle="dropdown-submenu"][aria-expanded="true"]::after {
border-top: 0;
border-right: 0.35em solid transparent;
border-left: 0.35em solid transparent;
border-bottom: 0.35em solid; }
.nav-dropdown-sm .dropdown-menu {
margin: 0;
padding: 0;
position: relative;
top: 0;
left: 0;
width: 100%;
border: 0;
float: none;
border-radius: 0;
background: none; }
.nav-dropdown-sm .dropdown-submenu {
left: 100%;
margin-left: 0.125rem;
margin-top: -1.25rem;
top: 0; }
.navbar-toggleable-sm .nav-dropdown .dropdown-menu {
position: absolute; }
.navbar-toggleable-sm .nav-dropdown .dropdown-submenu {
left: 100%;
margin-left: 0.125rem;
margin-top: -1.25rem;
top: 0; }
.navbar-toggleable-sm.opened .nav-dropdown .dropdown-menu {
position: relative; }
.navbar-toggleable-sm.opened .nav-dropdown .dropdown-submenu {
left: 0;
margin-left: 00rem;
margin-top: 0rem;
top: 0; }
.is-builder .nav-dropdown.collapsing {
transition: none !important; }

View File

@ -1,7 +0,0 @@
var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.ASSUME_ES5=!1;$jscomp.ASSUME_NO_NATIVE_MAP=!1;$jscomp.ASSUME_NO_NATIVE_SET=!1;$jscomp.SIMPLE_FROUND_POLYFILL=!1;$jscomp.defineProperty=$jscomp.ASSUME_ES5||"function"==typeof Object.defineProperties?Object.defineProperty:function(b,c,a){b!=Array.prototype&&b!=Object.prototype&&(b[c]=a.value)};$jscomp.getGlobal=function(b){return"undefined"!=typeof window&&window===b?b:"undefined"!=typeof global&&null!=global?global:b};$jscomp.global=$jscomp.getGlobal(this);
$jscomp.polyfill=function(b,c,a,d){if(c){a=$jscomp.global;b=b.split(".");for(d=0;d<b.length-1;d++){var e=b[d];e in a||(a[e]={});a=a[e]}b=b[b.length-1];d=a[b];c=c(d);c!=d&&null!=c&&$jscomp.defineProperty(a,b,{configurable:!0,writable:!0,value:c})}};
$jscomp.polyfill("Array.from",function(b){return b?b:function(b,a,d){a=null!=a?a:function(a){return a};var e=[],c="undefined"!=typeof Symbol&&Symbol.iterator&&b[Symbol.iterator];if("function"==typeof c){b=c.call(b);for(var f=0;!(c=b.next()).done;)e.push(a.call(d,c.value,f++))}else for(c=b.length,f=0;f<c;f++)e.push(a.call(d,b[f],f));return e}},"es6","es3");
(function(){function b(a){"resize"===a.type&&(document.body.classList.remove("navbar-dropdown-open"),document.querySelector(".navbar-dropdown").querySelector(".navbar-collapse").classList.remove("show"),document.querySelector(".navbar-dropdown").classList.remove("opened"),Array.from(document.querySelector(".navbar-dropdown").querySelectorAll('.navbar-toggler[aria-expanded="true"]')).forEach(function(b){var a=b.querySelector(b.getAttribute("data-target"));a&&(a.classList.remove("in"),a.setAttribute("aria-expanded",
"false"),b.setAttribute("aria-expanded","false"))}));var b=document.documentElement.scrollTop;Array.from(document.querySelectorAll(".navbar-dropdown")).forEach(function(a){a.matches(".navbar-fixed-top")&&(a.matches(".transparent")&&!a.classList.contains("opened")&&(0<b?a.classList.remove("bg-color"):a.classList.add("bg-color")),0<b?a.classList.add("navbar-short"):a.classList.remove("navbar-short"))})}var c;["scroll","resize"].forEach(function(a){document.addEventListener(a,function(a){clearTimeout(c);
c=setTimeout(function(){b(a)},10)})});["show.bs.collapse","hide.bs.collapse"].forEach(function(a){document.addEventListener(a,function(b){if(b=b.target.closest(".navbar-dropdown"))"show.bs.collapse"===a?(document.body.classList.add("navbar-dropdown-open"),b.classList.add("opened")):(document.body.classList.remove("navbar-dropdown-open"),b.classList.remove("opened"),window.dispatchEvent(new Event("scroll.bs.navbar-dropdown.data-api")),b.dispatchEvent(new Event("collapse.bs.navbar-dropdown")))})});
document.addEventListener("collapse.bs.nav-dropdown",function(a){(a=a.relatedTarget.closest(".navbar-dropdown"))&&(a=a.querySelector('.navbar-toggler[aria-expanded="true"]'))&&a.dispatchEvent(new Event("click"))});document.querySelectorAll(".nav-link.dropdown-toggle").forEach(function(a){a.addEventListener("click",function(a){a.preventDefault();a.target.parentNode.classList.toggle("open")})})})();

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -1 +0,0 @@
{"ASWlLfgCco1uD7YU4b9xpw==":"web_party353535(conflicted%20copy%202022-03-23%20from%20tb-main)-2000x1124.jpg","UQXu1ZB0ssvWxkY3FiVxGA==":"social%20icon-2000x2000.jpg","/DVktJ/ZIAuFaY4FVoOnsA==":"social%20icon-1-2000x2000.jpg"}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 183 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 895 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 183 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 170 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 224 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 183 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 170 KiB

View File

@ -1,792 +0,0 @@
body {
font-family: Jost;
}
.display-1 {
font-family: 'Jost', sans-serif;
font-size: 5rem;
line-height: 1.1;
}
.display-1 > .mbr-iconfont {
font-size: 6.25rem;
}
.display-2 {
font-family: 'Jost', sans-serif;
font-size: 3rem;
line-height: 1.1;
}
.display-2 > .mbr-iconfont {
font-size: 3.75rem;
}
.display-4 {
font-family: 'Jost', sans-serif;
font-size: 1.1rem;
line-height: 1.5;
}
.display-4 > .mbr-iconfont {
font-size: 1.375rem;
}
.display-5 {
font-family: 'Jost', sans-serif;
font-size: 1.8rem;
line-height: 1.5;
}
.display-5 > .mbr-iconfont {
font-size: 2.25rem;
}
.display-7 {
font-family: 'Jost', sans-serif;
font-size: 1.2rem;
line-height: 1.5;
}
.display-7 > .mbr-iconfont {
font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20) 48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
.display-1 {
font-size: 4rem;
}
}
@media (max-width: 768px) {
.display-1 {
font-size: 3.5rem;
font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
}
.display-2 {
font-size: 2.4rem;
font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
}
.display-4 {
font-size: 0.88rem;
font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
}
.display-5 {
font-size: 1.44rem;
font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
}
.display-7 {
font-size: 0.96rem;
font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
}
}
/* Buttons */
.btn {
padding: 0.6rem 1.2rem;
border-radius: 4px;
}
.btn-sm {
padding: 0.6rem 1.2rem;
border-radius: 4px;
}
.btn-md {
padding: 0.6rem 1.2rem;
border-radius: 4px;
}
.btn-lg {
padding: 1rem 2.6rem;
border-radius: 4px;
}
.bg-primary {
background-color: #353535 !important;
}
.bg-success {
background-color: #2299aa !important;
}
.bg-info {
background-color: #47b5ed !important;
}
.bg-warning {
background-color: #ffe161 !important;
}
.bg-danger {
background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
background-color: #353535 !important;
border-color: #353535 !important;
color: #ffffff !important;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
color: #ffffff !important;
background-color: #0a0a0a !important;
border-color: #0a0a0a !important;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
color: #ffffff !important;
background-color: #0a0a0a !important;
border-color: #0a0a0a !important;
}
.btn-secondary,
.btn-secondary:active {
background-color: #ff6666 !important;
border-color: #ff6666 !important;
color: #ffffff !important;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
color: #ffffff !important;
background-color: #ff0f0f !important;
border-color: #ff0f0f !important;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
color: #ffffff !important;
background-color: #ff0f0f !important;
border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
background-color: #47b5ed !important;
border-color: #47b5ed !important;
color: #ffffff !important;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
color: #ffffff !important;
background-color: #148cca !important;
border-color: #148cca !important;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
color: #ffffff !important;
background-color: #148cca !important;
border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
background-color: #2299aa !important;
border-color: #2299aa !important;
color: #ffffff !important;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
color: #ffffff !important;
background-color: #145862 !important;
border-color: #145862 !important;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
color: #ffffff !important;
background-color: #145862 !important;
border-color: #145862 !important;
}
.btn-warning,
.btn-warning:active {
background-color: #ffe161 !important;
border-color: #ffe161 !important;
color: #614f00 !important;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
color: #0a0800 !important;
background-color: #ffd10a !important;
border-color: #ffd10a !important;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
color: #614f00 !important;
background-color: #ffd10a !important;
border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
background-color: #ff9966 !important;
border-color: #ff9966 !important;
color: #ffffff !important;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
color: #ffffff !important;
background-color: #ff5f0f !important;
border-color: #ff5f0f !important;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
color: #ffffff !important;
background-color: #ff5f0f !important;
border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
background-color: #fafafa !important;
border-color: #fafafa !important;
color: #7a7a7a !important;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
color: #4f4f4f !important;
background-color: #cfcfcf !important;
border-color: #cfcfcf !important;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
color: #7a7a7a !important;
background-color: #cfcfcf !important;
border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
background-color: #232323 !important;
border-color: #232323 !important;
color: #ffffff !important;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
color: #ffffff !important;
background-color: #000000 !important;
border-color: #000000 !important;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
color: #ffffff !important;
background-color: #000000 !important;
border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
background-color: transparent !important;
border-color: transparent;
color: #353535;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
color: #0a0a0a !important;
background-color: transparent!important;
border-color: transparent!important;
box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
color: #ffffff !important;
background-color: #353535 !important;
border-color: #353535 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
background-color: transparent !important;
border-color: transparent;
color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
color: #ff0f0f !important;
background-color: transparent!important;
border-color: transparent!important;
box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
color: #ffffff !important;
background-color: #ff6666 !important;
border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
background-color: transparent !important;
border-color: transparent;
color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
color: #148cca !important;
background-color: transparent!important;
border-color: transparent!important;
box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
color: #ffffff !important;
background-color: #47b5ed !important;
border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
background-color: transparent !important;
border-color: transparent;
color: #2299aa;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
color: #145862 !important;
background-color: transparent!important;
border-color: transparent!important;
box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
color: #ffffff !important;
background-color: #2299aa !important;
border-color: #2299aa !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
background-color: transparent !important;
border-color: transparent;
color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
color: #ffd10a !important;
background-color: transparent!important;
border-color: transparent!important;
box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
color: #614f00 !important;
background-color: #ffe161 !important;
border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
background-color: transparent !important;
border-color: transparent;
color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
color: #ff5f0f !important;
background-color: transparent!important;
border-color: transparent!important;
box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
color: #ffffff !important;
background-color: #ff9966 !important;
border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
background-color: transparent !important;
border-color: transparent;
color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
color: #000000 !important;
background-color: transparent!important;
border-color: transparent!important;
box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
color: #ffffff !important;
background-color: #232323 !important;
border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
background-color: transparent !important;
border-color: transparent;
color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
color: #cfcfcf !important;
background-color: transparent!important;
border-color: transparent!important;
box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
color: #7a7a7a !important;
background-color: #fafafa !important;
border-color: #fafafa !important;
}
.text-primary {
color: #353535 !important;
}
.text-secondary {
color: #ff6666 !important;
}
.text-success {
color: #2299aa !important;
}
.text-info {
color: #47b5ed !important;
}
.text-warning {
color: #ffe161 !important;
}
.text-danger {
color: #ff9966 !important;
}
.text-white {
color: #fafafa !important;
}
.text-black {
color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
color: #020202 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
color: #114c55 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
position: relative;
background-image: transparent;
background-size: 10000px 2px;
background-repeat: no-repeat;
background-position: 0px 1.2em;
background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
transition: background-position 2s ease-in-out;
background-image: linear-gradient(currentColor 50%, currentColor 50%);
background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
color: #353535;
}
.nav-tabs .nav-link:not(.active) {
color: #232323;
}
.alert-success {
background-color: #70c770;
}
.alert-info {
background-color: #47b5ed;
}
.alert-warning {
background-color: #ffe161;
}
.alert-danger {
background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
border-radius: 100px;
}
.mbr-gallery-filter li a {
border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
background-color: #353535;
border-color: #353535;
color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
box-shadow: none;
}
.nav-tabs .nav-link {
border-radius: 100px !important;
}
a,
a:hover {
color: #353535;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
color: #a8a8a8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
color: #6ad2e1;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
display: none;
}
.form-control {
font-family: 'Jost', sans-serif;
font-size: 1.1rem;
line-height: 1.5;
font-weight: 400;
}
.form-control > .mbr-iconfont {
font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
border-color: #353535 !important;
}
.form-control:-webkit-input-placeholder {
font-family: 'Jost', sans-serif;
font-size: 1.1rem;
line-height: 1.5;
font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
font-size: 1.375rem;
}
blockquote {
border-color: #353535;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
border-radius: 100px !important;
padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
background-color: #353535;
color: #ffffff;
}
.jq-number__spin {
transition: 0.25s ease;
}
.jq-number__spin:hover {
border-color: #353535;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
transition: 0.4s;
border-top-color: #353535;
border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
border-top-color: #353535;
border-bottom-color: #353535;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
color: #ffffff !important;
background-color: #353535 !important;
box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
color: #000000 !important;
background: #ff6666 !important;
box-shadow: none !important;
}
.lazy-bg {
background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
display: block;
position: relative;
padding-bottom: 56.25%;
width: 100%;
height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
content: '';
position: absolute;
width: 200px;
height: 200px;
background: transparent no-repeat center;
background-size: contain;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23353535' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
opacity: 0.5;
}
body {
overflow-x: hidden;
}
a {
transition: color 0.6s;
}
.cid-t0IX3JhiJe {
background-image: url("../../../assets/images/web-party353535conflicted-copy-2022-03-23-from-tb-main-2000x1124.jpg");
}
.cid-t0IX3JhiJe .number-wrap {
color: #ffffff;
text-align: center;
}
.cid-t0IX3JhiJe .number {
color: #ffffff;
}
.cid-t0IX3JhiJe .period {
display: block;
}
.cid-t0IX3JhiJe .dot {
display: none;
}
@media (max-width: 767px) {
.cid-t0IX3JhiJe .period {
font-size: 0.8rem;
}
}
.cid-t0IX3JhiJe .btn {
height: 100%;
margin: 0;
}
.cid-t0IX3JhiJe .mbr-section-btn {
margin-bottom: 1.2rem;
}
.cid-t0IX3JhiJe .mbr-section-title {
color: #ffffff;
}
.cid-t0IX3JhiJe .mbr-text {
color: #ffffff;
}
.cid-t0IX3JhiJe .icons-menu .soc-item {
padding-left: 8px;
padding-right: 8px;
}
.cid-t0IX3JhiJe .icons-menu .soc-item .mbr-iconfont {
font-size: 2rem;
display: flex;
border-radius: 50%;
text-align: center;
color: #ffffff;
border: 2px solid #ffffff;
justify-content: center;
align-content: center;
transition: all 0.3s;
}
.cid-t0IX3JhiJe .icons-menu .soc-item .mbr-iconfont:before {
padding: 0.6rem;
}
.cid-t0IX3JhiJe .icons-menu .soc-item .mbr-iconfont:hover {
background-color: #ffffff;
color: #000000;
}
.cid-t0IX3JhiJe H3 {
color: #000000;
text-align: center;
}
.cid-t0PLlYyVe7 {
padding-top: 1rem;
padding-bottom: 0rem;
background-color: #111111;
}
.cid-t0PLlYyVe7 .mbr-iconfont {
display: block;
font-size: 4rem;
color: #353535;
margin-bottom: 2rem;
}
.cid-t0PLlYyVe7 .card-wrapper {
min-height: 220px;
transition: all 0.3s;
border-radius: 4px;
padding: 1rem;
background: #292929;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 2rem;
}
.cid-t0PLlYyVe7 .card-title,
.cid-t0PLlYyVe7 .card-box {
color: #ffffff;
}

View File

@ -1,15 +0,0 @@
(function(){function C(){if(!D&&document.body){D=!0;var a=document.body,b=document.documentElement,d=window.innerHeight,c=a.scrollHeight;l=0<=document.compatMode.indexOf("CSS")?b:a;m=a;f.keyboardSupport&&window.addEventListener("keydown",M,!1);if(top!=self)v=!0;else if(ca&&c>d&&(a.offsetHeight<=d||b.offsetHeight<=d)){var e=document.createElement("div");e.style.cssText="position:absolute; z-index:-10000; top:0; left:0; right:0; height:"+l.scrollHeight+"px";document.body.appendChild(e);var g;w=function(){g||
(g=setTimeout(function(){e.style.height="0";e.style.height=l.scrollHeight+"px";g=null},500))};setTimeout(w,10);window.addEventListener("resize",w,!1);z=new da(w);z.observe(a,{attributes:!0,childList:!0,characterData:!1});l.offsetHeight<=d&&(d=document.createElement("div"),d.style.clear="both",a.appendChild(d))}f.fixedBackground||(a.style.backgroundAttachment="scroll",b.style.backgroundAttachment="scroll")}}function N(a,b,d){ea(b,d);if(1!=f.accelerationMax){var c=Date.now()-E;c<f.accelerationDelta&&
(c=(1+50/c)/2,1<c&&(c=Math.min(c,f.accelerationMax),b*=c,d*=c));E=Date.now()}t.push({x:b,y:d,lastX:0>b?.99:-.99,lastY:0>d?.99:-.99,start:Date.now()});if(!F){c=O();var e=a===c||a===document.body;null==a.$scrollBehavior&&fa(a)&&(a.$scrollBehavior=a.style.scrollBehavior,a.style.scrollBehavior="auto");var g=function(c){c=Date.now();for(var k=0,l=0,h=0;h<t.length;h++){var n=t[h],p=c-n.start,m=p>=f.animationTime,q=m?1:p/f.animationTime;f.pulseAlgorithm&&(p=q,1<=p?q=1:0>=p?q=0:(1==f.pulseNormalize&&(f.pulseNormalize/=
P(1)),q=P(p)));p=n.x*q-n.lastX>>0;q=n.y*q-n.lastY>>0;k+=p;l+=q;n.lastX+=p;n.lastY+=q;m&&(t.splice(h,1),h--)}e?window.scrollBy(k,l):(k&&(a.scrollLeft+=k),l&&(a.scrollTop+=l));b||d||(t=[]);t.length?Q(g,a,1E3/f.frameRate+1):(F=!1,null!=a.$scrollBehavior&&(a.style.scrollBehavior=a.$scrollBehavior,a.$scrollBehavior=null))};Q(g,a,0);F=!0}}function R(a){D||C();var b=a.target;if(a.defaultPrevented||a.ctrlKey||r(m,"embed")||r(b,"embed")&&/\.pdf/i.test(b.src)||r(m,"object")||b.shadowRoot)return!0;var d=-a.wheelDeltaX||
a.deltaX||0,c=-a.wheelDeltaY||a.deltaY||0;ha&&(a.wheelDeltaX&&x(a.wheelDeltaX,120)&&(d=a.wheelDeltaX/Math.abs(a.wheelDeltaX)*-120),a.wheelDeltaY&&x(a.wheelDeltaY,120)&&(c=a.wheelDeltaY/Math.abs(a.wheelDeltaY)*-120));d||c||(c=-a.wheelDelta||0);1===a.deltaMode&&(d*=40,c*=40);b=S(b);if(!b)return v&&G?(Object.defineProperty(a,"target",{value:window.frameElement}),parent.wheel(a)):!0;if(ia(c))return!0;1.2<Math.abs(d)&&(d*=f.stepSize/120);1.2<Math.abs(c)&&(c*=f.stepSize/120);N(b,d,c);a.preventDefault();
T()}function M(a){var b=a.target,d=a.ctrlKey||a.altKey||a.metaKey||a.shiftKey&&a.keyCode!==g.spacebar;document.body.contains(m)||(m=document.activeElement);var c=/^(textarea|select|embed|object)$/i,e=/^(button|submit|radio|checkbox|file|color|image)$/i;if(!(c=a.defaultPrevented||c.test(b.nodeName)||r(b,"input")&&!e.test(b.type)||r(m,"video"))){c=a.target;var h=!1;if(-1!=document.URL.indexOf("www.youtube.com/watch")){do if(h=c.classList&&c.classList.contains("html5-video-controls"))break;while(c=c.parentNode)
}c=h}if(c||b.isContentEditable||d||(r(b,"button")||r(b,"input")&&e.test(b.type))&&a.keyCode===g.spacebar||r(b,"input")&&"radio"==b.type&&ja[a.keyCode])return!0;c=b=0;d=S(m);if(!d)return v&&G?parent.keydown(a):!0;e=d.clientHeight;d==document.body&&(e=window.innerHeight);switch(a.keyCode){case g.up:c=-f.arrowScroll;break;case g.down:c=f.arrowScroll;break;case g.spacebar:c=a.shiftKey?1:-1;c=-c*e*.9;break;case g.pageup:c=.9*-e;break;case g.pagedown:c=.9*e;break;case g.home:d==document.body&&document.scrollingElement&&
(d=document.scrollingElement);c=-d.scrollTop;break;case g.end:e=d.scrollHeight-d.scrollTop-e;c=0<e?e+10:0;break;case g.left:b=-f.arrowScroll;break;case g.right:b=f.arrowScroll;break;default:return!0}N(d,b,c);a.preventDefault();T()}function U(a){m=a.target}function T(){clearTimeout(V);V=setInterval(function(){W=H=A={}},1E3)}function I(a,b,d){d=d?W:H;for(var c=a.length;c--;)d[J(a[c])]=b;return b}function S(a){var b=[],d=document.body,c=l.scrollHeight;do{var e=H[J(a)];if(e)return I(b,e);b.push(a);if(c===
a.scrollHeight){if(e=X(l)&&X(d)||Y(l),v&&l.clientHeight+10<l.scrollHeight||!v&&e)return I(b,O())}else if(a.clientHeight+10<a.scrollHeight&&Y(a))return I(b,a)}while(a=a.parentElement)}function X(a){return"hidden"!==getComputedStyle(a,"").getPropertyValue("overflow-y")}function Y(a){a=getComputedStyle(a,"").getPropertyValue("overflow-y");return"scroll"===a||"auto"===a}function fa(a){var b=J(a);null==A[b]&&(a=getComputedStyle(a,"")["scroll-behavior"],A[b]="smooth"==a);return A[b]}function r(a,b){return a&&
(a.nodeName||"").toLowerCase()===b.toLowerCase()}function ea(a,b){a=0<a?1:-1;b=0<b?1:-1;if(B.x!==a||B.y!==b)B.x=a,B.y=b,t=[],E=0}function ia(a){if(a){h.length||(h=[a,a,a]);a=Math.abs(a);h.push(a);h.shift();clearTimeout(Z);Z=setTimeout(function(){try{localStorage.SS_deltaBuffer=h.join(",")}catch(d){}},1E3);var b=120<a&&K(a);b=!K(120)&&!K(100)&&!b;return 50>a?!0:b}}function x(a,b){return Math.floor(a/b)==a/b}function K(a){return x(h[0],a)&&x(h[1],a)&&x(h[2],a)}function P(a){a*=f.pulseScale;if(1>a)var b=
a-(1-Math.exp(-a));else b=Math.exp(-1),a=1-Math.exp(-(a-1)),b+=a*(1-b);return b*f.pulseNormalize}function y(a){for(var b in a)aa.hasOwnProperty(b)&&(f[b]=a[b])}var aa={frameRate:150,animationTime:400,stepSize:100,pulseAlgorithm:!0,pulseScale:4,pulseNormalize:1,accelerationDelta:50,accelerationMax:3,keyboardSupport:!0,arrowScroll:50,fixedBackground:!0,excluded:""},f=aa,v=!1,B={x:0,y:0},D=!1,l=document.documentElement,m,z,w,h=[],Z,ha=/^Mac/.test(navigator.platform),g={left:37,up:38,right:39,down:40,
spacebar:32,pageup:33,pagedown:34,end:35,home:36},ja={37:1,38:1,39:1,40:1},t=[],F=!1,E=Date.now(),J=function(){var a=0;return function(b){return b.uniqueID||(b.uniqueID=a++)}}(),W={},H={},V,A={};if(window.localStorage&&localStorage.SS_deltaBuffer)try{h=localStorage.SS_deltaBuffer.split(",")}catch(a){}var Q=function(){return window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||function(a,b,d){window.setTimeout(a,d||1E3/60)}}(),da=window.MutationObserver||
window.WebKitMutationObserver||window.MozMutationObserver,O=function(){var a=document.scrollingElement;return function(){if(!a){var b=document.createElement("div");b.style.cssText="height:10000px;width:1px;";document.body.appendChild(b);var d=document.body.scrollTop;window.scrollBy(0,3);a=document.body.scrollTop!=d?document.body:document.documentElement;window.scrollBy(0,-3);document.body.removeChild(b)}return a}}(),k=window.navigator.userAgent,u=/Edge/.test(k),G=/chrome/i.test(k)&&!u;u=/safari/i.test(k)&&
!u;var ka=/mobile/i.test(k),la=/Windows NT 6.1/i.test(k)&&/rv:11/i.test(k),ca=u&&(/Version\/8/i.test(k)||/Version\/9/i.test(k));k=(G||u||la)&&!ka;var ba=!1;try{window.addEventListener("test",null,Object.defineProperty({},"passive",{get:function(){ba=!0}}))}catch(a){}u=ba?{passive:!1}:!1;var L="onwheel"in document.createElement("div")?"wheel":"mousewheel";L&&k&&(window.addEventListener(L,R,u||!1),window.addEventListener("mousedown",U,!1),window.addEventListener("load",C,!1));y.destroy=function(){z&&
z.disconnect();window.removeEventListener(L,R,!1);window.removeEventListener("mousedown",U,!1);window.removeEventListener("keydown",M,!1);window.removeEventListener("resize",w,!1);window.removeEventListener("load",C,!1)};window.SmoothScrollOptions&&y(window.SmoothScrollOptions);"function"===typeof define&&define.amd?define(function(){return y}):"object"==typeof exports?module.exports=y:window.SmoothScroll=y})();

View File

@ -1,934 +0,0 @@
@charset "UTF-8";
@font-face {
font-family: 'Socicon';
src: url('../fonts/socicon.eot');
src: url('../fonts/socicon.eot?#iefix') format('embedded-opentype'),
url('../fonts/socicon.woff2') format('woff2'),
url('../fonts/socicon.ttf') format('truetype'),
url('../fonts/socicon.woff') format('woff'),
url('../fonts/socicon.svg#socicon') format('svg');
font-weight: normal;
font-style: normal;
font-display: swap;
}
[data-icon]:before {
font-family: "socicon" !important;
content: attr(data-icon);
font-style: normal !important;
font-weight: normal !important;
font-variant: normal !important;
text-transform: none !important;
speak: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
[class^="socicon-"], [class*=" socicon-"] {
/* use !important to prevent issues with browser extensions that change fonts */
font-family: 'Socicon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.socicon-eitaa:before {
content: "\e97c";
}
.socicon-soroush:before {
content: "\e97d";
}
.socicon-bale:before {
content: "\e97e";
}
.socicon-zazzle:before {
content: "\e97b";
}
.socicon-society6:before {
content: "\e97a";
}
.socicon-redbubble:before {
content: "\e979";
}
.socicon-avvo:before {
content: "\e978";
}
.socicon-stitcher:before {
content: "\e977";
}
.socicon-googlehangouts:before {
content: "\e974";
}
.socicon-dlive:before {
content: "\e975";
}
.socicon-vsco:before {
content: "\e976";
}
.socicon-flipboard:before {
content: "\e973";
}
.socicon-ubuntu:before {
content: "\e958";
}
.socicon-artstation:before {
content: "\e959";
}
.socicon-invision:before {
content: "\e95a";
}
.socicon-torial:before {
content: "\e95b";
}
.socicon-collectorz:before {
content: "\e95c";
}
.socicon-seenthis:before {
content: "\e95d";
}
.socicon-googleplaymusic:before {
content: "\e95e";
}
.socicon-debian:before {
content: "\e95f";
}
.socicon-filmfreeway:before {
content: "\e960";
}
.socicon-gnome:before {
content: "\e961";
}
.socicon-itchio:before {
content: "\e962";
}
.socicon-jamendo:before {
content: "\e963";
}
.socicon-mix:before {
content: "\e964";
}
.socicon-sharepoint:before {
content: "\e965";
}
.socicon-tinder:before {
content: "\e966";
}
.socicon-windguru:before {
content: "\e967";
}
.socicon-cdbaby:before {
content: "\e968";
}
.socicon-elementaryos:before {
content: "\e969";
}
.socicon-stage32:before {
content: "\e96a";
}
.socicon-tiktok:before {
content: "\e96b";
}
.socicon-gitter:before {
content: "\e96c";
}
.socicon-letterboxd:before {
content: "\e96d";
}
.socicon-threema:before {
content: "\e96e";
}
.socicon-splice:before {
content: "\e96f";
}
.socicon-metapop:before {
content: "\e970";
}
.socicon-naver:before {
content: "\e971";
}
.socicon-remote:before {
content: "\e972";
}
.socicon-internet:before {
content: "\e957";
}
.socicon-moddb:before {
content: "\e94b";
}
.socicon-indiedb:before {
content: "\e94c";
}
.socicon-traxsource:before {
content: "\e94d";
}
.socicon-gamefor:before {
content: "\e94e";
}
.socicon-pixiv:before {
content: "\e94f";
}
.socicon-myanimelist:before {
content: "\e950";
}
.socicon-blackberry:before {
content: "\e951";
}
.socicon-wickr:before {
content: "\e952";
}
.socicon-spip:before {
content: "\e953";
}
.socicon-napster:before {
content: "\e954";
}
.socicon-beatport:before {
content: "\e955";
}
.socicon-hackerone:before {
content: "\e956";
}
.socicon-hackernews:before {
content: "\e946";
}
.socicon-smashwords:before {
content: "\e947";
}
.socicon-kobo:before {
content: "\e948";
}
.socicon-bookbub:before {
content: "\e949";
}
.socicon-mailru:before {
content: "\e94a";
}
.socicon-gitlab:before {
content: "\e945";
}
.socicon-instructables:before {
content: "\e944";
}
.socicon-portfolio:before {
content: "\e943";
}
.socicon-codered:before {
content: "\e940";
}
.socicon-origin:before {
content: "\e941";
}
.socicon-nextdoor:before {
content: "\e942";
}
.socicon-udemy:before {
content: "\e93f";
}
.socicon-livemaster:before {
content: "\e93e";
}
.socicon-crunchbase:before {
content: "\e93b";
}
.socicon-homefy:before {
content: "\e93c";
}
.socicon-calendly:before {
content: "\e93d";
}
.socicon-realtor:before {
content: "\e90f";
}
.socicon-tidal:before {
content: "\e910";
}
.socicon-qobuz:before {
content: "\e911";
}
.socicon-natgeo:before {
content: "\e912";
}
.socicon-mastodon:before {
content: "\e913";
}
.socicon-unsplash:before {
content: "\e914";
}
.socicon-homeadvisor:before {
content: "\e915";
}
.socicon-angieslist:before {
content: "\e916";
}
.socicon-codepen:before {
content: "\e917";
}
.socicon-slack:before {
content: "\e918";
}
.socicon-openaigym:before {
content: "\e919";
}
.socicon-logmein:before {
content: "\e91a";
}
.socicon-fiverr:before {
content: "\e91b";
}
.socicon-gotomeeting:before {
content: "\e91c";
}
.socicon-aliexpress:before {
content: "\e91d";
}
.socicon-guru:before {
content: "\e91e";
}
.socicon-appstore:before {
content: "\e91f";
}
.socicon-homes:before {
content: "\e920";
}
.socicon-zoom:before {
content: "\e921";
}
.socicon-alibaba:before {
content: "\e922";
}
.socicon-craigslist:before {
content: "\e923";
}
.socicon-wix:before {
content: "\e924";
}
.socicon-redfin:before {
content: "\e925";
}
.socicon-googlecalendar:before {
content: "\e926";
}
.socicon-shopify:before {
content: "\e927";
}
.socicon-freelancer:before {
content: "\e928";
}
.socicon-seedrs:before {
content: "\e929";
}
.socicon-bing:before {
content: "\e92a";
}
.socicon-doodle:before {
content: "\e92b";
}
.socicon-bonanza:before {
content: "\e92c";
}
.socicon-squarespace:before {
content: "\e92d";
}
.socicon-toptal:before {
content: "\e92e";
}
.socicon-gust:before {
content: "\e92f";
}
.socicon-ask:before {
content: "\e930";
}
.socicon-trulia:before {
content: "\e931";
}
.socicon-loomly:before {
content: "\e932";
}
.socicon-ghost:before {
content: "\e933";
}
.socicon-upwork:before {
content: "\e934";
}
.socicon-fundable:before {
content: "\e935";
}
.socicon-booking:before {
content: "\e936";
}
.socicon-googlemaps:before {
content: "\e937";
}
.socicon-zillow:before {
content: "\e938";
}
.socicon-niconico:before {
content: "\e939";
}
.socicon-toneden:before {
content: "\e93a";
}
.socicon-augment:before {
content: "\e908";
}
.socicon-bitbucket:before {
content: "\e909";
}
.socicon-fyuse:before {
content: "\e90a";
}
.socicon-yt-gaming:before {
content: "\e90b";
}
.socicon-sketchfab:before {
content: "\e90c";
}
.socicon-mobcrush:before {
content: "\e90d";
}
.socicon-microsoft:before {
content: "\e90e";
}
.socicon-pandora:before {
content: "\e907";
}
.socicon-messenger:before {
content: "\e906";
}
.socicon-gamewisp:before {
content: "\e905";
}
.socicon-bloglovin:before {
content: "\e904";
}
.socicon-tunein:before {
content: "\e903";
}
.socicon-gamejolt:before {
content: "\e901";
}
.socicon-trello:before {
content: "\e902";
}
.socicon-spreadshirt:before {
content: "\e900";
}
.socicon-500px:before {
content: "\e000";
}
.socicon-8tracks:before {
content: "\e001";
}
.socicon-airbnb:before {
content: "\e002";
}
.socicon-alliance:before {
content: "\e003";
}
.socicon-amazon:before {
content: "\e004";
}
.socicon-amplement:before {
content: "\e005";
}
.socicon-android:before {
content: "\e006";
}
.socicon-angellist:before {
content: "\e007";
}
.socicon-apple:before {
content: "\e008";
}
.socicon-appnet:before {
content: "\e009";
}
.socicon-baidu:before {
content: "\e00a";
}
.socicon-bandcamp:before {
content: "\e00b";
}
.socicon-battlenet:before {
content: "\e00c";
}
.socicon-mixer:before {
content: "\e00d";
}
.socicon-bebee:before {
content: "\e00e";
}
.socicon-bebo:before {
content: "\e00f";
}
.socicon-behance:before {
content: "\e010";
}
.socicon-blizzard:before {
content: "\e011";
}
.socicon-blogger:before {
content: "\e012";
}
.socicon-buffer:before {
content: "\e013";
}
.socicon-chrome:before {
content: "\e014";
}
.socicon-coderwall:before {
content: "\e015";
}
.socicon-curse:before {
content: "\e016";
}
.socicon-dailymotion:before {
content: "\e017";
}
.socicon-deezer:before {
content: "\e018";
}
.socicon-delicious:before {
content: "\e019";
}
.socicon-deviantart:before {
content: "\e01a";
}
.socicon-diablo:before {
content: "\e01b";
}
.socicon-digg:before {
content: "\e01c";
}
.socicon-discord:before {
content: "\e01d";
}
.socicon-disqus:before {
content: "\e01e";
}
.socicon-douban:before {
content: "\e01f";
}
.socicon-draugiem:before {
content: "\e020";
}
.socicon-dribbble:before {
content: "\e021";
}
.socicon-drupal:before {
content: "\e022";
}
.socicon-ebay:before {
content: "\e023";
}
.socicon-ello:before {
content: "\e024";
}
.socicon-endomodo:before {
content: "\e025";
}
.socicon-envato:before {
content: "\e026";
}
.socicon-etsy:before {
content: "\e027";
}
.socicon-facebook:before {
content: "\e028";
}
.socicon-feedburner:before {
content: "\e029";
}
.socicon-filmweb:before {
content: "\e02a";
}
.socicon-firefox:before {
content: "\e02b";
}
.socicon-flattr:before {
content: "\e02c";
}
.socicon-flickr:before {
content: "\e02d";
}
.socicon-formulr:before {
content: "\e02e";
}
.socicon-forrst:before {
content: "\e02f";
}
.socicon-foursquare:before {
content: "\e030";
}
.socicon-friendfeed:before {
content: "\e031";
}
.socicon-github:before {
content: "\e032";
}
.socicon-goodreads:before {
content: "\e033";
}
.socicon-google:before {
content: "\e034";
}
.socicon-googlescholar:before {
content: "\e035";
}
.socicon-googlegroups:before {
content: "\e036";
}
.socicon-googlephotos:before {
content: "\e037";
}
.socicon-googleplus:before {
content: "\e038";
}
.socicon-grooveshark:before {
content: "\e039";
}
.socicon-hackerrank:before {
content: "\e03a";
}
.socicon-hearthstone:before {
content: "\e03b";
}
.socicon-hellocoton:before {
content: "\e03c";
}
.socicon-heroes:before {
content: "\e03d";
}
.socicon-smashcast:before {
content: "\e03e";
}
.socicon-horde:before {
content: "\e03f";
}
.socicon-houzz:before {
content: "\e040";
}
.socicon-icq:before {
content: "\e041";
}
.socicon-identica:before {
content: "\e042";
}
.socicon-imdb:before {
content: "\e043";
}
.socicon-instagram:before {
content: "\e044";
}
.socicon-issuu:before {
content: "\e045";
}
.socicon-istock:before {
content: "\e046";
}
.socicon-itunes:before {
content: "\e047";
}
.socicon-keybase:before {
content: "\e048";
}
.socicon-lanyrd:before {
content: "\e049";
}
.socicon-lastfm:before {
content: "\e04a";
}
.socicon-line:before {
content: "\e04b";
}
.socicon-linkedin:before {
content: "\e04c";
}
.socicon-livejournal:before {
content: "\e04d";
}
.socicon-lyft:before {
content: "\e04e";
}
.socicon-macos:before {
content: "\e04f";
}
.socicon-mail:before {
content: "\e050";
}
.socicon-medium:before {
content: "\e051";
}
.socicon-meetup:before {
content: "\e052";
}
.socicon-mixcloud:before {
content: "\e053";
}
.socicon-modelmayhem:before {
content: "\e054";
}
.socicon-mumble:before {
content: "\e055";
}
.socicon-myspace:before {
content: "\e056";
}
.socicon-newsvine:before {
content: "\e057";
}
.socicon-nintendo:before {
content: "\e058";
}
.socicon-npm:before {
content: "\e059";
}
.socicon-odnoklassniki:before {
content: "\e05a";
}
.socicon-openid:before {
content: "\e05b";
}
.socicon-opera:before {
content: "\e05c";
}
.socicon-outlook:before {
content: "\e05d";
}
.socicon-overwatch:before {
content: "\e05e";
}
.socicon-patreon:before {
content: "\e05f";
}
.socicon-paypal:before {
content: "\e060";
}
.socicon-periscope:before {
content: "\e061";
}
.socicon-persona:before {
content: "\e062";
}
.socicon-pinterest:before {
content: "\e063";
}
.socicon-play:before {
content: "\e064";
}
.socicon-player:before {
content: "\e065";
}
.socicon-playstation:before {
content: "\e066";
}
.socicon-pocket:before {
content: "\e067";
}
.socicon-qq:before {
content: "\e068";
}
.socicon-quora:before {
content: "\e069";
}
.socicon-raidcall:before {
content: "\e06a";
}
.socicon-ravelry:before {
content: "\e06b";
}
.socicon-reddit:before {
content: "\e06c";
}
.socicon-renren:before {
content: "\e06d";
}
.socicon-researchgate:before {
content: "\e06e";
}
.socicon-residentadvisor:before {
content: "\e06f";
}
.socicon-reverbnation:before {
content: "\e070";
}
.socicon-rss:before {
content: "\e071";
}
.socicon-sharethis:before {
content: "\e072";
}
.socicon-skype:before {
content: "\e073";
}
.socicon-slideshare:before {
content: "\e074";
}
.socicon-smugmug:before {
content: "\e075";
}
.socicon-snapchat:before {
content: "\e076";
}
.socicon-songkick:before {
content: "\e077";
}
.socicon-soundcloud:before {
content: "\e078";
}
.socicon-spotify:before {
content: "\e079";
}
.socicon-stackexchange:before {
content: "\e07a";
}
.socicon-stackoverflow:before {
content: "\e07b";
}
.socicon-starcraft:before {
content: "\e07c";
}
.socicon-stayfriends:before {
content: "\e07d";
}
.socicon-steam:before {
content: "\e07e";
}
.socicon-storehouse:before {
content: "\e07f";
}
.socicon-strava:before {
content: "\e080";
}
.socicon-streamjar:before {
content: "\e081";
}
.socicon-stumbleupon:before {
content: "\e082";
}
.socicon-swarm:before {
content: "\e083";
}
.socicon-teamspeak:before {
content: "\e084";
}
.socicon-teamviewer:before {
content: "\e085";
}
.socicon-technorati:before {
content: "\e086";
}
.socicon-telegram:before {
content: "\e087";
}
.socicon-tripadvisor:before {
content: "\e088";
}
.socicon-tripit:before {
content: "\e089";
}
.socicon-triplej:before {
content: "\e08a";
}
.socicon-tumblr:before {
content: "\e08b";
}
.socicon-twitch:before {
content: "\e08c";
}
.socicon-twitter:before {
content: "\e08d";
}
.socicon-uber:before {
content: "\e08e";
}
.socicon-ventrilo:before {
content: "\e08f";
}
.socicon-viadeo:before {
content: "\e090";
}
.socicon-viber:before {
content: "\e091";
}
.socicon-viewbug:before {
content: "\e092";
}
.socicon-vimeo:before {
content: "\e093";
}
.socicon-vine:before {
content: "\e094";
}
.socicon-vkontakte:before {
content: "\e095";
}
.socicon-warcraft:before {
content: "\e096";
}
.socicon-wechat:before {
content: "\e097";
}
.socicon-weibo:before {
content: "\e098";
}
.socicon-whatsapp:before {
content: "\e099";
}
.socicon-wikipedia:before {
content: "\e09a";
}
.socicon-windows:before {
content: "\e09b";
}
.socicon-wordpress:before {
content: "\e09c";
}
.socicon-wykop:before {
content: "\e09d";
}
.socicon-xbox:before {
content: "\e09e";
}
.socicon-xing:before {
content: "\e09f";
}
.socicon-yahoo:before {
content: "\e0a0";
}
.socicon-yammer:before {
content: "\e0a1";
}
.socicon-yandex:before {
content: "\e0a2";
}
.socicon-yelp:before {
content: "\e0a3";
}
.socicon-younow:before {
content: "\e0a4";
}
.socicon-youtube:before {
content: "\e0a5";
}
.socicon-zapier:before {
content: "\e0a6";
}
.socicon-zerply:before {
content: "\e0a7";
}
.socicon-zomato:before {
content: "\e0a8";
}
.socicon-zynga:before {
content: "\e0a9";
}

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 315 KiB

View File

@ -1,961 +0,0 @@
@charset "UTF-8";
section {
background-color: #ffffff;
}
body {
font-style: normal;
line-height: 1.5;
font-weight: 400;
color: #232323;
position: relative;
}
button {
background-color: transparent;
border-color: transparent;
}
section,
.container,
.container-fluid {
position: relative;
word-wrap: break-word;
}
a.mbr-iconfont:hover {
text-decoration: none;
}
.article .lead p,
.article .lead ul,
.article .lead ol,
.article .lead pre,
.article .lead blockquote {
margin-bottom: 0;
}
a {
font-style: normal;
font-weight: 400;
cursor: pointer;
}
a, a:hover {
text-decoration: none;
}
.mbr-section-title {
font-style: normal;
line-height: 1.3;
}
.mbr-section-subtitle {
line-height: 1.3;
}
.mbr-text {
font-style: normal;
line-height: 1.7;
}
h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-4,
.display-5,
.display-7,
span,
p,
a {
line-height: 1;
word-break: break-word;
word-wrap: break-word;
font-weight: 400;
}
b,
strong {
font-weight: bold;
}
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
transition-delay: 9999s;
-webkit-transition-property: background-color, color;
transition-property: background-color, color;
}
textarea[type=hidden] {
display: none;
}
section {
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: cover;
}
section .mbr-background-video,
section .mbr-background-video-preview {
position: absolute;
bottom: 0;
left: 0;
right: 0;
top: 0;
}
.hidden {
visibility: hidden;
}
.mbr-z-index20 {
z-index: 20;
}
/*! Base colors */
.mbr-white {
color: #ffffff;
}
.mbr-black {
color: #111111;
}
.mbr-bg-white {
background-color: #ffffff;
}
.mbr-bg-black {
background-color: #000000;
}
/*! Text-aligns */
.align-left {
text-align: left;
}
.align-center {
text-align: center;
}
.align-right {
text-align: right;
}
/*! Font-weight */
.mbr-light {
font-weight: 300;
}
.mbr-regular {
font-weight: 400;
}
.mbr-semibold {
font-weight: 500;
}
.mbr-bold {
font-weight: 700;
}
/*! Media */
.media-content {
flex-basis: 100%;
}
.media-container-row {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-content: center;
align-items: start;
}
.media-container-row .media-size-item {
width: 400px;
}
.media-container-column {
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: center;
align-content: center;
align-items: stretch;
}
.media-container-column > * {
width: 100%;
}
@media (min-width: 992px) {
.media-container-row {
flex-wrap: nowrap;
}
}
figure {
margin-bottom: 0;
overflow: hidden;
}
figure[mbr-media-size] {
transition: width 0.1s;
}
img,
iframe {
display: block;
width: 100%;
}
.card {
background-color: transparent;
border: none;
}
.card-box {
width: 100%;
}
.card-img {
text-align: center;
flex-shrink: 0;
-webkit-flex-shrink: 0;
}
.media {
max-width: 100%;
margin: 0 auto;
}
.mbr-figure {
align-self: center;
}
.media-container > div {
max-width: 100%;
}
.mbr-figure img,
.card-img img {
width: 100%;
}
@media (max-width: 991px) {
.media-size-item {
width: auto !important;
}
.media {
width: auto;
}
.mbr-figure {
width: 100% !important;
}
}
/*! Buttons */
.mbr-section-btn {
margin-left: -0.6rem;
margin-right: -0.6rem;
font-size: 0;
}
.btn {
font-weight: 600;
border-width: 1px;
font-style: normal;
margin: 0.6rem 0.6rem;
white-space: normal;
transition: all 0.2s ease-in-out;
display: inline-flex;
align-items: center;
justify-content: center;
word-break: break-word;
}
.btn-sm {
font-weight: 600;
letter-spacing: 0px;
transition: all 0.3s ease-in-out;
}
.btn-md {
font-weight: 600;
letter-spacing: 0px;
transition: all 0.3s ease-in-out;
}
.btn-lg {
font-weight: 600;
letter-spacing: 0px;
transition: all 0.3s ease-in-out;
}
.btn-form {
margin: 0;
}
.btn-form:hover {
cursor: pointer;
}
nav .mbr-section-btn {
margin-left: 0rem;
margin-right: 0rem;
}
/*! Btn icon margin */
.btn .mbr-iconfont,
.btn.btn-sm .mbr-iconfont {
order: 1;
cursor: pointer;
margin-left: 0.5rem;
vertical-align: sub;
}
.btn.btn-md .mbr-iconfont,
.btn.btn-md .mbr-iconfont {
margin-left: 0.8rem;
}
.mbr-regular {
font-weight: 400;
}
.mbr-semibold {
font-weight: 500;
}
.mbr-bold {
font-weight: 700;
}
[type=submit] {
-webkit-appearance: none;
}
/*! Full-screen */
.mbr-fullscreen .mbr-overlay {
min-height: 100vh;
}
.mbr-fullscreen {
display: flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
align-items: center;
min-height: 100vh;
padding-top: 3rem;
padding-bottom: 3rem;
}
/*! Map */
.map {
height: 25rem;
position: relative;
}
.map iframe {
width: 100%;
height: 100%;
}
/*! Scroll to top arrow */
.mbr-arrow-up {
bottom: 25px;
right: 90px;
position: fixed;
text-align: right;
z-index: 5000;
color: #ffffff;
font-size: 22px;
}
.mbr-arrow-up a {
background: rgba(0, 0, 0, 0.2);
border-radius: 50%;
color: #fff;
display: inline-block;
height: 60px;
width: 60px;
border: 2px solid #fff;
outline-style: none !important;
position: relative;
text-decoration: none;
transition: all 0.3s ease-in-out;
cursor: pointer;
text-align: center;
}
.mbr-arrow-up a:hover {
background-color: rgba(0, 0, 0, 0.4);
}
.mbr-arrow-up a i {
line-height: 60px;
}
.mbr-arrow-up-icon {
display: block;
color: #fff;
}
.mbr-arrow-up-icon::before {
content: "";
display: inline-block;
font-family: serif;
font-size: 22px;
line-height: 1;
font-style: normal;
position: relative;
top: 6px;
left: -4px;
transform: rotate(-90deg);
}
/*! Arrow Down */
.mbr-arrow {
position: absolute;
bottom: 45px;
left: 50%;
width: 60px;
height: 60px;
cursor: pointer;
background-color: rgba(80, 80, 80, 0.5);
border-radius: 50%;
transform: translateX(-50%);
}
@media (max-width: 767px) {
.mbr-arrow {
display: none;
}
}
.mbr-arrow > a {
display: inline-block;
text-decoration: none;
outline-style: none;
-webkit-animation: arrowdown 1.7s ease-in-out infinite;
animation: arrowdown 1.7s ease-in-out infinite;
color: #ffffff;
}
.mbr-arrow > a > i {
position: absolute;
top: -2px;
left: 15px;
font-size: 2rem;
}
#scrollToTop a i::before {
content: "";
position: absolute;
display: block;
border-bottom: 2.5px solid #fff;
border-left: 2.5px solid #fff;
width: 27.8%;
height: 27.8%;
left: 50%;
top: 51%;
transform: translateY(-30%) translateX(-50%) rotate(135deg);
}
@keyframes arrowdown {
0% {
transform: translateY(0px);
}
50% {
transform: translateY(-5px);
}
100% {
transform: translateY(0px);
}
}
@-webkit-keyframes arrowdown {
0% {
transform: translateY(0px);
}
50% {
transform: translateY(-5px);
}
100% {
transform: translateY(0px);
}
}
@media (max-width: 500px) {
.mbr-arrow-up {
left: 0;
right: 0;
text-align: center;
}
}
/*Gradients animation*/
@keyframes gradient-animation {
from {
background-position: 0% 100%;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
to {
background-position: 100% 0%;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
}
@-webkit-keyframes gradient-animation {
from {
background-position: 0% 100%;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
to {
background-position: 100% 0%;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
}
.bg-gradient {
background-size: 200% 200%;
animation: gradient-animation 5s infinite alternate;
-webkit-animation: gradient-animation 5s infinite alternate;
}
.menu .navbar-brand {
display: -webkit-flex;
}
.menu .navbar-brand span {
display: flex;
display: -webkit-flex;
}
.menu .navbar-brand .navbar-caption-wrap {
display: -webkit-flex;
}
.menu .navbar-brand .navbar-logo img {
display: -webkit-flex;
width: auto;
}
@media (min-width: 768px) and (max-width: 991px) {
.menu .navbar-toggleable-sm .navbar-nav {
display: -ms-flexbox;
}
}
@media (max-width: 991px) {
.menu .navbar-collapse {
max-height: 93.5vh;
}
.menu .navbar-collapse.show {
overflow: auto;
}
}
@media (min-width: 992px) {
.menu .navbar-nav.nav-dropdown {
display: -webkit-flex;
}
.menu .navbar-toggleable-sm .navbar-collapse {
display: -webkit-flex !important;
}
.menu .collapsed .navbar-collapse {
max-height: 93.5vh;
}
.menu .collapsed .navbar-collapse.show {
overflow: auto;
}
}
@media (max-width: 767px) {
.menu .navbar-collapse {
max-height: 80vh;
}
}
.nav-link .mbr-iconfont {
margin-right: 0.5rem;
}
.navbar {
display: -webkit-flex;
-webkit-flex-wrap: wrap;
-webkit-align-items: center;
-webkit-justify-content: space-between;
}
.navbar-collapse {
-webkit-flex-basis: 100%;
-webkit-flex-grow: 1;
-webkit-align-items: center;
}
.nav-dropdown .link {
padding: 0.667em 1.667em !important;
margin: 0 !important;
}
.nav {
display: -webkit-flex;
-webkit-flex-wrap: wrap;
}
.row {
display: -webkit-flex;
-webkit-flex-wrap: wrap;
}
.justify-content-center {
-webkit-justify-content: center;
}
.form-inline {
display: -webkit-flex;
}
.card-wrapper {
-webkit-flex: 1;
}
.carousel-control {
z-index: 10;
display: -webkit-flex;
}
.carousel-controls {
display: -webkit-flex;
}
.media {
display: -webkit-flex;
}
.form-group:focus {
outline: none;
}
.jq-selectbox__select {
padding: 7px 0;
position: relative;
}
.jq-selectbox__dropdown {
overflow: hidden;
border-radius: 10px;
position: absolute;
top: 100%;
left: 0 !important;
width: 100% !important;
}
.jq-selectbox__trigger-arrow {
right: 0;
transform: translateY(-50%);
}
.jq-selectbox li {
padding: 1.07em 0.5em;
}
input[type=range] {
padding-left: 0 !important;
padding-right: 0 !important;
}
.modal-dialog,
.modal-content {
height: 100%;
}
.modal-dialog .carousel-inner {
height: calc(100vh - 1.75rem);
}
@media (max-width: 575px) {
.modal-dialog .carousel-inner {
height: calc(100vh - 1rem);
}
}
.carousel-item {
text-align: center;
}
.carousel-item img {
margin: auto;
}
.navbar-toggler {
align-self: flex-start;
padding: 0.25rem 0.75rem;
font-size: 1.25rem;
line-height: 1;
background: transparent;
border: 1px solid transparent;
border-radius: 0.25rem;
}
.navbar-toggler:focus,
.navbar-toggler:hover {
text-decoration: none;
box-shadow: none;
}
.navbar-toggler-icon {
display: inline-block;
width: 1.5em;
height: 1.5em;
vertical-align: middle;
content: "";
background: no-repeat center center;
background-size: 100% 100%;
}
.navbar-toggler-left {
position: absolute;
left: 1rem;
}
.navbar-toggler-right {
position: absolute;
right: 1rem;
}
.card-img {
width: auto;
}
.menu .navbar.collapsed:not(.beta-menu) {
flex-direction: column;
}
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
display: flex;
}
.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
bottom: initial !important;
}
html,
body {
height: auto;
min-height: 100vh;
}
.dropup .dropdown-toggle::after {
display: none;
}
.form-asterisk {
font-family: initial;
position: absolute;
top: -2px;
font-weight: normal;
}
.form-control-label {
position: relative;
cursor: pointer;
margin-bottom: 0.357em;
padding: 0;
}
.alert {
color: #ffffff;
border-radius: 0;
border: 0;
font-size: 1.1rem;
line-height: 1.5;
margin-bottom: 1.875rem;
padding: 1.25rem;
position: relative;
text-align: center;
}
.alert.alert-form::after {
background-color: inherit;
bottom: -7px;
content: "";
display: block;
height: 14px;
left: 50%;
margin-left: -7px;
position: absolute;
transform: rotate(45deg);
width: 14px;
}
.form-control {
background-color: #ffffff;
background-clip: border-box;
color: #232323;
line-height: 1rem !important;
height: auto;
padding: 0.6rem 1.2rem;
transition: border-color 0.25s ease 0s;
border: 1px solid transparent !important;
border-radius: 4px;
box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
}
.form-active .form-control:invalid {
border-color: red;
}
form .row {
margin-left: -0.6rem;
margin-right: -0.6rem;
}
form .row [class*=col] {
padding-left: 0.6rem;
padding-right: 0.6rem;
}
form .mbr-section-btn {
margin: 0;
padding-left: 0.6rem;
padding-right: 0.6rem;
}
form .btn {
display: flex;
padding: 0.6rem 1.2rem;
margin: 0;
}
form .form-check-input {
margin-top: 0.5;
}
textarea.form-control {
line-height: 1.5rem !important;
}
.form-group {
margin-bottom: 1.2rem;
}
.form-control,
form .btn {
min-height: 48px;
}
.gdpr-block label span.textGDPR input[name=gdpr] {
top: 7px;
}
.form-control:focus {
box-shadow: none;
}
:focus {
outline: none;
}
.mbr-overlay {
background-color: #000;
bottom: 0;
left: 0;
opacity: 0.5;
position: absolute;
right: 0;
top: 0;
z-index: 0;
pointer-events: none;
}
blockquote {
font-style: italic;
padding: 3rem;
font-size: 1.09rem;
position: relative;
border-left: 3px solid;
}
ul,
ol,
pre,
blockquote {
margin-bottom: 2.3125rem;
}
.mt-4 {
margin-top: 2rem !important;
}
.mb-4 {
margin-bottom: 2rem !important;
}
@media (min-width: 992px) {
.container {
padding-left: 16px;
padding-right: 16px;
}
.row {
margin-left: -16px;
margin-right: -16px;
}
.row > [class*=col] {
padding-left: 16px;
padding-right: 16px;
}
}
@media (min-width: 768px) {
.container-fluid {
padding-left: 32px;
padding-right: 32px;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.mbr-container {
padding-left: 32px;
padding-right: 32px;
}
}
@media (max-width: 767px) {
.mbr-container {
padding-left: 16px;
padding-right: 16px;
}
}
.card-wrapper,
.item-wrapper {
overflow: hidden;
}
.app-video-wrapper > img {
opacity: 1;
}
.item {
position: relative;
}
.dropdown-menu .dropdown-menu {
left: 100%;
}
.dropdown-item + .dropdown-menu {
display: none;
}
.dropdown-item:hover + .dropdown-menu,
.dropdown-menu:hover {
display: block;
}
@media (min-aspect-ratio: 16/9) {
.mbr-video-foreground {
height: 300% !important;
top: -100% !important;
}
}
@media (max-aspect-ratio: 16/9) {
.mbr-video-foreground {
width: 300% !important;
left: -100% !important;
}
}.engine {
position: absolute;
text-indent: -2400px;
text-align: center;
padding: 0;
top: 0;
left: -2400px;
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,477 +0,0 @@
@font-face {
font-family: 'mobirise-icons-bold';
font-display: swap;
src: url('mobirise-icons-bold.eot?m1l4yr');
src: url('mobirise-icons-bold.eot?m1l4yr#iefix') format('embedded-opentype'),
url('mobirise-icons-bold.ttf?m1l4yr') format('truetype'),
url('mobirise-icons-bold.woff?m1l4yr') format('woff'),
url('mobirise-icons-bold.svg?m1l4yr#mobirise-icons-bold') format('svg');
font-weight: normal;
font-style: normal;
}
[class^="mbrib-"], [class*="mbrib-"] {
/* use !important to prevent issues with browser extensions that change fonts */
font-family: 'mobirise-icons-bold' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.mbrib-add-submenu:before {
content: "\e900";
}
.mbrib-alert:before {
content: "\e901";
}
.mbrib-align-center:before {
content: "\e902";
}
.mbrib-align-justify:before {
content: "\e903";
}
.mbrib-align-left:before {
content: "\e904";
}
.mbrib-align-right:before {
content: "\e905";
}
.mbrib-android:before {
content: "\e906";
}
.mbrib-apple:before {
content: "\e907";
}
.mbrib-arrow-down:before {
content: "\e908";
}
.mbrib-arrow-next:before {
content: "\e909";
}
.mbrib-arrow-prev:before {
content: "\e90a";
}
.mbrib-arrow-up:before {
content: "\e90b";
}
.mbrib-bold:before {
content: "\e90c";
}
.mbrib-bookmark:before {
content: "\e90d";
}
.mbrib-bootstrap:before {
content: "\e90e";
}
.mbrib-briefcase:before {
content: "\e90f";
}
.mbrib-browse:before {
content: "\e910";
}
.mbrib-bulleted-list:before {
content: "\e911";
}
.mbrib-calendar:before {
content: "\e912";
}
.mbrib-camera:before {
content: "\e913";
}
.mbrib-cart-add:before {
content: "\e914";
}
.mbrib-cart-full:before {
content: "\e915";
}
.mbrib-cash:before {
content: "\e916";
}
.mbrib-change-style:before {
content: "\e917";
}
.mbrib-chat:before {
content: "\e918";
}
.mbrib-clock:before {
content: "\e919";
}
.mbrib-close:before {
content: "\e91a";
}
.mbrib-cloud:before {
content: "\e91b";
}
.mbrib-code:before {
content: "\e91c";
}
.mbrib-contact-form:before {
content: "\e91d";
}
.mbrib-credit-card:before {
content: "\e91e";
}
.mbrib-cursor-click:before {
content: "\e91f";
}
.mbrib-cust-feedback:before {
content: "\e920";
}
.mbrib-database:before {
content: "\e921";
}
.mbrib-delivery:before {
content: "\e922";
}
.mbrib-desktop:before {
content: "\e923";
}
.mbrib-devices:before {
content: "\e924";
}
.mbrib-down:before {
content: "\e925";
}
.mbrib-download:before {
content: "\e926";
}
.mbrib-drag-n-drop:before {
content: "\e927";
}
.mbrib-drag-n-drop2:before {
content: "\e928";
}
.mbrib-edit:before {
content: "\e929";
}
.mbrib-edit2:before {
content: "\e92a";
}
.mbrib-error:before {
content: "\e92b";
}
.mbrib-extension:before {
content: "\e92c";
}
.mbrib-features:before {
content: "\e92d";
}
.mbrib-file:before {
content: "\e92e";
}
.mbrib-flag:before {
content: "\e92f";
}
.mbrib-folder:before {
content: "\e930";
}
.mbrib-gift:before {
content: "\e931";
}
.mbrib-github:before {
content: "\e932";
}
.mbrib-globe-2:before {
content: "\e933";
}
.mbrib-globe:before {
content: "\e934";
}
.mbrib-growing-chart:before {
content: "\e935";
}
.mbrib-hearth:before {
content: "\e936";
}
.mbrib-help:before {
content: "\e937";
}
.mbrib-home:before {
content: "\e938";
}
.mbrib-hot-cup:before {
content: "\e939";
}
.mbrib-idea:before {
content: "\e93a";
}
.mbrib-image-gallery:before {
content: "\e93b";
}
.mbrib-image-slider:before {
content: "\e93c";
}
.mbrib-info:before {
content: "\e93d";
}
.mbrib-italic:before {
content: "\e93e";
}
.mbrib-key:before {
content: "\e93f";
}
.mbrib-laptop:before {
content: "\e940";
}
.mbrib-layers:before {
content: "\e941";
}
.mbrib-left-right:before {
content: "\e942";
}
.mbrib-left:before {
content: "\e943";
}
.mbrib-letter:before {
content: "\e944";
}
.mbrib-like:before {
content: "\e945";
}
.mbrib-link:before {
content: "\e946";
}
.mbrib-lock:before {
content: "\e947";
}
.mbrib-login:before {
content: "\e948";
}
.mbrib-logout:before {
content: "\e949";
}
.mbrib-magic-stick:before {
content: "\e94a";
}
.mbrib-map-pin:before {
content: "\e94b";
}
.mbrib-menu:before {
content: "\e94c";
}
.mbrib-mobile:before {
content: "\e94d";
}
.mbrib-mobile2:before {
content: "\e94e";
}
.mbrib-mobirise:before {
content: "\e94f";
}
.mbrib-more-horizontal:before {
content: "\e950";
}
.mbrib-more-vertical:before {
content: "\e951";
}
.mbrib-music:before {
content: "\e952";
}
.mbrib-new-file:before {
content: "\e953";
}
.mbrib-numbered-list:before {
content: "\e954";
}
.mbrib-opened-folder:before {
content: "\e955";
}
.mbrib-pages:before {
content: "\e956";
}
.mbrib-paper-plane:before {
content: "\e957";
}
.mbrib-paperclip:before {
content: "\e958";
}
.mbrib-photo:before {
content: "\e959";
}
.mbrib-photos:before {
content: "\e95a";
}
.mbrib-pin:before {
content: "\e95b";
}
.mbrib-play:before {
content: "\e95c";
}
.mbrib-plus:before {
content: "\e95d";
}
.mbrib-preview:before {
content: "\e95e";
}
.mbrib-print:before {
content: "\e95f";
}
.mbrib-protect:before {
content: "\e960";
}
.mbrib-question:before {
content: "\e961";
}
.mbrib-quote-left:before {
content: "\e962";
}
.mbrib-quote-right:before {
content: "\e963";
}
.mbrib-redo:before {
content: "\e964";
}
.mbrib-refresh:before {
content: "\e965";
}
.mbrib-responsive:before {
content: "\e966";
}
.mbrib-right:before {
content: "\e967";
}
.mbrib-rocket:before {
content: "\e968";
}
.mbrib-sad-face:before {
content: "\e969";
}
.mbrib-sale:before {
content: "\e96a";
}
.mbrib-save:before {
content: "\e96b";
}
.mbrib-search:before {
content: "\e96c";
}
.mbrib-setting:before {
content: "\e96d";
}
.mbrib-setting2:before {
content: "\e96e";
}
.mbrib-setting3:before {
content: "\e96f";
}
.mbrib-share:before {
content: "\e970";
}
.mbrib-shopping-bag:before {
content: "\e971";
}
.mbrib-shopping-basket:before {
content: "\e972";
}
.mbrib-shopping-cart:before {
content: "\e973";
}
.mbrib-sites:before {
content: "\e974";
}
.mbrib-smile-face:before {
content: "\e975";
}
.mbrib-speed:before {
content: "\e976";
}
.mbrib-star:before {
content: "\e977";
}
.mbrib-success:before {
content: "\e978";
}
.mbrib-sun:before {
content: "\e979";
}
.mbrib-sun2:before {
content: "\e97a";
}
.mbrib-tablet-vertical:before {
content: "\e97b";
}
.mbrib-tablet:before {
content: "\e97c";
}
.mbrib-target:before {
content: "\e97d";
}
.mbrib-timer:before {
content: "\e97e";
}
.mbrib-to-ftp:before {
content: "\e97f";
}
.mbrib-to-local-drive:before {
content: "\e980";
}
.mbrib-touch-swipe:before {
content: "\e981";
}
.mbrib-touch:before {
content: "\e982";
}
.mbrib-trash:before {
content: "\e983";
}
.mbrib-underline:before {
content: "\e984";
}
.mbrib-undo:before {
content: "\e985";
}
.mbrib-unlink:before {
content: "\e986";
}
.mbrib-unlock:before {
content: "\e987";
}
.mbrib-up-down:before {
content: "\e988";
}
.mbrib-up:before {
content: "\e989";
}
.mbrib-update:before {
content: "\e98a";
}
.mbrib-upload:before {
content: "\e98b";
}
.mbrib-user:before {
content: "\e98c";
}
.mbrib-user2:before {
content: "\e98d";
}
.mbrib-users:before {
content: "\e98e";
}
.mbrib-video-play:before {
content: "\e98f";
}
.mbrib-video:before {
content: "\e990";
}
.mbrib-watch:before {
content: "\e991";
}
.mbrib-website-theme:before {
content: "\e992";
}
.mbrib-wifi:before {
content: "\e993";
}
.mbrib-windows:before {
content: "\e994";
}
.mbrib-zoom-out:before {
content: "\e995";
}

View File

@ -1,160 +0,0 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by IcoMoon</metadata>
<defs>
<font id="MobiriseIcons" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
<glyph unicode="&#xe900;" glyph-name="mbri-add-submenu" d="M64 224v-64c0-16.768 15.232-32 32-32h177.92l-7.936-8c-31.104-31.104 14.336-75.712 44.032-46.080l64 64c12.288 11.968 12.288 34.176 0 46.080l-64 64c-25.856 25.856-72.96-16.96-44.032-46.080l10.048-9.92h-148.032v32c0 42.24-64 41.344-64 0zM576 256c-70.4 0-128-57.6-128-128s57.6-128 128-128h320c70.4 0 128 57.6 128 128s-57.6 128-128 128zM576 192h320c36.032 0 64-27.968 64-64s-27.968-64-64-64h-320c-36.032 0-64 27.968-64 64s27.968 64 64 64zM128 576c-70.4 0-128-57.6-128-128s57.6-128 128-128h640c70.4 0 128 57.6 128 128s-57.6 128-128 128zM128 512h640c36.032 0 64-27.968 64-64s-27.968-64-64-64h-640c-36.032 0-64 27.968-64 64s27.968 64 64 64zM128 896c-70.4 0-128-57.6-128-128s57.6-128 128-128h640c70.4 0 128 57.6 128 128s-57.6 128-128 128zM128 832h640c36.032 0 64-27.968 64-64s-27.968-64-64-64h-640c-36.032 0-64 27.968-64 64s27.968 64 64 64z" />
<glyph unicode="&#xe901;" glyph-name="mbri-alert" d="M800 768c88.768 0 160-71.232 160-160 0-40.576 64-41.792 64 0 0 123.328-100.672 224-224 224-44.16 0-40.576-64 0-64zM224 832c-123.328 0-224-100.672-224-224 0-43.328 64-42.24 64 0 0 88.768 71.232 160 160 160 41.6 0 41.152 64 0 64zM512 960c-68.48 0-128-40-128-96 0-41.152 64-41.088 64 0 0 17.92 33.664 32 64 32s64-11.84 64-32c0-42.56 64-41.856 64 0 0 54.4-59.52 96-128 96zM512 767.168c-122.24 0-197.12-62.080-233.984-136s-42.048-156.672-42.048-211.968c0-91.136-24.192-148.48-48-184-23.68-35.648-43.968-48-43.968-48-24.768-13.696-12.288-60.48 16-60.032h704c30.848-3.2 43.264 51.712 14.080 62.080 0 0-18.944 6.912-42.112 39.936-23.040 33.088-48 90.752-48 190.080 0 55.296-5.12 138.048-41.984 211.968-36.864 73.856-111.744 135.936-233.984 135.936zM689.92 603.2c28.928-57.792 34.112-132.48 34.112-184 0-81.728 11.968-163.2 61.952-228.032h-553.92c55.936 64.832 67.136 161.472 67.968 228.032 0 51.52 5.12 126.208 33.92 184s75.84 99.968 178.048 99.968 149.12-42.24 177.92-99.968zM512-64c-68.48 0-128 40-128 96 0 41.152 64 41.088 64 0 0-17.92 33.664-32 64-32s64 11.84 64 32c0 42.56 64 41.856 64 0 0-54.4-59.52-96-128-96z" />
<glyph unicode="&#xe902;" glyph-name="mbri-align-center" d="M288 384h448c43.136 0 41.728-64 0-64h-448c-42.88 0-41.472 64 0 64zM32 192h960c43.136 0 41.728-64 0-64h-960c-42.88 0-41.472 64 0 64zM32 576h960c43.136 0 41.728-64 0-64h-960c-42.88 0-41.472 64 0 64zM288 768h448c43.136 0 41.728-64 0-64h-448c-42.88 0-41.472 64 0 64z" />
<glyph unicode="&#xe903;" glyph-name="mbri-align-justify" d="M32 384h960c43.136 0 41.728-64 0-64h-960c-42.88 0-41.472 64 0 64zM32 192h960c43.136 0 41.728-64 0-64h-960c-42.88 0-41.472 64 0 64zM32 576h960c43.136 0 41.728-64 0-64h-960c-42.88 0-41.472 64 0 64zM32 768h960c43.136 0 41.728-64 0-64h-960c-42.88 0-41.472 64 0 64z" />
<glyph unicode="&#xe904;" glyph-name="mbri-align-left" d="M32 384h960c43.136 0 41.728-64 0-64h-960c-42.88 0-41.472 64 0 64zM32 192h512c43.136 0 41.728-64 0-64h-512c-42.88 0-41.472 64 0 64zM32 576h512c43.136 0 41.728-64 0-64h-512c-42.88 0-41.472 64 0 64zM32 768h960c43.136 0 41.728-64 0-64h-960c-42.88 0-41.472 64 0 64z" />
<glyph unicode="&#xe905;" glyph-name="mbri-align-right" d="M992 384h-960c-43.136 0-41.728-64 0-64h960c42.88 0 41.472 64 0 64zM992 192h-512c-43.136 0-41.728-64 0-64h512c42.88 0 41.472 64 0 64zM992 576h-512c-43.136 0-41.728-64 0-64h512c42.88 0 41.472 64 0 64zM992 768h-960c-43.136 0-41.728-64 0-64h960c42.88 0 41.472 64 0 64z" />
<glyph unicode="&#xe906;" glyph-name="mbri-android" d="M251.52 878.72l63.040-125.12c23.424-46.464-35.392-68.608-55.232-29.312l-63.104 125.12c-20.032 39.68 36.992 65.472 55.232 29.312zM768 448c0-35.328-28.672-64-64-64s-64 28.672-64 64 28.672 64 64 64 64-28.672 64-64zM384 448c0-35.328-28.672-64-64-64s-64 28.672-64 64 28.672 64 64 64 64-28.672 64-64zM512 704c-252.16 0-463.552-175.36-511.488-409.984-3.584-18.56 12.992-38.4 32-38.016h959.040c18.944-0.64 35.52 19.392 32 38.016-48.064 234.624-259.52 409.984-511.552 409.984zM512 640c207.872 0 377.344-135.68 433.6-320h-867.2c56.32 184.32 225.728 320 433.6 320zM64 192c-34.88 0-64-29.12-64-64v-64c0-34.88 29.12-64 64-64h896c34.88 0 64 29.12 64 64v64c0 34.88-29.12 64-64 64zM64 128h896v-64h-896zM772.48 878.72l-63.040-125.12c-23.424-46.464 35.392-68.608 55.232-29.312l63.104 125.12c20.032 39.68-36.992 65.472-55.232 29.312z" />
<glyph unicode="&#xe907;" glyph-name="mbri-apple" d="M673.92 960c-119.872 0-225.92-93.184-225.92-210.816 0-39.232 54.144-45.184 94.080-45.184 120.064 0 225.92 95.488 225.92 213.12 0 41.984-55.040 42.88-94.080 42.88zM692.032 896c0-64.512-70.592-128-168.064-128 0 64.64 66.304 128 168.064 128zM328 704c-183.68 0-264-154.496-264-320 0-257.664 152.32-448 296-448 113.728 0 113.536 64 166.016 64s56.32-64 165.888-64c96 0 210.752 88.064 266.048 251.2 4.096 12.8-1.024 28.16-12.16 35.968-54.4 34.56-81.92 93.568-81.92 160.832 0 62.080 22.4 115.84 70.016 151.168 13.056 8.96 17.664 28.16 9.984 41.984-45.952 82.432-127.104 126.848-217.856 126.848-113.536 0-129.088-64-199.936-64-71.040 0-83.2 64-198.080 64zM328 640c96 0 100.032-63.744 198.016-64 97.92 0 99.392 64 199.936 64 65.664 0 112.448-28.16 147.968-78.848-47.808-46.272-73.92-106.24-73.92-177.152 0-77.76 31.616-144.192 88-190.848-51.008-129.792-144-193.152-196.032-193.152-71.68 0-87.808 64-165.952 64-78.208 0-87.68-64-166.080-64-90.944 0-231.936 139.2-231.936 384 0 138.368 59.904 256 200 256z" />
<glyph unicode="&#xe908;" glyph-name="mbri-arrow-down" d="M54.848 694.72l447.552-448.96c29.76-29.76-16.64-73.408-45.952-44.032l-447.488 448.896c-28.288 28.288 17.28 72.832 45.888 44.16zM969.152 694.72l-383.552-384.96c-29.76-29.824 16.64-73.408 45.952-44.032l383.616 384.896c28.16 28.288-17.408 72.832-46.080 44.16z" />
<glyph unicode="&#xe909;" glyph-name="mbri-arrow-next" d="M265.28 905.152l448.96-447.552c29.76-29.76 73.344 16.64 44.032 45.952l-448.896 447.488c-28.288 28.288-72.832-17.28-44.16-45.888zM265.28-9.152l384.96 383.552c29.824 29.76 73.408-16.64 44.032-45.952l-384.896-383.616c-28.288-28.16-72.832 17.408-44.16 46.080z" />
<glyph unicode="&#xe90a;" glyph-name="mbri-arrow-prev" d="M758.72 905.152l-448.96-447.552c-29.76-29.76-73.344 16.64-44.032 45.952l448.896 447.488c28.288 28.288 72.832-17.28 44.16-45.888zM758.72-9.152l-384.96 383.552c-29.824 29.76-73.408-16.64-44.032-45.952l384.896-383.616c28.288-28.16 72.832 17.408 44.16 46.080z" />
<glyph unicode="&#xe90b;" glyph-name="mbri-arrow-up" d="M969.152 201.28l-447.552 448.96c-29.76 29.76 16.64 73.408 45.952 44.032l447.552-448.896c28.288-28.288-17.28-72.832-45.888-44.16zM54.848 201.28l383.552 384.96c29.76 29.824-16.64 73.408-45.952 44.032l-383.616-384.896c-28.16-28.288 17.408-72.832 46.080-44.16z" />
<glyph unicode="&#xe90c;" glyph-name="mbri-bold" d="M320 800v-256c0-16.768 15.232-32 32-32h128c88.064 0 160 71.872 160 160s-71.936 160-160 160h-128c-17.664 0-32-13.44-32-32zM384 768h96c53.76 0 96-42.24 96-96s-42.24-96-96-96h-96zM320 416v-320c0-16.768 15.232-32 32-32h160c105.792 0 192 86.080 192 192s-86.208 192-192 192h-160c-17.28 0-32-16.32-32-32zM384 384h128c71.488 0 128-56.32 128-128s-56.512-128.64-128-128h-128zM192 928v-960c0-16.768 15.232-32 32-32h288c176 0 320 143.552 320 320 0 101.376-50.56 189.184-124.032 248 35.584 47.36 60.032 103.68 60.032 168 0 158.912-129.024 288-288 288h-256c-17.28 0-32-14.080-32-32zM256 896h224c124.672 0 224-99.456 224-224 0-58.88-22.784-109.76-60.032-150.016-12.16-13.568-9.152-37.76 6.016-48 70.528-45.184 118.016-126.72 118.016-217.984 0-142.4-114.432-256-256-256h-256z" />
<glyph unicode="&#xe90d;" glyph-name="mbri-bookmark" d="M224 512h576c41.344 0 43.52-64 0-64h-576c-42.24 0-42.368 64 0 64zM224 640h576c41.344 0 43.52-64 0-64h-576c-42.24 0-42.368 64 0 64zM224 768h576c41.344 0 43.52-64 0-64h-576c-42.24 0-42.368 64 0 64zM64 865.92v-832.64c0-66.944 62.080-109.44 105.984-94.080l344 122.56 340.096-123.776c40.192-10.688 105.984 26.496 105.984 94.080v833.856c-0.064 52.736-43.584 94.080-96.064 94.080h-704c-56.576 0-96-41.472-96-94.080zM160 896h704c18.368 0 32-11.968 32-30.080v-833.92c0-16.96-15.552-35.2-30.080-30.080l-341.76 123.904c-6.272 2.752-13.44 3.456-20.032 1.92l-353.92-128.448c-13.568-4.928-22.080 14.848-22.080 33.92v832.832c0 18.112 13.632 30.080 32 30.080z" />
<glyph unicode="&#xe90e;" glyph-name="mbri-bootstrap" d="M256 800v-640c0-16.768 15.232-32 32-32h256c123.52 0 224 100.48 224 224 0 49.472-23.040 91.328-49.92 128 26.88 36.672 49.92 78.464 49.92 128 0 123.52-100.48 224-224 224h-256c-21.568 0-32-16.192-32-32zM320 768h224c89.216 0 160-70.848 160-160 0-41.472-16-77.312-41.984-105.984-11.136-11.776-11.136-32.256 0-44.032 25.856-28.672 41.984-64.64 41.984-105.984 0-89.216-70.784-160-160-160h-224v576zM384 416v-128c0-16.768 15.232-32 32-32h129.92c52.096 0 94.080 43.904 94.080 96s-41.984 96-94.080 96h-129.92c-17.664 0-32-13.44-32-32zM448 384h97.92c17.152 0 30.080-12.8 30.080-32s-12.928-32.384-30.080-32h-97.92zM384 672v-128c0-16.768 15.232-32 32-32h129.92c52.16 0 94.080 43.904 94.080 96s-41.984 96-94.080 96h-129.92c-19.072 0-32-15.36-32-32zM448 640h97.92c17.152 0 30.080-12.8 30.080-32s-12.928-32-30.080-32h-97.92zM96 960c-52.608 0-96-43.392-96-96v-768c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v768c0 52.608-43.392 96-96 96zM96 896h832c18.304 0 32-13.696 32-32v-768c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v768c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe90f;" glyph-name="mbri-briefcase" d="M138.88 520.448l128.256-127.040c43.008-42.688 61.824-73.408 148.864-73.408h192c80.512 0 102.592 23.36 152.128 73.408l127.040 128.32c27.008 27.264-17.92 72.064-44.16 45.632l-126.848-128.32c-39.168-39.488-69.76-55.040-108.16-55.040h-192c-53.632 0-77.888 28.416-104.768 55.040l-128.192 127.040c-29.952 29.568-74.88-15.36-44.16-45.632zM352 960c-52.608 0-96-43.392-96-96v-64c0-42.368 64-42.24 64 0v64c0 18.304 13.696 32 32 32h320c18.304 0 32-13.696 32-32v-64c0-42.048 64-41.6 64 0v64c0 52.608-43.392 96-96 96zM96 704c-52.608 0-96-43.392-96-96v-512c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v512c0 52.608-43.392 96-96 96zM96 640h832c18.304 0 32-13.696 32-32v-512c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v512c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe910;" glyph-name="mbri-browse" d="M160 576h704c42.432 0 42.88-64 0-64h-704c-42.432 0-42.432 64 0 64zM448 672c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM320 672c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM192 672c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM96 832c-52.608 0-96-43.392-96-96v-576c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v576c0 52.608-43.392 96-96 96zM96 768h832c18.304 0 32-13.696 32-32v-576c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v576c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe911;" glyph-name="mbri-bulleted-list" d="M352 128h640c43.52 0 42.048-64 0-64h-640c-42.88 0-42.112 64 0 64zM352 512h640c43.52 0 42.048-64 0-64h-640c-42.88 0-42.112 64 0 64zM128 192c-70.4 0-128-57.6-128-128s57.6-128 128-128 128 57.6 128 128-57.6 128-128 128zM128 128c35.712 0 64-28.288 64-64s-28.288-64-64-64-64 28.288-64 64 28.288 64 64 64zM128 576c-70.4 0-128-57.6-128-128s57.6-128 128-128 128 57.6 128 128-57.6 128-128 128zM128 512c35.712 0 64-28.288 64-64s-28.288-64-64-64-64 28.288-64 64 28.288 64 64 64zM128 960c-70.4 0-128-57.6-128-128s57.6-128 128-128 128 57.6 128 128-57.6 128-128 128zM128 896c35.712 0 64-28.288 64-64s-28.288-64-64-64-64 28.288-64 64 28.288 64 64 64zM352 896h640c43.52 0 42.048-64 0-64h-640c-42.88 0-42.112 64 0 64z" />
<glyph unicode="&#xe912;" glyph-name="mbri-calendar" d="M704 736v128c0 41.216 64 44.288 64 0v-128c0-42.496-64-41.92-64 0zM192 736v128c0 41.216 64 44.288 64 0v-128c0-42.496-64-41.92-64 0zM800 320h-128c-41.216 0-44.288 64 0 64h128c42.56 0 41.92-64 0-64zM544 320h-128c-41.216 0-44.288 64 0 64h128c42.56 0 41.92-64 0-64zM288 320h-128c-41.216 0-44.288 64 0 64h128c42.56 0 41.92-64 0-64zM800 512h-128c-41.216 0-44.288 64 0 64h128c42.56 0 41.92-64 0-64zM544 512h-128c-41.216 0-44.288 64 0 64h128c42.56 0 41.92-64 0-64zM288 512h-128c-41.216 0-44.288 64 0 64h128c42.56 0 41.92-64 0-64zM96 832c-52.608 0-96-43.392-96-96v-576c0-52.608 43.392-96 96-96h768c52.608 0 96 43.392 96 96v576c0 52.608-43.392 96-96 96-43.072 0-41.28-64 0-64 18.304 0 32-13.696 32-32v-576c0-18.304-13.696-32-32-32h-768c-18.304 0-32 13.696-32 32v576c0 18.304 13.696 32 32 32 41.28 0 43.84 64 0 64zM352 768h256c43.52 0 41.088 64 0 64h-256c-42.24 0-41.6-64 0-64z" />
<glyph unicode="&#xe913;" glyph-name="mbri-camera" d="M800 576h64c43.136 0 42.24-64 0-64h-64c-43.136 0-41.984 64 0 64zM160 896c-52.608 0-96-43.392-96-96 0-43.136 64-40.576 64 0 0 18.304 13.696 32 32 32h128c18.304 0 32-13.696 32-32 0-42.112 64-42.432 64 0 0 52.608-43.392 96-96 96zM480 576c-123.328 0-224-100.672-224-224s100.672-224 224-224 224 100.672 224 224-100.672 224-224 224zM480 512c88.768 0 160-71.232 160-160s-71.232-160-160-160-160 71.232-160 160 71.232 160 160 160zM96 704c-52.608 0-96-43.392-96-96v-512c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v512c0 52.608-43.392 96-96 96zM96 640h832c18.304 0 32-13.696 32-32v-512c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v512c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe914;" glyph-name="mbri-cart-add" d="M832 800v-96h-96c-42.624 0-42.24-64 0-64h96v-96c0-43.008 64-41.984 64 0v96h96c43.52 0 41.92 64 0 64h-96v96c0 42.24-64 42.752-64 0zM352 704h256c42.624 0 42.752-64 0-64h-256c-42.88 0-41.728 64 0 64zM352 576h320c42.88 0 42.56-64 0-64h-320c-42.56 0-42.112 64 0 64zM416 448h320c42.368 0 42.88-64 0-64h-320c-42.368 0-42.496 64 0 64zM736 192c-52.672 0-96-43.392-96-96s43.328-96 96-96 96 43.392 96 96-43.328 96-96 96zM736 128c18.048 0 32-13.952 32-32s-13.952-32-32-32c-18.048 0-32 13.952-32 32s13.952 32 32 32zM352 192c-52.672 0-96-43.392-96-96s43.328-96 96-96 96 43.392 96 96-43.328 96-96 96zM352 128c18.048 0 32-13.952 32-32s-13.952-32-32-32c-18.048 0-32 13.952-32 32s13.952 32 32 32zM128 768c16.384 0 25.92-45.312 32-70.016l65.92-321.92c25.6-95.104 80.448-120.064 158.080-120.064h384c43.52 0 120.064 26.368 188.032 144 21.952 38.016-35.712 67.2-56.064 32-60.032-104.064-111.36-112-131.968-112h-384c-63.104 0-84.672 22.4-97.92 72l-62.080 318.080c-11.392 63.424-38.4 121.92-96 121.92h-96c-42.24 0-43.008-64 0-64z" />
<glyph unicode="&#xe915;" glyph-name="mbri-cart-full" d="M416 448h384c43.648 0 41.344-64 0-64h-384c-43.776 0-41.6 64 0 64zM32 768h96c24.576 0 31.36-39.424 37.312-70.784l64-336c23.488-87.68 79.808-105.216 154.688-105.216h384c94.080 0 162.176 11.776 186.88 95.168l60.032 201.984c29.696 97.92-11.52 150.848-103.936 150.848h-558.976c-42.24 0-42.24-64 0-64h558.976c59.84 0 55.040-24.832 41.984-68.8l-57.984-198.016c-16-54.528-76.8-53.12-126.976-53.12h-384c-57.6-3.072-78.4 9.152-90.752 55.168l-64 334.080c-14.016 73.024-28.736 122.688-101.248 122.688h-96c-42.24 0-43.008-64 0-64zM586.24 950.72l-105.216-107.008-41.6 43.904c-11.712 10.88-32 10.88-43.712 0l-63.488-63.168c-33.92-33.728 12.672-76.16 43.648-45.44l41.6 41.472 41.728-43.84c11.648-10.88 32-10.88 43.648 0l105.152 107.072 105.152-107.072c11.648-10.88 32-10.88 43.52 0l41.728 43.904 41.6-41.344c30.976-30.72 78.464 10.88 43.712 45.44l-63.488 63.040c-11.648 10.88-32 10.88-43.648 0l-41.6-44.032-105.216 107.072c-12.8 12.8-32.512 11.008-43.52 0zM352 576h512c42.56 0 42.368-64 0-64h-512c-41.6 0-42.56 64 0 64zM736 192c-52.736 0-96-43.264-96-96s43.264-96 96-96 96 43.264 96 96-43.264 96-96 96zM736 128c18.112 0 32-13.888 32-32s-13.888-32-32-32c-18.112 0-32 13.888-32 32s13.888 32 32 32zM352 192c-52.736 0-96-43.264-96-96s43.264-96 96-96 96 43.264 96 96-43.264 96-96 96zM352 128c18.112 0 32-13.888 32-32s-13.888-32-32-32c-18.112 0-32 13.888-32 32s13.888 32 32 32z" />
<glyph unicode="&#xe916;" glyph-name="mbri-cash" d="M224 320h-32v32c0 42.112-64 42.88-64 0v-64c0-16.768 15.232-32 32-32h64c42.112 0 42.88 64 0 64zM736 320h32v32c0 42.112 64 42.88 64 0v-64c0-16.768-15.232-32-32-32h-64c-42.112 0-42.88 64 0 64zM224 640h-32v-32c0-42.112-64-42.88-64 0v64c0 16.768 15.232 32 32 32h64c42.112 0 42.88-64 0-64zM448 672v-38.016c-37.44-13.056-64-48.192-64-89.984 0-65.92 42.88-94.976 96-96 17.6-0.64 32-15.104 32-32 0-17.536-14.72-32-32-32h-64c-42.368 0-42.24-64 0-64h32v-32c0-42.688 64-42.56 64 0v36.032c37.504 13.056 64 50.112 64 91.968 0 52.864-38.208 95.488-96 95.488-18.048 0-32 15.104-32 32.512 0 17.536 14.72 32 32 32h64c45.056 0 39.232 64 0 64h-32v32c0 42.624-64 41.984-64 0zM736 640h32v-32c0-42.112 64-42.88 64 0v64c0 16.768-15.232 32-32 32h-64c-42.112 0-42.88-64 0-64zM96 832c-52.608 0-96-43.392-96-96v-512c0-52.608 43.392-96 96-96h768c52.608 0 96 43.392 96 96v512c0 52.608-43.392 96-96 96zM96 768h768c18.304 0 32-13.696 32-32v-512c0-18.304-13.696-32-32-32h-768c-18.304 0-32 13.696-32 32v512c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe917;" glyph-name="mbri-change-style" d="M977.92 956.032c-212.928-113.024-474.624-284.672-589.888-400-94.72-94.72-78.080-213.76-28.032-264 50.048-50.176 154.88-64 257.92 36.032 105.28 102.016 280.64 356.48 402.24 585.984 14.848 29.184-16.832 54.528-42.048 41.984zM897.92 836.032c-87.040-161.92-218.88-359.552-323.84-460.032-86.272-82.432-155.904-54.144-170.112-40-39.68 39.68-26.88 116.992 32 176 118.72 118.656 309.888 239.232 462.080 324.032zM192 256c-99.52 0-117.76-78.976-128-160 0.896-44.416-26.56-82.304-52.032-102.016-22.208-15.872-7.296-59.136 20.032-57.984 141.76-0.64 288 27.52 288 160 0 97.792-45.44 160-128 160zM192 192c58.88 0 64-54.4 64-96 0-64.896-79.808-83.968-150.016-83.968 12.352 24.512 22.144 52.096 22.016 83.968-0.32 59.52 23.808 96 64 96z" />
<glyph unicode="&#xe918;" glyph-name="mbri-chat" d="M160 640h704c43.136 0 41.984-64 0-64h-704c-43.52 0-40.96 64 0 64zM160 768h704c43.136 0 41.984-64 0-64h-704c-43.52 0-40.96 64 0 64zM96 960c-52.608 0-96-43.392-96-96v-576c0-52.608 43.392-96 96-96h32v-160c0-28.992 33.664-42.24 54.016-22.016l182.016 182.016h563.968c52.608 0 96 43.392 96 96v576c0 52.608-43.392 96-96 96zM96 896h832c18.304 0 32-13.696 32-32v-576c0-18.304-13.696-32-32-32h-576c-8 0-16-2.688-22.016-8l-137.984-137.92v113.92c0 16.768-15.232 32-32 32h-64c-18.304 0-32 13.696-32 32v576c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe919;" glyph-name="mbri-clock" d="M448 800v-320c0-17.728 14.272-32 32-32h192c42.24 0 42.688 64 0 64h-160v288c0 41.472-64 43.392-64 0zM480 960c-264.704 0-480-215.296-480-480s215.296-480 480-480 480 215.296 480 480-215.296 480-480 480zM480 896c230.144 0 416-185.856 416-416s-185.856-416-416-416-416 185.856-416 416 185.856 416 416 416z" />
<glyph unicode="&#xe91a;" glyph-name="mbri-close" d="M394.048 375.232l-384.448-384.192c-29.44-29.44 15.68-74.368 44.16-45.952l384.32 384.128c30.464 30.464-16.64 73.472-44.032 46.080zM970.048 951.232l-384.448-384.192c-29.44-29.44 15.68-74.368 44.16-45.952l384.256 384.128c30.464 30.464-16.64 73.472-44.032 46.080zM9.728 905.28l960.64-960.192c28.544-28.544 73.408 16.64 44.032 46.080l-960.64 959.872c-27.52 27.712-74.112-15.68-44.032-45.76z" />
<glyph unicode="&#xe91b;" glyph-name="mbri-cloud" d="M544 832c-163.968-2.944-262.4-98.688-312-196.032-129.28-12.8-232-119.36-232-251.968 0-141.248 114.752-256 256-256h576c105.6 0 192 86.4 192 192 0 83.2-57.472 149.12-132.032 176-10.368 196.352-174.72 339.2-347.968 336zM544 768c141.76 2.56 288-119.936 288-289.92 0.64-14.336 11.968-27.392 25.984-30.080 57.856-11.84 102.016-65.92 102.016-128 0-71.040-56.96-128-128-128h-576c-106.88 0-192 85.12-192 192 0 105.216 81.6 189.312 185.984 192 12.8 0 25.216 8.192 30.080 20.032 38.976 86.208 115.904 169.28 263.936 171.968z" />
<glyph unicode="&#xe91c;" glyph-name="mbri-code" d="M823.936 693.76l192.512-224.256c10.048-11.52 10.048-30.528 0-42.048l-192.512-224.32c-27.264-31.808-74.688 11.2-48.128 42.048l174.464 202.24-174.464 204.16c-26.56 31.168 22.784 71.68 48.128 42.112zM643.904 751.168l-319.232-576.768c-21.12-38.272 36.48-65.28 55.872-30.080l319.36 576.768c19.648 35.648-35.2 67.648-55.936 30.080zM200.128 693.76l-192.576-224.256c-10.048-11.52-10.048-30.528 0-42.048l192.512-224.32c27.264-31.808 74.688 11.2 48.128 42.048l-174.464 202.24 174.464 204.16c26.56 31.168-22.784 71.68-48.128 42.112z" />
<glyph unicode="&#xe91d;" glyph-name="mbri-contact-form" d="M480 320h384c42.368 0 42.752-64 0-64h-384c-42.112 0-43.008 64 0 64zM480 448h384c42.368 0 42.752-64 0-64h-384c-42.112 0-43.008 64 0 64zM480 576h384c42.368 0 42.752-64 0-64h-384c-42.112 0-43.008 64 0 64zM832 864v-128c0-41.408-64-43.52-64 0v128c0 42.88 64 41.856 64 0zM192 576c-34.88 0-64-29.12-64-64v-192c0-34.88 29.12-64 64-64h128c34.88 0 64 29.12 64 64v192c0 34.88-29.12 64-64 64zM192 512h128v-192h-128zM256 864v-128c0-41.408-64-43.52-64 0v128c0 42.88 64 41.856 64 0zM96 832c-52.608 0-96-43.392-96-96v-576c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v576c0 52.608-43.392 96-96 96-42.88 0-41.6-64 0-64 18.304 0 32-13.696 32-32v-576c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v576c0 18.304 13.696 32 32 32 42.368 0 42.432 64 0 64zM352 768h320c42.368 0 42.88 64 0 64h-320c-42.624 0-42.24-64 0-64z" />
<glyph unicode="&#xe91e;" glyph-name="mbri-credit-card" d="M736 320h64c43.52 0 41.728-64 0-64h-64c-42.752 0-41.6 64 0 64zM544 320h64c43.52 0 41.728-64 0-64h-64c-42.752 0-41.856 64 0 64zM352 320h64c43.52 0 41.728-64 0-64h-64c-42.752 0-41.856 64 0 64zM160 320h64c43.52 0 41.728-64 0-64h-64c-42.752 0-42.88 64 0 64zM640 704c-70.4 0-128-57.6-128-128s57.6-128 128-128c25.088 0 44.928 13.824 64 25.984 19.072-12.16 38.912-25.984 64-25.984 70.4 0 128 57.6 128 128s-57.6 128-128 128c-24 0-44.48-12.288-64-24-19.52 11.712-40 24-64 24zM640 640c16.64 0 30.912-6.144 41.984-16 11.776-11.136 32.256-11.136 44.032 0 11.072 9.856 25.28 16 41.984 16 35.712 0 64-28.288 64-64s-28.288-64-64-64c-15.744 0-29.824 7.040-41.984 17.92-11.776 11.2-32.256 11.2-44.032 0-12.16-10.88-26.24-17.92-41.984-17.92-35.712 0-64 28.288-64 64s28.288 64 64 64zM96 832c-52.608 0-96-43.392-96-96v-512c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v512c0 52.608-43.392 96-96 96zM96 768h832c18.304 0 32-13.696 32-32v-512c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v512c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe91f;" glyph-name="mbri-cursor-click" d="M182.72 73.472l45.952 45.952c31.36 31.36-16.192 74.24-45.248 45.248l-45.952-45.952c-29.248-29.248 16-74.496 45.248-45.248zM903.808 795.2l45.888 45.888c31.36 31.36-16.256 74.24-45.312 45.312l-45.952-45.952c-29.184-29.248 16-74.496 45.312-45.248zM576 863.040v64.96c0 44.16-64 40.96-64 0v-65.024c0-41.344 64-41.344 64 0zM228.8 839.744l-45.888 46.080c-31.36 31.232-74.24-16.256-45.312-45.312l45.952-45.952c29.248-29.184 74.496 16 45.248 45.248zM31.040 448h64.96c44.16 0 41.088 64 0 64h-65.024c-41.344 0-41.28-64 0-64zM321.28 663.36l192.64-704.96c6.528-20.48 36.48-28.416 52.224-14.080l138.496 138.24 138.432-138.24c11.776-11.136 32.384-11.136 44.16 0l128.384 128.192c11.136 11.776 11.136 32.32 0 44.16l-138.496 138.112 138.432 138.24c14.72 14.72 9.088 43.84-10.112 52.096l-641.92 256.32c-25.6 10.24-49.536-11.072-42.24-38.080zM397.632 617.28l539.776-214.272-126.464-126.208c-11.072-11.776-11.072-32.32 0-44.032l138.56-138.24-84.288-84.096-138.496 138.24c-11.776 11.072-32.32 11.072-44.16 0l-122.368-122.24z" />
<glyph unicode="&#xe920;" glyph-name="mbri-cust-feedback" d="M714.112 759.424l-234.432-234.88-106.24 106.432c-27.328 27.328-73.28-17.024-44.16-46.208l128.32-128.448c11.776-11.136 32.32-11.136 44.16 0l256.384 256.896c30.464 30.464-17.024 73.28-44.032 46.208zM96 960c-52.608 0-96-43.392-96-96v-576c0-52.608 43.392-94.72 96-96h32v-160c0-24.832 31.872-44.16 54.016-22.016l182.016 182.016h563.968c52.608 0 96 43.392 96 96v576c0 52.608-43.392 96-96 96zM96 896h832c18.304 0 32-13.696 32-32v-576c0-18.304-13.696-32-32-32h-576c-8 0-16-2.688-22.016-8l-137.984-137.92v113.92c0 16.768-15.232 32-32 32h-64c-18.304 0-32 13.696-32 32v576c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe921;" glyph-name="mbri-database" d="M160 448h704c42.048 0 43.52-64 0-64h-704c-43.52 0-41.344 64 0 64zM448 288c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM320 288c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM192 288c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM576 544c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM448 544c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM320 544c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM448 800c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM320 800c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM192 800c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM160 704h704c42.048 0 43.52-64 0-64h-704c-43.52 0-41.344 64 0 64zM96 960c-52.608 0-96-43.392-96-96v-640c0-41.6 26.56-76.8 64-89.984v-70.016c0-34.88 29.12-64 64-64h128c34.88 0 64 29.12 64 64v64h384v-64c0-34.88 29.12-64 64-64h128c34.88 0 59.648 29.44 64 64v70.016c37.44 13.12 64 48.32 64 89.984v640c0 52.608-43.392 96-96 96h-832zM96 896h832c18.304 0 32-13.696 32-32v-640c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v640c0 18.304 13.696 32 32 32zM128 128h128v-64h-128v64zM768 128h128v-64h-128v64z" />
<glyph unicode="&#xe922;" glyph-name="mbri-delivery" d="M32 384h64c42.24 0 42.88-64 0-64h-64c-42.24 0-42.752 64 0 64zM32 576h64c42.24 0 42.88-64 0-64h-64c-42.24 0-42.752 64 0 64zM32 768h64c42.24 0 42.88-64 0-64h-64c-42.24 0-42.752 64 0 64zM522.24 567.808l-106.24-106.88-42.368 42.368c-26.688 26.688-73.216-17.28-44.16-46.4l64.256-64.64c11.84-11.136 32.448-11.136 44.16 0l128.64 129.088c29.824 29.952-17.92 72.704-44.16 46.4zM288 768c-52.608 0-96-43.392-96-96v-320c0-41.472 64-41.6 64 0v320c0 18.304 13.696 32 32 32h320c18.304 0 32-13.696 32-32v-320c0-18.304-13.696-32-32-32h-64c-41.984 0-41.856-64 0-64h64c52.608 0 96 43.392 96 96v288h144l112-168v-120c0-43.52 64-41.6 64 0v128c0 6.4-2.24 12.8-6.016 17.92l-128 192c-5.76 8.576-15.744 14.080-25.984 14.080h-166.016c-13.184 37.44-48.384 64-89.984 64h-320zM352 320c-52.8 0-96-43.648-96-96s43.2-96 96-96 96 43.648 96 96-43.2 96-96 96zM352 256c18.112 0 32-14.080 32-32s-13.888-32-32-32c-18.112 0-32 14.080-32 32s13.888 32 32 32zM864 320c-52.8 0-96-43.648-96-96s43.2-96 96-96 96 43.648 96 96-43.2 96-96 96zM864 256c18.112 0 32-14.080 32-32s-13.888-32-32-32c-18.112 0-32 14.080-32 32s13.888 32 32 32z" />
<glyph unicode="&#xe923;" glyph-name="mbri-desktop" d="M96 960c-52.608 0-96-43.392-96-96v-576c0-52.608 43.392-96 96-96h288v-128h-96c-42.624 0-41.472-64 0-64h448c43.136 0 41.984 64 0 64h-96v128h288c52.608 0 96 43.392 96 96v576c0 52.608-43.392 96-96 96zM96 896h832c18.304 0 32-13.696 32-32v-576c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v576c0 18.304 13.696 32 32 32zM160 448c-42.56 0-41.92-64 0-64h704c43.136 0 41.984 64 0 64zM448 192h128v-128h-128z" />
<glyph unicode="&#xe924;" glyph-name="mbri-devices" d="M192 544v-64c0-42.624-64-43.008-64 0v64c0 41.856 64 42.752 64 0zM320 736v-448c0-41.856-64-42.496-64 0v448c0 44.032 64 40.96 64 0zM832 160c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM672 704c-52.608 0-96-43.392-96-96v-512c0-52.608 43.392-96 96-96h256c52.608 0 96 43.392 96 96v512c0 52.608-43.392 96-96 96zM672 640h256c18.304 0 32-13.696 32-32v-512c0-18.304-13.696-32-32-32h-256c-18.304 0-32 13.696-32 32v512c0 18.304 13.696 32 32 32zM96 896c-52.608 0-96-43.392-96-96v-576c0-52.608 43.392-96 96-96h384c43.904 0 41.472 64 0 64h-384c-18.304 0-32 13.696-32 32v576c0 18.304 13.696 32 32 32h768c18.304 0 32-13.696 32-32 0-42.24 64-42.368 64 0 0 52.608-43.392 96-96 96z" />
<glyph unicode="&#xe925;" glyph-name="mbri-down" d="M9.6 392.832l448.256-448.512c11.776-11.072 32.256-11.072 44.032 0l448.256 448.512c30.080 30.080-15.616 74.496-43.968 46.080l-426.368-426.496-426.24 426.496c-28.032 28.032-73.6-16.64-44.16-46.080zM512 928v-768c0-41.728-64-43.84-64 0v768c0 43.2 64 40.96 64 0z" />
<glyph unicode="&#xe926;" glyph-name="mbri-download" d="M394.24 136.512l128.128-128.192c11.776-11.072 32.256-11.072 44.032 0l128 128.192c29.952 29.888-17.536 72-43.968 45.76l-106.048-105.472-105.984 105.472c-29.824 29.632-74.88-14.976-44.16-45.76zM576 544.832v-320c0-41.856-64-44.288-64 0v320c0 41.6 64 40.448 64 0zM544 960c-167.040 0-264.96-98.432-313.984-196.032-128.384-13.76-230.016-120.128-230.016-251.968 0-141.248 114.752-256 256-256h96c42.88 0 42.24 64 0 64h-96c-106.88 0-192 85.12-192 192 0 105.216 81.6 189.312 185.984 192 12.8 0 25.216 8.192 30.080 19.968 39.296 86.912 114.368 172.032 263.936 172.032 144.64 0 288-119.68 288-289.92 0.64-14.336 11.968-27.392 25.984-30.080 57.856-11.84 102.016-65.92 102.016-128 0-71.040-56.96-128-128-128h-96c-42.112 0-42.24-64 0-64h96c105.6 0 192 86.4 192 192 0 83.2-57.472 149.12-132.032 176-10.24 195.968-173.696 336-347.968 336z" />
<glyph unicode="&#xe927;" glyph-name="mbri-drag-n-drop" d="M64 480v64c0 18.304 13.696 32 32 32h64c42.56 0 41.92 64 0 64h-64c-52.736 0-96-43.264-96-96v-64c0-42.688 64-42.048 64 0zM64 96v-64c0-18.304 13.696-32 32-32h64c42.56 0 41.92-64 0-64h-64c-52.736 0-96 43.264-96 96v64c0 42.688 64 42.048 64 0zM0 224v128c0 41.6 64 43.392 64 0v-128c0-43.008-64-41.6-64 0zM416 960c-52.608 0-96-43.392-96-96v-512c0-52.608 43.392-96 96-96h512c52.608 0 96 43.392 96 96v512c0 52.608-43.392 96-96 96zM416 896h512c18.304 0 32-13.696 32-32v-512c0-18.304-13.696-32-32-32h-512c-18.304 0-32 13.696-32 32v512c0 18.304 13.696 32 32 32zM288 0h128c41.6 0 43.392-64 0-64h-128c-43.008 0-41.6 64 0 64zM640 96v-64c0-18.304-13.696-32-32-32h-64c-42.56 0-41.92-64 0-64h64c52.736 0 95.872 43.264 96 96l0.128 64c0 42.688-64.128 42.048-64.128 0z" />
<glyph unicode="&#xe928;" glyph-name="mbri-drag-n-drop2" d="M952 457.984l-128.64-128.256c-30.080-29.824-74.688 15.808-46.272 44.16l106.56 106.112-106.56 106.24c-27.968 27.776 16 74.048 46.208 43.968l128.64-128.192c10.88-10.88 10.624-33.536 0-44.032zM8 457.984l128.64-128.256c30.080-29.824 74.688 15.808 46.272 44.16l-106.56 106.112 106.56 106.24c27.968 27.776-16 74.048-46.208 43.968l-128.64-128.192c-10.88-10.88-10.624-33.536 0-44.032zM457.92 8.064l-128.192 128.64c-29.824 29.952 15.808 74.624 44.16 46.208l106.112-106.56 106.24 106.56c27.776 27.968 74.048-16 43.968-46.208l-128.192-128.64c-10.88-10.88-33.536-10.624-44.16 0zM457.92 952.064l-128.192-128.832c-29.824-29.952 15.808-74.624 44.16-46.208l106.112 106.624 106.24-106.56c27.776-27.968 74.048 16 43.968 46.208l-128.192 128.64c-10.88 10.88-33.536 10.624-44.16 0zM448 736v-224h-224c-42.432 0-41.344-64 0-64h224v-224c0-42.432 64-42.88 64 0v224h224c43.136 0 40.96 64 0 64h-224v224c0 43.84-64 40.96-64 0z" />
<glyph unicode="&#xe929;" glyph-name="mbri-edit" d="M160 704h384c42.88 0 42.496-64 0-64h-384c-43.84 0-41.472 64 0 64zM841.984 823.68l-512-512.32c-6.4-6.144-10.24-14.464-9.984-23.36v-128c0-16.768 15.232-32 32-32h128c8.32 0.64 16.32 3.2 22.016 9.152l512 512.448c12.288 11.904 12.288 34.112 0 46.080l-128 128c-11.008 11.072-33.024 11.072-44.032 0zM864 755.84l84.032-84.096-482.112-479.744h-81.92v83.328zM160 576h256c41.728 0 43.52-64 0-64h-256c-43.008 0-42.112 64 0 64zM160 832h384c42.88 0 42.496-64 0-64h-384c-43.84 0-41.472 64 0 64zM96 960c-52.608 0-96-43.392-96-96v-832c0-52.608 43.392-96 96-96h512c52.608 0 96 43.392 96 96v128c0 42.432-64 41.408-64 0v-128c0-18.304-13.696-32-32-32h-512c-18.304 0-32 13.696-32 32v832c0 18.304 13.696 32 32 32h512c18.304 0 32-13.696 32-32v-64c0-42.432 64-42.496 64 0v64c0 52.608-43.392 96-96 96z" />
<glyph unicode="&#xe92a;" glyph-name="mbri-edit2" d="M777.6 951.168l-64.32-64.128c-12.352-11.968-12.352-34.24 0-46.080l192.896-192.64c11.776-11.072 32.384-11.072 44.16 0l64.32 64.192c12.352 11.968 12.352 34.24 0 46.080l-192.896 192.704c-12.992 12.992-33.728 10.368-44.16 0zM799.68 883.008l148.736-148.48-20.16-17.92-148.736 146.368zM650.24 824l-640.256-640c-6.4-6.144-10.24-15.104-9.984-24v-192c0-16.768 15.232-32 32-32h192c8.32 0.64 16.384 3.968 22.080 9.984l640.256 640c12.16 11.904 13.44 32.512 0 46.080l-192.128 192c-10.88 10.88-33.536 10.432-44.032 0zM672.256 755.968l148.032-147.968-610.24-608h-146.048v147.968z" />
<glyph unicode="&#xe92b;" glyph-name="mbri-error" d="M393.984 393.984l74.048-73.984-74.048-72c-29.76-28.928 15.36-74.624 44.032-46.080l73.984 74.176 73.984-74.048c28.16-28.16 73.216 17.6 44.032 46.080l-73.984 71.872 73.984 73.984c28.8 28.8-18.752 71.296-44.032 46.080l-73.984-74.112-73.984 73.984c-24.96 24.96-73.472-16.512-44.032-46.080zM160 576h704c43.136 0 41.728-64 0-64h-704c-41.728 0-43.52 64 0 64zM448 672c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM320 672c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM192 672c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM96 832c-52.608 0-96-43.392-96-96v-576c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v576c0 52.608-43.392 96-96 96zM96 768h832c18.304 0 32-13.696 32-32v-576c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v576c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe92c;" glyph-name="mbri-extension" d="M704 934.016l-166.016-166.016c-35.072-35.072-32.832-92.672 1.92-128l164.096-166.016c34.688-35.2 93.12-35.2 128 0l164.032 166.016c34.816 35.328 37.12 92.928 1.92 128l-165.952 166.016c-36.224 36.224-96.128 31.808-128 0zM788.032 889.984l165.952-165.952c10.88-10.88 8.768-27.264-1.92-38.016l-166.144-166.080c-10.688-10.752-25.344-10.624-35.84 0l-166.144 166.144c-10.752 10.688-12.8 27.2-1.92 37.952l165.888 163.968c10.24 10.048 31.552 10.432 40.064 1.92zM608 384c-52.608 0-96-43.392-96-96v-256c0-52.608 43.392-96 96-96h256c52.608 0 96 43.392 96 96v256c0 52.608-43.392 96-96 96zM608 320h256c18.304 0 32-13.696 32-32v-256c0-18.304-13.696-32-32-32h-256c-18.304 0-32 13.696-32 32v256c0 18.304 13.696 32 32 32zM96 384c-52.608 0-96-43.392-96-96v-256c0-52.608 43.392-96 96-96h256c52.608 0 96 43.392 96 96v256c0 52.608-43.392 96-96 96zM96 320h256c18.304 0 32-13.696 32-32v-256c0-18.304-13.696-32-32-32h-256c-18.304 0-32 13.696-32 32v256c0 18.304 13.696 32 32 32zM96 896c-52.608 0-96-43.392-96-96v-256c0-52.608 43.392-96 96-96h256c52.608 0 96 43.392 96 96v256c0 52.608-43.392 96-96 96zM96 832h256c18.304 0 32-13.696 32-32v-256c0-18.304-13.696-32-32-32h-256c-18.304 0-32 13.696-32 32v256c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe92d;" glyph-name="mbri-features" d="M740.48 940.032l-58.88-134.912-141.632-15.488c-24.32-2.56-35.456-41.6-16.512-57.792l104.704-100.288-29.44-144.64c-4.48-24.32 25.408-46.912 46.080-34.688l123.2 73.216 123.2-73.216c20.608-12.16 50.56 10.368 45.952 34.752l-29.44 144.512 104.832 100.288c19.008 16.256 7.872 55.168-16.448 57.856l-141.632 15.36-58.88 135.040c-11.52 26.688-44.16 25.216-55.040 0zM768 847.488l36.8-86.72c4.48-10.624 14.72-18.304 25.728-19.328l88.32-9.6-66.24-63.616c-7.872-7.68-11.52-19.84-9.216-30.848l18.368-90.624-79.040 46.336c-8.96 5.12-20.48 5.12-29.44 0l-79.040-46.336 18.368 90.624c2.304 11.072-1.28 23.168-9.216 30.912l-66.176 63.68 88.32 9.6c10.88 1.024 21.12 8.704 25.6 19.328zM608 384c-52.608 0-96-43.392-96-96v-256c0-52.608 43.392-96 96-96h256c52.608 0 96 43.392 96 96v256c0 52.608-43.392 96-96 96zM608 320h256c18.304 0 32-13.696 32-32v-256c0-18.304-13.696-32-32-32h-256c-18.304 0-32 13.696-32 32v256c0 18.304 13.696 32 32 32zM96 384c-52.608 0-96-43.392-96-96v-256c0-52.608 43.392-96 96-96h256c52.608 0 96 43.392 96 96v256c0 52.608-43.392 96-96 96zM96 320h256c18.304 0 32-13.696 32-32v-256c0-18.304-13.696-32-32-32h-256c-18.304 0-32 13.696-32 32v256c0 18.304 13.696 32 32 32zM96 896c-52.608 0-96-43.392-96-96v-256c0-52.608 43.392-96 96-96h256c52.608 0 96 43.392 96 96v256c0 52.608-43.392 96-96 96zM96 832h256c18.304 0 32-13.696 32-32v-256c0-18.304-13.696-32-32-32h-256c-18.304 0-32 13.696-32 32v256c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe92e;" glyph-name="mbri-file" d="M288 320h448c44.8 0 40.32-64 0-64h-448c-42.432 0-42.624 64 0 64zM288 448h448c44.8 0 40.32-64 0-64h-448c-42.432 0-42.624 64 0 64zM288 576h448c44.8 0 40.32-64 0-64h-448c-42.432 0-42.624 64 0 64zM224 960c-52.608 0-96-43.392-96-96v-832c0-52.608 43.392-96 96-96h576c52.608 0 96 43.392 96 96v704c0.192 8.96-3.52 17.92-9.984 24l-192 192c-6.016 5.312-14.080 8.192-22.016 8zM224 896h436.032l171.968-172.032v-691.968c0-18.304-13.696-32-32-32h-576c-18.304 0-32 13.696-32 32v832c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe92f;" glyph-name="mbri-flag" d="M288 832h584l-100.032-176c-5.568-9.6-5.568-22.4 0-32l100.096-176h-584.064c-41.344 0-42.688-64 0-64h640c22.4 0 39.232 28.544 28.032 48l-120.064 209.92 118.016 208c9.344 19.2-6.656 45.568-27.968 46.080h-638.016c-42.496 0-41.6-64 0-64zM96 960c-52.608 0-96-43.392-96-96v-832c0-52.608 43.392-96 96-96s96 43.392 96 96v832c0 52.608-43.392 96-96 96zM96 896c18.304 0 32-13.696 32-32v-832c0-18.304-13.696-32-32-32s-32 13.696-32 32v832c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe930;" glyph-name="mbri-folder" d="M96 896c-52.608 0-96-43.392-96-96v-640c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v576c0 16.768-15.232 32-32 32h-497.92l-120.128 120c-5.952 5.312-14.016 8.192-21.952 8zM96 832h244.032l117.952-118.016c5.76-6.016 13.76-9.6 22.016-9.984h480v-544c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v640c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe931;" glyph-name="mbri-gift" d="M64 416v-384c0-52.608 43.392-96 96-96h704c52.608 0 96 43.392 96 96v384c0 42.88-64 41.28-64 0v-384c0-18.304-13.696-32-32-32h-224v416c0 43.136-64 40.64-64 0v-416h-128v416c0 43.52-64 40.64-64 0v-416h-224c-18.304 0-32 13.696-32 32v384c0 41.408-64 42.88-64 0zM313.984 960c-50.944 0-92.416-45.056-107.904-73.984-19.84-36.48-20.032-81.472 0-118.016h-110.080c-52.608 0-96-43.392-96-96v-64c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v64c0 52.608-43.392 96-96 96h-110.080c20.032 36.48 18.944 81.024 0 118.016-17.536 34.752-48 57.856-81.92 67.968-33.792 10.24-71.040 8.32-102.016-13.952-51.2-36.736-87.424-89.984-121.984-132.096-35.392 46.016-77.696 100.992-121.984 132.096-23.488 16.384-49.92 19.968-76.032 19.968zM316.032 896c12.992 0.192 32.384-4.032 43.904-13.568 47.104-39.040 76.352-79.744 102.144-114.432h-140.16c-60.608 0-73.792 56.96-58.112 88 14.208 28.16 36.992 39.68 52.224 40zM708.032 896c27.52 0 45.76-22.080 53.952-40 21.12-46.208-11.52-88-59.968-88h-140.096c28.672 40.128 67.2 84.48 102.528 113.728 11.52 9.472 30.528 14.272 43.52 14.272zM96 704h832c18.304 0 32-13.696 32-32v-64c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v64c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe932;" glyph-name="mbri-github" d="M512 960c-282.368 0-512-229.632-512-512 0-247.168 176.64-452.224 409.984-500.032 17.92-3.392 37.12 11.776 38.016 30.080v259.968c0.448 14.336-10.048 28.352-24 32-101.44 27.968-168 98.176-168 177.984 0 42.752 19.712 84.48 54.016 118.016 6.016 5.632 9.6 13.76 9.984 21.952v98.112l100.032-50.048c6.208-2.816 13.312-3.52 19.968-2.048 44.8 6.592 97.088 6.912 144 0 6.656-1.472 13.76-0.768 20.032 2.048l99.968 49.92v-97.92c0.32-8.32 3.968-16.384 9.984-22.016 34.304-33.536 54.016-75.264 54.016-118.016 0-79.744-66.56-149.952-168-177.92-13.952-3.648-24.448-17.664-24-32v-260.096c0.832-18.24 20.032-33.408 38.016-30.080 233.344 47.936 409.984 253.056 409.984 500.224 0 282.368-229.632 512-512 512zM512 896c247.808 0 448-200.192 448-448 0-202.368-136-368.32-320-424v198.080c107.84 39.168 192 119.872 192 225.92 0 56.96-26.56 108.608-64 150.016v137.984c0.832 22.016-26.24 39.68-46.080 30.080l-139.84-68.16c-41.6 8.32-99.84 7.040-140.032 0l-139.968 68.16c-19.84 9.6-46.912-8.064-46.080-30.080v-137.984c-37.44-41.408-64-93.056-64-150.016 0-106.048 84.16-186.752 192-225.92v-38.080c-19.584-10.048-28.928-12.032-38.016-12.032-36.864 0-31.36 84.032-121.984 84.032-41.728 0-41.856-64 0-64 49.28 0 47.616-83.584 112-84.288 15.36-0.128 31.040 0.896 48 6.272v-89.92c-184 55.616-320 221.568-320 423.936 0 247.808 200.192 448 448 448z" />
<glyph unicode="&#xe933;" glyph-name="mbri-globe-2" d="M480 960c-264.704 0-480-215.296-480-480s215.296-480 480-480 480 215.296 480 480-215.296 480-480 480zM480 896c62.72-0.256 115.072-52.736 144-102.016-92.48-33.792-195.2-32.192-288 1.92 32.128 48.512 81.28 100.48 144 100.224zM302.080 854.016c-8.128-10.24-16.64-20.672-24.064-32-5.376 3.008-10.752 6.72-16 9.984 13.056 8.064 25.984 15.36 40 22.016zM657.92 854.016c14.912-7.040 28.288-15.36 42.112-24-5.888-3.712-12.032-6.784-18.048-10.112-7.68 11.968-15.616 23.424-24 34.048zM206.080 790.016c13.44-9.472 27.648-18.112 41.92-25.984-31.68-71.808-52.16-158.144-56-252.032h-32c-42.24 0-41.792-64 0-64h32c3.84-93.888 24.32-180.224 56-252.032-14.848-8.128-29.888-16.128-44.032-25.984-86.016 75.968-139.968 185.856-139.968 310.016 0 124.544 55.296 234.368 142.080 310.016zM753.92 790.016c86.848-75.648 142.080-185.472 142.080-310.016 0-125.12-54.592-236.032-142.080-312-13.888 9.792-27.264 19.84-41.92 28.032 31.744 71.68 52.224 158.080 56 251.968h32c41.856 0 42.496 64 0 64h-32c-3.712 93.12-24.704 178.56-56 249.984 14.72 8.064 28.16 18.368 41.984 28.032zM305.92 737.984c113.024-44.16 237.76-45.952 350.080-1.92 26.88-62.336 44.416-139.328 48-224h-448c3.648 85.76 22.528 163.2 49.92 225.92zM256 448h448c-3.648-85.76-22.528-163.2-49.92-225.92-58.432 22.784-120.064 35.008-182.080 33.92-56.32-1.024-112.64-11.648-166.016-32-26.944 62.464-46.272 138.88-49.984 224zM624 163.968c-36.672-55.168-81.536-100.288-144-99.968s-121.984 55.040-144 100.032c92.8 37.12 199.552 35.84 288 0zM280 137.984c7.872-11.712 15.552-23.424 24-33.92-14.912 6.912-28.16 15.36-41.984 23.936 5.952 3.712 11.84 6.592 17.92 9.984zM681.92 137.984c5.376-2.944 10.88-6.784 16-9.984-13.824-8.64-27.008-17.024-41.92-24 8.64 10.88 17.92 21.888 25.984 33.92z" />
<glyph unicode="&#xe934;" glyph-name="mbri-globe" d="M160 512c21.312 0 18.56-27.072 25.984-38.848 7.488-11.712 19.008-25.152 48-25.152 21.12 0 22.016-20.288 22.016-32 0-32 9.472-59.84 30.080-76.8 20.48-16.96 43.968-19.2 65.92-19.2 17.28 0 32-15.68 32-32v-192c0-43.776 64-40.576 64 0v192c0 32-9.472 60.288-30.080 77.184-20.48 16.896-43.904 18.816-65.92 18.816-18.048 0-32 14.976-32 32 0 29.76-1.92 53.76-20.032 73.152-16.256 15.36-46.208 11.2-57.984 22.848-11.648 11.648-13.44 32.64-25.92 45.184-12.544 12.544-34.304 18.816-56.064 18.816-42.88 0-41.984-64 0-64zM644.032 783.168c13.248-23.040 13.952-36.16 13.952-46.080 0-18.88-81.92-71.424-81.92-128 0-72.448 68.48-79.552 233.984-144 33.28-11.392 20.672-27.008 9.984-29.888-138.88-37.248-180.032-45.44-180.032-115.2 0-33.088-64-18.368-64-96.832 0-61.76 43.136-115.52 73.984-150.016 26.24-29.184 75.392 14.080 44.032 46.080s-50.944 64.896-54.016 103.936c-1.152 14.528 9.28 15.552 14.080 18.048 38.656 20.288 49.728 45.696 49.92 77.888 0 42.496 192 28.416 192 128 0 40.448-24.832 59.072-56.96 71.552-64 24.704-117.12 42.24-177.024 66.56-32.832 11.2-17.792 36.096-9.984 43.904 44.992 45.056 67.968 73.216 67.968 107.072 0 30.464-1.728 47.232-20.032 78.976-23.040 40.32-73.6-1.28-55.936-32zM512 960c-282.368 0-512-229.632-512-512s229.632-512 512-512 512 229.632 512 512-229.632 512-512 512zM512 896c247.808 0 448-200.192 448-448s-200.192-448-448-448-448 200.192-448 448 200.192 448 448 448z" />
<glyph unicode="&#xe935;" glyph-name="mbri-growing-chart" d="M864 512h96v-96c0-42.88 64-42.048 64 0v128c0 16.768-15.232 32-32 32h-128c-43.2 0-42.048-64 0-64zM458.24 438.784c-10.24-10.24-212.48-215.040-318.080-319.68-33.92-33.536 10.24-76.16 43.52-43.072 98.56 97.408 296.32 297.984 296.32 297.984l170.24-173.76c11.52-10.88 32-10.88 43.52 0l193.088 196.288c29.888 30.4-20.032 67.2-43.52 43.2l-171.328-174.72-170.112 173.696c-12.288 12.544-32.32 11.2-43.52 0zM0 928v-960c0-17.728 14.272-32 32-32h960c42.368 0 43.072 64 0 64h-928v928c0 43.328-64 41.6-64 0z" />
<glyph unicode="&#xe936;" glyph-name="mbri-hearth" d="M280 896c-161.728 0-280-139.776-280-320 0-184.96 128.32-327.68 252.032-424 123.648-96.384 247.936-148.032 247.936-148.032 7.68-3.008 16.448-3.008 24 0 0 0 124.352 51.648 248.064 148.032 123.648 96.32 251.968 239.040 251.968 424 0 180.224-118.272 320-280 320-131.968 0-203.712-78.976-232-113.92-28.288 34.816-100.032 113.92-232 113.92zM280 832c124.8 0 206.080-112 206.080-112 11.712-16.448 40.128-16.448 51.84 0 0 0 81.28 112 206.080 112 125.76 0 216-102.592 216-256 0-154.88-111.68-283.392-228.032-374.016-110.080-85.76-208.64-126.976-219.968-131.968-11.392 4.992-109.888 46.208-220.032 131.968-116.288 90.624-227.968 219.136-227.968 374.016 0 153.408 90.24 256 216 256z" />
<glyph unicode="&#xe937;" glyph-name="mbri-help" d="M32 384h64c42.88 0 42.752-64 0-64h-64c-42.368 0-43.008 64 0 64zM32 576h64c42.88 0 42.752-64 0-64h-64c-42.368 0-43.008 64 0 64zM32 768h64c42.88 0 42.752-64 0-64h-64c-42.368 0-43.008 64 0 64zM192 800v-512c0-75.2 57.6-96 128-96v-160c0.96-24.448 36.288-38.848 54.016-22.016l181.952 182.016h372.032c52.608 0 96 43.328 96 96v512c0 52.608-43.392 96-96 96h-640c-57.088 0-96-43.392-96-96zM288 832h640c18.304 0 32-13.696 32-32v-512c0-18.304-13.696-32-32-32h-384c-8 0-16-2.688-22.016-8l-137.984-137.92v113.92c0 16.768-15.232 32-32 32-55.936 0-96 0.64-96 32v512c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe938;" glyph-name="mbri-home" d="M64 544v-512c0-16.768 15.232-32 32-32h256c16.768 0 32 15.232 32 32v224c0 71.424 56.512 128 128 128s128-56.576 128-128v-224c0-16.768 15.232-32 32-32h256c16.768 0 32 15.232 32 32v512c0 42.24-64 42.496-64 0v-480h-192v192c0 105.728-86.208 192-192 192s-192-86.272-192-192v-192h-192v480c0 42.88-64 39.68-64 0zM400.128 863.872l-383.68-226.752c-36.672-21.76-2.688-77.184 32-56.704l383.552 226.624c62.592 36.928 98.688 36.16 160 0l383.552-226.752c33.792-20.032 69.376 34.56 32 56.64l-383.68 226.944c-73.6 43.52-153.792 41.344-223.744 0z" />
<glyph unicode="&#xe939;" glyph-name="mbri-hot-cup" d="M576 928v-64c0-41.92-64-43.776-64 0v64c0 43.328 64 41.728 64 0zM384 928v-64c0-41.92-64-43.776-64 0v64c0 43.328 64 41.728 64 0zM800 576h32c71.040 0 128-56.96 128-128s-56.96-128-128-128h-32c-42.048 0-41.408-64 0-64h32c105.6 0 192 86.4 192 192s-86.4 192-192 192h-32c-42.24 0-41.472-64 0-64zM160 640h384c42.88 0 42.752-64 0-64h-384c-43.136 0-42.24 64 0 64zM192 928v-64c0-41.92-64-43.776-64 0v64c0 43.328 64 40.192 64 0zM672-64c43.392 0 42.24 64 0 64h-118.016c90.368 63.68 150.016 168.96 150.016 288v448c0 44.48-64 39.872-64 0v-448c0-160.128-127.872-288-288-288s-288 127.872-288 288v448c0 42.432-64 41.792-64 0v-448c0-119.040 59.648-224.32 150.016-288h-118.016c-42.112 0-42.496-64 0-64z" />
<glyph unicode="&#xe93a;" glyph-name="mbri-idea" d="M823.232 804.48l-45.248-45.44c-30.336-30.208 15.36-75.072 45.248-45.184l45.248 45.248c29.632 29.696-14.912 75.648-45.248 45.44zM928 448h-64c-42.88 0-42.24-64 0-64h64c41.856 0 42.88 64 0 64zM96 448h-64c-42.88 0-42.24-64 0-64h64c41.856 0 42.88 64 0 64zM352 0h256c42.048 0 43.136-64 0-64h-256c-41.92 0-43.2 64 0 64zM512 928v-64c0-42.88-64-42.24-64 0v64c0 41.856 64 42.88 64 0zM480 768c-163.008 0-288-161.408-288-352s124.992-352 288-352c163.008 0 288 161.408 288 352s-124.992 352-288 352zM480 704c119.68 0 224-125.12 224-288 0-115.84-52.48-211.84-126.080-257.92 1.28 68.032 4.032 121.088 12.16 155.904 9.216 40.32 20.992 61.12 39.936 80 31.552 31.552-20.288 69.76-44.032 46.080-27.072-27.136-46.72-63.36-57.984-112-11.008-47.872-15.808-110.336-16-196.032-18.048-5.952-45.248-5.12-64 0-0.192 85.76-4.992 148.16-16 195.968-11.2 48.64-30.912 84.928-57.984 112-25.408 25.408-74.24-15.744-44.032-46.080 18.944-18.816 30.72-39.68 40-80 8.128-34.752 10.88-87.808 12.16-155.904-73.664 46.144-126.144 142.144-126.144 257.984 0 162.88 104.32 288 224 288zM136.768 804.48l45.248-45.44c30.336-30.208-15.36-75.072-45.248-45.184l-45.248 45.184c-29.632 29.696 14.912 75.648 45.248 45.44z" />
<glyph unicode="&#xe93b;" glyph-name="mbri-image-gallery" d="M702.72 504.576l-128.256-110.976-76.16 50.432c-12.48 9.088-31.488 7.232-42.048-3.968l-64.192-64.512c-26.24-26.432 17.024-75.648 46.080-46.4l46.080 46.4 74.24-50.432c11.264-7.552 27.52-6.656 37.952 1.92l128.256 110.976 54.080-46.336c30.336-25.728 73.728 23.552 42.048 50.368l-76.16 64.64c-9.984 8.32-32.32 6.4-42.048-2.048zM544 704c-52.672 0-96-43.328-96-96s43.328-96 96-96 96 43.328 96 96-43.328 96-96 96zM544 640c18.048 0 32-13.952 32-32s-13.952-32-32-32c-18.048 0-32 13.952-32 32s13.952 32 32 32zM211.968 638.080l-160-55.808c-41.792-16.128-62.272-63.616-48-103.808l130.112-363.264c15.872-44.672 65.536-58.88 105.984-46.080l89.984 28.032c40.128 12.48 18.752 74.752-19.968 61.888l-90.048-29.952c-13.44-4.288-23.552 1.28-25.984 8l-128 361.344c-3.84 11.136-2.816 19.712 8.064 23.936l160 53.888c42.752 11.52 15.552 75.008-22.016 61.888zM507.264 889.28c-47.616 19.328-103.040-4.16-122.368-51.84l-186.24-459.712c-19.328-47.68 4.928-101.248 52.608-120.576l459.648-186.24c47.68-19.2 100.48 3.2 119.808 50.752l186.24 459.776c19.328 47.68-2.304 102.4-49.92 121.6l-459.776 186.24zM483.264 829.952l459.776-186.24c15.808-6.4 21.12-22.4 14.72-38.272l-186.24-459.712c-6.4-15.872-20.672-21.888-36.48-15.36l-459.84 186.048c-15.744 6.4-23.68 21.376-17.28 37.248l186.24 459.776c6.4 15.808 23.296 22.912 39.040 16.512z" />
<glyph unicode="&#xe93c;" glyph-name="mbri-image-slider" d="M1024 672v-448c0-41.152-64-43.52-64 0v448c0 42.496 64 42.112 64 0zM352 704c-52.672 0-96-43.328-96-96s43.328-96 96-96 96 43.328 96 96-43.328 96-96 96zM352 640c18.048 0 32-13.952 32-32s-13.952-32-32-32c-18.048 0-32 13.952-32 32s13.952 32 32 32zM713.984 503.168l-169.984-169.984-105.984 105.984c-11.776 11.136-32.256 11.136-44.032 0l-128-128c-30.72-30.72 16.128-73.856 44.032-46.080l105.984 106.112 105.984-106.048c11.776-11.072 32.256-11.072 44.032 0l192 192c30.080 30.080-17.28 72.768-44.032 46.080zM64 672v-448c0-41.152-64-43.52-64 0v448c0 42.496 64 42.112 64 0zM256 832c-70.4 0-128-58.432-128-128.832v-512c0-70.4 57.6-127.168 128-127.168h512c70.4 0 128 57.6 128 128v512c0 70.4-57.6 128-128 128zM256 768h512c36.032 0 64-27.968 64-64v-512c0-36.032-27.968-64-64-64h-512c-36.032 0-64 27.968-64 64v512c0 36.032 27.968 64 64 64z" />
<glyph unicode="&#xe93d;" glyph-name="mbri-info" d="M480 576c-52.608 0-96-43.392-96-96v-256c0-52.608 43.392-96 96-96s96 43.392 96 96v256c0 52.608-43.392 96-96 96zM480 512c18.304 0 32-13.696 32-32v-256c0-18.304-13.696-32-32-32s-32 13.696-32 32v256c0 18.304 13.696 32 32 32zM480 832c-52.672 0-96-43.328-96-96s43.328-96 96-96 96 43.328 96 96-43.328 96-96 96zM480 768c18.048 0 32-13.952 32-32s-13.952-32-32-32c-18.048 0-32 13.952-32 32s13.952 32 32 32zM480 960c-264.704 0-480-215.296-480-480s215.296-480 480-480 480 215.296 480 480-215.296 480-480 480zM480 896c230.144 0 416-185.856 416-416s-185.856-416-416-416-416 185.856-416 416 185.856 416 416 416z" />
<glyph unicode="&#xe93e;" glyph-name="mbri-italic" d="M549.312 704c-41.088 0-81.536-3.84-119.296-26.048-37.888-22.208-74.688-57.472-105.472-116.352-21.568-40.96 38.72-63.68 55.68-34.048 24 41.984 44.928 67.84 65.6 84.224-9.088-100.288-58.88-251.52-93.44-381.056-19.2-71.488-33.792-135.232-32.448-188.48 0.064-69.76 37.184-106.24 90.176-106.24 48.448 0 88.832 5.248 125.312 28.16 36.48 22.72 67.712 59.2 99.392 116.224 23.040 41.6-37.632 63.040-55.68 32-25.728-43.904-46.336-70.4-65.664-86.144 8.96 100.224 58.88 253.248 93.44 382.976 19.2 71.488 33.6 137.216 33.024 190.528-0.704 68.8-29.696 104.256-90.624 104.256zM576 597.76c0.512-39.040-12.032-102.848-30.72-172.48-36.736-137.792-96.128-302.72-97.408-423.040-51.328-7.040-63.36 5.504-63.872 42.048-0.512 38.912 11.52 100.8 30.080 170.432 36.672 137.152 95.616 300.8 97.472 421.12 55.936 10.688 64-5.12 64.448-38.144zM608 960c-52.672 0-96-43.328-96-96 0-52.608 43.328-96 96-96s96 43.392 96 96c0 52.672-43.328 96-96 96zM608 896c18.048 0 32-13.952 32-32s-13.952-32-32-32c-18.048 0-32 13.952-32 32s13.952 32 32 32z" />
<glyph unicode="&#xe93f;" glyph-name="mbri-key" d="M320 704c0-35.328-28.672-64-64-64s-64 28.672-64 64 28.672 64 64 64 64-28.672 64-64zM320 960c-176.384 0-320-143.616-320-320 0-176.32 143.616-320 320-320 43.2 0 81.28 14.592 118.016 30.080l339.968-340.096c5.76-6.016 13.76-9.6 22.016-9.984h128c16.768 0 32 15.232 32 32v128c0.192 8.96-3.52 17.92-9.984 24l-64 64c-6.016 5.312-14.080 8.192-22.016 8h-32v32c0.192 8.96-3.52 17.92-9.984 24l-64 64c-6.016 5.312-14.080 8.192-22.016 8h-32v32c0.192 8.96-3.52 17.92-9.984 24l-84.096 84.032c15.232 36.224 30.080 73.28 30.080 115.968 0 176.384-143.616 320-320 320zM320 896c141.76 0 256-114.24 256-256 0-40.832-10.24-76.608-28.032-112-6.4-12.16-3.84-28.416 6.016-38.016l86.016-85.952v-52.032c0-16.768 15.232-32 32-32h52.032l43.968-43.968v-52.032c0-16.768 15.232-32 32-32h52.032l43.968-43.968v-84.032h-81.92l-344.128 344c-9.28 8.96-24.32 11.52-36.032 6.016-35.008-17.536-73.6-30.016-113.92-30.016-141.76 0-256 114.24-256 256s114.24 256 256 256z" />
<glyph unicode="&#xe940;" glyph-name="mbri-laptop" d="M160 896c-52.608 0-96-43.392-96-96v-448c0-43.328 64-40.96 64 0v448c0 18.304 13.696 32 32 32h704c18.304 0 32-13.696 32-32v-448c0-42.368 64-42.112 64 0v448c0 52.608-43.392 96-96 96zM0 224c0-88.064 71.936-160 160-160h704c88.064 0 160 71.936 160 160 0 16.768-15.232 32-32 32h-960c-23.36 0-32-15.552-32-32zM78.080 192h867.84c-13.888-35.52-40.96-64-81.92-64h-704c-40.96 0-68.032 28.48-81.92 64z" />
<glyph unicode="&#xe941;" glyph-name="mbri-layers" d="M928 704c18.304 0 32-13.696 32-32v-640c0-18.304-13.696-32-32-32h-640c-18.304 0-32 13.696-32 32 0 41.984-64 42.496-64 0 0-52.608 43.392-96 96-96h640c52.608 0 96 43.392 96 96v640c0 52.608-43.392 96-96 96-42.88 0-40.96-64 0-64zM96 960c-52.608 0-96-43.392-96-96v-640c0-52.608 43.392-96 96-96h640c52.608 0 96 43.392 96 96v640c0 52.608-43.392 96-96 96zM96 896h640c18.304 0 32-13.696 32-32v-640c0-18.304-13.696-32-32-32h-640c-18.304 0-32 13.696-32 32v640c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe942;" glyph-name="mbri-left-right" d="M799.872 192h-640c-43.648 0-41.28 64 0 64h640c42.112 0 42.432-64 0-64zM1015.36 246.080l-128 128.128c-29.696 29.76-74.88-15.104-46.080-44.032l106.048-106.24-105.984-106.112c-29.44-29.44 16.256-73.792 46.080-44.032l128 128.192c11.264 11.328 11.328 32.64 0 44.032zM224 640h640c43.648 0 41.28 64 0 64h-640c-42.112 0-42.432-64 0-64zM8.512 694.080l128 128.128c29.696 29.76 74.88-15.104 46.080-44.032l-106.112-106.176 105.984-106.048c29.44-29.44-16.256-73.856-46.080-44.16l-128 128.256c-11.264 11.328-11.328 32.64 0 44.032z" />
<glyph unicode="&#xe943;" glyph-name="mbri-left" d="M456.832 950.4l-448.512-448.192c-11.072-11.776-11.072-32.256 0-44.032l448.512-448.32c30.080-29.952 74.496 15.68 46.080 44.032l-426.496 426.304 426.496 426.176c28.032 28.032-16.64 73.6-46.080 44.16zM992 448h-768c-41.728 0-43.84 64 0 64h768c43.2 0 40.96-64 0-64z" />
<glyph unicode="&#xe944;" glyph-name="mbri-letter" d="M143.68 582.4l292.16-176.768c51.584-31.168 108.8-26.24 152.128 0l292.224 176.768c37.504 22.72 0.832 72.832-32 53.12l-294.272-176.896c-27.648-16.64-58.048-15.616-84.096 0l-294.144 176.896c-32.128 19.328-69.44-30.4-32-53.12zM96 768c-52.608 0-96-43.392-96-96v-448c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v448c0 52.608-43.392 96-96 96zM96 704h832c18.304 0 32-13.696 32-32v-448c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v448c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe945;" glyph-name="mbri-like" d="M608 960c-52.16 0-96-43.392-96-96 0-52.032-13.44-103.68-36.224-145.92-19.456-36.48-39.040-64.128-77.056-86.080-33.92-19.52-2.816-70.272 33.472-52.608 38.144 18.688 74.24 58.24 101.12 108.608 27.008 50.304 42.688 110.72 42.688 176 0 18.304 13.888 32 32 32s32-13.696 32-32c0-111.552-22.592-180.928-58.88-238.080-12.8-18.944 3.072-49.6 25.856-49.92h321.024c18.112 0 32-13.696 32-32s-13.888-32-32-32c-42.24 0-42.24-64 0-64 18.112 0 32-13.696 32-32s-13.888-32-32-32c-41.856 0-42.88-64 0-64 18.112 0 32-13.696 32-32s-13.888-32-32-32c-41.6 0-42.88-64 0-64 18.112 0 32-13.696 32-32s-13.888-32-32-32h-507.712c-47.232 0-48.256-64 0-64h507.712c52.16 0 96 43.392 96 96 0 24.704-11.136 46.912-26.56 64 16.128 17.28 26.56 38.656 26.56 64 0 24.704-11.136 46.912-26.56 64 16.128 17.28 26.56 38.656 26.56 64 0 24.704-11.136 46.912-26.56 64 16.128 17.28 26.56 38.656 26.56 64 0 52.608-43.84 96-96 96h-275.392c27.712 60.416 51.392 128.96 51.392 224 0 52.608-43.84 96-96 96zM96 640c-52.608 0-96-43.392-96-96v-448c0-52.608 43.392-96 96-96h128c52.608 0 96 43.392 96 96v448c0 52.608-43.392 96-96 96zM96 576h128c18.304 0 32-13.696 32-32v-448c0-18.304-13.696-32-32-32h-128c-18.304 0-32 13.696-32 32v448c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe946;" glyph-name="mbri-link" d="M672 640h96c106.88 0 192-85.12 192-192s-85.12-192-192-192h-128c-106.88 0-192 85.12-192 192v32c0 42.88-64 41.6-64 0v-32c0-141.248 114.752-256 256-256h128c141.248 0 256 114.752 256 256s-114.752 256-256 256h-96c-41.856 0-42.432-64 0-64zM256 704c-141.248 0-256-114.752-256-256s114.752-256 256-256h96c42.88 0 41.6 64 0 64h-96c-106.88 0-192 85.12-192 192s85.12 192 192 192h128c106.88 0 192-85.12 192-192v-32c0-43.072 64-41.856 64 0v32c0 141.248-114.752 256-256 256z" />
<glyph unicode="&#xe947;" glyph-name="mbri-lock" d="M480 384c-52.608 0-96-43.392-96-96v-128c0-52.608 43.392-96 96-96s96 43.392 96 96v128c0 52.608-43.392 96-96 96zM480 320c18.304 0 32-13.696 32-32v-128c0-18.304-13.696-32-32-32s-32 13.696-32 32v128c0 18.304 13.696 32 32 32zM480 960c-158.976 0-288-129.024-288-288 0-44.8 64-40.192 64 0 0 124.672 99.328 224 224 224s224-99.328 224-224c0-43.52 64-41.6 64 0 0 158.976-129.024 288-288 288zM288 576c-88.064 0-160-71.936-160-160v-320c0-88.064 71.936-160 160-160h384c88.064 0 160 71.936 160 160v320c0 88.064-71.936 160-160 160zM288 512h384c53.76 0 96-42.24 96-96v-320c0-53.76-42.24-96-96-96h-384c-53.76 0-96 42.24-96 96v320c0 53.76 42.24 96 96 96z" />
<glyph unicode="&#xe948;" glyph-name="mbri-login" d="M437.888 631.936l128.768-128.256c12.352-12.032 12.352-34.304 0-46.208l-128.768-128.32c-28.928-28.8-73.856 17.28-44.16 46.080l106.56 104.32-106.624 106.24c-30.336 30.272 18.432 71.936 44.288 46.080zM352 512h-320c-42.56 0-42.88-64 0-64h320c42.688 0 42.24 64 0 64zM384 960c-70.4 0-128-57.6-128-128v-160c0-42.56 64-42.624 64 0v160c0 36.032 27.968 64 64 64h512c36.032 0 64-27.968 64-64v-704c0-36.032-27.968-64-64-64h-512c-36.032 0-64 27.968-64 64v160c0 42.624-64 41.984-64 0v-160c0-70.4 57.6-128 128-128h512c70.4 0 128 57.6 128 128v704c0 70.4-57.6 128-128 128z" />
<glyph unicode="&#xe949;" glyph-name="mbri-logout" d="M138.048 631.936l-128.768-128.256c-12.352-12.032-12.352-34.304 0-46.208l128.768-128.32c28.928-28.8 73.856 17.28 44.288 46.080l-106.816 104.384 106.688 106.24c30.272 30.272-18.432 71.936-44.352 46.080zM224 512h320c42.56 0 42.88-64 0-64h-320c-42.688 0-42.24 64 0 64zM384 960c-70.4 0-128-57.6-128-128v-160c0-42.56 64-42.624 64 0v160c0 36.032 27.968 64 64 64h512c36.032 0 64-27.968 64-64v-704c0-36.032-27.968-64-64-64h-512c-36.032 0-64 27.968-64 64v160c0 42.624-64 41.984-64 0v-160c0-70.4 57.6-128 128-128h512c70.4 0 128 57.6 128 128v704c0 70.4-57.6 128-128 128z" />
<glyph unicode="&#xe94a;" glyph-name="mbri-magic-stick" d="M992.192 576h-64c-42.24 0-42.624 64 0 64h64c42.112 0 42.752-64 0-64zM640 928v-64c0-42.24-64-42.624-64 0v64c0 42.112 64 42.752 64 0zM868.48 264.96l-45.312 45.184c-29.888 29.888-75.392-15.104-45.248-45.248l45.248-45.312c29.76-29.76 75.52 15.040 45.248 45.248zM240.128 763.136l55.424-32c36.48-21.12 4.864-76.8-32-55.424l-55.488 32c-36.48 20.992-4.992 76.8 32 55.36zM450.432 797.056l15.104-169.856-130.624-96.64c-25.472-18.752-14.72-51.84 9.6-57.152l163.84-36.224 51.2-158.72c8-21.952 42.88-26.24 55.872-6.784l83.648 145.088 165.44 1.152c23.040 1.728 36.864 34.56 22.144 52.736l-109.696 124.16 51.072 162.368c0.448 1.28 0.768 2.56 1.024 3.968 2.752 22.72-24.448 42.88-44.928 33.28l-147.584-67.008-137.152 98.304c-18.048 12.928-51.84 5.568-48.896-28.672zM519.936 731.904l91.264-68.864c8.96-5.76 20.928-6.528 30.528-1.92l103.296 47.36-35.2-110.080c-2.944-10.88 0.256-23.552 8.32-31.552l72.96-82.88-109.76-1.536c-11.84 0.64-23.68-6.528-29.248-17.28l-56.32-95.808-33.92 105.856c-2.944 11.008-11.968 20.16-22.848 23.040l-111.36 24 92.16 67.2c8.64 6.208 13.888 17.024 13.44 27.776l-13.056 114.752zM394.112 375.36l-384.384-384.512c-29.952-29.952 16.256-73.856 44.032-46.080l384.384 384.448c30.4 30.336-16.768 73.28-44.032 46.080z" />
<glyph unicode="&#xe94b;" glyph-name="mbri-map-pin" d="M512 832c-70.4 0-128-57.6-128-128s57.6-128 128-128 128 57.6 128 128-57.6 128-128 128zM512 768c35.712 0 64-28.288 64-64s-28.288-64-64-64-64 28.288-64 64 28.288 64 64 64zM371.968 372.672c57.28-97.28 116.032-170.368 116.032-170.368 12.544-14.464 38.656-13.44 49.92 2.048 0 0 56.96 72.32 114.112 170.368 57.088 97.984 115.968 219.2 115.968 328.64 0 141.44-115.008 256.64-256 256.64s-256-113.024-256-256c0-113.28 58.752-233.984 115.968-331.328zM512 895.872c106.432 0 192-85.76 192-192.448 0-84.672-53.12-202.624-108.032-296.64-41.984-72.064-66.688-103.104-83.968-126.336-17.152 22.528-41.856 52.672-84.032 124.288-54.72 93.184-107.968 210.56-107.968 298.624 0 106.88 85.568 192.64 192 192.64zM129.472 548.992l-63.552-447.872c-12.992-92.16 71.424-165.952 158.080-165.952h576c84.16 0 171.328 71.488 158.080 165.952l-63.36 447.808c-6.080 43.008-67.52 29.248-61.952-10.048l63.232-447.744c8.128-57.472-53.952-91.968-96-91.968h-576c-55.808 0-102.208 48-96 91.968l63.488 447.744c6.208 43.52-56.128 51.2-62.080 10.048z" />
<glyph unicode="&#xe94c;" glyph-name="mbri-menu" d="M32 192h960c42.112 0 43.008-64 0-64h-960c-42.56 0-42.24 64 0 64zM32 512h960c42.112 0 43.008-64 0-64h-960c-42.56 0-42.24 64 0 64zM32 832h960c42.112 0 43.008-64 0-64h-960c-42.56 0-42.24 64 0 64z" />
<glyph unicode="&#xe94d;" glyph-name="mbri-mobile" d="M480 128h64c42.688 0 42.112-64 0-64h-64c-42.368 0-42.048 64 0 64zM288 960c-52.608 0-96-43.392-96-96v-832c0-52.608 43.392-96 96-96h448c52.608 0 96 43.392 96 96v832c0 52.608-43.392 96-96 96zM288 896h448c18.304 0 32-13.696 32-32v-832c0-18.304-13.696-32-32-32h-448c-18.304 0-32 13.696-32 32v832c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe94e;" glyph-name="mbri-mobile2" d="M576 128c0-35.328-28.672-64-64-64s-64 28.672-64 64 28.672 64 64 64 64-28.672 64-64zM480 832h64c43.52 0 41.984-64 0-64h-64c-43.136 0-42.048 64 0 64zM288 960c-52.608 0-96-43.392-96-96v-832c0-52.608 43.392-96 96-96h448c52.608 0 96 43.392 96 96v832c0 52.608-43.392 96-96 96zM288 896h448c18.304 0 32-13.696 32-32v-832c0-18.304-13.696-32-32-32h-448c-18.304 0-32 13.696-32 32v832c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe94f;" glyph-name="mbri-mobirise" d="M599.808 704.448c96.384-25.856 168.192-114.816 168.192-224.448 0-109.76-71.808-198.72-168.192-224.64-41.408-11.072-24.128-72.96 16-62.080 124.288 33.28 216.192 148.736 216.192 286.72 0 137.856-91.904 253.248-216.192 286.592-43.072 11.52-54.016-51.968-16-62.080zM841.856 758.976l45.248 45.184c30.72 30.592 75.136-15.488 45.44-45.248l-45.312-45.44c-29.568-29.568-75.264 15.232-45.184 45.312zM576 928v-64c0-43.264 64-42.112 64 0v64c0 41.92-64 42.496-64 0zM928 448h64c43.328 0 42.24 64 0 64h-64c-41.856 0-42.432-64 0-64zM841.856 200.96l45.248-45.184c30.72-30.592 75.136 15.36 45.44 45.248l-45.312 45.248c-29.568 29.632-75.264-15.232-45.184-45.248zM576 96v-64c0-43.264 64-42.112 64 0v64c0 41.92-64 42.496-64 0zM224 192h64c43.264 0 42.24-64 0-64h-64c-41.92 0-42.496 64 0 64zM96 896c-52.608 0-96-43.392-96-96v-704c0-52.672 43.392-96 96-96h320c52.608 0 96 43.328 96 96v704c0 52.608-43.392 96-96 96zM96 832h320c18.304 0 32-13.76 32-32v-704c0-18.304-13.696-32-32-32h-320c-18.304 0-32 13.696-32 32v704c0 18.24 13.696 32 32 32z" />
<glyph unicode="&#xe950;" glyph-name="mbri-more-horizontal" d="M896 576c-70.4 0-128-57.6-128-128s57.6-128 128-128 128 57.6 128 128-57.6 128-128 128zM896 512c35.712 0 64-28.288 64-64s-28.288-64-64-64-64 28.288-64 64 28.288 64 64 64zM128 576c-70.4 0-128-57.6-128-128s57.6-128 128-128 128 57.6 128 128-57.6 128-128 128zM128 512c35.712 0 64-28.288 64-64s-28.288-64-64-64-64 28.288-64 64 28.288 64 64 64zM512 576c-70.4 0-128-57.6-128-128s57.6-128 128-128 128 57.6 128 128-57.6 128-128 128zM512 512c35.712 0 64-28.288 64-64s-28.288-64-64-64-64 28.288-64 64 28.288 64 64 64z" />
<glyph unicode="&#xe951;" glyph-name="mbri-more-vertical" d="M640 64c0 70.4-57.6 128-128 128s-128-57.6-128-128 57.6-128 128-128 128 57.6 128 128zM576 64c0-35.712-28.288-64-64-64s-64 28.288-64 64 28.288 64 64 64 64-28.288 64-64zM640 832c0 70.4-57.6 128-128 128s-128-57.6-128-128 57.6-128 128-128 128 57.6 128 128zM576 832c0-35.712-28.288-64-64-64s-64 28.288-64 64 28.288 64 64 64 64-28.288 64-64zM640 448c0 70.4-57.6 128-128 128s-128-57.6-128-128 57.6-128 128-128 128 57.6 128 128zM576 448c0-35.712-28.288-64-64-64s-64 28.288-64 64 28.288 64 64 64 64-28.288 64-64z" />
<glyph unicode="&#xe952;" glyph-name="mbri-music" d="M792.192 766.912l-256.64-64c-21.12-5.248-26.624-23.040-22.080-38.4 4.608-15.36 19.2-28.16 38.208-23.488l256.512 64c41.792 10.368 23.488 71.68-16 61.888zM920 960l-512-128c-13.952-3.584-24.448-17.6-24-32v-585.984c-34.56 25.728-79.68 41.984-128 41.984-102.208 0-192-67.712-192-160s89.792-160 192-160 192 67.712 192 160v680l448 112v-545.92c-34.56 25.6-79.68 41.92-128 41.92-102.208 0-192-67.712-192-160s89.792-160 192-160 192 67.712 192 160v704c0.64 19.84-20.864 36.928-40 32zM768 320c74.56 0 128-46.912 128-96s-53.44-96-128-96-128 46.912-128 96 53.44 96 128 96zM256 192c74.56 0 128-46.912 128-96s-53.44-96-128-96-128 46.912-128 96 53.44 96 128 96z" />
<glyph unicode="&#xe953;" glyph-name="mbri-new-file" d="M224 960c-52.608 0-96-43.392-96-96v-832c0-52.608 43.392-96 96-96h576c52.608 0 96 43.392 96 96v704c0.192 8.96-3.52 17.92-9.984 24l-192 192c-6.016 5.312-14.080 8.192-22.016 8h-448zM224 896h416v-160c0-16.768 15.232-32 32-32h160v-672c0-18.304-13.696-32-32-32h-576c-18.304 0-32 13.696-32 32v832c0 18.304 13.696 32 32 32zM704 851.968l84.032-83.968h-84.032v84.032z" />
<glyph unicode="&#xe954;" glyph-name="mbri-numbered-list" d="M73.984 951.488l-64-64c-30.72-30.72 17.472-72.704 44.032-46.080l9.984 9.984v-115.392c0-43.648 64-40.704 64 0v191.488c0 36.096-39.040 39.040-54.016 24zM352 896h640c43.328 0 41.92-64 0-64h-640c-41.92 0-43.392 64 0 64zM352 512h640c43.328 0 41.92-64 0-64h-640c-41.92 0-43.392 64 0 64zM352 128h640c43.328 0 41.92-64 0-64h-640c-41.92 0-43.392 64 0 64zM96 639.168c-52.608 0-96-43.328-96-96 0-42.496 64-40.064 64 0 0 18.304 13.696 32 32 32s32-13.696 32-32c0-72.128-128-76.8-128-191.168 0-16.768 15.232-32 32-32h128c42.24 0 43.136 64 0 64h-84.032c0.064 24.064 116.032 60.16 116.032 159.168 0 52.672-43.392 96-96 96zM96 256c-52.608 0-96-43.328-96-96 0-44.8 64-41.216 64 0 0 18.048 13.952 32 32 32s32-13.952 32-32c0-18.048-13.952-32-32-32-43.712 0-40.32-64 0-64 18.048 0 32-13.952 32-32s-13.952-32-32-32c-18.048 0-32 13.952-32 32 0 44.928-64 42.048-64 0 0-52.608 43.392-96 96-96s96 43.392 96 96c0 24.704-10.432 46.912-25.984 64 15.552 17.088 25.984 39.296 25.984 64 0 52.672-43.392 96-96 96z" />
<glyph unicode="&#xe955;" glyph-name="mbri-opened-folder" d="M96 896c-52.608 0-96-43.392-96-96v-192c0-40.832 64-42.432 64 0v192c0 18.304 13.696 31.872 32 32h177.92l150.080-180.032c5.76-7.168 14.72-11.712 24-11.968h480c42.368 0 42.88 64 0 64h-464l-152 182.016c-6.080 6.4-15.040 10.24-24 9.984zM159.36 576c-56.32 0-89.728-50.816-96-89.984l-62.080-384c-9.984-60.8 45.12-102.016 93.952-102.016h769.472c57.088 0 89.6 51.584 96.192 92.032l62.080 384c10.368 63.744-43.328 99.968-94.080 99.968zM159.36 512h769.408c20.928 0 33.728-16.192 32-25.984l-64-384c-4.224-25.216-19.456-38.016-32-38.016h-769.536c-21.12 0-34.56 13.44-32.128 28.032l64.128 384c4.288 25.6 18.816 35.968 32 35.968z" />
<glyph unicode="&#xe956;" glyph-name="mbri-pages" d="M352 960c-52.608 0-96-43.392-96-96v-704c0-52.608 43.392-96 96-96h448c52.608 0 96 43.392 96 96v576c0.192 8.96-3.52 17.92-9.984 24l-192 192c-6.016 5.312-14.080 8.192-22.016 8h-320zM352 896h288v-160c0-16.768 15.232-32 32-32h160v-544c0-18.304-13.696-32-32-32h-448c-18.304 0-32 13.696-32 32v704c0 18.304 13.696 32 32 32zM704 851.968l84.032-83.968h-84.032v84.032zM128 800v-768c0-52.608 43.392-96 96-96h512c42.752 0 41.856 64 0 64h-512c-18.304 0-32 13.696-32 32v768c0 42.88-64 41.28-64 0z" />
<glyph unicode="&#xe957;" glyph-name="mbri-paper-plane" d="M969.984 951.168l-560-560-304.128 150.016 706.176 294.016c41.152 17.152 11.648 72.832-24.064 57.984l-770.112-320c-22.4-9.472-23.68-47.040-2.048-57.984l386.112-192c11.776-5.504 26.88-3.008 36.096 6.016l465.92 465.92-295.936-739.904-97.28 244.736c-15.616 39.424-74.624 12.928-59.968-24l127.168-320.768c9.088-24.32 51.072-24.32 60.16 0l384 960c11.52 28.8-27.84 60.16-52.096 35.968z" />
<glyph unicode="&#xe958;" glyph-name="mbri-paperclip" d="M588.16 889.728l-512-513.024c-101.248-101.44-101.504-263.424 0-364.8 101.376-101.12 264.96-101.376 366.080 0l444.16 444.928c30.72 30.72-16 74.112-43.968 46.080l-446.080-446.848c-77.312-77.44-196.48-77.44-274.112 0-77.44 77.312-77.44 199.040 0 276.48l512 513.152c65.152 65.28 155.52 68.16 224.128 19.712 68.672-48.32 35.84-117.76-14.080-167.936l-548.16-551.040c-28.16-28.288-58.496-25.6-84.032 0-25.6 25.472-24.64 59.392 0 84.096l482.176 482.944c30.72 30.72-16.128 74.112-44.032 46.080l-482.176-484.992c-54.144-54.4-52.032-120.32 0-172.416 52.032-51.968 118.912-53.248 172.16 0l550.144 551.040c96 96.256 90.112 203.2-1.536 268.416-91.712 65.28-226.304 42.496-300.608-31.872z" />
<glyph unicode="&#xe959;" glyph-name="mbri-photo" d="M713.6 503.040l-233.088-235.2-105.6 108.032c-11.712 11.072-32.192 11.072-43.904 0l-127.488-127.104c-33.024-32.896 12.288-77.184 43.84-45.76l105.6 105.344 105.6-108.16c11.712-10.88 32.128-10.88 43.84 0l233.152 235.328 105.6-105.344c30.208-30.208 76.16 13.44 43.84 45.632l-127.552 127.232c-12.416 12.416-32.256 11.52-43.84 0zM352 832c-88 0-160-72-160-160s72-160 160-160 160 72 160 160-72 160-160 160zM352 768c53.376 0 96-42.624 96-96s-42.624-96-96-96-96 42.624-96 96 42.624 96 96 96zM160 128h704c42.88 0 42.496-64 0-64h-704c-42.88 0-41.728 64 0 64zM96 960c-52.608 0-96-43.392-96-96v-832c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v832c0 52.608-43.392 96-96 96zM96 896h832c18.304 0 32-13.696 32-32v-832c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v832c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe95a;" glyph-name="mbri-photos" d="M584.96 503.040c-56.192-56.32-168.96-171.136-168.96-171.136l-105.216 107.776c-11.648 10.88-32 10.88-43.712 0l-127.232-127.104c-33.6-33.6 12.16-77.248 43.776-45.632l105.28 105.216 105.344-107.84c11.648-10.88 32-10.88 43.648 0l168.96 171.328 105.344-105.216c29.696-29.632 78.72 10.752 43.712 45.696l-127.104 126.912c-12.16 12.16-32.256 11.52-43.776 0zM256 832c-70.4 0-128-57.6-128-128s57.6-128 128-128 128 57.6 128 128-57.6 128-128 128zM256 768c35.712 0 64-28.288 64-64s-28.288-64-64-64-64 28.288-64 64 28.288 64 64 64zM128 960c-70.4 0-128-57.6-128-128v-640c0-70.4 57.6-128 128-128h640c70.4 0 128 57.6 128 128v640c0 70.4-57.6 128-128 128zM128 896h640c36.032 0 64-27.968 64-64v-640c0-36.032-27.968-64-64-64h-640c-36.032 0-64 27.968-64 64v640c0 36.032 27.968 64 64 64zM960 736v-672c0-36.032-27.968-64-64-64h-672c-42.112 0-42.688-64 0-64h672c70.4 0 128 57.6 128 128v672c0 43.84-64 40.832-64 0z" />
<glyph unicode="&#xe95b;" glyph-name="mbri-pin" d="M512 768c-106.24 0-192-86.528-192-192s85.76-192 192-192 192 86.528 192 192-85.76 192-192 192zM512 704c71.424 0 128-56.96 128-128s-56.576-128-128-128-128 56.96-128 128c0 71.040 56.576 128 128 128zM512 960c-211.712 0-384-172.288-384-384 0-400.768 366.080-633.984 366.080-633.984 10.432-7.168 25.408-7.168 35.84 0 0 0 366.080 235.904 366.080 633.984 0 211.712-172.288 384-384 384zM512 896c177.088 0 320-142.848 320-320 0-339.712-288.384-542.208-320-564.032-31.808 21.76-320 221.632-320 564.032 0 177.152 142.912 320 320 320z" />
<glyph unicode="&#xe95c;" glyph-name="mbri-play" d="M80 899.2l788.032-444.032c48.192-27.136 32.256-64.896 1.92-81.92l-617.792-349.312c-83.2-46.784-124.16-38.976-124.16 40.064v672c0 40.064-64 42.368-64 0v-672c0-146.176 118.528-152.192 217.984-96l618.048 349.184c80.256 45.44 79.168 149.376 0 193.92l-788.032 444.224c-36.48 20.352-67.392-36.288-32-56.128z" />
<glyph unicode="&#xe95d;" glyph-name="mbri-plus" d="M608 512h320c43.264 0 42.24-64 0-64h-320c-41.856 0-42.688 64 0 64zM512 928v-896c0-43.264-64-42.24-64 0v896c0 41.856 64 42.688 64 0zM32 512h320c43.264 0 42.24-64 0-64h-320c-41.856 0-42.688 64 0 64z" />
<glyph unicode="&#xe95e;" glyph-name="mbri-preview" d="M512 640c-105.6 0-192-86.4-192-192s86.4-192 192-192 192 86.4 192 192-86.4 192-192 192zM512 576c71.040 0 128-56.96 128-128s-56.96-128-128-128c-71.040 0-128 56.96-128 128s56.96 128 128 128zM3.968 465.152c-5.76-10.624-3.072-24.64 2.048-33.92 98.432-179.072 287.36-303.232 505.984-303.232 219.52 0 409.856 124.928 508.032 305.28 5.12 9.408 4.16 24.192 0 32-98.24 180.288-288.64 302.72-508.032 302.72s-410.88-121.792-508.032-302.848zM512 704c189.44 0 352.64-102.4 441.984-254.848-89.344-152.448-252.8-257.152-441.984-257.152-189.248 0-352.64 104.704-441.984 257.152 89.344 152.32 252.544 254.848 441.984 254.848z" />
<glyph unicode="&#xe95f;" glyph-name="mbri-print" d="M256 960c-34.88 0-64-29.12-64-64v-96c0-42.624 64-42.24 64 0v96h512v-96c0-41.6 64-43.136 64 0v96c0 34.88-29.12 64-64 64zM96 704c-52.608 0-96-43.392-96-96v-320c0-52.608 43.392-96 96-96h96v-192c0-34.88 29.12-64 64-64h512c34.88 0 64 29.12 64 64v192h96c52.608 0 96 43.392 96 96v320c0 52.608-43.392 96-96 96zM96 640h832c18.304 0 32-13.696 32-32v-320c0-18.304-13.696-32-32-32h-96v32c0 41.728-64 42.624-64 0v-288h-512v288c0 42.624-64 42.432-64 0v-32h-96c-18.304 0-32 13.696-32 32v320c0 18.304 13.696 32 32 32zM736 576c-17.664 0-32-14.336-32-32s14.336-32 32-32 32 14.336 32 32-14.336 32-32 32zM864 576c-17.664 0-32-14.336-32-32s14.336-32 32-32 32 14.336 32 32-14.336 32-32 32zM160 448c-42.624 0-41.216-64 0-64h704c42.112 0 43.072 64 0 64zM352 320c-42.24 0-41.6-64 0-64h320c43.008 0 42.24 64 0 64zM352 192c-42.56 0-41.408-64 0-64h320c43.008 0 41.92 64 0 64z" />
<glyph unicode="&#xe960;" glyph-name="mbri-protect" d="M477.12 400.384l-39.68 38.016c-30.336 28.928-72.832-17.472-43.648-46.080l65.472-64c12.928-12.608 36.864-10.624 47.552 4.032l190.080 256.192c25.984 35.072-26.048 72.128-51.2 38.272zM499.968-61.696c-217.856 82.816-371.968 294.272-371.968 542.336v343.040c0 40.128 0.384 104.32 30.912 124.416 30.592 20.032 59.52 7.68 95.104-8.96 59.712-27.712 131.52-51.712 241.92 15.808 10.24 6.4 21.12 6.656 32 0 110.4-67.456 182.208-43.52 241.92-15.68 35.648 16.64 64.64 28.928 95.168 8.96 30.528-19.84 30.912-84.096 30.912-124.288v-342.912c0-248.064-153.92-459.84-372.032-542.336-10.24-3.84-16.768-2.944-23.936 0zM832 480.896v343.040c0 30.592-1.6 51.2-4.032 63.744-3.648 13.76-22.848-2.88-29.952-5.952-55.040-23.488-156.928-59.52-286.080 11.52-129.152-71.36-231.040-35.328-286.080-11.84-7.040 3.072-26.24 19.712-29.888 5.952-2.432-12.48-4.032-33.152-4.032-63.808v-342.912c0-216.96 132.8-400.192 320-476.416 187.2 76.48 320 259.84 320 476.672z" />
<glyph unicode="&#xe961;" glyph-name="mbri-question" d="M512 160c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM512 767.168c-105.6 0-192-86.4-192-192-0.256-16.896 15.104-32.448 32-32.448s32.256 15.552 32 32.448c0 71.040 56.96 128 128 128s128-56.96 128-128c0-106.752-191.808-112.64-192-288 0-16.896 15.104-32.448 32-32.448s32 15.552 32 32.448c-0.192 134.208 192 137.792 192 288 0 105.6-86.4 192-192 192zM512 960c-283.072 0-512-228.928-512-512s228.928-512 512-512 512 228.928 512 512-228.928 512-512 512zM512 896c248.768 0 448-199.232 448-448s-199.232-448-448-448-448 199.232-448 448 199.232 448 448 448z" />
<glyph unicode="&#xe962;" glyph-name="mbri-quote-left" d="M236.032 64c117.504 0 211.968 101.76 211.968 224 0 95.68-44.672 154.112-78.080 212.032-33.28 57.856-67.84 116.672-49.92 231.232 3.392 20.992-19.456 41.6-40 35.968-181.44-51.968-269.44-226.112-280-385.28-5.248-79.552 11.136-157.824 49.92-217.92 39.040-60.16 103.424-100.032 186.24-100.032zM236.032 128c-62.72 0-103.040 26.944-132.032 72-29.12 45.12-44.48 109.44-40 177.92 8.192 123.52 69.12 250.88 192 307.328-2.368-92.8 28.352-165.76 57.984-217.216 35.968-62.464 70.016-104 70.016-180.032 0-89.856-67.392-160-148.032-160zM812.032 64c117.504 0 211.968 101.76 211.968 224 0 95.68-44.672 154.112-78.080 212.032-33.28 57.856-67.84 116.672-49.92 231.232 3.392 20.992-19.456 41.6-40 35.968-181.376-51.968-269.44-226.112-280-385.28-5.248-79.552 11.136-157.824 49.92-217.92 38.912-60.16 103.36-100.032 186.112-100.032zM812.032 128c-62.72 0-103.040 26.944-132.032 72-29.056 45.056-44.544 109.44-40 177.92 8.192 123.52 68.288 250.88 191.168 307.328-2.368-92.8 29.184-165.76 58.88-217.216 35.776-62.464 69.952-104 69.952-180.032 0-89.856-67.392-160-148.032-160z" />
<glyph unicode="&#xe963;" glyph-name="mbri-quote-right" d="M788.032 832c-117.696 0-212.032-101.76-212.032-224 0-95.68 44.672-154.112 78.080-212.032 33.28-57.856 67.84-116.672 49.92-231.232-3.392-20.992 19.456-41.6 40-35.968 181.376 51.968 269.44 226.112 280 385.28 5.248 79.552-11.136 157.824-49.92 217.984-39.040 60.16-103.424 99.968-186.24 99.968zM788.032 768c62.72 0 102.912-26.944 131.968-72s44.544-109.44 40-177.92c-8.192-123.52-69.12-250.88-192-307.328 2.368 92.8-28.352 165.76-57.984 217.216-35.968 62.464-70.016 104-70.016 180.032 0 89.856 67.392 160 148.032 160zM212.032 832c-117.696 0-212.032-101.76-212.032-224 0-95.68 44.672-154.112 78.080-212.032 33.28-57.856 67.84-116.672 49.92-231.232-3.392-20.992 19.456-41.6 40-35.968 181.44 51.968 269.44 226.112 280 385.28 5.248 79.552-11.136 157.824-49.92 217.984-39.040 60.16-103.424 99.968-186.112 99.968zM212.032 768c62.72 0 102.912-26.944 131.968-72s44.544-109.44 40-177.92c-8.192-123.52-68.288-250.88-191.168-307.328 2.368 92.8-29.184 165.76-58.88 217.216-35.776 62.464-69.952 104-69.952 180.032 0 89.856 67.392 160 148.032 160z" />
<glyph unicode="&#xe964;" glyph-name="mbri-redo" d="M960 672v-160h-160c-40.96 0-43.712-64 0-64h192c16.768 0 32 15.232 32 32v192c0 42.432-64 41.6-64 0zM544 768c-300.16 0-544-243.968-544-544 0-44.8 64-40.128 64 0 0 265.472 214.4 480 480 480 108.992 0 214.592-37.76 300.416-104.96 34.88-27.264 70.912 23.872 38.72 49.792-96.32 77.312-215.616 119.168-339.136 119.168z" />
<glyph unicode="&#xe965;" glyph-name="mbri-refresh" d="M521.6 905.216l106.688-106.24-106.752-104.32c-29.696-28.8 16.64-73.6 44.16-46.080l128.96 128.384c12.352 11.904 12.352 34.176 0 46.080l-128.896 128.32c-28.16 28.16-71.424-19.008-44.16-46.080zM480 832c-165.632 0-416-159.552-416-448 0-247.040 200.96-448 448-448s448 200.96 448 448v32c0 41.856-64 42.048-64 0v-32c0-212.48-171.52-384-384-384s-384 171.52-384 384c0 270.208 235.392 384 352 384 42.56 0 42.24 64 0 64z" />
<glyph unicode="&#xe966;" glyph-name="mbri-responsive" d="M832 160c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM704 768c-70.4 0-128-57.6-128-128v-512c0-70.4 57.6-128 128-128h192c70.4 0 128 57.6 128 128v512c0 70.4-57.6 128-128 128zM704 704h192c36.032 0 64-27.968 64-64v-512c0-36.032-27.968-64-64-64h-192c-36.032 0-64 27.968-64 64v512c0 36.032 27.968 64 64 64zM160 448h320c43.008 0 42.24-64 0-64h-320c-42.624 0-42.496 64 0 64zM96 960c-52.608 0-96-43.392-96-96v-576c0-52.608 43.392-96 96-96h288v-128h-96c-42.496 0-41.6-64 0-64h192c41.792 0 42.88 64 0 64h-32v128h32c42.56 0 42.112 64 0 64h-384c-18.304 0-32 13.696-32 32v576c0 18.304 13.696 32 32 32h832c18.304 0 32-13.696 32-32 0-41.088 64-43.072 64 0 0 52.608-43.392 96-96 96z" />
<glyph unicode="&#xe967;" glyph-name="mbri-right" d="M567.168 950.4l448.512-448.256c11.136-11.776 11.136-32.256 0-44.032l-448.512-448.32c-30.080-29.952-74.624 15.808-46.080 44.032l426.496 426.368-426.496 426.176c-28.032 28.032 16.64 73.6 46.080 44.16zM32 448h768c41.728 0 43.84 64 0 64h-768c-43.2 0-40.96-64 0-64z" />
<glyph unicode="&#xe968;" glyph-name="mbri-rocket" d="M720 937.984c-100.224-30.464-208-104.064-305.92-201.984-51.072-51.008-93.76-104.32-128-158.080-171.52 0-280.128-139.84-280.128-139.84-9.472-12.032-8.576-30.976 1.92-41.984l64-64c32-32 75.52 14.4 44.032 45.952l-40 40c22.4 23.808 80.384 78.528 170.048 92.16-13.056-26.24-23.488-52.8-32-78.080-33.408-99.2-31.488-194.56 27.968-254.080 59.52-59.392 154.88-61.312 254.080-27.904 25.28 8.512 51.84 18.944 78.080 32-13.76-90.24-70.848-148.288-94.080-169.984l-41.984 41.984c-27.968 27.904-74.88-15.104-44.032-46.080l64-64c11.072-10.496 30.080-11.52 42.048-1.92 0 0 139.968 108.608 139.968 280 54.208 34.368 108.48 76.416 160 128 97.92 97.856 168.576 206.656 201.984 305.856s32.512 202.368-27.968 254.080c-81.28 69.12-164.16 55.296-254.080 27.904zM929.92 865.984c34.88-34.752 41.344-102.976 12.16-189.952-29.44-87.040-94.080-188.032-186.112-280-91.904-91.904-193.024-156.672-279.936-185.984-87.040-29.184-155.2-22.72-190.080 12.16-34.752 34.752-41.216 102.912-11.968 189.888 29.44 87.040 94.080 188.16 186.048 280.064s193.408 155.52 280 185.984c72.96 25.6 150.656 27.264 190.080-12.16zM704 768c-70.4 0-128.832-58.56-128.832-128.832 0-70.4 58.496-126.912 128.832-126.912 70.4 0 126.912 56.576 126.912 126.912 0 70.272-56.512 128.832-126.912 128.832zM704 703.552c35.712 0 64.448-28.672 64.448-64.384 0-35.84-28.8-64.448-64.448-64.448-35.712 0-64.448 28.672-64.448 64.448 0 35.712 28.8 64.384 64.448 64.384zM99.584-9.856l-45.248-45.248c-28.16-28.16-73.984 16.512-45.44 45.184l45.44 45.248c30.208 30.272 74.112-16.32 45.184-45.248zM291.584 54.144l-45.248-45.248c-28.16-28.16-73.984 16.512-45.44 45.184l45.44 45.248c30.208 30.272 74.112-16.32 45.184-45.248zM163.584 182.144l-45.248-45.248c-28.16-28.16-73.984 16.512-45.44 45.184l45.44 45.248c30.208 30.272 74.112-16.32 45.184-45.248z" />
<glyph unicode="&#xe969;" glyph-name="mbri-sad-face" d="M384 608v-64c0-42.624-64-42.496-64 0v64c0 41.6 64 43.52 64 0zM704 608v-64c0-42.624-64-42.496-64 0v64c0 41.6 64 43.52 64 0zM511.872 320c-70.4 0-141.312-22.912-184.96-76.16-25.28-30.912 25.152-68.224 48.256-40.128 26.048 31.616 80.832 52.096 136.704 52.096 55.936 0 110.4-20.672 136.704-52.096 27.264-32.512 73.152 9.92 48.256 40.128-43.84 53.12-114.56 76.16-184.96 76.16zM512 960c-282.368 0-512-229.632-512-512s229.632-512 512-512 512 229.632 512 512-229.632 512-512 512zM512 896c247.808 0 448-200.192 448-448s-200.192-448-448-448-448 200.192-448 448 200.192 448 448 448z" />
<glyph unicode="&#xe96a;" glyph-name="mbri-sale" d="M288 384h320c42.432 0 42.88-64 0-64h-320c-42.24 0-42.752 64 0 64zM512 224c0-17.664-14.4-32-32-32-17.728 0-32 14.336-32 32s14.272 32 32 32c17.6 0 32-14.336 32-32zM448 480c0-17.664-14.4-32-32-32-17.728 0-32 14.336-32 32s14.272 32 32 32c17.6 0 32-14.336 32-32zM896 768c0-35.328-28.8-64-64-64-35.456 0-64 28.672-64 64s28.544 64 64 64c35.2 0 64-28.672 64-64zM608 960c-45.76 0-88.512-12.608-118.016-40l-462.848-470.848c-35.84-36.48-36.48-97.472 0-133.952l352-352c36.48-36.48 95.36-35.968 132.032 0l470.848 462.72c24.32 24.64 41.984 64.32 41.984 118.080v320c0 52.736-43.264 96-96 96zM608 896h320c16.128 0 32-15.872 32-32v-320c0-39.872-12.928-62.976-22.016-72l-470.784-462.848c-12.608-12.352-31.808-12.16-44.032 0l-352 352c-12.16 12.16-10.368 29.44 1.92 41.984l460.928 470.784c12.8 11.968 41.728 22.080 73.984 22.080z" />
<glyph unicode="&#xe96b;" glyph-name="mbri-save" d="M0 160v-64c0-52.608 43.392-96 96-96h768c52.608 0 96 43.392 96 96v64c0 42.624-64 41.984-64 0v-64c0-18.304-13.696-32-32-32h-768c-18.304 0-32 13.696-32 32v64c0 40.64-64 43.52-64 0zM136.704 456.96l321.28-320.64c11.776-11.136 32.384-11.136 44.16 0l321.28 320.64c25.856 30.4-12.032 70.912-44.16 46.080l-299.264-298.496-299.072 298.496c-28.8 28.8-71.36-18.88-44.16-46.080zM512 928v-576c0-41.6-64-43.136-64 0v576c0 42.752 64 41.92 64 0z" />
<glyph unicode="&#xe96c;" glyph-name="mbri-search" d="M329.472 311.040l-320.384-320c-28.032-28.032 15.232-74.88 44.032-46.080l320.384 320c31.872 31.872-16.448 73.6-44.032 46.080zM671.36 832c-55.040 0-113.28-20.352-151.68-71.168-25.792-34.24 19.84-70.4 42.432-48.96 60.928 70.272 156.352 69.248 218.56 0 22.272-24.768 71.424 13.696 42.432 48.96-40.384 49.28-96.704 71.168-151.744 71.168zM672 960c-194.048 0-352-157.952-352-352s157.952-352 352-352 352 157.952 352 352-157.952 352-352 352zM672 896c159.36 0 288-128.64 288-288s-128.64-288-288-288-288 128.64-288 288 128.64 288 288 288z" />
<glyph unicode="&#xe96d;" glyph-name="mbri-setting" d="M384 864v-56c-11.904-3.968-24.32-8.704-36.032-14.080l-40 40.064c-39.296 39.424-96.128 36.288-133.952 0l-46.016-43.904c-37.76-36.032-34.816-103.168-1.92-136l39.936-42.048c-5.376-12.032-9.984-23.68-14.080-36.032h-55.936c-52.608 0-96-43.328-96-96v-64c0-52.608 43.392-96 96-96h57.984c3.84-10.88 7.168-21.44 12.032-32l-40-41.984c-28.48-29.824-38.912-95.104 1.92-135.936l46.080-46.080c36.992-36.992 96.832-36.992 133.888 0 12.8 12.8 27.52 26.88 40 40.064 11.52-5.504 23.872-9.6 36.032-14.080v-57.92c0-52.608 43.392-96 96-96h64c52.608 0 96 43.392 96 96v58.048c12.16 4.48 24.512 8.448 36.032 14.080 9.6-11.712 27.008-27.136 39.936-40.064 37.12-36.992 96.96-36.992 134.016 0l46.080 46.080c36.608 36.48 37.12 100.736 2.112 135.808-18.88 18.88-40.128 42.112-40.128 42.112 4.864 10.496 8.192 21.12 12.032 32h57.984c52.608 0 96 43.392 96 96v64c0 52.608-43.392 96-96 96h-56c-4.032 12.288-8.64 24-14.080 35.968l40.064 42.048c33.28 34.752 34.304 99.712-1.92 135.936l-46.080 43.968c-43.52 41.792-101.44 32.512-133.888 0l-40.064-39.936c-11.712 5.248-24.064 10.048-35.968 14.080v55.808c-0.064 52.608-43.456 96-96.064 96h-64c-52.8 0-96-43.328-96-96zM544 896c18.304 0 32-13.696 32-32v-78.080c0.448-13.632 10.688-26.496 24-29.888 24.96-7.168 47.808-16.64 68.032-28.032 12.16-6.4 28.416-3.84 37.952 6.016l54.080 53.952c14.4 14.4 33.792 12.16 46.080 0l45.888-44.032c16.448-15.68 8.96-32.64-1.92-43.968l-54.080-56c-9.216-10.048-10.88-26.24-3.968-38.016 11.776-21.12 20.864-44.544 28.032-70.080 3.392-13.248 16.256-23.552 29.952-24h78.080c18.304 0 32-13.696 32-32v-64c0-18.24-13.696-32-32-32h-78.080c-13.184 0-25.792-9.408-29.888-21.952-7.040-24.576-16.384-47.168-28.032-68.032-7.040-11.712-5.248-27.968 4.032-38.016l55.936-56c13.12-13.056 13.12-30.912 0-43.968l-45.952-46.080c-12.544-12.416-31.040-11.328-44.032 0l-54.016 56.064c-10.24 10.24-27.84 11.904-39.936 3.968-21.504-12.032-44.352-21.248-68.032-27.968-13.952-3.648-24.448-17.664-24-32v-78.080c0-18.304-13.696-32-32-32h-64c-18.304 0-32 13.696-32 32v78.080c0.448 14.336-10.048 28.352-24 32-23.68 6.656-46.528 15.872-68.032 27.904-12.16 7.936-29.632 6.208-40-3.968l-53.952-56c-12.992-11.52-31.488-12.544-44.032 0l-46.080 45.952c-12.992 13.056-12.992 30.912 0.128 43.968l55.808 56.256c9.28 10.048 11.008 26.24 4.032 38.016-11.648 20.864-20.992 43.52-28.032 68.032-4.096 12.544-16.64 21.76-29.952 21.952h-78.016c-18.304 0-32 13.76-32 32v64c0 18.304 13.696 32 32 32h78.080c13.632 0.64 26.496 10.688 29.888 24 7.168 25.6 16.256 49.024 28.032 70.016 7.040 11.648 5.248 27.904-4.032 37.952l-53.952 56c-16 16-10.752 35.328-2.112 43.968l46.080 44.032c14.72 14.080 34.88 11.072 45.952 0l54.016-54.016c9.472-9.92 25.792-12.544 37.952-6.080 20.16 11.328 42.88 20.864 67.968 28.032 13.312 3.456 23.552 16.256 24 29.952v78.144c0 18.304 14.080 32 32 32zM512 640c-105.6 0-192-86.4-192-192s86.4-192 192-192 192 86.4 192 192-86.4 192-192 192zM512 576c71.040 0 128-56.96 128-128s-56.96-128-128-128c-71.040 0-128 56.96-128 128s56.96 128 128 128z" />
<glyph unicode="&#xe96e;" glyph-name="mbri-setting2" d="M704 672v64c0 43.136 64 42.048 64 0v-64c0-41.792-64-42.432-64 0zM672 576h128c42.624 0 42.688-64 0-64h-128c-43.328 0-41.6 64 0 64zM768 416v-256c0-43.328-64-41.6-64 0v256c0 43.328 64 40.96 64 0zM512 224v-64c0-43.136-64-42.048-64 0v64c0 41.792 64 42.432 64 0zM544 320h-128c-42.624 0-42.688 64 0 64h128c43.328 0 41.6-64 0-64zM448 480v256c0 43.328 64 41.6 64 0v-256c0-43.328-64-40.96-64 0zM192 672v64c0 43.136 64 42.048 64 0v-64c0-41.792-64-42.432-64 0zM160 576h128c42.624 0 42.688-64 0-64h-128c-43.328 0-41.6 64 0 64zM256 416v-256c0-43.328-64-41.6-64 0v256c0 43.328 64 40.96 64 0zM96 960c-52.608 0-96-43.392-96-96v-832c0-52.608 43.392-96 96-96h768c52.608 0 96 43.392 96 96v832c0 52.608-43.392 96-96 96zM96 896h768c18.304 0 32-13.696 32-32v-832c0-18.304-13.696-32-32-32h-768c-18.304 0-32 13.696-32 32v832c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe96f;" glyph-name="mbri-setting3" d="M320 960c-33.28 0-64.384-5.76-92.032-14.080-21.12-6.656-28.352-38.784-11.968-53.952l137.92-137.984c41.152-40.96 41.152-104.832 0-145.92-40.96-41.088-106.88-41.088-147.84 0l-138.24 137.92c-15.744 14.336-45.44 6.4-51.968-13.952-8.192-27.648-15.872-58.752-15.872-92.032 0-176.32 143.68-320 320-320 26.432 0 50.688 6.016 73.984 12.032l358.016-358.016c47.616-47.616 124.416-47.616 172.032 0l64 64c47.552 47.616 47.552 126.4 0 174.080l-358.080 357.824c5.376 23.104 10.048 45.504 10.048 70.080 0 176.32-143.68 320-320 320zM576 640c0-25.472-3.072-48.64-9.984-72-3.392-11.072-0.192-23.808 8-32l369.92-369.92c23.424-23.488 23.36-58.688 0-82.112l-64-64c-23.424-23.36-60.608-23.36-84.032 0l-369.92 370.048c-8.192 8.192-20.992 11.392-32 8-24.832-7.616-48.896-14.016-73.984-14.016-144.32 0-266.88 121.088-254.080 273.92l96-96c65.408-65.28 170.752-65.28 236.16 0 65.28 65.408 65.28 172.8 0 238.080l-94.080 94.080c148.288 16.96 272-111.744 272-254.080z" />
<glyph unicode="&#xe970;" glyph-name="mbri-share" d="M704 864v-102.016c-87.040-6.144-155.328-29.44-196.032-75.968-43.904-50.368-58.624-136-59.968-206.080 0-43.072 64-41.344 64 0 0 9.216 19.84 34.56 36.032 44.032 27.2 21.888 78.592 42.048 155.968 48v-91.968c-0.768-24.32 33.024-41.216 52.032-25.984l256 192c16.384 11.776 16.384 40.192 0 51.968l-256 192c-18.944 14.208-52.032-0.64-52.032-25.984zM768 800l169.984-128-169.984-128v64c0 16.768-15.232 32-32 32-92.16 0-162.88-34.304-207.104-61.12 0 25.6 16 52.48 27.136 65.088 31.744 36.544 85.632 60.032 179.968 60.032 16.768 0 32 15.232 32 32zM96 704c-52.608 0-96-43.392-96-96v-512c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v384c0 42.624-64 42.432-64 0v-384c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v512c0 18.304 13.696 32 32 32h256c42.688 0 42.112 64 0 64z" />
<glyph unicode="&#xe971;" glyph-name="mbri-shopping-bag" d="M416 704h192c43.264 0 41.92-64 0-64h-192c-42.24 0-42.368 64 0 64zM160 704c-52.864 0.192-90.688-44.032-96-91.968l-64-576c-6.272-56.512 43.264-100.032 96-100.032h832c52.736 0 102.272 43.52 96 100.032l-64 576c-5.312 48-43.392 91.776-96 91.968-41.152 0-42.688-64 0-64 18.304 0 29.44-11.52 32-33.92l64-576c1.536-14.080-13.824-30.080-32-30.080h-832c-18.176 0-33.536 16-32 30.080l64 576c2.56 22.4 13.952 33.92 32 33.92 41.088 0 43.712 64 0 64zM512 960c-141.248 0-256-114.752-256-256v-96c0-42.432 64-40 64 0v96c0 106.88 85.12 192 192 192s192-85.12 192-192v-96c0-44.16 64-38.912 64 0v96c0 141.248-114.752 256-256 256z" />
<glyph unicode="&#xe972;" glyph-name="mbri-shopping-basket" d="M704 480v-256c0-42.048-64-42.048-64 0v256c0 40.96 64 43.84 64 0zM512 480v-256c0-42.048-64-42.048-64 0v256c0 40.96 64 43.84 64 0zM693.888 951.424l129.28-128.384c27.52-27.264-15.36-74.88-44.416-46.080l-129.28 128.32c-29.44 29.248 16.896 73.472 44.416 46.080zM320 480v-256c0-42.048-64-42.048-64 0v256c0 40.96 64 43.84 64 0zM266.112 951.424l-129.28-128.384c-27.52-27.264 15.36-74.88 44.416-46.080l129.28 128.32c29.44 29.248-16.896 73.472-44.416 46.080zM96 704c-70.656 0-104.192-49.152-94.272-102.016l95.808-512c11.008-58.752 46.72-89.984 94.464-89.984h576c61.184 0 84.8 40.064 94.080 89.984l95.872 512c13.12 70.016-37.12 102.016-93.952 102.016zM96 640h768c21.888 0 33.728-17.28 32-25.984l-95.744-512c-4.608-24.576-19.456-38.016-32.256-38.016h-576c-22.016 0-29.888 23.808-32.64 38.016l-95.744 512c-4.096 21.504 20.48 25.984 32.384 25.984z" />
<glyph unicode="&#xe973;" glyph-name="mbri-shopping-cart" d="M416 448h384c43.648 0 41.344-64 0-64h-384c-43.776 0-41.6 64 0 64zM32 768h96c24.576 0 31.36-39.424 37.312-70.784l64-336c23.488-87.68 79.808-105.216 154.688-105.216h384c94.080 0 162.176 11.776 186.88 95.168l60.032 201.984c29.696 97.92-11.52 150.848-103.936 150.848h-558.976c-42.24 0-42.24-64 0-64h558.976c59.84 0 55.040-24.832 41.984-68.8l-57.984-198.016c-16-54.528-76.8-53.12-126.976-53.12h-384c-57.6-3.072-78.4 9.152-90.752 55.168l-64 334.080c-14.016 73.024-28.736 122.688-101.248 122.688h-96c-42.24 0-43.008-64 0-64zM352 576h512c42.56 0 42.368-64 0-64h-512c-41.6 0-42.56 64 0 64zM736 192c-52.736 0-96-43.264-96-96s43.264-96 96-96 96 43.264 96 96-43.264 96-96 96zM736 128c18.112 0 32-13.888 32-32s-13.888-32-32-32c-18.112 0-32 13.888-32 32s13.888 32 32 32zM352 192c-52.736 0-96-43.264-96-96s43.264-96 96-96 96 43.264 96 96-43.264 96-96 96zM352 128c18.112 0 32-13.888 32-32s-13.888-32-32-32c-18.112 0-32 13.888-32 32s13.888 32 32 32z" />
<glyph unicode="&#xe974;" glyph-name="mbri-sites" d="M416 320h448c43.52 0 40.96-64 0-64h-448c-41.6 0-43.136 64 0 64zM416 448h448c43.52 0 40.96-64 0-64h-448c-41.6 0-43.136 64 0 64zM192 448c-34.88 0-64-29.12-64-64v-64c0-34.88 29.12-64 64-64h64c34.88 0 64 29.12 64 64v64c0 34.88-29.12 64-64 64zM192 384h64v-64h-64zM160 576h704c43.52 0 40.96-64 0-64h-704c-41.6 0-43.136 64 0 64zM448 672c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM320 672c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM192 672c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM96 832c-52.608 0-96-43.392-96-96v-576c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v576c0 52.608-43.392 96-96 96zM96 768h832c18.304 0 32-13.696 32-32v-576c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v576c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe975;" glyph-name="mbri-smile-face" d="M384 608v-64c0-42.624-64-42.496-64 0v64c0 41.6 64 43.52 64 0zM704 608v-64c0-42.624-64-42.496-64 0v64c0 41.6 64 43.52 64 0zM512 192c-70.4 0-141.312 22.912-184.96 76.16-25.28 30.912 25.152 68.224 48.256 40.128 25.984-31.616 80.768-52.288 136.704-52.288s110.4 20.864 136.704 52.288c27.264 32.512 73.152-9.92 48.256-40.128-43.84-53.12-114.56-76.16-184.96-76.16zM512 960c-282.368 0-512-229.632-512-512s229.632-512 512-512 512 229.632 512 512-229.632 512-512 512zM512 896c247.808 0 448-200.192 448-448s-200.192-448-448-448-448 200.192-448 448 200.192 448 448 448z" />
<glyph unicode="&#xe976;" glyph-name="mbri-speed" d="M416 896h198.016c32.768 0 28.032-32.64 22.016-56l-58.048-224c-4.736-18.56 10.88-39.424 30.080-40h121.984c58.56 0 35.712-41.6 8-75.968l-338.048-420.032 48 332.032c2.24 17.92-13.824 36.096-32 35.968h-128c-38.4 0-35.2 39.168-30.080 68.032l61.312 344c7.296 40.96-57.152 49.472-64 9.984l-59.2-342.016c-16.96-97.536 33.28-144 91.968-144h89.984l-57.984-409.984c-5.568-33.024 34.56-51.456 56-25.984l409.984 509.952c85.568 106.368 43.904 182.016-55.936 182.016h-80l48 184c21.184 81.28-20.032 136-84.032 136h-198.016c-40.32 0-43.648-64 0-64z" />
<glyph unicode="&#xe977;" glyph-name="mbri-star" d="M437.504 906.048c-36.992-59.52-64.64-119.040-93.952-179.84-21.12-44.032-37.76-49.6-75.904-57.856-66.56-14.4-130.56-24.32-193.92-39.936-35.84-8.96-66.432-37.568-70.848-54.016-4.48-16.384-4.032-37.12 3.008-49.92 40.832-75.2 100.864-130.88 157.824-189.76 32.96-33.92 32.192-56.32 27.968-93.824-7.872-70.144-18.176-136.96-23.936-203.776-3.2-37.952 5.568-68.224 28.032-87.872 24.192-21.12 61.12-13.184 89.92-1.92 64 24.832 120.96 57.408 179.84 87.808 34.24 17.6 51.648 19.008 91.904 0 62.208-29.44 119.488-60.8 179.84-87.936 34.048-15.36 68.8-13.568 93.44 4.864 24.704 18.432 24.96 53.312 24.448 85.12-1.088 70.72-13.76 135.68-24 203.648-7.168 47.616 3.008 66.176 27.968 93.888 46.912 52.096 93.568 100.16 135.872 151.872 23.040 28.16 34.944 52.48 25.984 85.888-8.96 33.28-42.56 46.272-71.936 55.936-64.832 21.248-128.96 28.416-193.92 39.872-47.68 8.448-57.984 23.488-75.904 57.92-32.256 62.080-60.16 125.184-93.888 179.84-19.776 32-39.616 53.952-73.984 53.952-34.176 0-57.856-28.16-73.856-53.952zM523.456 866.112c35.648-57.28 64.32-115.584 91.84-173.824 29.888-63.36 67.2-83.84 125.888-95.872 63.808-13.12 122.112-21.888 183.872-38.016 21.76-5.76 20.224-16.128 9.984-29.952-39.552-53.44-85.376-98.368-129.92-143.808-48.512-49.664-55.808-95.36-47.872-153.728 9.28-68.672 18.56-125.312 25.984-195.84 2.176-20.8-5.888-24.96-22.016-17.92-57.984 25.728-120.128 55.68-171.84 83.84-55.232 30.080-90.688 31.744-155.968 0-60.16-29.184-109.824-55.040-171.84-83.84-16-7.424-23.68-2.24-21.952 17.92 5.568 65.28 15.36 136.128 25.984 195.84 12.288 68.288-8.32 109.312-48 153.792-44.544 50.176-85.952 95.168-129.792 143.872-22.144 24.576 3.52 27.712 9.984 29.952 60.672 20.992 123.008 28.352 183.808 37.952 69.12 10.88 98.048 43.008 125.952 95.808 31.808 60.352 57.344 115.84 91.904 173.824 9.6 16 15.872 12.992 24 0z" />
<glyph unicode="&#xe978;" glyph-name="mbri-success" d="M501.888 201.28c-28.928-28.8-73.92 16.192-44.032 46.080l512.448 511.616c28.48 28.288 73.6-16.64 44.16-46.080zM330.112 137.28c28.928-28.8 73.92 16.192 44.16 46.080l-320.704 319.552c-28.224 28.288-73.408-16.512-43.968-45.952z" />
<glyph unicode="&#xe979;" glyph-name="mbri-sun" d="M137.984 776.832l45.248-45.248c30.848-30.72 74.24 16.32 45.248 45.312l-45.248 45.248c-30.080 30.080-75.52-15.040-45.248-45.248zM731.904 776.832l45.312 45.248c30.848 30.848 74.24-16.32 45.248-45.248l-45.184-45.248c-30.080-30.080-75.52 15.040-45.248 45.312zM137.984 183.36l45.248 45.248c30.848 30.72 74.24-16.32 45.248-45.248l-45.248-45.312c-30.080-30.080-75.52 15.040-45.248 45.312zM864 512h64c43.52 0 40.96-64 0-64h-64c-42.624 0-42.752 64 0 64zM32 512h64c43.52 0 40.96-64 0-64h-64c-42.624 0-42.752 64 0 64zM512 96v-64c0-43.52-64-40.96-64 0v64c0 42.624 64 42.752 64 0zM512 928v-64c0-43.52-64-40.96-64 0v64c0 42.624 64 42.752 64 0zM480 768c-158.72 0-288-129.28-288-288s129.28-288 288-288 288 129.28 288 288-129.28 288-288 288zM480 704c124.16 0 224-99.84 224-224s-99.84-224-224-224-224 99.84-224 224 99.84 224 224 224zM731.968 183.488l45.248-45.312c30.848-30.848 74.24 16.256 45.248 45.248l-45.184 45.248c-30.080 30.080-75.52-15.040-45.248-45.248z" />
<glyph unicode="&#xe97a;" glyph-name="mbri-sun2" d="M310.016 264.96l-127.104-126.912c-30.912-30.72-74.432 16.32-45.312 45.184l127.040 126.848c30.208 30.080 75.648-15.040 45.44-45.184zM649.984 264.96l127.104-126.912c30.912-30.72 74.432 16.32 45.312 45.184l-127.040 126.848c-30.208 30.080-75.648-15.040-45.44-45.184zM310.016 695.040l-127.104 126.976c-30.912 30.72-74.432-16.32-45.312-45.184l127.040-126.848c30.208-30.080 75.648 15.040 45.44 45.184zM649.984 695.040l127.104 126.912c30.912 30.72 74.432-16.32 45.312-45.184l-127.040-126.848c-30.208-30.080-75.648 15.040-45.44 45.184zM480 640c-88 0-160-72-160-160s72-160 160-160 160 72 160 160-72 160-160 160zM480 576c53.376 0 96-42.624 96-96s-42.624-96-96-96-96 42.624-96 96 42.624 96 96 96zM736 512h192c43.52 0 40.96-64 0-64h-192c-42.624 0-42.752 64 0 64zM32 512h192c43.52 0 40.96-64 0-64h-192c-42.624 0-42.752 64 0 64zM512 224v-192c0-43.52-64-40.96-64 0v192c0 42.624 64 42.752 64 0zM512 928v-192c0-43.52-64-40.96-64 0v192c0 42.624 64 42.752 64 0z" />
<glyph unicode="&#xe97b;" glyph-name="mbri-tablet-vertical" d="M480 128h64c43.264 0 41.92-64 0-64h-64c-42.88 0-42.688 64 0 64zM288 256h448c43.264 0 41.92-64 0-64h-448c-41.728 0-43.008 64 0 64zM128 32c0-52.608 43.392-96 96-96h576c52.608 0 96 43.392 96 96v832c0 52.608-43.392 96-96 96h-576c-52.608 0-96-43.392-96-96v-832zM192 32v832c0 18.304 13.696 32 32 32h576c18.304 0 32-13.696 32-32v-832c0-18.304-13.696-32-32-32h-576c-18.304 0-32 13.696-32 32z" />
<glyph unicode="&#xe97c;" glyph-name="mbri-tablet" d="M192 480v-64c0-43.264-64-41.92-64 0v64c0 42.88 64 42.688 64 0zM320 672v-448c0-43.264-64-41.92-64 0v448c0 41.728 64 43.008 64 0zM96 832c-52.608 0-96-43.392-96-96v-576c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v576c0 52.608-43.392 96-96 96h-832zM96 768h832c18.304 0 32-13.696 32-32v-576c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v576c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe97d;" glyph-name="mbri-target" d="M480 640c-88 0-160-72-160-160s72-160 160-160 160 72 160 160-72 160-160 160zM480 576c53.376 0 96-42.624 96-96s-42.624-96-96-96-96 42.624-96 96 42.624 96 96 96zM448 928v-33.92c-203.328-16-366.080-178.752-382.080-382.080h-33.92c-40.64 0-43.136-64 0-64h33.92c14.912-204.416 177.92-366.208 382.080-382.080v-33.92c0-41.728 64-42.432 64 0v33.92c204.16 15.872 367.168 177.664 382.080 382.080h33.92c41.728 0 42.432 64 0 64h-33.92c-16 203.392-178.816 366.080-382.080 382.080v33.92c0 41.472-64 42.88-64 0zM448 830.080v-30.080c0-41.728 64-42.432 64 0v30.080c168.512-15.36 301.888-149.824 318.080-318.080h-30.080c-40.64 0-43.136-64 0-64h30.080c-14.464-169.92-148.288-302.848-318.080-318.080v30.080c0 40.64-64 43.136-64 0v-30.080c-169.792 15.36-303.616 148.224-318.080 318.080h30.080c41.728 0 42.432 64 0 64h-30.080c15.68 168.96 158.336 305.28 318.080 318.080z" />
<glyph unicode="&#xe97e;" glyph-name="mbri-timer" d="M512 608v-192c0-43.328-64-42.24-64 0v192c0 42.048 64 42.88 64 0zM416 960c-41.728 0-42.56-64 0-64h32v-96c0.192-16 11.136-32 32-32 194.752 0 352-157.248 352-352s-157.248-352-352-352-352 157.248-352 352c0 100.16 42.368 196.096 116.032 264 32.192 29.76-9.472 77.184-42.048 48-88.064-79.040-137.984-193.6-137.984-312 0-229.376 186.624-416 416-416s416 186.624 416 416c0 218.432-169.6 397.312-384 414.080v65.92h32c40.96 0 43.84 64 0 64z" />
<glyph unicode="&#xe97f;" glyph-name="mbri-to-ftp" d="M192 416c0-42.752 64-42.368 64 0v96h32c42.048 0 42.88 64 0 64h-32v64h96c43.264 0 41.92 64 0 64h-128c-17.728 0-32-14.272-32-32zM480 704c-42.56 0-41.92-64 0-64h32v-224c0-42.24 63.872-42.688 64 0v224h32c42.56 0 42.368 64 0 64zM704 416c0-41.856 64-43.136 64 0v96h32c52.608 0 96 43.392 96 96s-43.392 96-96 96h-64c-20.608 0-32-12.608-32-32zM768 640h32c18.304 0 32-13.696 32-32s-13.696-32-32-32h-32zM96 960c-52.608 0-96-43.392-96-96v-640c0-52.608 43.392-96 96-96h192c42.432 0 42.88 64 0 64h-192c-18.304 0-32 13.696-32 32v640c0 18.304 13.696 32 32 32h244.032l117.952-118.016c5.76-6.016 13.76-9.6 22.016-9.984h480v-544c0-18.304-13.696-32-32-32h-128c-41.6 0-42.752-64 0-64h128c52.608 0 96 43.392 96 96v576c0 16.768-15.232 32-32 32h-497.92l-120.128 120c-5.952 5.312-14.016 8.192-21.952 8zM521.92 311.296l-128.32-128.256c-29.44-29.44 16-74.24 44.16-46.080l106.24 106.24 106.24-106.24c28.16-28.16 73.792 16.384 44.16 46.080l-128.384 128.256c-10.88 10.88-31.744 12.352-44.16 0zM576-32v128c0 41.6-64 42.752-64 0v-128c0-43.008 64-42.112 64 0z" />
<glyph unicode="&#xe980;" glyph-name="mbri-to-local-drive" d="M96 960c-52.608 0-96-43.392-96-96v-640c0-52.608 43.392-96 96-96h192c42.432 0 42.88 64 0 64h-192c-18.304 0-32 13.696-32 32v640c0 18.304 13.696 32 32 32h244.032l117.952-118.016c5.76-6.016 13.76-9.6 22.016-9.984h480v-544c0-18.304-13.696-32-32-32h-128c-41.6 0-42.752-64 0-64h128c52.608 0 96 43.392 96 96v576c0 16.768-15.232 32-32 32h-497.92l-120.128 120c-5.952 5.312-14.016 8.192-21.952 8zM521.92 311.296l-128.32-128.256c-29.44-29.44 16-74.24 44.16-46.080l106.24 106.24 106.24-106.24c28.16-28.16 73.792 16.384 44.16 46.080l-128.384 128.256c-10.88 10.88-31.744 12.352-44.16 0zM576-32v128c0 41.6-64 42.752-64 0v-128c0-43.008 64-42.112 64 0z" />
<glyph unicode="&#xe981;" glyph-name="mbri-touch-swipe" d="M352 832h96v-96c0-44.032 64-41.088 64 0v96c0 34.88-29.12 64-64 64h-96c-43.136 0-42.496-64 0-64zM160 384h-96v96c0 44.032-64 41.088-64 0v-96c0-34.88 29.12-64 64-64h96c43.136 0 42.496 64 0 64zM642.24 699.2c-64.128 20.8-119.36-23.36-125.76-64.192-43.968 13.888-95.104-7.040-116.864-48.832l-91.52 89.664c-41.344 39.424-107.136 39.040-148.096-1.92-41.472-41.6-41.472-108.544 0-150.016l337.92-331.904h-81.92c-52.608 0-96-43.328-96-96 0-52.608 43.392-96 96-96h384c43.52 0 41.728 64 0 64h-384c-18.304 0-32 13.76-32 32 0 18.304 13.696 32 32 32h160c24.448 0.96 38.784 36.288 22.016 54.016l-393.984 385.92c-16.64 16.64-16.64 45.44 0 62.080 17.024 17.088 41.984 15.36 59.968-1.92l132.032-127.872c18.176-17.28 52.48-2.176 51.968 22.912-1.088 54.4 47.616 61.568 80 38.848 20.032-13.952 54.080 5.952 49.92 30.080-10.112 60.544 46.848 59.008 76.16 30.080 22.848-22.848 59.648 5.248 49.28 38.72-11.52 37.44 45.696 56.96 70.656 31.232l195.968-202.048c29.568-30.464 73.92 13.184 44.032 44.032l-196.096 201.92c-19.456 20.16-43.52 31.744-73.792 32-47.488 0.64-92.8-24.832-101.888-68.8z" />
<glyph unicode="&#xe982;" glyph-name="mbri-touch" d="M448 736c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM320 800c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM128 736c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM64 544c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM128 416c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM642.24 699.2c-64.128 20.8-119.36-23.36-125.76-64.192-43.968 13.888-95.104-7.040-116.864-48.832l-91.52 89.664c-41.344 39.424-107.136 39.040-148.096-1.92-41.472-41.6-41.472-108.544 0-150.016l337.92-331.904h-81.92c-52.608 0-96-43.328-96-96 0-52.608 43.392-96 96-96h384c43.52 0 41.728 64 0 64h-384c-18.304 0-32 13.76-32 32 0 18.304 13.696 32 32 32h160c24.448 0.96 38.784 36.288 22.016 54.016l-393.984 385.92c-16.64 16.64-16.64 45.44 0 62.080 17.024 17.088 41.984 15.36 59.968-1.92l132.032-127.872c18.176-17.28 52.48-2.176 51.968 22.912-1.088 54.4 47.616 61.568 80 38.848 20.032-13.952 54.080 5.952 49.92 30.080-10.112 60.608 46.848 59.008 76.16 30.080 22.848-22.848 59.648 5.248 49.28 38.72-11.52 37.44 45.696 56.96 70.656 31.232l195.968-202.048c29.568-30.464 73.92 13.248 44.032 44.032l-196.096 201.92c-19.456 20.16-43.52 31.744-73.792 32-47.488 0.64-92.8-24.832-101.888-68.8z" />
<glyph unicode="&#xe983;" glyph-name="mbri-trash" d="M703.616 539.776l-63.616-448.64c-6.144-43.328-69.44-30.848-63.616 9.984l63.616 448.64c5.632 40 69.632 32.384 63.616-9.984zM320.384 539.776l63.616-448.64c6.144-43.328 69.44-30.848 63.616 9.984l-63.616 448.64c-5.632 40-69.632 32.384-63.616-9.984zM225.28 704c-70.848 0-104.768-46.72-95.872-99.968l95.872-576c10.112-60.928 45.952-92.032 95.872-92.032h383.488c61.12 0 85.504 41.856 93.888 92.032l95.872 576c11.392 68.352-39.232 99.968-93.888 99.968zM225.28 640h575.232c20.864 0 33.28-17.6 32-25.984l-96-576c-4.16-25.344-19.2-38.016-31.872-38.016h-383.488c-23.68 0-31.552 23.296-33.92 38.016l-96 576c-3.328 20.672 22.016 25.984 34.048 25.984zM384 960c-34.88 0-64-29.12-64-64v-64h-160c-43.136 0-41.984-64 0-64h704c43.136 0 41.984 64 0 64h-160v64c0 34.88-29.12 64-64 64zM384 896h256v-64h-256z" />
<glyph unicode="&#xe984;" glyph-name="mbri-underline" d="M128 928v-384c0-194.432 157.568-352 352-352s352 157.568 352 352v384c0 16.768-15.232 32-32 32h-128c-16.768 0-32-15.232-32-32v-377.984c0-92.8-71.296-166.016-160-166.016s-160 73.28-160 166.016v377.984c0 16.768-15.232 32-32 32h-128c-17.6 0-32-17.024-32-32zM192 896h64v-345.984c0-126.080 99.968-230.016 224-230.016s224 103.872 224 230.016v345.984h64v-352c0-160.128-127.872-288-288-288s-288 127.872-288 288zM192 128c-34.88 0-64-29.12-64-64v-64c0-34.88 29.12-64 64-64h576c34.88 0 64 29.12 64 64v64c0 34.88-29.12 64-64 64zM192 64h576v-64h-576z" />
<glyph unicode="&#xe985;" glyph-name="mbri-undo" d="M64 672v-160h160c40.96 0 43.712-64 0-64h-192c-16.768 0-32 15.232-32 32v192c0 42.432 63.68 41.6 64 0zM480 768c300.16 0 544-243.968 544-544 0-44.8-64-40.128-64 0 0 265.472-214.4 480-480 480-108.992 0-214.592-37.76-300.416-104.96-34.88-27.264-70.912 23.872-38.72 49.792 96.32 77.312 215.616 119.168 339.136 119.168z" />
<glyph unicode="&#xe986;" glyph-name="mbri-unlink" d="M639.040 38.592l-31.36 129.152c-10.24 42.24-72 24.064-62.72-14.080l31.36-129.152c10.368-42.624 72-24.064 62.72 14.080zM384.96 38.592l31.36 129.152c10.24 42.24 72 24.064 62.72-14.080l-31.36-129.152c-10.368-42.624-72-24.064-62.72 14.080zM639.040 921.408l-31.36-129.152c-10.24-42.24-72-24.064-62.72 14.080l31.36 129.152c10.368 42.624 72 24.064 62.72-14.080zM384.96 921.408l31.36-129.152c10.24-42.24 72-24.064 62.72 14.080l-31.36 129.152c-10.368 42.624-72 24.064-62.72-14.080zM736 768c158.976 0 288-129.024 288-288s-129.024-288-288-288h-64c-42.432 0-42.496 64 0 64h64c124.672 0 224 99.328 224 224s-99.328 224-224 224h-64c-42.048 0-41.408 64 0 64zM288 768c-158.976 0-288-129.024-288-288s129.024-288 288-288h64c42.432 0 42.496 64 0 64h-64c-124.672 0-224 99.328-224 224s99.328 224 224 224h64c42.048 0 41.408 64 0 64z" />
<glyph unicode="&#xe987;" glyph-name="mbri-unlock" d="M512 672c0-42.048 64-41.6 64-0.832 0 146.368 84.864 224.832 192 224.832s192-77.632 192-224c0-42.368 64-40.32 64 0 0 173.12-115.712 288-256 288s-256-114.816-256-288zM352 384c-52.608 0-96-43.392-96-96v-128c0-52.608 43.392-96 96-96s96 43.392 96 96v128c0 52.608-43.392 96-96 96zM352 320c18.304 0 32-13.696 32-32v-128c0-18.304-13.696-32-32-32s-32 13.696-32 32v128c0 18.304 13.696 32 32 32zM160 576c-88.064 0-160-71.936-160-160v-320c0-88.064 71.936-160 160-160h384c88.064 0 160 71.936 160 160v320c0 88.064-71.936 160-160 160zM160 512h384c53.76 0 96-42.24 96-96v-320c0-53.76-42.24-96-96-96h-384c-53.76 0-96 42.24-96 96v320c0 53.76 42.24 96 96 96z" />
<glyph unicode="&#xe988;" glyph-name="mbri-up-down" d="M768 160.128v640c0 43.648-64 41.28-64 0v-640c0-42.048 64-42.432 64 0zM713.92-55.36l-128.128 128c-29.696 29.696 15.104 74.88 44.032 46.080l106.24-106.048 106.048 105.984c29.44 29.44 73.856-16.256 44.16-46.080l-128.256-128c-11.328-11.264-32.64-11.328-44.032 0zM320 736v-640c0-43.648-64-41.28-64 0v640c0 42.112 64 42.432 64 0zM265.92 951.488l-128.128-128c-29.696-29.696 15.104-74.88 44.032-46.080l106.176 106.112 106.048-105.984c29.44-29.44 73.856 16.256 44.16 46.080l-128.256 128c-11.328 11.264-32.64 11.328-44.032 0z" />
<glyph unicode="&#xe989;" glyph-name="mbri-up" d="M9.6 503.168l448.192 448.512c11.776 11.136 32.256 11.136 44.032 0l448.256-448.512c30.080-30.080-15.616-74.496-43.968-46.080l-426.304 426.496-426.176-426.496c-28.032-28.032-73.6 16.64-44.16 46.080zM512-32v768c0 41.728-64 43.84-64 0v-768c0-43.2 64-40.96 64 0z" />
<glyph unicode="&#xe98a;" glyph-name="mbri-update" d="M713.6 521.088l128.128-128.64c11.776-11.264 32.32-11.264 44.032 0l128.128 128.64c31.552 31.744-18.304 72.128-44.032 46.272l-106.112-106.56-105.984 106.496c-27.264 27.328-74.048-16.128-44.16-46.272zM470.784 893.952c-102.4-9.216-201.408-56.96-271.872-137.92-24.512-28.48 22.72-71.936 50.688-39.424 118.4 136.192 328.96 156.352 472.32 43.776 52.288-41.088 90.24-97.28 108.16-159.744 12.928-44.8 75.968-21.888 64.64 17.536-21.632 74.432-68.8 141.248-131.392 190.464-85.312 66.88-190.336 94.528-292.608 85.312zM310.4 438.912l-128.128 128.64c-11.776 11.264-32.32 11.264-44.032 0l-128.128-128.512c-31.552-31.744 18.304-72.128 44.032-46.272l106.112 106.432 105.984-106.496c27.264-27.328 74.048 16.128 44.16 46.272zM553.28 66.048c102.4 9.216 201.408 56.96 271.872 137.92 24.512 28.48-22.72 71.936-50.688 39.424-118.4-136.192-328.96-156.352-472.32-43.776-52.288 41.088-90.24 97.408-108.16 159.744-12.928 44.8-75.968 21.888-64.64-17.536 21.632-74.432 68.8-141.248 131.392-190.464 85.312-66.944 190.336-94.592 292.608-85.376z" />
<glyph unicode="&#xe98b;" glyph-name="mbri-upload" d="M521.984 503.168l-128-128c-29.312-29.312 15.744-74.24 44.032-46.080l105.984 106.112 105.984-106.048c28.032-28.032 74.112 16 44.032 46.080l-128 128c-12.288 12.16-33.92 10.112-44.032 0zM576 288v-192c0-42.24-64-43.072-64 0v192c0 42.56 64 42.24 64 0zM544 896c-163.968 0-262.4-98.688-312-196.032-129.28-12.8-232-119.36-232-251.968 0-141.248 114.752-256 256-256h96c43.52 0 41.088 64 0 64h-96c-106.88 0-192 85.12-192 192 0 105.216 81.6 189.312 185.984 192 12.8 0 25.216 8.192 30.080 19.968 38.976 86.272 115.136 172.032 263.936 172.032 141.76 0 288-119.936 288-289.92 0.64-14.336 11.968-27.392 25.984-30.080 57.856-11.84 102.016-65.92 102.016-128 0-71.040-56.96-128-128-128h-96c-42.88 0-41.088-64 0-64h96c105.6 0 192 86.4 192 192 0 83.2-57.472 149.12-132.032 176-10.368 196.352-175.36 336-347.968 336z" />
<glyph unicode="&#xe98c;" glyph-name="mbri-user" d="M512 960c-282.368 0-512-229.632-512-512s229.632-512 512-512 512 229.632 512 512-229.632 512-512 512zM512 896c247.808 0 448-200.192 448-448s-200.192-448-448-448-448 200.192-448 448 200.192 448 448 448zM512 832c-118.080 0-192-66.112-192-192 0-104.512 21.376-128.128 64-169.984v-36.032l-177.92-117.824c-9.088-6.208-14.592-17.152-14.080-28.032v-64c0-42.88 64-40.96 64 0v48l177.92 118.016c8.576 5.632 14.080 15.616 14.080 25.856v64c0.192 8.96-3.52 17.92-9.984 24-49.024 39.040-53.888 78.4-54.016 136-0.256 93.888 46.4 129.472 128 128s128-37.568 128-128c0-85.76-19.584-97.664-52.032-134.016-7.68-6.208-12.288-16-11.968-25.984v-64c0.128-10.24 5.568-20.224 14.080-25.984l177.92-118.016v-48c0-42.368 64-42.432 64 0v64c0.512 10.88-4.992 21.888-14.080 28.032l-177.92 117.888v38.080c56 46.080 64 76.48 64 168 0 128.32-73.92 192-192 192z" />
<glyph unicode="&#xe98d;" glyph-name="mbri-user2" d="M512 960c-282.368 0-512-229.632-512-512s229.632-512 512-512 512 229.632 512 512-229.632 512-512 512zM512 896c247.808 0 448-200.192 448-448s-200.192-448-448-448-448 200.192-448 448 200.192 448 448 448zM512 768c-97.408 0-150.912-43.776-179.392-146.752-20.032-72.576-29.248-144.448-65.728-181.12-19.52-17.152-4.864-56.832 21.12-56.128h93.824c-1.92-45.44-28.928-66.304-61.184-79.744-70.912-29.44-108.16-53.312-127.488-136.704-10.688-45.888 56.96-52.736 63.744-13.184 11.776 67.584 46.208 73.088 87.68 91.968 78.464 35.584 103.68 84.864 103.68 169.792-0.064 16.832-15.616 31.872-32.256 31.872h-75.392c26.56 51.84 40.96 107.904 53.76 155.264 19.968 73.344 52.864 100.736 117.632 100.736s88.832-24.32 117.504-100.736c13.696-47.104 27.264-103.36 53.76-155.264h-75.584c-16.64 0-31.872-15.232-31.872-32 0-87.936 31.872-135.872 103.68-169.728 51.2-24.128 70.4-27.776 87.68-91.904 12.16-48.32 74.24-22.144 63.68 13.952-22.912 89.6-63.36 106.88-127.488 135.936-41.28 18.752-50.432 40.512-59.328 79.744h92.16c25.984-0.64 40.576 38.72 21.12 55.936-36.48 36.608-44.8 108.8-65.792 181.12-28.352 98.944-82.112 146.944-179.52 146.944z" />
<glyph unicode="&#xe98e;" glyph-name="mbri-users" d="M180.032 515.2c-14.464-58.496-17.152-115.2-42.048-140.032-19.584-17.28-4.032-55.872 22.016-55.168l57.984-0.832c0-30.976-16.64-31.168-25.984-31.168-39.68 0-44.416-64 0-64 87.232 0 96 77.44 96 128 0 16.768-15.232 32-32 32h-46.080c16.896 40.704 25.152 82.304 32 117.12 11.328 56.192 29.44 74.88 78.080 74.88s68.992-33.536 84.032-76.8c11.52-33.6 20.672-75.52 37.952-115.2h-57.984c-16.768 0-32-15.232-32-32 0-42.048 13.056-68.48 25.984-84.8 20.928-26.24 71.040 13.76 50.048 39.936-2.816 3.456-2.432 10.496-4.032 12.8h70.080c25.984-0.64 41.472 37.888 21.952 55.168-25.6 25.6-34.432 82.88-50.048 142.080-22.208 84.288-65.152 122.816-145.984 122.816-80.768 0-119.68-42.112-140.032-124.8zM832 288v56c56.064 46.080 64 76.48 64 168 0 128.32-73.856 192-192 192-118.016 0-192-66.112-192-192 0-104.512 21.44-128.128 64-169.984v-36.032l-177.92-117.824c-9.088-6.208-14.592-17.152-14.080-28.032v-64c0-42.88 64-40.96 64 0v48l178.048 118.016c8.448 5.76 13.824 15.744 14.080 25.984v64c0.128 8.96-3.584 17.92-10.112 24-48.896 38.912-53.76 78.272-54.016 135.872-0.192 93.888 46.464 129.472 128 128 81.6-1.472 128-37.568 128-128 0-85.76-19.584-97.664-51.968-134.016-7.68-6.208-12.288-16.128-11.968-25.984v-64c0-43.52 64-42.112 64 0zM512 960c-282.368 0-512-229.632-512-512s229.632-512 512-512 512 229.632 512 512-229.632 512-512 512zM512 896c247.808 0 448-200.192 448-448s-200.192-448-448-448-448 200.192-448 448 200.192 448 448 448z" />
<glyph unicode="&#xe98f;" glyph-name="mbri-video-play" d="M1024 224v-64c0-43.52-64-41.6-64 0v64c0 43.136 64 41.344 64 0zM1024 416v-64c0-43.52-64-41.6-64 0v64c0 43.136 64 41.344 64 0zM1024 608v-64c0-43.52-64-41.6-64 0v64c0 43.136 64 41.344 64 0zM1024 800v-64c0-43.52-64-41.6-64 0v64c0 43.136 64 41.344 64 0zM64 224v-64c0-43.52-64-41.6-64 0v64c0 43.136 64 41.344 64 0zM64 416v-64c0-43.52-64-41.6-64 0v64c0 43.136 64 41.344 64 0zM64 608v-64c0-43.52-64-41.6-64 0v64c0 43.136 64 41.344 64 0zM64 800v-64c0-43.52-64-41.6-64 0v64c0 43.136 64 41.344 64 0zM224 832c-52.608 0-96-43.392-96-96v-512c0-52.608 43.392-96 96-96h576c52.608 0 96 43.392 96 96v512c0 52.608-43.392 96-96 96zM224 768h576c18.304 0 32-13.696 32-32v-512c0-18.304-13.696-32-32-32h-576c-18.304 0-32 13.696-32 32v512c0 18.304 13.696 32 32 32zM384 672v-384c-0.768-24.32 33.024-41.216 52.032-25.984l256 192c16.384 11.776 16.384 40.192 0 51.968l-256 192c-18.752 14.080-52.032 0.896-52.032-25.984zM448 608l169.984-128-169.984-128z" />
<glyph unicode="&#xe990;" glyph-name="mbri-video" d="M384 672v-384c-0.768-24.32 33.024-41.216 52.032-25.984l256 192c16.384 11.776 16.384 40.192 0 51.968l-256 192c-20.352 15.232-52.032-2.304-52.032-25.984zM448 608l169.984-128-169.984-128zM96 832c-52.608 0-96-43.392-96-96v-512c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v512c0 52.608-43.392 96-96 96zM96 768h832c18.304 0 32-13.696 32-32v-512c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v512c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe991;" glyph-name="mbri-watch" d="M288 768c-51.968 0-94.976-42.24-96-94.080l-136-33.92c-30.912-7.68-56-22.72-56-64v-256c0-32.512 17.92-52.864 56-62.080l136-33.92c0-52.608 43.392-96 96-96h448c52.608 0 96 43.392 96 96l136 33.92c38.144 9.216 56 29.568 56 62.080v256c0 41.28-25.088 56.32-56 64l-136 33.92c-1.024 51.84-44.032 94.080-96 94.080h-448zM288 704h448c18.304 0 32-13.696 32-32v-448c0-18.304-13.696-32-32-32h-448c-18.304 0-32 13.696-32 32v448c0 18.304 13.696 32 32 32zM192 608v-318.080l-120 30.080c-4.16 1.024-8 2.944-8 9.984v236.032c0 5.76 0.768 10.24 8 11.968l120 30.016zM832 608l120-30.080c7.232-1.728 8-6.144 8-11.904v-236.032c0-7.040-3.84-8.96-8-9.984l-120-30.080v318.080z" />
<glyph unicode="&#xe992;" glyph-name="mbri-website-theme" d="M448 671.36c0-17.728-14.336-32-32-32s-32 14.272-32 32c0 17.664 14.336 32 32 32s32-14.336 32-32zM320 671.36c0-17.728-14.336-32-32-32s-32 14.272-32 32c0 17.664 14.336 32 32 32s32-14.336 32-32zM192 671.36c0-17.728-14.336-32-32-32s-32 14.272-32 32c0 17.664 14.336 32 32 32s32-14.336 32-32zM96 832c-52.608 0-96-43.392-96-96v-576c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v384c0 41.984-64 42.24-64 0v-384c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v576c0 18.304 13.696 32 32 32h576c42.24 0 42.56 64 0 64zM977.088 828.352c-133.12-71.488-243.392-141.44-354.432-242.752-59.968-54.656-57.984-136.128-17.92-175.104 35.2-34.24 111.36-43.328 171.2 21.888 100.608 109.76 174.976 221.824 244.928 352.192 12.544 23.424-15.488 58.88-43.84 43.712zM899.456 706.944c-47.36-82.176-96.64-152.32-167.296-228.8-43.328-46.72-81.92-25.792-83.584-23.808-18.176 21.312-7.168 60.992 19.84 87.552 75.008 73.6 150.080 119.936 231.040 165.12zM494.080 384c-58.048 0-81.92-44.8-81.92-96.832 0-15.040-5.632-31.168-14.464-35.968-24.704-13.44-13.632-59.2 14.4-59.2 96.064 0 163.904 12.672 163.904 96-0.512 61.44-24 96-81.92 96zM494.080 320c10.752 0 17.92-10.24 17.92-32 0-28.992-23.040-32-42.56-32 5.76 5.632 10.56 21.312 10.56 32 0 22.144 3.2 32 14.080 32zM160 576h320c41.92 0 41.984-64 0-64h-320c-41.6 0-42.688 64 0 64z" />
<glyph unicode="&#xe993;" glyph-name="mbri-wifi" d="M283.712 290.56c-35.712-34.944 14.72-75.52 45.44-44.992 101.248 100.48 264.512 100.48 365.696 0 31.36-31.104 76.928 15.040 45.44 45.056-131.008 124.8-325.12 128.64-456.576 0zM146.752 426.624c-34.176-33.92 12.8-77.312 45.44-44.992 176.832 175.36 462.72 175.36 639.68 0 30.848-30.528 76.16 14.336 45.44 44.992-199.040 198.848-531.712 197.632-730.624 0zM9.92 562.304c-30.72-30.592 17.728-73.344 44.8-46.592 252.608 250.368 661.248 249.856 914.56 0 29.248-28.992 74.368 17.024 44.672 46.72-276.672 276.608-732.48 271.488-1003.968-0.064zM576 128c0-35.392-28.672-64.128-64-64.128s-64 28.8-64 64.128c0 35.2 28.672 64 64 64s64-28.8 64-64.128z" />
<glyph unicode="&#xe994;" glyph-name="mbri-windows" d="M448 416v-288c0.64-14.272 11.968-27.328 25.984-30.080l448-96c17.92-3.392 37.12 11.776 38.016 30.080v384c0 16.768-15.232 32-32 32h-448c-18.112 0-32-12.672-32-32zM512 384h384v-312l-384 81.92zM0 416v-192c0.64-14.272 11.968-27.328 25.984-30.080l320-64c17.92-3.392 37.12 11.776 38.016 30.080v256c0 16.768-15.232 32-32 32h-320c-20.48 0-32-11.328-32-32zM64 384h256v-184l-256 49.92zM921.984 960l-448-96c-14.72-2.816-26.24-17.088-25.984-32v-288c0-16.768 15.232-32 32-32h448c16.768 0 32 15.232 32 32v384c0.32 18.944-19.392 35.584-38.016 32zM896 889.984v-313.984h-384v232zM345.984 832l-320-64c-14.72-2.816-26.24-17.088-25.984-32v-192c0-16.768 15.232-32 32-32h320c16.768 0 32 15.232 32 32v256c0.32 18.944-19.392 35.584-38.016 32zM320 761.984v-185.984h-256v136z" />
<glyph unicode="&#xe995;" glyph-name="mbri-zoom-out" d="M544 640h256c42.432 0 42.88-64 0-64h-256c-43.136 0-41.728 64 0 64zM329.472 311.040l-320.384-320c-28.032-28.032 15.232-74.88 44.032-46.080l320.384 320c31.872 31.872-16.448 73.6-44.032 46.080zM672 960c-194.048 0-352-157.952-352-352s157.952-352 352-352 352 157.952 352 352-157.952 352-352 352zM672 896c159.36 0 288-128.64 288-288s-128.64-288-288-288-288 128.64-288 288 128.64 288 288 288z" />
</font></defs></svg>

Before

Width:  |  Height:  |  Size: 117 KiB

View File

@ -1,477 +0,0 @@
@font-face {
font-family: 'MobiriseIcons';
src: url('mobirise-icons.eot?spat4u');
src: url('mobirise-icons.eot?spat4u#iefix') format('embedded-opentype'),
url('mobirise-icons.ttf?spat4u') format('truetype'),
url('mobirise-icons.woff?spat4u') format('woff'),
url('mobirise-icons.svg?spat4u#MobiriseIcons') format('svg');
font-weight: normal;
font-style: normal;
font-display: swap;
}
[class^="mbri-"], [class*=" mbri-"] {
/* use !important to prevent issues with browser extensions that change fonts */
font-family: MobiriseIcons !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.mbri-add-submenu:before {
content: "\e900";
}
.mbri-alert:before {
content: "\e901";
}
.mbri-align-center:before {
content: "\e902";
}
.mbri-align-justify:before {
content: "\e903";
}
.mbri-align-left:before {
content: "\e904";
}
.mbri-align-right:before {
content: "\e905";
}
.mbri-android:before {
content: "\e906";
}
.mbri-apple:before {
content: "\e907";
}
.mbri-arrow-down:before {
content: "\e908";
}
.mbri-arrow-next:before {
content: "\e909";
}
.mbri-arrow-prev:before {
content: "\e90a";
}
.mbri-arrow-up:before {
content: "\e90b";
}
.mbri-bold:before {
content: "\e90c";
}
.mbri-bookmark:before {
content: "\e90d";
}
.mbri-bootstrap:before {
content: "\e90e";
}
.mbri-briefcase:before {
content: "\e90f";
}
.mbri-browse:before {
content: "\e910";
}
.mbri-bulleted-list:before {
content: "\e911";
}
.mbri-calendar:before {
content: "\e912";
}
.mbri-camera:before {
content: "\e913";
}
.mbri-cart-add:before {
content: "\e914";
}
.mbri-cart-full:before {
content: "\e915";
}
.mbri-cash:before {
content: "\e916";
}
.mbri-change-style:before {
content: "\e917";
}
.mbri-chat:before {
content: "\e918";
}
.mbri-clock:before {
content: "\e919";
}
.mbri-close:before {
content: "\e91a";
}
.mbri-cloud:before {
content: "\e91b";
}
.mbri-code:before {
content: "\e91c";
}
.mbri-contact-form:before {
content: "\e91d";
}
.mbri-credit-card:before {
content: "\e91e";
}
.mbri-cursor-click:before {
content: "\e91f";
}
.mbri-cust-feedback:before {
content: "\e920";
}
.mbri-database:before {
content: "\e921";
}
.mbri-delivery:before {
content: "\e922";
}
.mbri-desktop:before {
content: "\e923";
}
.mbri-devices:before {
content: "\e924";
}
.mbri-down:before {
content: "\e925";
}
.mbri-download:before {
content: "\e989";
}
.mbri-drag-n-drop:before {
content: "\e927";
}
.mbri-drag-n-drop2:before {
content: "\e928";
}
.mbri-edit:before {
content: "\e929";
}
.mbri-edit2:before {
content: "\e92a";
}
.mbri-error:before {
content: "\e92b";
}
.mbri-extension:before {
content: "\e92c";
}
.mbri-features:before {
content: "\e92d";
}
.mbri-file:before {
content: "\e92e";
}
.mbri-flag:before {
content: "\e92f";
}
.mbri-folder:before {
content: "\e930";
}
.mbri-gift:before {
content: "\e931";
}
.mbri-github:before {
content: "\e932";
}
.mbri-globe:before {
content: "\e933";
}
.mbri-globe-2:before {
content: "\e934";
}
.mbri-growing-chart:before {
content: "\e935";
}
.mbri-hearth:before {
content: "\e936";
}
.mbri-help:before {
content: "\e937";
}
.mbri-home:before {
content: "\e938";
}
.mbri-hot-cup:before {
content: "\e939";
}
.mbri-idea:before {
content: "\e93a";
}
.mbri-image-gallery:before {
content: "\e93b";
}
.mbri-image-slider:before {
content: "\e93c";
}
.mbri-info:before {
content: "\e93d";
}
.mbri-italic:before {
content: "\e93e";
}
.mbri-key:before {
content: "\e93f";
}
.mbri-laptop:before {
content: "\e940";
}
.mbri-layers:before {
content: "\e941";
}
.mbri-left-right:before {
content: "\e942";
}
.mbri-left:before {
content: "\e943";
}
.mbri-letter:before {
content: "\e944";
}
.mbri-like:before {
content: "\e945";
}
.mbri-link:before {
content: "\e946";
}
.mbri-lock:before {
content: "\e947";
}
.mbri-login:before {
content: "\e948";
}
.mbri-logout:before {
content: "\e949";
}
.mbri-magic-stick:before {
content: "\e94a";
}
.mbri-map-pin:before {
content: "\e94b";
}
.mbri-menu:before {
content: "\e94c";
}
.mbri-mobile:before {
content: "\e94d";
}
.mbri-mobile2:before {
content: "\e94e";
}
.mbri-mobirise:before {
content: "\e94f";
}
.mbri-more-horizontal:before {
content: "\e950";
}
.mbri-more-vertical:before {
content: "\e951";
}
.mbri-music:before {
content: "\e952";
}
.mbri-new-file:before {
content: "\e953";
}
.mbri-numbered-list:before {
content: "\e954";
}
.mbri-opened-folder:before {
content: "\e955";
}
.mbri-pages:before {
content: "\e956";
}
.mbri-paper-plane:before {
content: "\e957";
}
.mbri-paperclip:before {
content: "\e958";
}
.mbri-photo:before {
content: "\e959";
}
.mbri-photos:before {
content: "\e95a";
}
.mbri-pin:before {
content: "\e95b";
}
.mbri-play:before {
content: "\e95c";
}
.mbri-plus:before {
content: "\e95d";
}
.mbri-preview:before {
content: "\e95e";
}
.mbri-print:before {
content: "\e95f";
}
.mbri-protect:before {
content: "\e960";
}
.mbri-question:before {
content: "\e961";
}
.mbri-quote-left:before {
content: "\e962";
}
.mbri-quote-right:before {
content: "\e963";
}
.mbri-refresh:before {
content: "\e964";
}
.mbri-responsive:before {
content: "\e965";
}
.mbri-right:before {
content: "\e966";
}
.mbri-rocket:before {
content: "\e967";
}
.mbri-sad-face:before {
content: "\e968";
}
.mbri-sale:before {
content: "\e969";
}
.mbri-save:before {
content: "\e96a";
}
.mbri-search:before {
content: "\e96b";
}
.mbri-setting:before {
content: "\e96c";
}
.mbri-setting2:before {
content: "\e96d";
}
.mbri-setting3:before {
content: "\e96e";
}
.mbri-share:before {
content: "\e96f";
}
.mbri-shopping-bag:before {
content: "\e970";
}
.mbri-shopping-basket:before {
content: "\e971";
}
.mbri-shopping-cart:before {
content: "\e972";
}
.mbri-sites:before {
content: "\e973";
}
.mbri-smile-face:before {
content: "\e974";
}
.mbri-speed:before {
content: "\e975";
}
.mbri-star:before {
content: "\e976";
}
.mbri-success:before {
content: "\e977";
}
.mbri-sun:before {
content: "\e978";
}
.mbri-sun2:before {
content: "\e979";
}
.mbri-tablet:before {
content: "\e97a";
}
.mbri-tablet-vertical:before {
content: "\e97b";
}
.mbri-target:before {
content: "\e97c";
}
.mbri-timer:before {
content: "\e97d";
}
.mbri-to-ftp:before {
content: "\e97e";
}
.mbri-to-local-drive:before {
content: "\e97f";
}
.mbri-touch-swipe:before {
content: "\e980";
}
.mbri-touch:before {
content: "\e981";
}
.mbri-trash:before {
content: "\e982";
}
.mbri-underline:before {
content: "\e983";
}
.mbri-unlink:before {
content: "\e984";
}
.mbri-unlock:before {
content: "\e985";
}
.mbri-up-down:before {
content: "\e986";
}
.mbri-up:before {
content: "\e987";
}
.mbri-update:before {
content: "\e988";
}
.mbri-upload:before {
content: "\e926";
}
.mbri-user:before {
content: "\e98a";
}
.mbri-user2:before {
content: "\e98b";
}
.mbri-users:before {
content: "\e98c";
}
.mbri-video:before {
content: "\e98d";
}
.mbri-video-play:before {
content: "\e98e";
}
.mbri-watch:before {
content: "\e98f";
}
.mbri-website-theme:before {
content: "\e990";
}
.mbri-wifi:before {
content: "\e991";
}
.mbri-windows:before {
content: "\e992";
}
.mbri-zoom-out:before {
content: "\e993";
}
.mbri-redo:before {
content: "\e994";
}
.mbri-undo:before {
content: "\e995";
}

View File

@ -1,160 +0,0 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by IcoMoon</metadata>
<defs>
<font id="mobirise" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
<glyph unicode="&#xe900;" glyph-name="mbri-add-submenu" d="M85.333 874.667c-46.906 0-85.333-38.426-85.333-85.333v-42.667c0-46.908 38.428-85.333 85.333-85.333h682.667c46.906 0 85.333 38.426 85.333 85.333v42.667c0 46.908-38.428 85.333-85.333 85.333h-682.667zM85.333 832h682.667c24.006 0 42.667-18.662 42.667-42.667v-42.667c0-24.004-18.66-42.667-42.667-42.667h-682.667c-24.006 0-42.667 18.662-42.667 42.667v42.667c0 24.004 18.66 42.667 42.667 42.667zM85.333 256.546v-85.333c0.001-11.17 10.164-21.333 21.333-21.333h205.333l-49.333-48c-19.731-19.729 11.111-48.892 29.333-30.669l85.333 85.333c8.198 7.932 8.198 22.737 0 30.669l-85.333 85.333c-17.504 17.506-48.976-11.025-29.333-30.669l49.333-49.331h-184v64c0 28.954-42.667 27.925-42.667 0zM554.667 277.333c-46.906 0-85.333-38.426-85.333-85.333v-42.667c0-46.908 38.428-85.333 85.333-85.333h384c46.906 0 85.333 38.426 85.333 85.333v42.667c0 46.908-38.428 85.333-85.333 85.333h-384zM554.667 234.667h384c24.006 0 42.667-18.662 42.667-42.667v-42.667c0-24.004-18.66-42.667-42.667-42.667h-384c-24.006 0-42.667 18.662-42.667 42.667v42.667c0 24.004 18.66 42.667 42.667 42.667zM85.333 576c-46.906 0-85.333-38.426-85.333-85.333v-42.667c0-46.908 38.428-85.333 85.333-85.333h682.667c46.906 0 85.333 38.426 85.333 85.333v42.667c0 46.908-38.428 85.333-85.333 85.333h-682.667zM85.333 533.333h682.667c24.006 0 42.667-18.662 42.667-42.667v-42.667c0-24.004-18.66-42.667-42.667-42.667h-682.667c-24.006 0-42.667 18.662-42.667 42.667v42.667c0 24.004 18.66 42.667 42.667 42.667z" />
<glyph unicode="&#xe901;" glyph-name="mbri-alert" d="M426.667 0c0-38.185 38.268-64 85.333-64 47.028 0 85.333 25.794 85.333 64 0 28.38-42.667 27.692-42.667 0 0-4.532-12.29-21.333-42.667-21.333-30.339 0-42.667 16.984-42.667 21.333 0 28.328-42.667 27.69-42.667 0zM512 960c-73.101 0-128-51.245-128-106.667 0-29.275 42.667-26.914 42.667 0 0 26.864 32.049 64 85.333 64 53.328 0 85.333-36.871 85.333-64 0-27.857 42.667-28.57 42.667 0 0 55.551-54.943 106.667-128 106.667zM234.647 832h-21.333c-70.945 0-128-57.055-128-128v-21.333c0.158-11.271-10.062-21.333-21.333-21.333s-21.493 10.063-21.333 21.333v21.333c0 94.004 76.663 170.667 170.667 170.667h21.333c14.371 0 21.421-10.667 21.353-21.333s-7.253-21.333-21.353-21.333zM789.333 832h21.333c70.945 0 128-57.055 128-128v-21.333c-0.158-11.271 10.062-21.333 21.333-21.333s21.493 10.063 21.333 21.333v21.333c0 94.004-76.663 170.667-170.667 170.667h-21.333c-14.371 0-21.421-10.667-21.353-21.333s7.253-21.333 21.353-21.333zM512 789.333c-107.856 0-186.893-47.101-236-116s-62.667-157.951-62.667-246.667c0-167.358-44.478-243.878-122.667-326.667-11.107-11.728-2.982-36 16-36h810.667c19.648 0 27.343 24.022 16 36-78.188 82.789-122.667 159.309-122.667 326.667 0 88.716-13.56 177.767-62.667 246.667s-128.144 116-236 116zM512 746.667c95.942 0 159.184-38.196 201.333-97.333s54.667-140.667 54.667-222.667c0-152.364 45.297-240.728 109.333-320h-730.667c64.036 79.272 109.333 167.636 109.333 320 0 82 12.517 163.529 54.667 222.667s105.391 97.333 201.333 97.333z" />
<glyph unicode="&#xe902;" glyph-name="mbri-align-center" d="M21.333 149.333h981.333c29.059 0 27.603-42.667 0-42.667h-981.333c-27.528 0-28.723 42.667 0 42.667zM277.333 362.667h469.333c28.695 0 27.914-42.667 0-42.667h-469.333c-27.77 0-28.544 42.667 0 42.667zM21.333 576h981.333c27.784 0 28.984-42.667 0-42.667h-981.333c-27.931 0-28.398 42.667 0 42.667zM277.333 789.333h469.333c28.099 0 28.124-42.667 0-42.667h-469.333c-27.864 0-28.375 42.667 0 42.667z" />
<glyph unicode="&#xe903;" glyph-name="mbri-align-justify" d="M21.333 149.333h981.333c29.059 0 27.603-42.667 0-42.667h-981.333c-27.528 0-28.723 42.667 0 42.667zM21.333 362.667h981.333c28.695 0 27.914-42.667 0-42.667h-981.333c-27.77 0-28.544 42.667 0 42.667zM21.333 576h981.333c27.784 0 28.984-42.667 0-42.667h-981.333c-27.931 0-28.398 42.667 0 42.667zM21.333 789.333h981.333c28.099 0 28.124-42.667 0-42.667h-981.333c-27.864 0-28.375 42.667 0 42.667z" />
<glyph unicode="&#xe904;" glyph-name="mbri-align-left" d="M21.333 149.333h554.667c29.059 0 27.603-42.667 0-42.667h-554.667c-27.528 0-28.723 42.667 0 42.667zM21.333 362.667h981.333c28.695 0 27.914-42.667 0-42.667h-981.333c-27.77 0-28.544 42.667 0 42.667zM21.333 576h554.667c27.784 0 28.984-42.667 0-42.667h-554.667c-27.931 0-28.398 42.667 0 42.667zM21.333 789.333h981.333c28.099 0 28.124-42.667 0-42.667h-981.333c-27.864 0-28.375 42.667 0 42.667z" />
<glyph unicode="&#xe905;" glyph-name="mbri-align-right" d="M1002.773 149.333h-554.667c-29.059 0-27.603-42.667 0-42.667h554.667c27.528 0 28.723 42.667 0 42.667zM1002.773 362.667h-981.333c-28.695 0-27.914-42.667 0-42.667h981.333c27.77 0 28.544 42.667 0 42.667zM1002.773 576h-554.667c-27.784 0-28.984-42.667 0-42.667h554.667c27.931 0 28.398 42.667 0 42.667zM1002.773 789.333h-981.333c-28.099 0-28.124-42.667 0-42.667h981.333c27.864 0 28.375 42.667 0 42.667z" />
<glyph unicode="&#xe906;" glyph-name="mbri-android" d="M841.416 914.721c-10.532 5.292-23.096 1.39-28.377-9.162l-85.431-170.681c-5.282-10.552-1.055-23.308 9.477-28.599s23.262-1.057 28.544 9.495l85.431 170.681c5.144 10.278 0.888 22.974-9.643 28.266zM182.584 914.721c10.532 5.292 23.096 1.39 28.377-9.162l85.431-170.681c5.282-10.552 1.055-23.308-9.477-28.599s-23.262-1.057-28.544 9.495l-85.431 170.681c-4.948 9.886-0.888 22.974 9.643 28.266zM512 704c-244.14 0-445.554-156.275-508-377.333-13.525-60.778 11.203-92 68-92h880c56.797 0 81.525 31.222 68 92-62.446 221.058-263.86 377.333-508 377.333zM512 661.333c224.144 0 411.111-143.396 468-346.667 6.702-25.013 1.566-37.333-28-37.333h-880c-29.566 0-34.702 12.32-28 37.333 56.889 203.271 243.856 346.667 468 346.667zM64 192c-35.087 0-64-28.913-64-64v-85.333c0-35.087 28.913-64 64-64h896c35.087 0 64 28.913 64 64v85.333c0 35.087-28.913 64-64 64zM64 149.333h896c12.188 0 21.333-9.146 21.333-21.333v-85.333c0-12.188-9.146-21.333-21.333-21.333h-896c-12.188 0-21.333 9.146-21.333 21.333v85.333c0 12.188 9.146 21.333 21.333 21.333zM704 533.333c-35.087 0-64-28.913-64-64v-85.333c0-35.087 28.913-64 64-64s64 28.913 64 64v85.333c0 35.087-28.913 64-64 64zM704 490.667c12.188 0 21.333-9.146 21.333-21.333v-85.333c0-12.188-9.146-21.333-21.333-21.333s-21.333 9.146-21.333 21.333v85.333c0 12.188 9.146 21.333 21.333 21.333zM320 533.333c-35.087 0-64-28.913-64-64v-85.333c0-35.087 28.913-64 64-64s64 28.913 64 64v85.333c0 35.087-28.913 64-64 64zM320 490.667c12.188 0 21.333-9.146 21.333-21.333v-85.333c0-12.188-9.146-21.333-21.333-21.333s-21.333 9.146-21.333 21.333v85.333c0 12.188 9.146 21.333 21.333 21.333z" />
<glyph unicode="&#xe907;" glyph-name="mbri-apple" d="M661.333 960c-118.044 0-192-96-192-192 0.001-11.782 9.552-21.332 21.333-21.333 96 0 192 73.956 192 192-0.001 11.782-9.552 21.332-21.333 21.333zM634.583 911.917c-10.84-62.898-56.782-96.697-109.583-109.583 12.886 52.801 46.685 98.744 109.583 109.583zM341.333 746.667c-69.553 0-135.303-27.983-181.917-85.333s-74.083-142.529-74.083-256c0-114.85 38.431-229.68 88.083-317.083 24.826-43.702 52.444-80.563 80.5-107.333s56.585-44.917 87.417-44.917c46.222 0 77.464 12.262 102 23.167s41.407 19.5 68.667 19.5c27.259 0 44.131-8.595 68.667-19.5s55.778-23.167 102-23.167c24.192 0 46.687 12.165 70.417 29.917s48.322 42.18 72.083 71.25c47.523 58.139 91.691 134.739 112.75 213.333 2.573 9.565-1.776 19.643-10.5 24.333-56.278 30.185-74.083 70.77-74.083 130.5 0 59.613 18.339 100.285 74.167 130.583 8.655 4.708 12.96 14.731 10.417 24.25-15.901 59.344-56.099 105.97-103.5 137.583s-102.183 48.917-151.75 48.917c-46.222 0-73.5-12.917-94.833-23.583s-36.722-19.083-75.833-19.083c-39.111 0-54.5 8.417-75.833 19.083s-48.611 23.583-94.833 23.583zM341.333 704c39.111 0 54.5-8.417 75.833-19.083s48.611-23.583 94.833-23.583c46.222 0 73.5 12.917 94.833 23.583s36.722 19.083 75.833 19.083c39.328 0 87.52-14.697 128.083-41.75 37.558-25.049 66.741-59.606 81.167-102.227-53.641-37.383-81.25-91.967-81.25-154.689 0-62.914 27.366-119.36 81.917-156.712-20.078-67.452-58.523-133.202-100.417-184.455-22.013-26.93-44.647-49.169-64.583-64.083s-37.547-21.417-44.917-21.417c-39.111 0-61.203 9.072-84.667 19.5s-49.259 23.167-86 23.167c-36.741 0-62.536-12.738-86-23.167s-45.556-19.5-84.667-19.5c-11.835 0-33.973 10.32-57.917 33.167s-49.66 56.708-72.833 97.5c-46.347 81.585-82.583 190.802-82.583 296 0 106.577 25.864 181.445 64.583 229.083s90.303 69.583 148.75 69.583z" />
<glyph unicode="&#xe908;" glyph-name="mbri-arrow-down" d="M987.561 697.276l-426.626-426.176c-17.829-17.829 8.034-50.748 30.171-30.151l426.626 426.176c19.106 19.106-11.054 49.267-30.171 30.151zM6.27 667.107l469.275-469.3c18.792-18.792 49.66 10.689 30.184 30.164l-469.275 469.3c-20.063 20.063-49.2-11.149-30.184-30.164z" />
<glyph unicode="&#xe909;" glyph-name="mbri-arrow-next" d="M262.263-57.731c-8.352 8.357-8.35 21.812 0 30.171l426.176 426.626c8.35 8.359 21.799 8.357 30.151 0s8.35-21.812 0-30.171l-426.176-426.626c-8.35-8.359-21.799-8.357-30.151 0zM262.268 953.73c8.356 8.361 21.806 8.358 30.164 0l469.3-469.275c8.358-8.358 8.355-21.823 0-30.184s-21.806-8.358-30.164 0l-469.3 469.275c-8.359 8.358-8.356 21.823 0 30.184z" />
<glyph unicode="&#xe90a;" glyph-name="mbri-arrow-prev" d="M761.737-57.731c8.352 8.357 8.355 21.817 0 30.171l-426.51 426.46c-8.355 8.354-21.799 8.357-30.151 0s-8.355-21.817 0-30.171l426.51-426.46c8.355-8.354 21.799-8.357 30.151 0zM761.732 953.73c-8.356 8.361-21.806 8.358-30.164 0l-469.3-469.275c-8.358-8.358-8.356-21.823 0-30.184s21.806-8.358 30.164 0l469.3 469.275c8.359 8.358 8.356 21.823 0 30.184z" />
<glyph unicode="&#xe90b;" glyph-name="mbri-arrow-up" d="M987.561 198.263l-426.626 426.176c-17.829 17.829 8.034 50.748 30.171 30.151l426.626-426.176c19.106-19.106-11.054-49.267-30.171-30.151zM6.27 228.432l469.275 469.3c18.792 18.792 49.66-10.689 30.184-30.164l-469.275-469.3c-20.063-20.063-49.2 11.149-30.184 30.164z" />
<glyph unicode="&#xe90c;" glyph-name="mbri-bold" d="M213.36 938.406l-0.026-981.073c0.001-11.17 10.164-21.333 21.333-21.333h277.333c187.966 0 341.36 142.272 341.36 320 0 96.465-48.669 179.985-120 238.409 44.952 49.907 77.307 116.105 77.307 188.258 0 153.276-124.060 277.333-277.333 277.333h-298.667c-14.841 0-21.307-9.476-21.307-21.594zM256 917.333h277.333c130.374 0 234.667-104.294 234.667-234.667 0-65.711-31.735-130.731-75.974-173.594-9.373-8.734-7.975-26.206 2.667-33.335 71.118-50.846 116-130.010 116-219.738 0-153.195-132.099-277.163-298.693-277.333h-256zM341.333 426.667v-341.333c0.001-11.17 10.164-21.333 21.333-21.333h170.667c105.999 0 192 86.003 192 192 0 106.001-86.001 192-192 192h-170.667c-14.042 0-21.333-9.822-21.333-21.333zM384 405.333h149.333c83.1 0 149.333-66.231 149.333-149.333 0-83.098-66.234-149.333-149.333-149.333h-149.333zM341.36 810.667l-0.026-256c0.001-11.17 10.164-21.333 21.333-21.333h160.026c87.39 0 159.974 66.018 159.974 149.333 0 83.319-72.584 149.338-159.974 149.333h-160.026c-13.248 0-21.307-10.155-21.307-21.333zM384.026 789.333h138.667c66.252 0 117.307-48.158 117.307-106.667 0-58.505-51.055-106.667-117.307-106.667h-138.693z" />
<glyph unicode="&#xe90d;" glyph-name="mbri-bookmark" d="M106.667 960c-35.090 0-64-28.91-64-64v-917.333c0-8.91 2.028-18.885 8-26.667s16.087-12.563 25.333-14.667c18.493-4.207 36.899 1.882 61.333 12l374.5 154.667 374.833-154.667c25.935-9.451 42.84-16.207 61.333-12 9.247 2.103 19.362 6.885 25.333 14.667s8 17.757 8 26.667v917.333c0 35.090-28.91 64-64 64zM106.667 917.333h810.667c12.184 0 21.333-9.136 21.333-21.333v-917.333c-2.912-0.663-14.556 0.488-33.333 9.333l-384.167 158.667c-5.892 2.866-12.775 2.866-18.667 0l-383.833-158.667c-18.778-8.845-30.421-9.996-33.333-9.333v917.333c0 12.198 9.149 21.333 21.333 21.333zM234.667 789.333c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h554.667c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333zM234.667 661.333c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h554.667c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333zM234.667 533.333c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h554.667c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333z" />
<glyph unicode="&#xe90e;" glyph-name="mbri-bootstrap" d="M64 960c-35.087 0-64-28.913-64-64v-896c0-35.087 28.913-64 64-64h896c35.087 0 64 28.913 64 64v896c0 35.087-28.913 64-64 64zM64 917.333h896c12.188 0 21.333-9.146 21.333-21.333v-896c0-12.188-9.146-21.333-21.333-21.333h-896c-12.188 0-21.333 9.146-21.333 21.333v896c0 12.188 9.146 21.333 21.333 21.333zM341.333 725.333v-512c0.001-11.17 10.164-21.332 21.333-21.333h128c46.298 0 93.854 10.927 130.667 38.667s61.333 73.381 61.333 132c0 59.805-25.36 92.836-38.667 108 12.619 16.239 38.667 47.99 38.667 105.333 0 58.367-28.086 102.787-64 130.667s-81.702 40-128 40h-128c-15.56 0-21.333-9.219-21.333-21.333zM384 704c11.879-0.079 35.509 0 106.667 0 39.036 0 76.457-10.32 102.667-30.667s46.667-49.937 46.667-97.333c0-59.633-36-92-36-92-8.197-7.931-8.197-22.736 0-30.667 0 0 36-31.821 36-90.667 0-47.144-18.146-76.847-45.333-97.333s-64.964-30.667-104-30.667c-71.158 0-94.788 0.078-106.667 0zM426.667 640v-128c0.001-11.17 10.164-21.332 21.333-21.333h64c19.186 0 39.145 5.862 56 20s29.333 37.298 29.333 65.333c0 27.875-12.519 51.186-29.333 65.333s-36.805 20-56 20h-64c-13.315 0-21.333-7.343-21.333-21.333zM469.333 618.667h42.667c9.516 0 21.326-3.929 29.333-10.667s13.333-15.414 13.333-32c0-17.027-5.469-25.403-13.333-32s-19.396-10.667-29.333-10.667h-42.667zM426.667 426.667v-128c0.001-11.17 10.164-21.332 21.333-21.333h64c19.195 0 39.185 5.853 56 20s29.333 37.459 29.333 65.333c0 28.035-12.479 51.195-29.333 65.333s-36.814 20-56 20h-64c-12.831 0-21.333-9.344-21.333-21.333zM469.333 405.333h42.667c9.938 0 21.469-4.070 29.333-10.667s13.333-14.973 13.333-32c0-16.586-5.326-25.263-13.333-32s-19.817-10.667-29.333-10.667h-42.667z" />
<glyph unicode="&#xe90f;" glyph-name="mbri-briefcase" d="M91.502 613.401c-7.739-7.729-9.173-21.828 1.334-32.324l169.893-169.16c23.982-24.004 49.056-40.854 78.604-46.624v-23.978c0-11.808 9.511-21.314 21.333-21.314s21.333 9.516 21.333 21.324v21.343h256v-21.351c0-11.808 9.51-21.314 21.333-21.314s21.229 9.507 21.333 21.314l0.213 23.978c29.548 5.771 54.712 22.62 78.694 46.624l169.391 169.18c9.59 9.58 10.437 22.888 1.344 31.971s-21.679 6.335-30.688-2.664l-169.394-169.182c-18.558-18.575-33.221-28.871-49.561-33.303l0.221 18.746c0.139 11.807-9.731 21.333-21.554 21.333s-21.333-9.525-21.333-21.333v-21.333h-256v21.333c0 11.808-9.511 21.333-21.333 21.333s-21.333-9.525-21.333-21.333v-18.746c-16.34 4.433-30.703 14.728-49.261 33.303l-169.893 169.166c-9.013 9.002-22.938 10.741-30.677 3.012zM362.667 874.667c-35.087 0-64-28.913-64-64v-42.667c-0.159-11.271 10.062-21.333 21.333-21.333s21.493 10.063 21.333 21.333v42.667c0 12.188 9.146 21.333 21.333 21.333h298.667c12.188 0 21.333-9.146 21.333-21.333v-42.667c-0.158-11.271 10.062-21.333 21.333-21.333s21.493 10.063 21.333 21.333v42.667c0 35.087-28.913 64-64 64zM64 704c-35.087 0-64-28.913-64-64v-554.667c0-35.087 28.913-64 64-64h896c35.087 0 64 28.913 64 64v554.667c0 35.087-28.913 64-64 64zM64 661.333h896c12.188 0 21.333-9.146 21.333-21.333v-554.667c0-12.188-9.146-21.333-21.333-21.333h-896c-12.188 0-21.333 9.146-21.333 21.333v554.667c0 12.188 9.146 21.333 21.333 21.333z" />
<glyph unicode="&#xe910;" glyph-name="mbri-browse" d="M64 832c-35.087 0-64-28.913-64-64v-640c0-35.087 28.913-64 64-64h896c35.087 0 64 28.913 64 64v640c0 35.087-28.913 64-64 64h-896zM64 789.333h896c12.188 0 21.333-9.146 21.333-21.333v-640c0-12.188-9.146-21.333-21.333-21.333h-896c-12.188 0-21.333 9.146-21.333 21.333v640c0 12.188 9.146 21.333 21.333 21.333zM106.667 746.667c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333c11.782 0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333zM192 746.667c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333c11.782 0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333zM277.333 746.667c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333c11.782 0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333zM106.667 661.333c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h810.667c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333h-810.667z" />
<glyph unicode="&#xe911;" glyph-name="mbri-bulleted-list" d="M1002.322 106.667h-682.667c-28.189 0-27.779 42.667 0 42.667h682.667c28.086 0 28.020-42.667 0-42.667zM1002.667 448h-682.667c-28.189 0-27.779 42.667 0 42.667h682.667c28.086 0 28.020-42.667 0-42.667zM106.667 234.667c-58.724 0-106.667-47.94-106.667-106.667s47.942-106.667 106.667-106.667c58.724 0 106.667 47.94 106.667 106.667s-47.942 106.667-106.667 106.667zM106.667 192c35.825 0 64-28.177 64-64s-28.175-64-64-64c-35.825 0-64 28.177-64 64s28.175 64 64 64zM106.667 575.454c-58.724 0-106.667-47.94-106.667-106.667s47.942-106.667 106.667-106.667c58.724 0 106.667 47.94 106.667 106.667s-47.942 106.667-106.667 106.667zM106.667 532.787c35.825 0 64-28.177 64-64s-28.175-64-64-64c-35.825 0-64 28.177-64 64s28.175 64 64 64zM106.667 917.333c-58.724 0-106.667-47.94-106.667-106.667s47.942-106.667 106.667-106.667c58.724 0 106.667 47.94 106.667 106.667s-47.942 106.667-106.667 106.667zM106.667 874.667c35.825 0 64-28.177 64-64s-28.175-64-64-64c-35.825 0-64 28.177-64 64s28.175 64 64 64zM1002.667 789.333h-682.667c-28.189 0-27.779 42.667 0 42.667h682.667c28.086 0 28.020-42.667 0-42.667z" />
<glyph unicode="&#xe912;" glyph-name="mbri-calendar" d="M234.667 874.667c-11.819 0-21.333-9.515-21.333-21.333v-170.667c0-11.819 9.515-21.333 21.333-21.333s21.333 9.515 21.333 21.333v170.667c0 11.819-9.515 21.333-21.333 21.333zM789.333 874.667c-11.819 0-21.333-9.515-21.333-21.333v-170.667c0-11.819 9.515-21.333 21.333-21.333s21.333 9.515 21.333 21.333v170.667c0 11.819-9.515 21.333-21.333 21.333zM64 789.333c-35.087 0-64-28.913-64-64v-640c0-35.087 28.913-64 64-64h896c35.087 0 64 28.913 64 64v640c0 35.087-28.913 64-64 64h-85.333c-14.266 0-21.333-10.565-21.333-21.333s6.909-21.333 21.333-21.333h85.333c12.188 0 21.333-9.146 21.333-21.333v-640c0-12.188-9.146-21.333-21.333-21.333h-896c-12.188 0-21.333 9.146-21.333 21.333v640c0 12.188 9.146 21.333 21.333 21.333h85.333c14.342 0 21.438 10.667 21.333 21.333s-7.408 21.333-21.333 21.333h-85.333zM320 789.333c-13.781 0-21.333-10.565-21.333-21.333s6.909-21.537 21.333-21.333h384c12.71 0 21.333 10.565 21.333 21.333s-6.367 21.333-21.333 21.333h-384zM149.333 533.333c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h128c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333h-128zM448 533.333c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h128c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333h-128zM746.667 533.333c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h128c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333h-128zM149.333 320c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h128c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333h-128zM448 320c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h128c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333h-128zM746.667 320c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h128c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333h-128z" />
<glyph unicode="&#xe913;" glyph-name="mbri-camera" d="M149.333 874.667c-35.087 0-64-28.913-64-64v-42.667c-0.204-14.425 10.565-21.333 21.333-21.333s21.537 6.909 21.333 21.333v42.667c0 12.188 9.146 21.333 21.333 21.333h170.667c12.188 0 21.333-9.146 21.333-21.333v-42.667c-0.204-14.425 10.565-21.333 21.333-21.333s21.537 6.909 21.333 21.333v42.667c0 35.087-28.913 64-64 64h-170.667zM64 704c-35.087 0-64-28.913-64-64v-554.667c0-35.087 28.913-64 64-64h896c35.087 0 64 28.913 64 64v554.667c0 35.087-28.913 64-64 64h-896zM64 661.333h896c12.188 0 21.333-9.146 21.333-21.333v-554.667c0-12.188-9.146-21.333-21.333-21.333h-896c-12.188 0-21.333 9.146-21.333 21.333v554.667c0 12.188 9.146 21.333 21.333 21.333zM789.333 618.667c-35.087 0-64-28.913-64-64s28.913-64 64-64h85.333c35.087 0 64 28.913 64 64s-28.913 64-64 64h-85.333zM512 576c-117.568 0-213.333-95.765-213.333-213.333s95.765-213.333 213.333-213.333c117.568 0 213.333 95.765 213.333 213.333s-95.765 213.333-213.333 213.333zM789.333 576h85.333c12.188 0 21.333-9.146 21.333-21.333s-9.146-21.333-21.333-21.333h-85.333c-12.188 0-21.333 9.146-21.333 21.333s9.146 21.333 21.333 21.333zM512 533.333c94.509 0 170.667-76.157 170.667-170.667s-76.157-170.667-170.667-170.667c-94.509 0-170.667 76.157-170.667 170.667s76.157 170.667 170.667 170.667z" />
<glyph unicode="&#xe914;" glyph-name="mbri-cart-add" d="M21.333 831.997c-14.425 0.204-21.333-10.565-21.333-21.333s6.909-21.537 21.333-21.333h111l102.833-452.75c0.078-0.277 0.161-0.557 0.25-0.833 3.642-13.528 9.283-27.097 19.417-38.5s26.045-19.917 43.833-19.917h512c17.64 0 33.636 7.941 44.333 19.417s16.892 25.937 19.417 41.083l21.333 128c4.671 28.114-37.503 35.115-42.167 7l-21.333-128c-2.775-16.651-10.86-24.833-21.583-24.833h-512c-16.016 0.465-18.726 14.449-22 26.667l-106.5 468.75c-2.22 9.715-10.868 16.599-20.833 16.583zM874.667 831.997c-82.222 0-149.333-67.111-149.333-149.333s67.112-149.333 149.333-149.333c82.222 0 149.333 67.112 149.333 149.333s-67.112 149.333-149.333 149.333zM874.667 789.33c59.163 0 106.667-47.504 106.667-106.667s-47.504-106.667-106.667-106.667c-59.163 0-106.667 47.504-106.667 106.667s47.504 106.667 106.667 106.667zM874.667 746.664c-11.819 0-21.333-9.515-21.333-21.333v-21.333h-21.333c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h21.333v-21.333c0-11.819 9.515-21.333 21.333-21.333s21.333 9.515 21.333 21.333v21.333h21.333c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333h-21.333v21.333c0 11.819-9.515 21.333-21.333 21.333zM277.333 703.997c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h384c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333zM320 575.997c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h384c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333zM362.667 447.997c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h384c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333zM341.333 234.664c-46.876 0-85.333-38.458-85.333-85.333s38.458-85.333 85.333-85.333c46.876 0 85.333 38.458 85.333 85.333s-38.458 85.333-85.333 85.333zM725.333 234.664c-46.876 0-85.333-38.458-85.333-85.333s38.458-85.333 85.333-85.333c46.876 0 85.333 38.458 85.333 85.333s-38.458 85.333-85.333 85.333zM341.333 191.997c23.817 0 42.667-18.85 42.667-42.667s-18.85-42.667-42.667-42.667c-23.817 0-42.667 18.85-42.667 42.667s18.85 42.667 42.667 42.667zM725.333 191.997c23.817 0 42.667-18.85 42.667-42.667s-18.85-42.667-42.667-42.667c-23.817 0-42.667 18.85-42.667 42.667s18.85 42.667 42.667 42.667z" />
<glyph unicode="&#xe915;" glyph-name="mbri-cart-full" d="M618.667 874.664c-5.543-0.087-11.167-2.329-15.083-6.25l-112.833-112.667-70.167 70.083c-8.317 8.277-21.766 8.277-30.083 0l-85.25-85.167c-20.226-18.041 11.861-50.442 30.083-30.083l70.167 70.083 70.25-70.083c8.317-8.277 21.766-8.277 30.083 0l112.833 112.667 112.833-112.667c8.317-8.277 21.766-8.277 30.083 0l70.417 70.083 70-70.083c18.331-20.48 50.402 11.959 30.083 30.083l-85.25 85.167c-8.317 8.277-21.766 8.277-30.083 0l-70.083-70.083-112.917 112.667c-4.079 4.084-9.309 6.339-15.083 6.25zM21.333 789.331c-14.425 0.204-21.333-10.565-21.333-21.333s6.909-21.537 21.333-21.333h111l102.833-452.75c0.078-0.277 0.161-0.557 0.25-0.833 3.642-13.528 9.283-27.097 19.417-38.5s26.045-19.917 43.833-19.917h574.417c17.821 0 33.718 8.695 43.75 20.083s15.608 24.768 19.417 38l86 298.667c5.773 20.056-3.352 39.816-16.083 51.5s-28.346 18.417-46.167 18.417h-682.667c-14.425 0.204-21.333-10.565-21.333-21.333s6.909-21.537 21.333-21.333h681.75c15.117 0 24.303-7.442 22.167-15.417l-86-298.667c-5.306-19.802-12.185-27.25-22.167-27.25h-574.417c-15.005 0-18.052 11.933-22 26.667l-106.5 468.75c-2.22 9.715-10.868 16.599-20.833 16.583zM320 533.331c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h554.667c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333zM362.667 405.331c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h469.333c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333zM341.333 191.997c-46.876 0-85.333-38.458-85.333-85.333s38.458-85.333 85.333-85.333c46.876 0 85.333 38.458 85.333 85.333s-38.458 85.333-85.333 85.333zM810.667 191.997c-46.876 0-85.333-38.458-85.333-85.333s38.458-85.333 85.333-85.333c46.876 0 85.333 38.458 85.333 85.333s-38.458 85.333-85.333 85.333zM341.333 149.331c23.817 0 42.667-18.85 42.667-42.667s-18.85-42.667-42.667-42.667c-23.817 0-42.667 18.85-42.667 42.667s18.85 42.667 42.667 42.667zM810.667 149.331c23.817 0 42.667-18.85 42.667-42.667s-18.85-42.667-42.667-42.667c-23.817 0-42.667 18.85-42.667 42.667s18.85 42.667 42.667 42.667z" />
<glyph unicode="&#xe916;" glyph-name="mbri-cash" d="M234.667 789.333c-14.425 0.204-21.333-10.565-21.333-21.333s6.909-21.537 21.333-21.333h725.333c12.188 0 21.333-9.146 21.333-21.333v-426.667c-0.205-14.425 10.565-21.333 21.333-21.333s21.537 6.909 21.333 21.333v426.667c0 35.087-28.913 64-64 64zM149.333 704c-14.425 0.204-21.333-10.565-21.333-21.333s6.909-21.537 21.333-21.333h725.333c12.188 0 21.333-9.146 21.333-21.333v-426.667c-0.205-14.425 10.565-21.333 21.333-21.333s21.537 6.909 21.333 21.333v426.667c0 35.087-28.913 64-64 64zM64 618.667c-35.087 0-64-28.913-64-64v-426.667c0-35.087 28.913-64 64-64h725.333c35.087 0 64 28.913 64 64v426.667c0 35.087-28.913 64-64 64zM64 576h725.333c12.188 0 21.333-9.146 21.333-21.333v-426.667c0-12.188-9.146-21.333-21.333-21.333h-725.333c-12.188 0-21.333 9.146-21.333 21.333v426.667c0 12.188 9.146 21.333 21.333 21.333zM106.667 533.333c-11.782-0.001-21.332-9.552-21.333-21.333v-85.333c-0.204-14.425 10.565-21.333 21.333-21.333s21.537 6.909 21.333 21.333v64h64c14.425-0.204 21.333 10.565 21.333 21.333s-6.909 21.537-21.333 21.333zM405.333 533.333c-105.786 0-192-86.214-192-192s86.214-192 192-192c105.786 0 192 86.214 192 192s-86.214 192-192 192zM661.333 490.667h64v-64c-0.205-14.425 10.565-21.333 21.333-21.333s21.537 6.909 21.333 21.333v85.333c-0.001 11.782-9.552 21.332-21.333 21.333h-85.333c-14.833 0-21.333-8.917-21.333-21.333s5.833-21.333 21.333-21.333zM405.333 490.667c82.727 0 149.333-66.606 149.333-149.333s-66.606-149.333-149.333-149.333c-82.727 0-149.333 66.606-149.333 149.333s66.606 149.333 149.333 149.333zM405.333 448c-35.001 0-64-28.994-64-64s28.999-64 64-64c11.938 0 21.333-9.064 21.333-21.333s-9.395-21.333-21.333-21.333h-42.667c-14.425 0.205-21.333-10.565-21.333-21.333s6.909-21.537 21.333-21.333h42.667c35.001 0 64 28.994 64 64s-28.999 64-64 64c-11.938 0-21.333 9.064-21.333 21.333s9.395 21.333 21.333 21.333h42.667c14.425-0.205 21.333 10.565 21.333 21.333s-6.909 21.537-21.333 21.333zM106.667 277.333c-12.043 0.188-21.522-9.29-21.333-21.333v-85.333c0.001-11.782 9.552-21.332 21.333-21.333h85.333c14.425-0.204 21.333 10.565 21.333 21.333s-6.909 21.537-21.333 21.333h-64v64c0.184 11.782-9.551 21.149-21.333 21.333zM746.667 277.333c-11.782-0.183-21.518-9.551-21.333-21.333v-64h-64c-14.425 0.205-21.333-10.565-21.333-21.333s6.909-21.537 21.333-21.333h85.333c11.782 0.001 21.332 9.552 21.333 21.333v85.333c0.188 12.043-9.29 21.522-21.333 21.333z" />
<glyph unicode="&#xe917;" glyph-name="mbri-change-style" d="M170.667 234.667c-30.501 0-58.868-8.954-82.417-27.583-23.586-18.658-45.583-48.779-45.583-79.083v-85.333c0-26.894-15.354-51.517-35.5-69.333-13.405-13.405-7.167-37.333 14.167-37.333h42.667c49.862 1.531 103.678 8.589 150.25 35.5 23.356 13.496 44.527 31.883 60 55.167 15.535 23.377 24.417 50.974 24.417 80 0 33.544-14.373 66.278-38.083 89.917-23.7 23.628-56.515 38.083-89.917 38.083zM170.667 192c22.148-0.512 44.107-10.071 59.75-25.667 15.632-15.585 25.583-38.333 25.583-59.667 0-19.247-6.15-39.588-17.333-56.417-11.245-16.922-27.309-31.177-45.75-41.833-36.758-21.241-82.371-28.249-128.667-29.75 11.099 19.112 21.083 41.685 21.083 64v85.333c0 19.293 14.022 33.554 29.333 45.667 15.349 12.142 36.201 18.791 56 18.333zM1002.667 960c-3.376 0.059-6.217-0.683-9.25-2.167-192.024-92.8-372.971-208.5-537.667-344-39.276-32.313-79.192-66.993-110.417-110.75-29.314-41.080-46.667-92.408-46.667-140.417 0-34.108 14.296-66.967 38.333-90.667 23.623-23.29 56.021-37.333 89.667-37.333 47.596 0 98.909 15.911 140.25 44.833 44.225 30.94 78.766 71.245 110.917 110.667 135.055 165.594 250.751 346.902 344 539.167 6.8 13.97-3.635 30.29-19.167 30.667zM947.417 883.417c-85.576-164.803-185.22-322.431-302.583-466.333-31.621-38.771-63.966-75.766-102.417-102.667-33.51-23.444-78.013-37.083-115.75-37.083-21.448 0-44.058 9.611-59.667 25-15.779 15.557-25.667 38.528-25.667 60.333 0 37.325 14.697 81.992 38.667 115.583 27.366 38.35 64.299 70.811 102.917 102.583 143.031 117.676 300.062 217.339 464.5 302.583z" />
<glyph unicode="&#xe918;" glyph-name="mbri-chat" d="M64 917.333c-35.087 0-64-28.913-64-64v-640c0-35.087 28.913-64 64-64h106.667v-149.333c0.005-11.78 9.555-21.327 21.335-21.327 5.889 0 11.221 2.386 15.081 6.244l164.417 164.417h588.5c35.087 0 64 28.913 64 64v640c0 35.087-28.913 64-64 64h-896zM64 874.667h896c12.188 0 21.333-9.146 21.333-21.333v-640c0-12.188-9.146-21.333-21.333-21.333h-597.333c-5.891-0.001-11.223-2.389-15.083-6.25l-134.25-134.25v119.167c-0.001 11.782-9.552 21.332-21.333 21.333h-128c-12.188 0-21.333 9.146-21.333 21.333v640c0 12.188 9.146 21.333 21.333 21.333zM149.333 746.667c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h725.333c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333h-725.333zM149.333 618.667c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h725.333c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333h-725.333zM149.333 490.667c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h725.333c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333h-725.333z" />
<glyph unicode="&#xe919;" glyph-name="mbri-clock" d="M128 469.333c0-11.782-9.551-21.333-21.333-21.333s-21.333 9.551-21.333 21.333c0 11.782 9.551 21.333 21.333 21.333s21.333-9.551 21.333-21.333zM512 85.333c0-11.782-9.551-21.333-21.333-21.333s-21.333 9.551-21.333 21.333c0 11.782 9.551 21.333 21.333 21.333s21.333-9.551 21.333-21.333zM896 469.333c0-11.782-9.551-21.333-21.333-21.333s-21.333 9.551-21.333 21.333c0 11.782 9.551 21.333 21.333 21.333s21.333-9.551 21.333-21.333zM512 853.333c0-11.782-9.551-21.333-21.333-21.333s-21.333 9.551-21.333 21.333c0 11.782 9.551 21.333 21.333 21.333s21.333-9.551 21.333-21.333zM490.667 789.333c-11.819 0-21.333-9.515-21.333-21.333v-238.667c-24.705-8.895-42.667-32.401-42.667-60 0-35.094 28.906-64 64-64 27.599 0 51.105 17.961 60 42.667h153.333c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333h-153.333c-6.48 17.996-20.671 32.187-38.667 38.667v238.667c0 11.819-9.515 21.333-21.333 21.333zM490.667 490.667c12.035 0 21.333-9.299 21.333-21.333s-9.299-21.333-21.333-21.333c-12.035 0-21.333 9.299-21.333 21.333s9.299 21.333 21.333 21.333zM490.667 960c-270.735 0-490.667-219.932-490.667-490.667s219.932-490.667 490.667-490.667c270.735 0 490.667 219.932 490.667 490.667s-219.932 490.667-490.667 490.667zM490.667 917.333c247.676 0 448-200.324 448-448s-200.324-448-448-448c-247.676 0-448 200.324-448 448s200.324 448 448 448z" />
<glyph unicode="&#xe91a;" glyph-name="mbri-close" d="M1017.515 953.898c-8.457 8.197-21.959 7.986-30.156-0.471l-426.486-426.448c-19.124-18.589 10.944-49.364 30.156-30.153l426.486 426.448c8.645 8.378 8.645 22.247 0 30.625zM463.102 399.533c-8.457 8.197-21.959 7.986-30.156-0.471l-426.486-426.448c-19.602-19.053 10.869-49.993 30.156-30.154l426.486 426.448c8.645 8.378 8.645 22.246 0 30.625zM36.617 953.45c-18.688 18.792-49.422-10.76-30.157-30.154l980.921-980.836c19.603-20.009 50.001 10.387 30.157 30.154z" />
<glyph unicode="&#xe91b;" glyph-name="mbri-cloud" d="M568.5 789.333c-54.641 0-109.16-10.792-158.083-35.083-61.52-30.546-111.422-75.363-144.333-135.583-70.221 2.857-140.761-27.192-190.75-76.833-53.354-52.983-81.189-129.365-74.333-204.25 5.424-59.25 32.128-115.838 74.333-157.75 42.208-41.914 99.148-68.115 158.417-73.124 0.61-0.055 1.221-0.081 1.833-0.085l596.417 0.041c20.018 0.001 41.141 0.137 63.167 4.333 22.046 4.201 43.738 12.377 62.917 25.583 19.202 13.222 35.044 30.879 46.167 51.25 11.086 20.304 17.303 42.759 19.167 65.333 3.63 43.958-9.357 88.417-35.917 123.583-23.172 30.681-54.773 51.22-91.5 62.167 3.015 77.19-20.458 154.932-67.083 216.667-50.018 66.227-124.7 112.602-206.25 128-17.872 3.377-35.979 5.752-54.167 5.752zM567.5 746.667c16.177 0 31.757-2.142 47.333-5.083 70.809-13.37 136.655-54.165 180.083-111.667s64.677-131.484 58.167-203.25c-0.975-10.858 6.392-19.204 17.083-21.333 32.639-6.437 63.267-27.68 83.333-54.25 20.068-26.571 30.154-61.271 27.417-94.417-1.408-17.048-6.2-33.742-14.167-48.333-7.93-14.524-19.29-27.258-32.833-36.583-13.567-9.342-29.741-15.676-46.75-18.917-17.029-3.245-35.428-3.5-55.167-3.5h-595.25c-48.895 4.216-96.597 26.255-131.417 60.833-34.904 34.661-57.351 82.282-61.833 131.25-5.644 61.656 17.897 126.452 61.833 170.083 43.94 43.634 108.878 70.575 170.5 64.5 8.81-0.853 17.231 2.701 21.167 10.629 28.25 56.669 75.697 101.292 132.417 129.455 42.541 21.122 90.496 30.583 138.083 30.583z" />
<glyph unicode="&#xe91c;" glyph-name="mbri-code" d="M672.206 743.685c-10.128 6.005-23.208 2.665-29.215-7.46l-341.16-554.125c-13.934-22.67 21.339-46.745 36.344-22.324l341.16 554.125c6.464 10.159 3.235 23.651-7.129 29.784zM773.697 654.58c8.006 8.6 21.461 9.1 30.083 1.118l213.172-191.851c9.397-8.466 9.397-23.205 0-31.671l-213.113-191.792c-20.188-18.167-48.835 13.483-28.552 31.73l195.511 175.886-195.511 176.027c-9.052 7.913-9.772 21.743-1.59 30.552zM250.303 654.58c-8.006 8.6-21.461 9.1-30.083 1.118l-213.172-191.851c-9.397-8.466-9.397-23.205 0-31.671l213.113-191.792c20.199-18.209 49.284 13.112 28.552 31.73l-195.511 175.886 195.511 176.027c9.052 7.913 9.772 21.743 1.59 30.552z" />
<glyph unicode="&#xe91d;" glyph-name="mbri-contact-form" d="M149.333 533.333c-35.087 0-64-28.913-64-64v-170.667c0-35.087 28.913-64 64-64h128c35.087 0 64 28.913 64 64v170.667c0 35.087-28.913 64-64 64h-128zM149.333 490.667h128c12.188 0 21.333-9.146 21.333-21.333v-170.667c0-12.188-9.146-21.333-21.333-21.333h-128c-12.188 0-21.333 9.146-21.333 21.333v170.667c0 12.188 9.146 21.333 21.333 21.333zM405.333 277.333h469.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-469.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM234.667 874.667c-11.819 0-21.333-9.515-21.333-21.333v-170.667c0-11.819 9.515-21.333 21.333-21.333s21.333 9.515 21.333 21.333v170.667c0 11.819-9.515 21.333-21.333 21.333zM789.333 874.667c-11.819 0-21.333-9.515-21.333-21.333v-170.667c0-11.819 9.515-21.333 21.333-21.333s21.333 9.515 21.333 21.333v170.667c0 11.819-9.515 21.333-21.333 21.333zM64 789.333c-35.087 0-64-28.913-64-64v-640c0-35.087 28.913-64 64-64h896c35.087 0 64 28.913 64 64v640c0 35.087-28.913 64-64 64h-85.333c-14.266 0-21.333-10.565-21.333-21.333s6.909-21.333 21.333-21.333h85.333c12.188 0 21.333-9.146 21.333-21.333v-640c0-12.188-9.146-21.333-21.333-21.333h-896c-12.188 0-21.333 9.146-21.333 21.333v640c0 12.188 9.146 21.333 21.333 21.333h85.333c14.342 0 21.438 10.667 21.333 21.333s-7.408 21.333-21.333 21.333zM320 789.333c-13.781 0-21.333-10.565-21.333-21.333s6.909-21.537 21.333-21.333h384c12.71 0 21.333 10.565 21.333 21.333s-6.367 21.333-21.333 21.333zM405.333 533.333c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h469.333c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333zM405.333 405.333c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h469.333c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333z" />
<glyph unicode="&#xe91e;" glyph-name="mbri-credit-card" d="M768 320c-46.892 0.030-85.333-38.458-85.333-85.333s38.441-85.363 85.333-85.333c15.775 0.010 29.401 8.299 42.667 16.417 13.265-8.118 26.892-16.407 42.667-16.417 46.892-0.030 85.333 38.458 85.333 85.333s-38.441 85.363-85.333 85.333c-15.775-0.010-29.401-8.299-42.667-16.417-13.265 8.118-26.892 16.407-42.667 16.417zM768 277.333c10.471-0.007 20.59-3.877 28.417-10.917 8.107-7.275 20.393-7.275 28.5 0 7.826 7.040 17.946 10.91 28.417 10.917 23.8 0.015 42.667-18.85 42.667-42.667s-18.866-42.682-42.667-42.667c-10.471 0.007-20.59 3.877-28.417 10.917-8.107 7.275-20.393 7.275-28.5 0-7.826-7.040-17.946-10.91-28.417-10.917-23.8-0.015-42.667 18.85-42.667 42.667s18.866 42.682 42.667 42.667zM64 832c-35.087 0-64-28.913-64-64v-426.667c0-35.087 28.913-64 64-64h42.667c29.35 0 27.183 42.667 0 42.667h-42.667c-12.188 0-21.333 9.146-21.333 21.333v192h64c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333h-64v128h768v-21.333c0-28.519 42.667-27.86 42.667 0v85.333c0 35.087-28.913 64-64 64zM64 789.333h725.333c12.188 0 21.333-9.146 21.333-21.333v-21.333h-768v21.333c0 12.188 9.146 21.333 21.333 21.333zM533.333 234.667h42.667c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-42.667c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM405.333 234.667h42.667c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-42.667c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM277.333 234.667h42.667c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-42.667c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM490.667 448h426.667c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-426.667c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM704 533.333h213.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-213.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM490.667 533.333h128c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-128c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM277.333 533.333c-11.782-0.001-21.332-9.552-21.333-21.333v-170.667c0.001-11.782 9.552-21.332 21.333-21.333h128c11.782 0.001 21.332 9.552 21.333 21.333v170.667c-0.001 11.782-9.552 21.332-21.333 21.333zM298.667 490.667h85.333v-128h-85.333zM234.667 618.667c-35.087 0-64-28.913-64-64v-426.667c0-35.087 28.913-64 64-64h725.333c35.087 0 64 28.913 64 64v426.667c0 35.087-28.913 64-64 64zM234.667 576h725.333c12.188 0 21.333-9.146 21.333-21.333v-426.667c0-12.188-9.146-21.333-21.333-21.333h-725.333c-12.188 0-21.333 9.146-21.333 21.333v426.667c0 12.188 9.146 21.333 21.333 21.333z" />
<glyph unicode="&#xe91f;" glyph-name="mbri-cursor-click" d="M133.984 70.453c-8.158 8.417-7.948 21.854 0.469 30.012l42.439 42.439c19.616 19.616 49.543-10.481 30.012-30.012l-42.439-42.439c-8.339-8.604-22.142-8.604-30.481 0zM816.651 753.12c-8.158 8.417-7.948 21.854 0.469 30.012l42.439 42.439c18.672 19.207 49.134-11.422 30.012-30.012l-42.439-42.439c-8.339-8.604-22.142-8.604-30.481 0zM133.984 825.547c-8.158-8.417-7.948-21.854 0.469-30.012l42.439-42.439c19.094-19.094 49.623 10.948 30.012 30.012l-42.439 42.439c-8.339 8.604-22.142 8.604-30.481 0zM0 469.333c0 11.819 9.515 21.333 21.333 21.333h85.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-85.333c-11.819 0-21.333 9.515-21.333 21.333zM533.333 960c11.819 0 21.333-9.515 21.333-21.333v-85.333c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v85.333c0 11.819 9.515 21.333 21.333 21.333zM342.028 634.956l170.661-682.791c3.913-15.508 22.862-21.357 34.832-10.752l177.813 157.279 155.592-156.445c8.331-8.329 21.835-8.329 30.166 0l106.663 106.686c8.328 8.333 8.328 21.839 0 30.172l-155.578 155.561 155.578 155.662c10.982 11.024 6.853 29.719-7.75 35.090l-639.978 234.709c-23.152 6.205-31.272-12.955-27.999-25.171zM393.11 606.284l570.897-209.371-147.078-147.11c-8.328-8.333-8.328-21.839 0-30.172l155.578-155.612-76.497-76.514-155.578 155.612c-7.993 7.975-20.815 8.34-29.249 0.833l-165.661-147.277z" />
<glyph unicode="&#xe920;" glyph-name="mbri-cust-feedback" d="M646.11 697.577l-240.686-240.778-70.163 70.19c-18.715 18.715-49.603-10.683-30.137-30.149l85.232-85.264c8.323-8.324 21.815-8.324 30.137 0l255.755 255.852c8.583 8.388 8.556 22.207 0.034 30.47s-21.969 8.079-30.171-0.321zM64 917.33c-35.087 0-64-28.913-64-64v-640c0-35.087 28.913-64 64-64h106.667v-149.333c0.007-19 22.977-28.514 36.417-15.083l164.417 164.417h588.5c35.087 0 64 28.913 64 64v640c0 35.087-28.913 64-64 64zM64 874.664h896c12.188 0 21.333-9.146 21.333-21.333v-640c0-12.188-9.146-21.333-21.333-21.333h-597.333c-5.658-0.001-11.083-2.249-15.083-6.25l-134.25-134.25v119.167c-0.001 11.782-9.552 21.332-21.333 21.333h-128c-12.188 0-21.333 9.146-21.333 21.333v640c0 12.188 9.146 21.333 21.333 21.333z" />
<glyph unicode="&#xe921;" glyph-name="mbri-database" d="M64 960c-35.087 0-64-28.913-64-64v-810.667c0-35.087 28.913-64 64-64h21.333v-64c0.001-11.782 9.552-21.332 21.333-21.333h128c11.782 0.001 21.332 9.552 21.333 21.333v64h512v-64c0.001-11.782 9.552-21.332 21.333-21.333h128c11.782 0.001 21.332 9.552 21.333 21.333v64h21.333c35.087 0 64 28.913 64 64v810.667c0 35.087-28.913 64-64 64h-896zM64 917.333h896c12.188 0 21.333-9.146 21.333-21.333v-810.667c0-12.188-9.146-21.333-21.333-21.333h-896c-12.188 0-21.333 9.146-21.333 21.333v810.667c0 12.188 9.146 21.333 21.333 21.333zM149.333 789.333c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333c11.782 0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333zM277.333 789.333c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333c11.782 0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333zM405.333 789.333c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333c11.782 0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333zM106.667 661.333c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h810.667c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333h-810.667zM277.333 490.667c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333c11.782 0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333zM405.333 490.667c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333c11.782 0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333zM533.333 490.667c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333c11.782 0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333zM106.667 362.667c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h810.667c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333h-810.667zM149.333 192c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333c11.782 0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333zM277.333 192c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333c11.782 0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333zM405.333 192c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333c11.782 0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333zM128 21.333h85.333v-42.667h-85.333v42.667zM810.667 21.333h85.333v-42.667h-85.333v42.667z" />
<glyph unicode="&#xe922;" glyph-name="mbri-delivery" d="M21.333 362.667h85.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-85.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM21.333 533.333h85.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-85.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM21.333 704h85.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-85.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM548.251 569.935c-8.415 8.222-21.9 8.064-30.12-0.353l-112.798-112.813-70.095 70.148c-19.169 19.169-49.432-11.347-30.12-30.131l85.182-85.213c8.318-8.319 21.802-8.319 30.12 0l127.831 127.879c8.554 8.36 8.554 22.124 0 30.484zM852.5 320c-46.876 0-85.333-38.458-85.333-85.333s38.458-85.333 85.333-85.333c46.876 0 85.333 38.458 85.333 85.333s-38.458 85.333-85.333 85.333zM852.5 277.333c23.817 0 42.667-18.85 42.667-42.667s-18.85-42.667-42.667-42.667c-23.817 0-42.667 18.85-42.667 42.667s18.85 42.667 42.667 42.667zM384 320c-46.876 0-85.333-38.458-85.333-85.333s38.458-85.333 85.333-85.333c46.876 0 85.333 38.458 85.333 85.333s-38.458 85.333-85.333 85.333zM384 277.333c23.817 0 42.667-18.85 42.667-42.667s-18.85-42.667-42.667-42.667c-23.817 0-42.667 18.85-42.667 42.667s18.85 42.667 42.667 42.667zM746.667 277.333c27.663 0 28.687 42.667 0 42.667h-21.333v298.667h117.583l138.417-178v-120.667h-21.333c-28.006 0-28.344-42.667 0-42.667h21.333c23.268 0 42.667 19.398 42.667 42.667v128c-0.005 4.74-1.588 9.343-4.5 13.083l-149.333 192c-4.038 5.2-10.25 8.244-16.833 8.25h-128v42.667c0 23.268-19.398 42.667-42.667 42.667h-469.333c-23.268 0-42.667-19.398-42.667-42.667v-384c0-23.268 19.398-42.667 42.667-42.667h64c27.651-0.393 28.628 42.667 0 42.667h-64v384h469.333v-384h-192c-27.656 0-28.134-43.065 0-42.667z" />
<glyph unicode="&#xe923;" glyph-name="mbri-desktop" d="M512 256c0-11.782-9.551-21.333-21.333-21.333s-21.333 9.551-21.333 21.333c0 11.782 9.551 21.333 21.333 21.333s21.333-9.551 21.333-21.333zM106.667 362.667h768c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-768c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM64 874.667c-35.087 0-64-28.913-64-64v-597.333c0-35.087 28.913-64 64-64h320v-85.333h-64c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h341.333c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333h-64v85.333h320c35.087 0 64 28.913 64 64v597.333c0 35.087-28.913 64-64 64h-853.333zM64 832h853.333c12.188 0 21.333-9.146 21.333-21.333v-597.333c0-12.188-9.146-21.333-21.333-21.333h-853.333c-12.188 0-21.333 9.146-21.333 21.333v597.333c0 12.188 9.146 21.333 21.333 21.333zM426.667 149.333h128v-85.333h-128v85.333z" />
<glyph unicode="&#xe924;" glyph-name="mbri-devices" d="M277.333 192c-28.801 0-53.428-18.948-61.333-45.333l-113.333-18.667c-10.199-1.946-17.516-10.952-17.333-21.333v-85.333c-0.183-10.381 7.134-19.387 17.333-21.333l113.333-18.667c7.905-26.385 32.533-45.333 61.333-45.333h128c28.801 0 53.428 18.948 61.333 45.333l113.333 18.667c10.199 1.946 17.516 10.952 17.333 21.333v85.333c0.183 10.381-7.134 19.387-17.333 21.333l-113.333 18.667c-7.905 26.385-32.533 45.333-61.333 45.333zM277.333 149.333h128c12.188 0 21.333-9.146 21.333-21.333v-128c0-12.188-9.146-21.333-21.333-21.333h-128c-12.188 0-21.333 9.146-21.333 21.333v128c0 12.188 9.146 21.333 21.333 21.333zM213.333 102.667v-77.333l-85.333 14.667v48zM469.333 102.667l85.333-14.667v-48l-85.333-14.667zM64 917.333c-35.087 0-64-28.913-64-64v-512c0-35.087 28.913-64 64-64h511.696c11.271-0.159 21.637 10.062 21.637 21.333s-10.367 21.493-21.637 21.333h-511.696c-12.188 0-21.333 9.146-21.333 21.333v512c0 12.188 9.146 21.333 21.333 21.333h810.667c12.188 0 21.333-9.146 21.333-21.333v-213.333c-0.158-11.271 10.062-21.181 21.333-21.181s21.493 9.911 21.333 21.181v213.333c0 35.087-28.913 64-64 64zM170.667 789.333v-384c0-24.563 17.268-42.667 42.667-42.667h362.667c11.271-0.158 21.637 10.062 21.637 21.333s-10.367 21.493-21.637 21.333h-362.667v384h597.333v-149.333c-0.158-11.271 10.062-21.485 21.333-21.485s21.493 10.215 21.333 21.485v149.333c0 26.458-18.978 42.667-42.667 42.667h-597.333c-24.090 0-42.667-17.969-42.667-42.667zM832 64c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM789.333 490.667h85.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-85.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM704 576c-35.087 0-64-28.913-64-64v-512c0-35.087 28.913-64 64-64h256c35.087 0 64 28.913 64 64v512c0 35.087-28.913 64-64 64zM704 533.333h256c12.188 0 21.333-9.146 21.333-21.333v-512c0-12.188-9.146-21.333-21.333-21.333h-256c-12.188 0-21.333 9.146-21.333 21.333v512c0 12.188 9.146 21.333 21.333 21.333zM106.667 618.667c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333z" />
<glyph unicode="&#xe925;" glyph-name="mbri-down" d="M960 447.992c-5.535-0.154-11.375-2.454-15.245-6.414l-454.088-454.099-453.949 453.849c-19.206 20.003-50.161-10.956-30.16-30.157l468.974-468.927c8.329-8.325 21.83-8.325 30.16 0l469.224 469.177c13.032 12.74 5.155 36.571-14.914 36.571zM490.667 960c11.819 0 21.333-9.515 21.333-21.333v-853.333c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v853.333c0 11.819 9.515 21.333 21.333 21.333z" />
<glyph unicode="&#xe926;" glyph-name="mbri-download" d="M548.427 441.72c-8.318 8.316-21.804 8.316-30.122 0l-127.842-127.833c-19.192-19.192 10.227-50.015 30.122-30.12l112.781 112.777 112.722-112.718c19.661-19.661 49.585 11.204 30.122 30.12zM533.337 320c11.818 0 21.332-9.516 21.332-21.333v-213.336c0-11.817-9.514-21.331-21.332-21.331s-21.332 9.514-21.332 21.331v213.336c0 11.817 9.514 21.333 21.332 21.333zM568.503 831.914c-56.503 0-109.155-10.79-158.077-35.079-61.518-30.543-111.418-75.354-144.328-135.568-70.218 2.857-140.756-27.189-190.742-76.825-53.352-52.977-81.186-129.351-74.33-204.227 5.424-59.243 32.127-115.825 74.33-157.732 42.206-41.909 99.616-73.122 158.41-73.158h43.582c11.818 0 21.332 9.514 21.332 21.331s-9.514 21.331-21.332 21.331h-40.582c-48.893 4.216-96.593 26.253-131.411 60.826-34.902 34.657-57.348 82.273-61.831 131.235-5.644 61.649 17.896 126.438 61.831 170.064 43.938 43.629 108.874 70.567 170.493 64.493 8.809-0.853 17.231 2.655 21.166 10.582 28.249 56.663 75.694 101.326 132.411 129.485 42.539 21.12 90.25 30.58 138.078 30.58 15.84 0 31.756-2.142 47.331-5.083 70.806-13.368 136.65-54.159 180.076-111.654s64.674-131.469 58.164-203.227c-0.975-10.857 6.391-19.202 17.083-21.331 32.638-6.436 63.264-27.677 83.33-54.244s30.152-61.264 27.416-94.406c-1.408-17.046-6.2-33.739-14.166-48.328-7.929-14.522-19.289-27.255-32.832-36.579-13.566-9.341-29.74-15.674-46.748-18.915-17.029-3.245-35.426-3.5-55.165-3.5h-42.665c-11.818 0-21.332-9.514-21.332-21.331s9.514-21.331 21.332-21.331h42.665c20.017 0.001 41.14 0.137 63.164 4.333 22.045 4.2 43.736 12.376 62.914 25.58 19.201 13.221 35.043 30.875 46.165 51.244 11.085 20.302 17.302 42.754 19.166 65.326 3.629 43.953-9.357 88.407-35.915 123.569-23.171 30.678-54.771 51.214-91.496 62.16 3.015 77.182-20.457 154.914-67.081 216.642-50.016 66.219-124.695 112.589-206.242 127.986-17.872 3.376-35.978 5.749-54.165 5.749z" />
<glyph unicode="&#xe927;" glyph-name="mbri-drag-n-drop2" d="M163.971 357.265l-112.606 112.764 113.549 113.715c16.226 15.791-14.507 46.571-30.281 30.323l-128.691-128.875c-7.923-7.94-7.923-22.383 0-30.323l127.753-127.927c20.8-20.89 50.368 10.146 30.276 30.323zM817.362 357.265l112.606 112.764-113.549 113.715c-16.226 15.791 14.507 46.571 30.281 30.323l128.691-128.875c7.923-7.94 7.923-22.383 0-30.323l-127.753-127.927c-20.8-20.89-50.368 10.146-30.276 30.323zM378.595 142.639l112.767-112.606 113.713 113.549c15.794 16.226 46.571-14.507 30.323-30.281l-128.874-128.691c-7.939-7.923-22.384-7.923-30.323 0l-127.929 127.753c-20.889 20.8 10.149 50.368 30.323 30.276zM490.667 832c-11.819 0-21.333-9.515-21.333-21.333v-320h-320c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h320v-320c0-11.819 9.515-21.333 21.333-21.333s21.333 9.515 21.333 21.333v320h320c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333h-320v320c0 11.819-9.515 21.333-21.333 21.333zM378.748 796.301l111.89 112.196 112.828-113.135c15.671-16.166 46.208 14.455 30.088 30.17l-127.872 128.222c-7.877 7.898-22.21 7.898-30.088 0l-126.933-127.283c-20.727-20.727 10.070-50.189 30.087-30.17z" />
<glyph unicode="&#xe928;" glyph-name="mbri-drag-n-drop" d="M725.334 384c-0.090-5.515-2.321-11.112-6.227-15.012l-42.513-42.462c-18.993-19.755-49.601 11.278-30.058 30.022l27.484 27.451-27.484 27.451c-19.787 18.975 11.178 49.662 30.058 30.022l42.513-42.462c4.069-4.062 6.316-9.265 6.227-15.010zM341.333 384c0.088-5.515 2.321-11.112 6.228-15.012l42.513-42.462c18.975-19.736 49.905 10.987 30.058 30.022l-27.484 27.451 27.484 27.451c19.94 19.122-10.703 49.377-30.058 30.022l-42.513-42.462c-4.069-4.062-6.316-9.265-6.228-15.010zM533.333 191.999c-5.515 0.090-11.112 2.321-15.011 6.227l-42.462 42.513c-19.637 18.88 10.291 49.789 30.022 30.058l27.451-27.484 27.451 27.484c18.401 19.188 50.030-10.825 30.022-30.058l-42.462-42.513c-4.062-4.069-9.266-6.316-15.011-6.227zM533.333 576c-5.515-0.088-11.112-2.321-15.011-6.228l-42.462-42.513c-19.76-18.997 10.174-49.906 30.022-30.058l27.451 27.484 27.451-27.484c18.857-19.664 49.544 11.292 30.022 30.058l-42.462 42.513c-4.062 4.069-9.266 6.316-15.011 6.228zM533.333 490.667c-11.819 0-21.333-9.515-21.333-21.333v-64h-64c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h64v-64c0-11.819 9.515-21.333 21.333-21.333s21.333 9.515 21.333 21.333v64h64c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333h-64v64c0 11.819-9.515 21.333-21.333 21.333zM64 832c-35.087 0-64-28.913-64-64v-640c0-35.087 28.913-64 64-64h896c35.087 0 64 28.913 64 64v640c0 35.087-28.913 64-64 64zM64 789.333h896c12.188 0 21.333-9.146 21.333-21.333v-640c0-12.188-9.146-21.333-21.333-21.333h-896c-12.188 0-21.333 9.146-21.333 21.333v640c0 12.188 9.146 21.333 21.333 21.333zM106.667 746.667c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333c11.782 0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333zM192 746.667c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333c11.782 0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333zM277.333 746.667c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333c11.782 0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333zM106.667 661.333c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h810.667c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333z" />
<glyph unicode="&#xe929;" glyph-name="mbri-edit" d="M874.333 789.333c-5.542-0.088-10.832-2.33-14.75-6.25l-85.333-85.333c-8.328-8.331-8.328-21.835 0-30.167l128-128c8.331-8.328 21.835-8.328 30.167 0l85.333 85.333c8.328 8.331 8.328 21.835 0 30.167l-128 128c-4.082 4.083-9.644 6.338-15.417 6.25zM874.667 737.833l97.833-97.833-55.167-55.167-97.833 97.833zM746.333 661.333c-5.542-0.088-10.832-2.33-14.75-6.25l-341.333-341.333c-4.001-4-6.249-9.426-6.25-15.083v-128c0.001-11.782 9.552-21.332 21.333-21.333h128c5.658 0.001 11.083 2.249 15.083 6.25l341.333 341.333c8.328 8.331 8.328 21.835 0 30.167l-128 128c-4.082 4.083-9.644 6.338-15.417 6.25zM746.667 609.833l97.833-97.833-320-320h-97.833v97.833zM149.333 533.333h341.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-341.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM149.333 661.333h426.667c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-426.667c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM149.333 789.333h426.667c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-426.667c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM64 960c-35.087 0-64-28.913-64-64v-896c0-35.087 28.913-64 64-64h597.333c35.087 0 64 28.913 64 64v213.333c0 28.131-42.667 27.657-42.667 0v-213.333c0-12.188-9.146-21.333-21.333-21.333h-597.333c-12.188 0-21.333 9.146-21.333 21.333v896c0 12.188 9.146 21.333 21.333 21.333h597.333c12.188 0 21.333-9.146 21.333-21.333v-170.667c0-28.683 42.667-28.006 42.667 0v170.667c0 35.087-28.913 64-64 64z" />
<glyph unicode="&#xe92a;" glyph-name="mbri-edit2" d="M832 960c-5.542-0.088-11.165-2.33-15.083-6.25l-85.333-85.333c-8.328-8.331-8.328-21.835 0-30.167l170.667-170.667c8.331-8.328 21.835-8.328 30.167 0l85.333 85.333c8.328 8.331 8.328 21.835 0 30.167l-170.667 170.667c-4.082 4.083-9.311 6.338-15.083 6.25zM832 908.5l140.5-140.5-55.167-55.167-140.5 140.5zM661.333 789.333c-5.542-0.088-11.165-2.33-15.083-6.25l-640-640c-4.001-4-6.249-9.426-6.25-15.083v-170.667c0.001-11.782 9.552-21.332 21.333-21.333h170.667c5.658 0.001 11.083 2.249 15.083 6.25l640 640c8.328 8.331 8.328 21.835 0 30.167l-170.667 170.667c-4.082 4.083-9.311 6.338-15.083 6.25zM661.333 737.833l140.5-140.5-618.667-618.667h-140.5v140.5z" />
<glyph unicode="&#xe92b;" glyph-name="mbri-error" d="M603.388 484.194l-70.085-70.076-70.085 70.076c-18.753 19.288-49.479-11.266-30.103-30.1l70.085-70.076-70.085-70.077c-19.542-18.996 10.417-49.787 30.103-30.1l70.085 70.076 70.143-70.135c19.521-19.521 49.819 10.938 30.103 30.1l-70.143 70.135 70.085 70.076c8.606 8.34 8.633 22.138 0.128 30.444s-22.027 8.121-30.232-0.346zM64 832c-35.087 0-64-28.913-64-64v-640c0-35.087 28.913-64 64-64h896c35.087 0 64 28.913 64 64v640c0 35.087-28.913 64-64 64zM64 789.333h896c12.188 0 21.333-9.146 21.333-21.333v-640c0-12.188-9.146-21.333-21.333-21.333h-896c-12.188 0-21.333 9.146-21.333 21.333v640c0 12.188 9.146 21.333 21.333 21.333zM106.667 746.667c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333c11.782 0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333zM192 746.667c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333c11.782 0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333zM277.333 746.667c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333c11.782 0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333zM106.667 661.333c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h810.667c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333z" />
<glyph unicode="&#xe92c;" glyph-name="mbri-extension" d="M792.195 941.262c-24.96 24.96-66.080 25.019-91.040 0.059l-213.134-213.134c-24.96-24.96-24.902-66.080 0.060-91.040l213.075-213.075c24.96-24.96 66.080-25.019 91.040-0.060l213.133 213.135c24.96 24.96 24.902 66.080-0.060 91.040l-213.074 213.075zM762.025 911.092l213.075-213.075c8.768-8.768 8.827-21.932 0.060-30.7l-213.134-213.134c-8.768-8.768-21.932-8.709-30.7 0.060l-213.076 213.074c-8.768 8.768-8.827 21.932-0.059 30.7l213.134 213.134c8.768 8.768 21.932 8.709 30.7-0.059zM64 874.667c-35.087 0-64-28.913-64-64v-298.667c0-35.087 28.913-64 64-64h298.667c35.087 0 64 28.913 64 64v298.667c0 35.087-28.913 64-64 64h-298.667zM64 832h298.667c12.188 0 21.333-9.146 21.333-21.333v-298.667c0-12.188-9.146-21.333-21.333-21.333h-298.667c-12.188 0-21.333 9.146-21.333 21.333v298.667c0 12.188 9.146 21.333 21.333 21.333zM576 362.667c-35.087 0-64-28.913-64-64v-298.667c0-35.087 28.913-64 64-64h298.667c35.087 0 64 28.913 64 64v298.667c0 35.087-28.913 64-64 64h-298.667zM576 320h298.667c12.188 0 21.333-9.146 21.333-21.333v-298.667c0-12.188-9.146-21.333-21.333-21.333h-298.667c-12.188 0-21.333 9.146-21.333 21.333v298.667c0 12.188 9.146 21.333 21.333 21.333zM64 362.667c-35.087 0-64-28.913-64-64v-298.667c0-35.087 28.913-64 64-64h298.667c35.087 0 64 28.913 64 64v298.667c0 35.087-28.913 64-64 64h-298.667zM64 320h298.667c12.188 0 21.333-9.146 21.333-21.333v-298.667c0-12.188-9.146-21.333-21.333-21.333h-298.667c-12.188 0-21.333 9.146-21.333 21.333v298.667c0 12.188 9.146 21.333 21.333 21.333z" />
<glyph unicode="&#xe92d;" glyph-name="mbri-features" d="M768.667 960c-8.514 0.276-16.377-4.54-20-12.25l-67.667-144.25-150.917-14.864c-17.156-2.65-24.135-23.587-12-36l109.833-120.636-29.898-159.25c-2.867-17.596 15.831-30.739 31.417-22.083l138.565 79.45 138.734-79.45c15.586-8.656 34.284 4.487 31.417 22.083l-30.068 159.25 109.833 120.297c12.135 12.413 5.156 33.35-12 36l-150.917 15.203-67.667 144.25c-3.419 7.273-10.634 12.008-18.667 12.25zM768 888.417l53.167-113.333c3.028-6.429 9.058-10.928 16.083-12l121.167-10.703-88.333-98.297c-4.746-4.838-6.911-11.643-5.833-18.333l24.651-126.5-110.568 63.95c-6.429 3.559-14.238 3.559-20.667 0l-110.398-63.95 24.482 126.5c1.078 6.691-1.088 13.495-5.833 18.333l-88.333 98.636 121.167 10.364c7.025 1.072 13.055 5.571 16.083 12zM64.417 874.667c-35.299 0-64.417-29.117-64.417-64.417v-297.833c0-35.299 29.117-64.417 64.417-64.417h297.833c35.3 0 64.417 29.117 64.417 64.417v297.833c0 35.299-29.117 64.417-64.417 64.417zM64.417 832h297.833c12.4 0 21.75-9.35 21.75-21.75v-297.833c0-12.4-9.35-21.75-21.75-21.75h-297.833c-12.4 0-21.75 9.35-21.75 21.75v297.833c0 12.4 9.35 21.75 21.75 21.75zM576.417 362.667c-35.299 0-64.417-29.117-64.417-64.417v-297.833c0-35.299 29.117-64.417 64.417-64.417h297.833c35.299 0 64.417 29.117 64.417 64.417v297.833c0 35.299-29.117 64.417-64.417 64.417zM576.417 320h297.833c12.4 0 21.75-9.35 21.75-21.75v-297.833c0-12.4-9.35-21.75-21.75-21.75h-297.833c-12.4 0-21.75 9.35-21.75 21.75v297.833c0 12.4 9.35 21.75 21.75 21.75zM64.417 362.667c-35.3 0-64.417-29.117-64.417-64.417v-297.833c0-35.299 29.117-64.417 64.417-64.417h297.833c35.3 0 64.417 29.117 64.417 64.417v297.833c0 35.299-29.117 64.417-64.417 64.417zM64.417 320h297.833c12.4 0 21.75-9.35 21.75-21.75v-297.833c0-12.4-9.35-21.75-21.75-21.75h-297.833c-12.4 0-21.75 9.35-21.75 21.75v297.833c0 12.4 9.35 21.75 21.75 21.75z" />
<glyph unicode="&#xe92e;" glyph-name="mbri-file" d="M661 874.667c-11.782-0.184-21.184-9.551-21-21.333v-84.917c0-35.3 29.117-64.417 64.417-64.417h84.917c28.61 0 27.651 42.667 0 42.667h-84.917c-12.4 0-21.75 9.35-21.75 21.75v84.917c0.188 12.043-9.623 21.522-21.667 21.333zM192.417 960c-35.299 0-64.417-29.117-64.417-64.417v-895.167c0-35.299 29.117-64.417 64.417-64.417h639.167c35.299 0 64.417 29.117 64.417 64.417v724.917c-0.001 5.658-2.249 11.083-6.25 15.083l-213.333 213.333c-4 4.001-9.426 6.249-15.083 6.25zM192.417 917.333h460.083l200.833-200.833v-716.083c0-12.4-9.35-21.75-21.75-21.75h-639.167c-12.4 0-21.75 9.35-21.75 21.75v895.167c0 12.4 9.35 21.75 21.75 21.75zM277.333 576h469.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-469.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM277.333 448h469.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-469.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM277.333 320h469.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-469.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333z" />
<glyph unicode="&#xe92f;" glyph-name="mbri-flag" d="M234.667 917.333c-28.193 0-27.85-42.667 0-42.667h689.333l-110.75-203.083c-3.498-6.386-3.498-14.114 0-20.5l110.75-203.083h-689.333c-28.153 0-27.682-42.667 0-42.667h725.333c16.227-0.028 26.544 17.351 18.75 31.583l-122.417 224.417 122.417 224.417c7.794 14.233-2.523 31.611-18.75 31.583zM106.667 960c-35.087 0-64-28.913-64-64v-896c0-35.087 28.913-64 64-64s64 28.913 64 64v896c0 35.087-28.913 64-64 64zM106.667 917.333c12.188 0 21.333-9.146 21.333-21.333v-896c0-12.188-9.146-21.333-21.333-21.333s-21.333 9.146-21.333 21.333v896c0 12.188 9.146 21.333 21.333 21.333z" />
<glyph unicode="&#xe930;" glyph-name="mbri-folder" d="M64 874.667c-35.087 0-64-28.913-64-64v-725.333c0-35.087 28.913-64 64-64h896c35.087 0 64 28.913 64 64v597.333c-0.001 11.782-9.552 21.332-21.333 21.333h-503.167l-164.417 164.417c-3.86 3.861-9.193 6.249-15.083 6.25h-256zM64 832h247.167l164.417-164.417c3.86-3.861 9.193-6.249 15.083-6.25h490.667v-576c0-12.188-9.146-21.333-21.333-21.333h-896c-12.188 0-21.333 9.146-21.333 21.333v725.333c0 12.188 9.146 21.333 21.333 21.333z" />
<glyph unicode="&#xe931;" glyph-name="mbri-gift" d="M322.994 959.667c-16.259 0-32.105-6.024-46.333-13.833-18.939-10.395-34.536-25.839-45.417-44.167-10.865-18.301-17.75-38.949-17.75-59.917 0-20.963 3.028-41.721 11.083-60.75 5.233-12.361 12.403-24.023 21.25-34.333h-181.827c-35.087 0-64-28.913-64-64v-128c0-35.087 28.913-64 64-64h896c35.087 0 64 28.913 64 64v128c0 35.087-28.913 64-64 64h-204.423c1.693 2.718 3.54 5.287 4.917 8.25 6.513 14.013 8.807 29.561 6.833 44.667-1.97 15.079-8.116 29.186-17.333 41-9.202 11.796-21.223 20.904-34.75 26.75-13.508 5.837-28.092 7.417-42.583 7.417-23.909 0-44.89-11.457-62.083-24.833-17.108-13.309-29.731-29.251-41.167-43.833l-34.667-44.25-57.167 87.333c-15.003 22.922-30.879 47.518-52.917 68.75-22.265 21.45-51.122 41.75-85.333 41.75zM336.161 917.083c20.726 0 41.634-13.263 58.833-29.833 17.426-16.788 31.907-38.485 46.917-61.417l51.833-79.167h-135c-11.61 0-22.313 0.206-31.917 1.667-9.602 1.46-18.749 4.24-26.75 8.417-15.77 8.231-28.841 23.331-36.25 40.833-5.656 13.359-7.75 27.957-7.75 42.167 0 14.658 4.744 28.309 11.833 40.25 7.073 11.914 17.364 21.893 29.25 28.417 11.854 6.506 25.311 8.667 39 8.667zM675.161 832.167c7.945 0 16.078-0.936 23.167-4 7.070-3.055 13.482-7.935 18.083-13.833 4.587-5.88 7.646-13.157 8.583-20.333 0.934-7.15-0.218-14.744-3.167-21.083-4.166-8.964-13.037-16.91-23.333-21-10.402-4.132-23.975-5-39.583-5l-82.911-0.25 26.994 33.083c11.226 14.315 21.875 27.262 33.75 36.5 11.789 9.171 25.431 15.917 38.417 15.917zM64 704h896c12.188 0 21.333-9.146 21.333-21.333v-128c0-12.188-9.146-21.333-21.333-21.333h-896c-12.188 0-21.333 9.146-21.333 21.333v128c0 12.188 9.146 21.333 21.333 21.333zM448 661.333c-11.819 0-21.333-9.515-21.333-21.333v-42.667c0-11.819 9.515-21.333 21.333-21.333s21.333 9.515 21.333 21.333v42.667c0 11.819-9.515 21.333-21.333 21.333zM576 661.333c-11.819 0-21.333-9.515-21.333-21.333v-42.667c0-11.819 9.515-21.333 21.333-21.333s21.333 9.515 21.333 21.333v42.667c0 11.819-9.515 21.333-21.333 21.333zM106.667 447.997c-11.782-0.183-21.518-9.556-21.333-21.331v-426.667c0-35.064 28.913-64 64-64h725.33c35.087 0 64 28.936 64 64v426.667c0.205 14.415-10.564 21.333-21.333 21.333s-21.538-6.918-21.334-21.333v-426.667c0-12.18-9.146-21.333-21.333-21.333h-277.333v448c0 11.811-9.515 21.333-21.333 21.333s-21.333-9.522-21.333-21.333v-448h-85.333v448c0 11.811-9.515 21.333-21.333 21.333s-21.333-9.522-21.333-21.333v-448l-277.33-0.028c-12.188-0.001-21.333 9.182-21.333 21.362v426.667c0.189 12.035-9.29 21.519-21.333 21.331z" />
<glyph unicode="&#xe932;" glyph-name="mbri-github" d="M512 960c-282.517 0-512-229.483-512-512 0-244.156 172.417-446.308 401.333-497.333 1.208-0.243 2.598-0.382 4.019-0.382 11.448 0 20.79 9.016 21.312 20.335l0.002 194.714c0 15.684 7.744 29.854 20 37.333 5.897 3.861 9.739 10.436 9.739 17.909 0 10.034-6.927 18.45-16.259 20.728-132.773 23.894-226.813 109.869-226.813 206.697 0 37.402 14.132 74.114 38.667 105.333 2.418 3.334 3.903 7.485 4 11.977v128.023l110.667-50.667c2.806-1.452 6.124-2.303 9.642-2.303 2.27 0 4.457 0.355 6.509 1.011 38.693 13.42 82.374 19.958 129.182 19.958s90.489-6.539 129.333-20c1.901-0.615 4.088-0.969 6.358-0.969 3.517 0 6.836 0.851 9.761 2.359l110.547 50.611v-128c0.097-4.515 1.582-8.666 4.043-12.062 24.491-31.157 38.624-67.87 38.624-105.271 0-96.828-94.040-182.803-226.667-206.667-9.479-2.308-16.405-10.724-16.405-20.758 0-7.473 3.842-14.048 9.658-17.859 12.338-7.529 20.081-21.699 20.081-37.383v-194.667c0.524-11.366 9.866-20.382 21.314-20.382 1.422 0 2.811 0.139 4.155 0.404 228.781 51.003 401.198 253.155 401.198 497.311 0 282.517-229.483 512-512 512zM512 917.333c259.458 0 469.333-209.873 469.333-469.333 0-214.366-145.169-389.171-341.333-445.333v162.667c0 16.7-4.983 32.119-13.333 45.333 129.029 35.081 226.667 124.058 226.667 237.333 0 45.175-15.962 87.661-42.667 124v153.333c0.010 0.245 0.016 0.532 0.016 0.821 0 11.783-9.552 21.335-21.335 21.335-3.402 0-6.618-0.796-9.471-2.212l-134.542-61.278c-41.608 13.274-85.783 20-133.333 20s-91.726-6.726-133.333-20l-134.667 61.333c-2.729 1.36-5.945 2.156-9.347 2.156-11.783 0-21.335-9.552-21.335-21.335 0-0.289 0.006-0.576 0.017-0.862l-0.001-153.292c-26.705-36.339-42.667-78.825-42.667-124 0-113.276 97.638-202.253 226.667-237.333-8.35-13.214-13.333-28.634-13.333-45.333v-21.333c-28.561-10.274-53.18-17.497-70.667-17.333-20.058 0-31.757 5.502-45.333 28-16.796 27.831-31.841 49.766-48 66.667s-34.415 28.836-56 33.333c-1.203 0.241-2.585 0.378-4 0.378s-2.797-0.138-4.135-0.4c-11.518-0.148-20.899-9.634-20.899-21.311s9.381-21.163 21.018-21.333c12.372-2.56 21.224-7.32 33.349-20s26.465-33.154 42.667-60c19.422-32.188 50.008-47.714 81.333-48 22.693-0.309 46.246 6.408 70.667 14.667v-96c-196.164 56.162-341.333 230.967-341.333 445.333 0 259.46 209.875 469.333 469.333 469.333z" />
<glyph unicode="&#xe933;" glyph-name="mbri-globe" d="M661.333 874.667c-19.175-0.004-27.997-23.503-15.083-36.417 0 0 9.214-9.237 18.667-23.417s17.75-32.611 17.75-46.833c0-3.556-3.619-16.316-11-30.75s-17.747-31.179-28.333-47.833c-10.586-16.655-21.406-33.187-29.917-48.167s-16.083-26.318-16.083-43.917c0-17.778 10.645-36.654 29-47.667s43.296-16.333 77.667-16.333c29.63 0 47.355-5.346 55.667-10.333s8.333-7.444 8.333-11c0-6.667 3.178-13.734 7-17.917s7.757-6.295 11.25-7.833c6.985-3.077 13.271-4.125 20.167-5.083 13.792-1.915 29.767-2.313 45.167-3.75 19.379-1.808 43.699-6.706 43.667-11.583-0.073-10.698-9.89-24.176-29.75-37.417-20.359-13.573-48.907-23.083-76.167-23.083-34.37 0-59.312-5.32-77.667-16.333s-29-29.889-29-47.667c0-17.557-8.207-21.333-21.333-21.333-17.778 0-33.064-8.231-44.417-19.583s-19.583-26.639-19.583-44.417c0-17.778 6.542-45.155 26.917-80.083s55.035-75.087 111.417-108.917c23.415-14.049 45.415 22.618 22 36.667-50.284 30.171-79.625 64.678-96.583 93.75s-21.083 55.028-21.083 58.583c-1.132 12.728 9.156 21.333 21.333 21.333 17.778 0 33.064 8.231 44.417 19.583s19.583 26.639 19.583 44.417c0 3.555 0.022 6.013 8.333 11s26.037 10.333 55.667 10.333c36.741 0 72.192 11.823 99.833 30.25s49.5 44.417 49.5 76.417c0 10.667-4.907 21.327-11.667 28.167s-14.554 10.744-22.417 13.583c-15.725 5.679-32.914 7.451-49.5 8.833s-36.993 1.494-41.875 8.498c-7.755 11.126-13.187 20.239-31.542 31.252s-43.296 16.333-77.667 16.333c-29.63 0-47.355 5.346-55.667 10.333-11.305 6.527-4.983 21.305 2.25 33.833 7.489 13.182 18.003 29.426 28.75 46.333s21.715 34.481 30.333 51.333c8.619 16.852 15.667 32.389 15.667 50.167 0 28.444-13.036 52.679-24.917 70.5s-24 29.917-24 29.917c-4.019 4.154-9.303 6.25-15.083 6.25zM106.667 576c-14.425 0.204-21.333-10.565-21.333-21.333s6.909-21.537 21.333-21.333h36.25c16.133 0 21.75-42.667 49.083-42.667h42.667c13.834-0.235 21.333-9.659 21.333-21.333v-64c0-18.33 2.675-37.426 12.083-54.333s28.816-31 51.917-31h42.667c13.489-0.226 21.333-9.987 21.333-21.333v-213.333c0-28.444 17.412-48.539 33.167-56.417s30.833-7.583 30.833-7.583c14.425-0.205 21.333 10.565 21.333 21.333s-6.909 21.537-21.333 21.333c0 0-6.255 0.294-11.833 3.084s-9.5 4.028-9.5 18.25v213.333c0 18.030-8.746 32.746-20 44s-25.97 20-44 20h-42.667c-17.51 0-21.333 21.333-21.333 42.667v64c0 18.030-8.746 32.746-20 44s-25.97 20-44 20h-21.333c-21.333 0-24.242 13.64-35.333 28.417-5.232 6.97-16.096 14.25-28.667 14.25zM512 960c-282.517 0-512-229.483-512-512s229.483-512 512-512c282.517 0 512 229.483 512 512s-229.483 512-512 512zM512 917.333c259.458 0 469.333-209.875 469.333-469.333s-209.875-469.333-469.333-469.333c-259.458 0-469.333 209.875-469.333 469.333s209.875 469.333 469.333 469.333z" />
<glyph unicode="&#xe934;" glyph-name="mbri-globe-2" d="M277.333 490.667h426.667c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-426.667c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM896 469.333c0-11.782-9.551-21.333-21.333-21.333s-21.333 9.551-21.333 21.333c0 11.782 9.551 21.333 21.333 21.333s21.333-9.551 21.333-21.333zM128 469.333c0-11.782-9.551-21.333-21.333-21.333s-21.333 9.551-21.333 21.333c0 11.782 9.551 21.333 21.333 21.333s21.333-9.551 21.333-21.333zM490.667 960c-270.735 0-490.667-219.932-490.667-490.667s219.932-490.667 490.667-490.667c270.735 0 490.667 219.932 490.667 490.667s-219.932 490.667-490.667 490.667zM490.667 917.333c73.21 0 141.39-46.547 192.75-126.917-121.576-58.033-263.412-58-385.333 0.167 51.345 80.246 119.434 126.75 192.583 126.75zM318.667 883.083c-23.721-23.13-42.119-49.564-58.25-72.25-11 6.608-21.795 13.697-32.333 21.333 27.971 20.257 58.254 37.484 90.583 50.917zM662.667 883.083c32.33-13.433 62.612-30.66 90.583-50.917-10.544-7.646-21.316-14.798-32.333-21.417-16.59 27.56-39.801 51.709-58.25 72.333zM787.5 804.5c92.61-82.006 151.167-201.541 151.167-335.167s-58.557-253.161-151.167-335.167c-14.736 11.218-29.876 21.582-45.5 30.917 43.212 84.004 68.667 189.514 68.667 304.25 0 114.766-25.434 220.319-68.667 304.333 15.613 9.326 30.776 19.628 45.5 30.833zM193.667 804.417c14.779-11.247 30.095-21.318 45.75-30.667-43.263-84.030-68.75-189.606-68.75-304.417 0-114.766 25.434-220.319 68.667-304.333-15.637-9.34-30.907-19.435-45.667-30.667-92.508 82.002-151 201.459-151 335 0 133.561 58.469 253.081 151 335.083zM276.917 753.417c134.994-65.374 292.873-65.278 427.5-0.083 39.356-76.993 63.583-175.892 63.583-284 0-108.062-24.173-206.937-63.5-283.917-65.475 31.721-136.42 49.25-207.667 49.25-75.237 0-150.561-15.745-219.917-49.333-39.356 76.993-63.583 175.892-63.583 284 0 108.139 24.207 207.081 63.583 284.083zM496.25 192c64.139-0.799 128.037-15.442 187.167-43.667-51.364-80.406-119.522-127-192.75-127-73.179 0-141.314 46.525-192.667 126.833 62.642 29.899 130.49 44.677 198.25 43.833zM260.417 127.917c16.59-27.56 39.801-51.709 58.25-72.333-32.35 13.442-62.681 30.643-90.667 50.917 10.568 7.662 21.383 14.789 32.417 21.417zM721 127.917c11.002-6.613 21.803-13.695 32.333-21.333-27.997-20.287-58.301-37.552-90.667-51 23.752 23.175 42.152 49.606 58.333 72.333z" />
<glyph unicode="&#xe935;" glyph-name="mbri-growing-chart" d="M874.667 618.667c-14.425 0.204-21.333-10.565-21.333-21.333s6.909-21.537 21.333-21.333h106.667v-106.667c-0.205-14.425 10.565-21.333 21.333-21.333s21.537 6.909 21.333 21.333v128c-0.001 11.782-9.552 21.332-21.333 21.333zM618.667 243.953l-155.116 155.395c-8.326 8.318-21.821 8.318-30.146 0l-341.103-340.919c-20.333-19.513 10.053-51.045 30.146-30.13l325.552 325.854 155.956-155.395c8.326-8.318 21.821-8.318 30.146 0l298.465 298.304c8.736 8.731 7.62 22.494-0.367 30.476-7.985 7.981-22.185 6.795-27.982 0.286zM21.333 960c-11.782-0.184-21.518-9.551-21.333-21.333v-981.333c0.001-11.782 9.552-21.332 21.333-21.333h981.333c14.425-0.205 21.333 10.564 21.333 21.333s-6.909 21.537-21.333 21.333h-960v960c0.188 12.043-9.29 21.522-21.333 21.333z" />
<glyph unicode="&#xe936;" glyph-name="mbri-hearth" d="M277.333 874.667c-72.933 0-142.351-34.075-192.583-84.667-50.322-50.682-84.75-121.568-84.75-192.667 0-82.61 26.254-163.772 73.25-231.417 46.497-66.927 107.459-120.628 169.583-169.333 81.666-64.027 168.488-121.762 258.75-172.5 3.236-1.81 6.826-2.75 10.417-2.75s7.18 0.94 10.417 2.75c90.287 50.752 176.695 108.495 258.333 172.5 62.124 48.705 123.086 102.407 169.583 169.333 46.961 67.594 73.667 148.731 73.667 231.417 0 71.191-34.889 142.030-85.167 192.667-50.423 50.784-121.24 84.667-192.583 84.667-49.595 0-100.329-9.748-145.25-34.25-36.903-20.129-64.583-52.502-89-86.5-24.549 34.055-52.542 66.387-89.417 86.5-44.796 24.434-94.731 34.25-145.25 34.25zM277.333 832c44.999 0 87.415-8.719 124.75-29.083 37.658-20.541 69.971-51.535 91.5-88.333 8.238-14.085 28.595-14.085 36.833 0 21.584 36.893 53.479 67.822 91.083 88.333 37.209 20.296 80.791 29.083 124.75 29.083 57.497 0 119.393-28.837 162.25-72 43.003-43.31 72.833-105.858 72.833-162.667 0-73.476-23.86-146.429-66-207.083-42.603-61.322-100.146-112.522-160.917-160.167-76.653-60.097-157.98-113.746-242.417-161.917-84.494 48.185-166.203 101.838-242.833 161.917-60.771 47.645-118.314 98.845-160.917 160.167-42.104 60.603-65.583 133.532-65.583 207.083 0 56.901 29.459 119.402 72.417 162.667 43.047 43.355 102.793 72 162.25 72z" />
<glyph unicode="&#xe937;" glyph-name="mbri-help" d="M21.333 746.667h85.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-85.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM21.333 576h85.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-85.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM21.333 405.333h85.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-85.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM234.667 874.667c-35.087 0-64-28.913-64-64v-554.667c0-35.087 28.913-64 64-64h106.667v-149.333c0.007-19 22.977-28.514 36.417-15.083l164.417 164.417h417.833c35.087 0 64 28.913 64 64v554.667c0 35.087-28.913 64-64 64zM234.667 832h725.333c12.188 0 21.333-9.146 21.333-21.333v-554.667c0-12.188-9.146-21.333-21.333-21.333h-426.667c-5.658-0.001-11.083-2.249-15.083-6.25l-134.25-134.25v119.167c-0.001 11.782-9.552 21.332-21.333 21.333h-128c-12.188 0-21.333 9.146-21.333 21.333v554.667c0 12.188 9.146 21.333 21.333 21.333z" />
<glyph unicode="&#xe938;" glyph-name="mbri-home" d="M106.667 576c-11.788-0.184-21.518-9.551-21.333-21.333v-469.333c0-35.087 28.896-64 64-64h213.333c11.787 0.001 21.332 9.552 21.333 21.333v234.667c0 71.281 56.666 128 127.982 128s128.018-56.719 128.018-128v-234.667c0.001-11.782 9.546-21.332 21.333-21.333h213.333c35.104 0 63.986 28.913 64 64l0.192 469.333c0.205 14.425-10.751 21.333-21.525 21.333s-21.366-6.909-21.162-21.333l-0.171-469.333c-0.004-12.188-9.14-21.333-21.333-21.333h-192v213.333c0 94.18-76.458 170.667-170.685 170.667s-170.604-76.486-170.649-170.667v-213.333h-192c-12.194 0-21.333 9.146-21.333 21.333v469.333c0.189 12.043-9.284 21.522-21.333 21.333zM511.982 874.667c-19.6 0-37.329-6.497-51.109-12.417s-23.845-12-23.845-12l-425.96-234.083c-23.881-13.788-2.462-50.098 20.593-37.417l426.627 234.5c0.252 0.161 0.503 0.328 0.75 0.5 0 0 7.625 4.586 18.676 9.333s25.297 8.917 34.267 8.917c8.971 0 23.275-4.167 34.35-8.917s18.676-9.417 18.676-9.417c0.247-0.144 0.497-0.283 0.751-0.417l426.543-234.5c24.981-13.805 44.851 24.147 20.593 37.417l-425.876 234.083c0 0-10.132 6.083-23.928 12s-31.508 12.417-51.108 12.417z" />
<glyph unicode="&#xe939;" glyph-name="mbri-hot-cup" d="M234.667 960c-11.819 0-21.333-9.515-21.333-21.333v-85.333c0-11.819 9.515-21.333 21.333-21.333s21.333 9.515 21.333 21.333v85.333c0 11.819-9.515 21.333-21.333 21.333zM405.333 960c-11.819 0-21.333-9.515-21.333-21.333v-85.333c0-11.819 9.515-21.333 21.333-21.333s21.333 9.515 21.333 21.333v85.333c0 11.819-9.515 21.333-21.333 21.333zM576 960c-11.819 0-21.333-9.515-21.333-21.333v-85.333c0-11.819 9.515-21.333 21.333-21.333s21.333 9.515 21.333 21.333v85.333c0 11.819-9.515 21.333-21.333 21.333zM21.333 789.333c-11.782-0.184-21.518-9.551-21.333-21.333v-448c0-150.147 95.265-278.035 225.417-341.333h-204.083c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h768c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333h-204.083c130.151 63.299 225.417 191.186 225.417 341.333v448c0.204 14.425-10.565 21.333-21.333 21.333s-21.537-6.909-21.333-21.333v-448c0-187.958-173.199-341.333-362.667-341.333s-362.667 153.376-362.667 341.333v448c0.188 12.043-9.29 21.522-21.333 21.333zM106.667 661.333c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h597.333c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333zM874.667 661.333c-14.425 0.204-21.333-10.565-21.333-21.333s6.909-21.537 21.333-21.333c59.163 0 106.667-47.504 106.667-106.667s-47.504-106.667-106.667-106.667c-14.425 0.205-21.333-10.565-21.333-21.333s6.909-21.537 21.333-21.333c82.222 0 149.333 67.112 149.333 149.333s-67.112 149.333-149.333 149.333z" />
<glyph unicode="&#xe93a;" glyph-name="mbri-idea" d="M490.667 960c-11.819 0-21.333-9.515-21.333-21.333v-85.333c0-11.819 9.515-21.333 21.333-21.333s21.333 9.515 21.333 21.333v85.333c0 11.819-9.515 21.333-21.333 21.333zM192 832c-19.126-0.004-28.577-23.068-14.833-36.417l42.5-42.75c19.397-19.466 49.265 11.684 30.083 30.167l-42.5 42.75c-4.009 4.159-9.484 6.25-15.25 6.25zM789.322 832c-5.766 0-11.241-2.091-15.25-6.25l-42.583-42.75c-19.182-18.483 10.687-49.632 30.083-30.167l42.583 42.75c13.744 13.348 4.293 36.413-14.833 36.417zM490.667 746.667c-66.981 0-126.661-38.192-168.25-96.417s-66.417-136.991-66.417-223.583c0-86.592 24.828-165.359 66.417-223.583s101.269-96.417 168.25-96.417c66.981 0 126.661 38.192 168.25 96.417s66.417 136.991 66.417 223.583c0 86.592-24.828 165.359-66.417 223.583s-101.269 96.417-168.25 96.417zM490.667 704c50.84 0 97.877-28.712 133.5-78.583s58.5-120.393 58.5-198.75c0-78.357-22.877-148.878-58.5-198.75-19.901-27.861-43.468-48.83-69.167-62.167 0.837 54.641 7.286 100.253 17 128 11.978 34.216 29.223 55.53 57 71.583 19.707 10.871 11.056 40-11.167 40-3.549-0.141-7.034-1.261-10.083-3.084-36.037-20.827-61.306-52.682-75.917-94.417-14.184-40.515-19.537-90.446-19.833-152.833-16.111-5.886-28.91-4.726-42.667 0-0.299 62.388-5.65 112.318-19.833 152.833-14.611 41.735-39.879 73.59-75.917 94.417-3.049 1.822-6.535 2.941-10.083 3.083-22.223 0-30.874-29.129-11.167-40 27.777-16.053 45.022-37.367 57-71.583 9.708-27.732 16.157-74.056 17-128-25.699 13.336-49.266 34.306-69.167 62.167-35.623 49.872-58.5 120.393-58.5 198.75s22.877 148.878 58.5 198.75c35.623 49.872 82.66 78.583 133.5 78.583zM64 448c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h85.333c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333zM831.989 448c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h85.333c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333zM362.667 64c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h256c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333zM362.667-21.333c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h256c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333z" />
<glyph unicode="&#xe93b;" glyph-name="mbri-image-gallery" d="M362.667 746.667c-2.435-0.024-5.804-0.474-8.099-1.331l-313.831-119.704c-33.373-12.713-49.062-51.397-36.33-84.017l170.425-436.722c12.766-32.704 50.893-51.734 83.965-34.272l154.795 80.437c27.472 13.18 6.722 51.256-19.121 37.932l-154.711-80.354c-8.632-4.558-21.215 1.315-25.605 12.561l-12.387 31.694 84.381 42.175c20.554 9.832 13.966 39.83-8.815 39.601-3.332-0.043-6.606-0.87-9.56-2.412l-81.552-39.601-142.492 365.183c-4.423 11.33 0.611 23.71 11.306 27.784l313.997 119.537c23.357 8.904 17.077 41.509-6.366 41.509zM533.333 490.667c-3.354 0.020-6.499-0.751-9.5-2.25l-85.333-42.667c-25.523-11.414-4.086-50.927 20-37.667l65.333 32.667 33.083-66.25c5.254-10.531 18.043-14.819 28.583-9.583l151.667 75.833 32.25-65.083c12.104-27.065 52.466-6.973 38.167 19l-41.833 84.167c-5.254 10.531-18.043 14.819-28.583 9.583l-151.667-75.833-33.083 66.25c-3.576 7.19-10.885 11.762-19.083 11.833zM558.841 827.218c-31.578 13.392-68.329-2.335-81.35-34.813l-174.175-434.434c-13.021-32.478 2.27-70.277 33.848-83.669l383.995-162.854c31.578-13.392 68.329 2.335 81.35 34.813l174.175 434.434c13.021 32.478-2.27 70.277-33.848 83.669zM543.007 787.724l383.995-162.854c10.969-4.652 15.806-16.608 11.283-27.89l-150.424-375.193-422.394 179.139 150.424 375.193c4.523 11.281 16.148 16.256 27.117 11.604zM349.633 361.433l422.394-179.139-7.917-19.747c-4.523-11.281-16.148-16.256-27.117-11.604l-383.995 162.854c-10.969 4.652-15.806 16.608-11.283 27.89zM597.333 704c-46.876 0-85.333-38.458-85.333-85.333s38.458-85.333 85.333-85.333c46.876 0 85.333 38.458 85.333 85.333s-38.458 85.333-85.333 85.333zM597.333 661.333c23.817 0 42.667-18.85 42.667-42.667s-18.85-42.667-42.667-42.667c-23.817 0-42.667 18.85-42.667 42.667s18.85 42.667 42.667 42.667zM192 576c-35.094 0-64-28.906-64-64s28.906-64 64-64c35.094 0 64 28.906 64 64s-28.906 64-64 64zM192 533.333c12.035 0 21.333-9.299 21.333-21.333s-9.299-21.333-21.333-21.333c-12.035 0-21.333 9.299-21.333 21.333s9.299 21.333 21.333 21.333zM277.333 448c-9.344 0.077-17.402-5.683-20.25-14.583l-42.667-128c-3.238-9.713 2.009-28.083 20.25-28.083 4.243 0 15.389 0 20.25 14.583l42.667 128c4.792 13.801-5.641 27.977-20.25 28.083z" />
<glyph unicode="&#xe93c;" glyph-name="mbri-image-slider" d="M661.317 661.331c-5.542-0.088-11.166-2.332-15.084-6.256l-155.566-155.726-70.277 70.314c-8.332 8.335-21.836 8.335-30.168 0l-128.006-128.117c-19.415-18.658 11.143-49.236 30.168-30.194l112.949 113.020 70.225-70.314c8.332-8.336 21.836-8.336 30.168 0l155.59 155.726 70.253-70.314c19.128-19.939 49.667 11.456 30.168 30.194l-85.337 85.412c-4.082 4.087-9.311 6.344-15.084 6.256zM384 789.333c-46.876 0-85.333-38.458-85.333-85.333s38.458-85.333 85.333-85.333c46.876 0 85.333 38.458 85.333 85.333s-38.458 85.333-85.333 85.333zM384 746.667c23.817 0 42.667-18.85 42.667-42.667s-18.85-42.667-42.667-42.667c-23.817 0-42.667 18.85-42.667 42.667s18.85 42.667 42.667 42.667zM277.333 362.667h469.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-469.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM853.333 85.333c0-11.782-9.551-21.333-21.333-21.333s-21.333 9.551-21.333 21.333c0 11.782 9.551 21.333 21.333 21.333s21.333-9.551 21.333-21.333zM213.333 85.333c0-11.782-9.551-21.333-21.333-21.333s-21.333 9.551-21.333 21.333c0 11.782 9.551 21.333 21.333 21.333s21.333-9.551 21.333-21.333zM512 149.333c-46.876 0-85.333-38.458-85.333-85.333s38.458-85.333 85.333-85.333c46.876 0 85.333 38.458 85.333 85.333s-38.458 85.333-85.333 85.333zM512 106.667c23.817 0 42.667-18.85 42.667-42.667s-18.85-42.667-42.667-42.667c-23.817 0-42.667 18.85-42.667 42.667s18.85 42.667 42.667 42.667zM106.667 832c14.428 0 21.355-10.667 21.333-21.333s-6.99-21.333-21.333-21.333h-42.667c-12.188 0-21.333-9.146-21.333-21.333v-426.667c0-12.188 9.146-21.333 21.333-21.333h42.667c14.623 0 21.333-10.565 21.333-21.333s-7.401-21.333-21.333-21.333h-42.667c-35.087 0-64 28.913-64 64v426.667c0 35.087 28.913 64 64 64zM917.333 832c-14.428 0-21.355-10.667-21.333-21.333s6.99-21.333 21.333-21.333h42.667c12.188 0 21.333-9.146 21.333-21.333v-426.667c0-12.188-9.146-21.333-21.333-21.333h-42.667c-14.623 0-21.333-10.565-21.333-21.333s7.401-21.333 21.333-21.333h42.667c35.087 0 64 28.913 64 64v426.667c0 35.087-28.913 64-64 64zM234.667 917.333c-35.087 0-64-28.913-64-64v-554.667c0-35.087 28.913-64 64-64h554.667c35.087 0 64 28.913 64 64v554.667c0 35.087-28.913 64-64 64h-554.667zM234.667 874.667h554.667c12.188 0 21.333-9.146 21.333-21.333v-554.667c0-12.188-9.146-21.333-21.333-21.333h-554.667c-12.188 0-21.333 9.146-21.333 21.333v554.667c0 12.188 9.146 21.333 21.333 21.333z" />
<glyph unicode="&#xe93d;" glyph-name="mbri-info" d="M512 576c-46.906 0-85.333-38.428-85.333-85.333v-298.667c0-46.906 38.428-85.333 85.333-85.333s85.333 38.428 85.333 85.333v298.667c0 46.906-38.428 85.333-85.333 85.333zM512 533.333c24.006 0 42.667-18.66 42.667-42.667v-298.667c0-24.006-18.66-42.667-42.667-42.667s-42.667 18.66-42.667 42.667v298.667c0 24.006 18.66 42.667 42.667 42.667zM512 789.333c-46.876 0-85.333-38.458-85.333-85.333s38.458-85.333 85.333-85.333c46.876 0 85.333 38.458 85.333 85.333s-38.458 85.333-85.333 85.333zM512 746.667c23.817 0 42.667-18.85 42.667-42.667s-18.85-42.667-42.667-42.667c-23.817 0-42.667 18.85-42.667 42.667s18.85 42.667 42.667 42.667zM512 960c-282.517 0-512-229.483-512-512s229.483-512 512-512c282.517 0 512 229.483 512 512s-229.483 512-512 512zM512 917.333c259.458 0 469.333-209.875 469.333-469.333s-209.875-469.333-469.333-469.333c-259.458 0-469.333 209.875-469.333 469.333s209.875 469.333 469.333 469.333z" />
<glyph unicode="&#xe93e;" glyph-name="mbri-italic" d="M640.003 959.454c-46.876 0-85.333-38.46-85.333-85.333 0-46.878 38.458-85.333 85.333-85.333s85.333 38.455 85.333 85.333c0 46.874-38.458 85.333-85.333 85.333zM640.003 916.787c23.817 0 42.667-18.85 42.667-42.667s-18.85-42.667-42.667-42.667c-23.817 0-42.667 18.85-42.667 42.667s18.85 42.667 42.667 42.667zM562.667 746.667c-14.629 0-28.479-2.688-41.333-6.669-38.564-11.887-68.939-38.447-90.667-64-28.971-34.074-44-67.998-44-67.998-12.182-25.651 23.037-46.724 37.333-17.335 0 0 13.83 29.457 38.667 58.667 17.104 20.113 38.782 38.383 64 48 10.034 3.84 13.751-7.057 14.667-14.665 1.663-13.815-3.971-41.647-16-76.002-24.059-68.715-72.359-164.548-118.667-259.998s-90.377-190.426-104-266.667c-6.811-38.123-6.998-72.162 9.333-100.002 16.332-27.836 49.949-43.998 92-43.998 58.636 0 105.995 36.557 138.667 70.665 32.672 34.112 52 69.333 52 69.333 12.574 21.781-23.404 44.13-37.333 20.002 0 0-16.576-29.982-45.333-60.002-13.709-14.31-29.119-28.565-46.667-38.665-10.021-5.769-17.702 2.005-18.667 13.333-1.163 13.632 4.687 42.074 17.333 75.998 25.293 67.853 74.521 160.508 120 254.669s87.761 189.385 97.333 265.331c4.786 37.969 1.129 73.079-18.667 100.002s-54.541 40-100 40zM577.333 704c26.879-2.432 41.902-10.748 50.667-22.669 10.341-14.067 14.736-37.043 10.667-69.333-8.14-64.585-48.312-158.788-93.333-251.998s-94.243-185.993-121.333-258.667c-13.545-36.339-22.76-67.29-20-94.669 0.929-9.212 4.414-18.59 9.333-26.667-28.411-4.305-53.609 2.773-64 21.342-7.806 13.939-11.269 38.775-5.333 72 11.871 66.441 54.012 161.203 100 256 45.988 94.793 95.432 190.029 121.333 264 12.951 36.988 21.393 68.151 17.333 96-0.751 5.154-3.321 9.741-5.333 14.669z" />
<glyph unicode="&#xe93f;" glyph-name="mbri-key" d="M192 832c-35.094 0-64-28.906-64-64s28.906-64 64-64c35.094 0 64 28.906 64 64s-28.906 64-64 64zM192 789.333c12.035 0 21.333-9.299 21.333-21.333s-9.299-21.333-21.333-21.333c-12.035 0-21.333 9.299-21.333 21.333s9.299 21.333 21.333 21.333zM277.333 960c-152.914 0-277.333-124.419-277.333-277.333s124.419-277.333 277.333-277.333c33.441 0 68.286 8.842 99.333 19.833l482.917-482.917c3.86-3.861 9.193-6.249 15.083-6.25h128c11.782 0.001 21.332 9.552 21.333 21.333v128c-0.001 5.891-2.389 11.223-6.25 15.083l-85.333 85.333c-3.86 3.861-9.193 6.249-15.083 6.25h-21.334v21.333c-0.001 5.891-2.389 11.223-6.25 15.083l-85.333 85.333c-3.86 3.861-9.193 6.249-15.083 6.25h-64v64c-0.001 5.891-2.389 11.223-6.25 15.083l-85.333 85.333c-3.86 3.861-9.193 6.249-15.083 6.25h-21.334v21.333c-0.001 5.891-2.389 11.223-6.25 15.083l-56.25 56.25c10.991 31.047 19.833 65.892 19.833 99.333 0 152.914-124.419 277.333-277.333 277.333zM277.333 917.333c129.856 0 234.667-104.811 234.667-234.667 0-31.975-8.068-70.91-19.667-98.333-1.065-2.453-1.685-5.309-1.685-8.311 0-5.901 2.396-11.243 6.268-15.105l57.75-57.75v-33.833c0.001-11.782 9.552-21.332 21.333-21.333h33.833l72.833-72.833v-76.5c0.001-11.782 9.552-21.332 21.333-21.333h76.5l72.833-72.833v-33.833c0.001-11.782 9.552-21.332 21.333-21.333h33.833l72.833-72.833v-97.833h-97.833l-484.417 484.417c-3.863 3.873-9.205 6.269-15.106 6.269-3.001 0-5.858-0.62-8.449-1.738-27.285-11.546-66.22-19.614-98.195-19.614-129.856 0-234.667 104.811-234.667 234.667s104.811 234.667 234.667 234.667z" />
<glyph unicode="&#xe940;" glyph-name="mbri-laptop" d="M192 746.667c-11.782-0.001-21.332-9.552-21.333-21.333v-469.333c0-27.833 42.667-28.54 42.667 0v448h597.333v-448c0-28.691 42.667-28.002 42.667 0v469.333c-0.001 11.782-9.552 21.332-21.333 21.333zM149.333 832c-35.087 0-64-28.913-64-64v-512c0-28.54 43.065-28.172 42.667 0v512c0 12.188 9.146 21.333 21.333 21.333h725.333c12.188 0 21.333-9.146 21.333-21.333v-512c0-28.517 42.667-28.003 42.667 0v512c0 35.087-28.913 64-64 64zM21.333 192c-11.782-0.001-21.332-9.552-21.333-21.333 0-58.724 47.942-106.667 106.667-106.667h810.667c58.724 0 106.667 47.942 106.667 106.667-0.001 11.782-9.552 21.332-21.333 21.333zM51.417 149.333h921.167c-9.262-23.791-27.842-42.667-55.25-42.667h-810.667c-27.408 0-45.988 18.875-55.25 42.667z" />
<glyph unicode="&#xe941;" glyph-name="mbri-layers" d="M874.667 746.667c-14.444 0-21.333-10.565-21.333-21.333s6.909-21.333 21.333-21.333h85.333c12.188 0 21.333-9.146 21.333-21.333v-682.667c0-12.188-9.146-21.333-21.333-21.333h-682.667c-12.188 0-21.333 9.146-21.333 21.333v85.333c0.204 14.425-10.565 21.333-21.333 21.333s-21.537-6.909-21.333-21.333v-85.333c0-35.087 28.913-64 64-64h682.667c35.087 0 64 28.913 64 64v682.667c0 35.087-28.913 64-64 64zM64 960c-35.087 0-64-28.913-64-64v-682.667c0-35.087 28.913-64 64-64h682.667c35.087 0 64 28.913 64 64v682.667c0 35.087-28.913 64-64 64zM64 917.333h682.667c12.188 0 21.333-9.146 21.333-21.333v-682.667c0-12.188-9.146-21.333-21.333-21.333h-682.667c-12.188 0-21.333 9.146-21.333 21.333v682.667c0 12.188 9.146 21.333 21.333 21.333z" />
<glyph unicode="&#xe942;" glyph-name="mbri-left-right" d="M817.366 143.843l112.6 112.767-112.6 111.39c-19.784 19.259 10.003 51.195 30.292 30.293l127.729-126.521c7.926-7.939 7.926-22.384 0-30.323l-127.729-127.929c-20.803-20.889-50.384 10.149-30.292 30.323zM831.998 618.666h-682.665c-28.151 0-27.582 42.667 0 42.667h682.665c28.339 0 27.736-42.667 0-42.667zM163.969 751.986l-112.604-112.767 112.604-111.39c19.784-19.259-10.007-51.195-30.296-30.293l-127.725 126.521c-7.931 7.939-7.931 22.384 0 30.323l127.725 127.929c20.807 20.889 50.384-10.149 30.296-30.323zM149.333 277.333h682.665c28.566 0 27.526-42.667 0-42.667h-682.665c-28.819 0-27.59 42.667 0 42.667z" />
<glyph unicode="&#xe943;" glyph-name="mbri-left" d="M511.992 0c-0.154 5.535-2.454 11.456-6.414 15.325l-454.099 454.008 453.849 454.030c20.003 19.206-10.956 50.161-30.157 30.16l-468.927-468.974c-8.325-8.329-8.325-21.83 0-30.16l469.177-469.224c12.74-13.032 36.571-5.235 36.571 14.834zM1024 469.333c0-11.819-9.515-21.333-21.333-21.333h-853.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333h853.333c11.819 0 21.333-9.515 21.333-21.333z" />
<glyph unicode="&#xe944;" glyph-name="mbri-letter" d="M106.667 704c-21.336 0-29.137-27.547-11.862-39.064l341.228-234.534c20.896-14.362 46.138-25.069 75.968-25.069s55.257 10.707 76.152 25.069l341.228 234.534c23.558 15.946-2.609 50.173-24.159 35.147l-341.228-234.534c-16.154-11.103-31.963-17.549-51.993-17.549s-35.654 6.446-51.808 17.549l-341.228 234.534c-3.512 2.485-7.995 3.852-12.297 3.917zM64 789.333c-35.087 0-64-28.913-64-64v-554.667c0-35.087 28.913-64 64-64h896c35.087 0 64 28.913 64 64v554.667c0 35.087-28.913 64-64 64zM64 746.667h896c12.188 0 21.333-9.146 21.333-21.333v-554.667c0-12.188-9.146-21.333-21.333-21.333h-896c-12.188 0-21.333 9.146-21.333 21.333v554.667c0 12.188 9.146 21.333 21.333 21.333z" />
<glyph unicode="&#xe945;" glyph-name="mbri-like" d="M597.333 917.333c-18.37 0-34.445-3.017-47.917-11s-22.852-20.883-28.083-34.833c-10.463-27.9-9.333-60.833-9.333-103.5 0-39.111-8.904-65.564-28.417-94.833s-50.667-60.75-93.333-103.417c-18.732-17.985 10.558-49.775 30.167-30.167 42.667 42.667 75.513 75.186 98.667 109.917s35.583 72.278 35.583 118.5c0 42.667 1.129 73.734 6.667 88.5 2.769 7.383 5.388 10.483 9.917 13.167s12.454 5 26.083 5c12.444 0 19.062-2.724 23.917-6.5s8.733-9.615 11.833-18.917c6.201-18.603 6.917-49.25 6.917-81.25 0-123.259-40.417-203.833-40.417-203.833-7.047-14.175 3.254-30.817 19.083-30.833h338.167c15.782 0 24.5-24.101 24.5-42.667 0-28.444-30.833-44.917-30.833-44.917-15.726-7.862-15.726-30.304 0-38.167 0 0 30.833-16.472 30.833-44.917s-30.833-44.917-30.833-44.917c-15.726-7.862-15.726-30.304 0-38.167 0 0 30.833-16.472 30.833-44.917s-30.833-44.917-30.833-44.917c-15.726-7.862-15.726-30.304 0-38.167 0 0 30.833-16.472 30.833-44.917 0-14.222-5.718-22.618-17.167-30.25s-29.056-12.417-46.833-12.417h-512c-28.153 0-27.907-42.667 0-42.667h512c24.889 0 49.949 5.882 70.5 19.583s36.167 37.306 36.167 65.75c0 30.092-14.478 50.419-28.833 64 14.355 13.581 28.833 33.908 28.833 64s-14.478 50.419-28.833 64c14.355 13.581 28.833 33.908 28.833 64s-14.478 50.419-28.833 64c14.355 13.581 28.833 33.908 28.833 64 0 24.889-6.17 45.616-17.583 60.833s-28.639 24.5-46.417 24.5h-311c12.64 31.603 33.667 92.499 33.667 192 0 32 0.716 65.353-9.083 94.75-4.899 14.698-13.022 28.859-26.167 39.083s-30.528 15.5-50.083 15.5zM64 576c-35.087 0-64-28.913-64-64v-469.333c0-35.087 28.913-64 64-64h213.333c35.087 0 64 28.913 64 64v469.333c0 35.087-28.913 64-64 64zM64 533.333h213.333c12.188 0 21.333-9.146 21.333-21.333v-469.333c0-12.188-9.146-21.333-21.333-21.333h-213.333c-12.188 0-21.333 9.146-21.333 21.333v469.333c0 12.188 9.146 21.333 21.333 21.333z" />
<glyph unicode="&#xe946;" glyph-name="mbri-link" d="M768 191.997c141.455 0 256 114.545 256 256s-114.545 256-256 256h-106.667c-14.425 0.204-21.333-10.565-21.333-21.333s6.909-21.537 21.333-21.333h106.667c118.556 0 213.333-94.778 213.333-213.333s-94.778-213.333-213.333-213.333h-128c-118.556 0-213.333 94.778-213.333 213.333v21.333c0.205 14.425-10.565 21.333-21.333 21.333s-21.537-6.909-21.333-21.333v-21.333c0-141.455 114.545-256 256-256zM256 704c-141.455 0-256-114.545-256-256s114.545-256 256-256h106.667c14.425-0.204 21.333 10.565 21.333 21.333s-6.909 21.537-21.333 21.333h-106.667c-118.556 0-213.333 94.778-213.333 213.333s94.778 213.333 213.333 213.333h128c118.556 0 213.333-94.778 213.333-213.333v-21.333c-0.205-14.425 10.565-21.333 21.333-21.333s21.537 6.909 21.333 21.333v21.333c0 141.455-114.545 256-256 256z" />
<glyph unicode="&#xe947;" glyph-name="mbri-lock" d="M490.667 960c-129.35 0-234.667-105.317-234.667-234.667v-85.333c0-28.683 42.667-27.667 42.667 0v85.333c0 106.291 85.709 192 192 192s192-85.709 192-192v-85.333c0-28.512 42.667-28.006 42.667 0v85.333c0 129.35-105.317 234.667-234.667 234.667zM490.667 405.333c-58.658 0-106.667-48.009-106.667-106.667 0.026-32.842 17.323-61.636 42.667-81.667v-46.333c0-35.087 28.913-64 64-64s64 28.913 64 64v46.417c25.323 20.008 42.609 48.774 42.667 81.583 0 58.658-48.009 106.667-106.667 106.667zM490.667 362.667c35.599 0 64-28.401 64-64-0.040-22.858-12.204-43.821-32-55.25-6.608-3.816-10.675-10.87-10.667-18.5v-54.25c0-12.188-9.146-21.333-21.333-21.333s-21.333 9.146-21.333 21.333v54.167c0.008 7.63-4.059 14.684-10.667 18.5-19.816 11.44-31.982 32.452-32 55.333 0 35.599 28.401 64 64 64zM192 576c-35.087 0-64-28.913-64-64v-512c0-35.087 28.913-64 64-64h597.333c35.087 0 64 28.913 64 64v512c0 35.087-28.913 64-64 64zM192 533.333h597.333c12.188 0 21.333-9.146 21.333-21.333v-512c0-12.188-9.146-21.333-21.333-21.333h-597.333c-12.188 0-21.333 9.146-21.333 21.333v512c0 12.188 9.146 21.333 21.333 21.333z" />
<glyph unicode="&#xe948;" glyph-name="mbri-login" d="M448 661.333c-19.175-0.004-28.862-23.082-15.083-36.417l155.583-155.583-155.583-155.583c-20.94-20.107 10.060-51.106 30.167-30.167l170.667 170.667c8.328 8.331 8.328 21.835 0 30.167l-170.667 170.667c-4.019 4.154-9.303 6.25-15.083 6.25zM21.333 490.667h426.667c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-426.667c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM277.333 960c-35.087 0-64-28.913-64-64v-213.333c0-28.356 42.667-28.016 42.667 0v213.333c0 12.188 9.146 21.333 21.333 21.333h682.667c12.188 0 21.333-9.146 21.333-21.333v-896c0-12.188-9.146-21.333-21.333-21.333h-682.667c-12.188 0-21.333 9.146-21.333 21.333v256c0 28.516-42.667 27.85-42.667 0v-256c0-35.087 28.913-64 64-64h682.667c35.087 0 64 28.913 64 64v896c0 35.087-28.913 64-64 64z" />
<glyph unicode="&#xe949;" glyph-name="mbri-logout" d="M192 277.333c19.019 0 27.973 23.527 15.083 36.417l-155.583 155.583 155.583 155.583c19.070 18.311-12.182 48.897-30.167 30.167l-170.667-170.667c-8.328-8.331-8.328-21.835 0-30.167l170.667-170.667c4.019-4.154 9.303-6.25 15.083-6.25zM576 448h-426.667c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333h426.667c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333zM320 960c-35.087 0-64-28.913-64-64v-213.333c0-28.356 42.667-28.016 42.667 0v213.333c0 12.188 9.146 21.333 21.333 21.333h640c12.188 0 21.333-9.146 21.333-21.333v-896c0-12.188-9.146-21.333-21.333-21.333h-640c-12.188 0-21.333 9.146-21.333 21.333v256c0 28.516-42.667 27.85-42.667 0v-256c0-35.087 28.913-64 64-64h640c35.087 0 64 28.913 64 64v896c0 35.087-28.913 64-64 64z" />
<glyph unicode="&#xe94a;" glyph-name="mbri-magic-stick" d="M763.792 831.548c-0.167 0.004-0.363 0.007-0.559 0.007-3.846 0-7.46-0.951-10.598-2.621l-159.647-83.299-162.436 78.554c-2.868 1.417-6.26 2.248-9.855 2.248-12.052 0-21.822-9.339-21.822-20.859 0-1.368 0.138-2.704 0.4-3.998l33.536-170.895-128.292-123.43c-3.905-3.768-6.318-8.954-6.318-14.679 0-10.554 8.199-19.277 18.841-20.666l180.626-22.33 83.101-154.788c3.691-6.808 11.006-11.38 19.439-11.38 8.662 0 16.145 4.824 19.67 11.815l78.053 157.313 179.676 27.758c10.481 1.644 18.381 10.24 18.381 20.598 0 5.967-2.621 11.348-6.822 15.15l-132.319 119.52 27.951 171.907c0.167 0.97 0.262 2.087 0.262 3.225 0 11.334-9.457 20.557-21.239 20.852zM734.92 772.112l-23.014-141.029c-0.158-0.942-0.248-2.029-0.248-3.135 0-5.979 2.632-11.371 6.848-15.174l108.552-98.002-147.372-22.798c-7.207-1.133-13.138-5.508-16.178-11.475l-64.077-129.154-68.121 127.030c-3.27 6.025-9.354 10.278-16.543 11.188l-148.153 18.25 105.278 101.192c3.907 3.768 6.322 8.956 6.322 14.683 0 1.371-0.138 2.71-0.402 4.007l-27.511 140.098 133.229-64.395c2.867-1.416 6.257-2.246 9.85-2.246 3.846 0 7.459 0.951 10.597 2.62l130.942 68.34zM1024 640c0-11.819-9.515-21.333-21.333-21.333h-85.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333h85.333c11.819 0 21.333-9.515 21.333-21.333zM191.25 746.833c-20.583 0-29.521-30.664-8.75-40.583l85.333-42.667c23.406-12.886 44.91 26.58 19 38.167l-85.333 42.667c-3.161 1.649-6.685 2.48-10.25 2.417zM746.667 362.666c-16.523 0.119-26.243-16.463-18.857-30.833l42.667-85.333c12.269-27.435 49.061-0.789 38.167 19l-42.667 85.333c-3.479 7.234-11.282 11.775-19.31 11.833zM576 960c11.819 0 21.333-9.515 21.333-21.333v-85.333c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v85.333c0 11.819 9.515 21.333 21.333 21.333zM404.917 405.323c-5.538-0.034-10.796-2.288-14.667-6.25l-372.109-372.002c-11.611-11.608-18.141-25.783-18.141-40.114 0-13.994 4.38-27.43 13.641-36.886s22.709-14.071 36.797-14.071c14.247 0 28.783 6.489 40.536 18.238l372.109 372.001c19.328 18.558-11.226 49.107-30.167 30.167l-372.109-372.002c-14.041-14.041-25.333-0.333-12.5 12.5l372.109 372.001c12.873 12.585 4.277 36.537-15.5 36.417z" />
<glyph unicode="&#xe94b;" glyph-name="mbri-map-pin" d="M512 789.333c-70.44 0-128-57.56-128-128s57.56-128 128-128c70.44 0 128 57.56 128 128s-57.56 128-128 128zM512 746.667c47.381 0 85.333-37.952 85.333-85.333s-37.952-85.333-85.333-85.333c-47.381 0-85.333 37.952-85.333 85.333s37.952 85.333 85.333 85.333zM512 960c-164.696 0-298.667-133.97-298.667-298.667 0-104.663 61.091-218.543 126.417-308.5 32.663-44.979 66.675-83.752 95.833-111.833 14.579-14.040 27.89-25.403 39.833-33.75s20.675-15.25 36.583-15.25c15.908 0 24.64 6.903 36.583 15.25s25.254 19.71 39.833 33.75c29.158 28.081 63.17 66.855 95.833 111.833 65.326 89.957 126.417 203.837 126.417 308.5 0 164.696-133.97 298.667-298.667 298.667zM512 917.333c141.638 0 256-114.362 256-256 0-87.337-55.85-197.457-118.333-283.5-31.242-43.021-63.92-80.248-90.833-106.167-13.457-12.96-26.005-22.436-34.667-29.5-8.435-6.879-16.19-6.796-24.333 0-8.582 7.161-21.21 16.541-34.667 29.5-26.913 25.919-59.592 63.145-90.833 106.167-62.484 86.043-118.333 196.163-118.333 283.5 0 141.638 114.362 256 256 256zM149.333 576c-10.149 0-19.674-8.033-21.083-18.083l-85.333-554.667c-2.954-19.203 5.249-37.205 17.5-48.833s28.624-18.417 46.25-18.417h810.667c17.626 0 33.999 6.788 46.25 18.417s20.463 29.632 17.5 48.833l-85.083 551.417c-2.109 15.42-11.038 21.333-21.333 21.333-18.962 0-22.211-17.226-20.833-25.25l85.083-554c2.746-14.33-3.081-18.083-21.583-18.083h-810.667c-17.037 0-23.556 3.712-21.583 18.083l85.333 554.667c1.185 7.049-2.386 24.583-21.083 24.583z" />
<glyph unicode="&#xe94c;" glyph-name="mbri-menu" d="M21.333 149.333h981.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-981.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM21.333 490.667h981.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-981.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM21.333 832h981.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-981.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333z" />
<glyph unicode="&#xe94d;" glyph-name="mbri-mobile" d="M554.667 64c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667zM448 832h128c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333h-128c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333zM277.333 960c-35.072 0-64-28.928-64-64v-896c0-35.072 28.928-64 64-64h469.333c35.072 0 64 28.928 64 64v896c0 35.072-28.928 64-64 64zM277.333 917.333h469.333c12.203 0 21.333-9.131 21.333-21.333v-896c0-12.203-9.131-21.333-21.333-21.333h-469.333c-12.203 0-21.333 9.131-21.333 21.333v896c0 12.203 9.131 21.333 21.333 21.333z" />
<glyph unicode="&#xe94e;" glyph-name="mbri-mobile2" d="M320 746.667h384c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333h-384c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333zM448 832h128c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333h-128c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333zM320 149.333h384c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-384c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM448 64h128c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-128c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM277.333 960c-35.072 0-64-28.928-64-64v-896c0-35.072 28.928-64 64-64h469.333c35.072 0 64 28.928 64 64v896c0 35.072-28.928 64-64 64h-469.333zM277.333 917.333h469.333c12.203 0 21.333-9.131 21.333-21.333v-896c0-12.203-9.131-21.333-21.333-21.333h-469.333c-12.203 0-21.333 9.131-21.333 21.333v896c0 12.203 9.131 21.333 21.333 21.333z" />
<glyph unicode="&#xe94f;" glyph-name="mbri-mobirise" d="M821.035 118.315c-10.24-5.973-23.253-2.432-29.141 7.808l-42.667 73.899c-5.973 10.24-2.432 23.211 7.808 29.141 10.24 5.973 23.211 2.475 29.141-7.765l42.667-73.899c5.888-10.24 2.432-23.253-7.808-29.141zM969.387 266.667c-5.888-10.24-18.901-13.739-29.141-7.808l-73.899 42.667c-10.24 5.888-13.653 18.901-7.808 29.141 5.973 10.24 18.901 13.739 29.141 7.808l73.899-42.667c10.24-5.888 13.739-18.901 7.808-29.141zM969.387 672c5.973-10.24 2.432-23.253-7.808-29.141l-73.899-42.667c-10.24-5.973-23.211-2.432-29.141 7.808-5.888 10.24-2.432 23.253 7.808 29.141l73.899 42.667c10.24 5.973 23.253 2.432 29.141-7.808zM821.035 820.352c10.24-5.888 13.653-18.901 7.808-29.141l-42.667-73.899c-5.973-10.24-18.901-13.653-29.141-7.808-10.24 5.888-13.739 18.859-7.808 29.099l42.667 73.899c5.888 10.24 18.901 13.739 29.141 7.808zM1024 469.333c0-11.819-9.515-21.333-21.333-21.333h-85.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333h85.333c11.819 0 21.333-9.515 21.333-21.333zM618.667 192c11.819 0 21.333-9.515 21.333-21.333v-85.333c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v85.333c0 11.819 9.515 21.333 21.333 21.333zM618.667 874.667c11.819 0 21.333-9.515 21.333-21.333v-85.333c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v85.333c0 11.819 9.515 21.333 21.333 21.333zM618.667 704c-27.179 0-28.672-42.667 0-42.667 106.112 0 192-85.675 192-192s-85.888-192-192-192c-27.52 0-28.672-42.667 0-42.667 129.195 0 234.667 105.387 234.667 234.667s-105.472 234.667-234.667 234.667zM298.667 149.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667 42.667-19.115 42.667-42.667zM192 746.667h128c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333h-128c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333zM64 874.667c-35.072 0-64-28.928-64-64v-725.333c0-35.072 28.928-64 64-64h384c35.072 0 64 28.928 64 64v725.333c0 35.072-28.928 64-64 64zM64 832h384c12.203 0 21.333-9.131 21.333-21.333v-725.333c0-12.203-9.131-21.333-21.333-21.333h-384c-12.203 0-21.333 9.131-21.333 21.333v725.333c0 12.203 9.131 21.333 21.333 21.333z" />
<glyph unicode="&#xe950;" glyph-name="mbri-more-horizontal" d="M106.667 576c-58.659 0-106.667-48.013-106.667-106.667 0-58.658 48.009-106.667 106.667-106.667s106.667 48.009 106.667 106.667c0 58.654-48.008 106.667-106.667 106.667zM490.667 576c-58.659 0-106.667-48.013-106.667-106.667 0-58.658 48.009-106.667 106.667-106.667s106.667 48.009 106.667 106.667c0 58.654-48.008 106.667-106.667 106.667zM874.667 576c-58.659 0-106.667-48.013-106.667-106.667 0-58.658 48.009-106.667 106.667-106.667s106.667 48.009 106.667 106.667c0 58.654-48.008 106.667-106.667 106.667zM106.667 533.333c35.598 0 64-28.403 64-64 0-35.601-28.401-64-64-64s-64 28.399-64 64c0 35.597 28.402 64 64 64zM490.667 533.333c35.598 0 64-28.403 64-64 0-35.601-28.401-64-64-64s-64 28.399-64 64c0 35.597 28.402 64 64 64zM874.667 533.333c35.598 0 64-28.403 64-64 0-35.601-28.401-64-64-64s-64 28.399-64 64c0 35.597 28.402 64 64 64z" />
<glyph unicode="&#xe951;" glyph-name="mbri-more-vertical" d="M597.333 853.333c0 58.658-48.013 106.667-106.667 106.667-58.658 0-106.667-48.009-106.667-106.667s48.009-106.667 106.667-106.667c58.654 0 106.667 48.009 106.667 106.667zM597.333 469.333c0 58.658-48.013 106.667-106.667 106.667-58.658 0-106.667-48.009-106.667-106.667s48.009-106.667 106.667-106.667c58.654 0 106.667 48.009 106.667 106.667zM597.333 85.333c0 58.658-48.013 106.667-106.667 106.667-58.658 0-106.667-48.009-106.667-106.667s48.009-106.667 106.667-106.667c58.654 0 106.667 48.009 106.667 106.667zM554.667 853.333c0-35.597-28.403-64-64-64-35.601 0-64 28.399-64 64s28.399 64 64 64c35.597 0 64-28.403 64-64zM554.667 469.333c0-35.597-28.403-64-64-64-35.601 0-64 28.399-64 64s28.399 64 64 64c35.597 0 64-28.403 64-64zM554.667 85.333c0-35.597-28.403-64-64-64-35.601 0-64 28.399-64 64s28.399 64 64 64c35.597 0 64-28.403 64-64z" />
<glyph unicode="&#xe952;" glyph-name="mbri-music" d="M916.667 960c-1.663-0.057-3.313-0.309-4.917-0.75l-469.333-128c-9.293-2.521-15.746-10.954-15.75-20.583v-632.167c-5.107 4.968-10.039 10.071-15.833 14.417-35.051 26.289-82.048 41.75-133.5 41.75s-98.449-15.461-133.5-41.75c-35.051-26.289-58.5-64.551-58.5-107.583s23.449-81.295 58.5-107.583c35.051-26.289 82.048-41.75 133.5-41.75s98.449 15.461 133.5 41.75c35.051 26.289 58.5 64.551 58.5 107.583v709l426.667 116.417v-604.25c-5.107 4.968-10.039 10.071-15.833 14.417-35.051 26.289-82.048 41.75-133.5 41.75s-98.449-15.461-133.5-41.75c-35.051-26.289-58.5-64.551-58.5-107.583s23.449-81.295 58.5-107.583c35.051-26.289 82.048-41.75 133.5-41.75s98.449 15.461 133.5 41.75c35.051 26.289 58.5 64.551 58.5 107.583v725.333c0.005 12.047-9.943 21.333-22 21.333zM831.833 789.417c-1.922-0.049-3.828-0.357-5.667-0.917l-298.667-85.333c-27.592-6.523-13.882-47.846 11.667-41l298.667 85.333c23.476 6.29 19.123 41.917-6 41.917zM746.667 320c42.805 0 81.199-13.212 107.917-33.25s41.417-45.757 41.417-73.417c0-27.66-14.699-53.378-41.417-73.417s-65.112-33.25-107.917-33.25c-42.805 0-81.199 13.212-107.917 33.25s-41.417 45.757-41.417 73.417c0 27.66 14.699 53.378 41.417 73.417s65.112 33.25 107.917 33.25zM277.333 192c42.805 0 81.199-13.212 107.917-33.25s41.417-45.757 41.417-73.417c0-27.66-14.699-53.378-41.417-73.417s-65.112-33.25-107.917-33.25c-42.805 0-81.199 13.212-107.917 33.25s-41.417 45.757-41.417 73.417c0 27.66 14.699 53.378 41.417 73.417s65.112 33.25 107.917 33.25z" />
<glyph unicode="&#xe953;" glyph-name="mbri-new-file" d="M661.333 874.667c-11.782-0.184-21.518-9.551-21.333-21.333v-84.917c0-35.3 29.117-64.417 64.417-64.417h84.917c28.35 0 27.856 42.667 0 42.667h-84.917c-12.4 0-21.75 9.35-21.75 21.75v84.917c0.188 12.043-9.29 21.522-21.333 21.333zM192.417 960c-35.299 0-64.417-29.117-64.417-64.417v-895.167c0-35.299 29.117-64.417 64.417-64.417h639.167c35.299 0 64.417 29.117 64.417 64.417v724.917c-0.001 5.658-2.249 11.083-6.25 15.083l-213.333 213.333c-4 4.001-9.426 6.249-15.083 6.25zM192.417 917.333h460.083l200.833-200.833v-716.083c0-12.4-9.35-21.75-21.75-21.75h-639.167c-12.4 0-21.75 9.35-21.75 21.75v895.167c0 12.4 9.35 21.75 21.75 21.75z" />
<glyph unicode="&#xe954;" glyph-name="mbri-numbered-list" d="M85.333 618.121c-46.876 0-85.333-38.46-85.333-85.333 0-29.892 42.667-28.578 42.667 0 0 23.817 18.85 42.667 42.667 42.667s42.667-18.85 42.667-42.667c0-12.015-4.587-21.611-14.667-33.331-10.080-11.725-25.053-23.633-41.333-37.333-32.561-27.405-72-64.043-72-121.335 0.001-11.17 10.164-20.787 21.333-20.787h128c29.317 0 27.695 42.667 0 42.667h-100c7.767 25.643 24.668 46.694 49.333 67.456 15.72 13.227 32.746 25.139 46.667 41.331s25.333 36.851 25.333 61.333c0 46.874-38.457 85.333-85.333 85.333zM49.817 953.873l-42.062-42.505c-9.288-7.266-10.443-22.925-2.325-31.501s23.647-8.107 31.243 0.939l5.994 6.639v-204.565c0-28.301 42.667-28.527 42.667 0v255.044c0 25.365-25.806 25.762-35.516 15.949zM85.333 277.333c-46.906 0-85.333-38.426-85.333-85.333 0-28.399 42.667-28.958 42.667 0 0 24.004 18.66 42.667 42.667 42.667s42.667-18.662 42.667-42.667c0-24.004-18.66-42.667-42.667-42.667-31.349 0-31.128-42.667 0-42.667 24.006 0 42.667-18.662 42.667-42.667s-18.66-42.667-42.667-42.667c-24.006 0-42.667 18.662-42.667 42.667 0 27.127-42.667 23.3-42.667 0 0-46.908 38.428-85.333 85.333-85.333s85.333 38.426 85.333 85.333c0 25.515-11.413 48.324-29.333 64 17.662 15.667 29.333 38.699 29.333 64 0 46.908-38.428 85.333-85.333 85.333zM1002.322 106.667h-682.667c-28.189 0-27.779 42.667 0 42.667h682.667c28.086 0 28.020-42.667 0-42.667zM1002.667 448h-682.667c-28.189 0-27.779 42.667 0 42.667h682.667c28.086 0 28.020-42.667 0-42.667zM1002.667 789.333h-682.667c-28.189 0-27.779 42.667 0 42.667h682.667c28.086 0 28.020-42.667 0-42.667z" />
<glyph unicode="&#xe955;" glyph-name="mbri-opened-folder" d="M149.833 576.167c-17.675 0-33.662-8.128-44.167-19.583s-16.495-25.628-19.417-40.25l-85.167-426.667c-3.907-19.554 4.582-38.101 17-49.75s28.825-18.583 46.5-18.583h809.75c17.675 0 33.662 8.295 44.167 19.75s16.495 25.628 19.417 40.25l85.25 426.667c3.612 18.080-4.665 38.101-17.083 49.75s-28.825 18.417-46.5 18.417zM149.833 533.5h809.75c5.936 0 13.187-2.944 17.333-6.833s5.141-6.709 4.417-10.333l-85.25-426.667c-5.24-19.556-10.71-25.667-21.75-25.667h-809.75c-17.284 0-24.274 7.603-21.667 17.333l85.167 426.667c1.709 8.556 5.255 15.667 9 19.75s6.814 5.75 12.75 5.75zM64 874.667c-35.087 0-64-28.913-64-64v-469.333c0-28.184 42.667-28.353 42.667 0v469.333c0 12.188 9.146 21.333 21.333 21.333h204.5l164.417-164.417c4-4.001 9.426-6.249 15.083-6.25h448v-21.333c0-29.019 42.667-27.683 42.667 0v42.667c-0.001 11.782-9.552 21.332-21.333 21.333h-460.5l-164.417 164.417c-4 4.001-9.426 6.249-15.083 6.25z" />
<glyph unicode="&#xe956;" glyph-name="mbri-pages" d="M192 832c-35.087 0-64-28.913-64-64v-768c0-35.087 28.913-64 64-64h512c35.087 0 64 28.913 64 64 0.205 14.425-10.565 21.333-21.333 21.333s-21.537-6.909-21.333-21.333c0-12.188-9.146-21.333-21.333-21.333h-512c-12.188 0-21.333 9.146-21.333 21.333v768c0 12.188 9.146 21.333 21.333 21.333 14.546-0.206 21.413 10.615 21.333 21.333s-7.105 21.333-21.333 21.333zM661.333 874.667c-12.007-0.092-21.333-9.363-21.333-21.333v-85.333c0-35.087 28.913-64 64-64h85.333c14.425-0.204 21.333 10.565 21.333 21.333s-6.909 21.537-21.333 21.333h-85.333c-12.188 0-21.333 9.146-21.333 21.333v85.333c0 12.045-9.327 21.425-21.333 21.333zM320 960c-35.087 0-64-28.913-64-64v-768c0-35.087 28.913-64 64-64h512c35.087 0 64 28.913 64 64v597.333c-0.001 5.658-2.249 11.083-6.25 15.083l-213.333 213.333c-4 4.001-9.426 6.249-15.083 6.25zM320 917.333h332.5l200.833-200.833v-588.5c0-12.188-9.146-21.333-21.333-21.333h-512c-12.188 0-21.333 9.146-21.333 21.333v768c0 12.188 9.146 21.333 21.333 21.333z" />
<glyph unicode="&#xe957;" glyph-name="mbri-paper-plane" d="M1002.667 960c-5.433-0.34-10.266-2.664-13.832-6.249l-585.918-585.938-330.75 183.673 811.667 324.678c7.942 3.232 13.438 10.891 13.438 19.834 0 11.794-9.561 21.356-21.355 21.356-2.852 0-5.573-0.559-8.059-1.573l-853.191-341.294c-7.943-3.225-13.441-10.882-13.441-19.822 0-8 4.403-14.972 10.917-18.624l384.108-213.396c2.978-1.678 6.538-2.667 10.329-2.667 5.892 0 11.226 2.389 15.087 6.25l525.25 525.269-329.333-841.78-149.25 298.427c-3.416 7.503-10.848 12.626-19.476 12.626-11.783 0-21.335-9.553-21.335-21.336 0-3.775 0.98-7.321 2.701-10.398l170.611-341.237c3.587-7.031 10.774-11.763 19.067-11.763 8.967 0 16.642 5.532 19.799 13.37l384.051 981.511c0.93 2.307 1.47 4.982 1.47 7.783 0 11.784-9.552 21.336-21.335 21.336-0.428 0-0.854-0.013-1.276-0.038z" />
<glyph unicode="&#xe958;" glyph-name="mbri-paperclip" d="M813.756 959.923c-46.808 1.437-90.859-17.33-125.91-50.235l-615.969-578.239c-95.835-89.965-95.835-237.684 0-327.649 95.829-89.96 250.087-90.894 345.233 0.166l514.891 492.766c20.047 19.176-10.889 48.624-29.498 30.824l-514.891-492.765c-78.271-74.911-207.388-74.248-286.569 0.085-79.175 74.326-79.175 191.176 0 265.502l616.053 578.237c28.129 26.406 60.492 39.724 95.329 38.655s73.196-16.749 112.328-53.484c39.131-36.734 55.372-72.317 56.497-103.885s-12.664-60.836-40.581-87.39c0 0-404.665-384.903-606.998-577.354-43.481-41.357-126.23-41.553-169.463-0.968-44.236 41.527-49.474 104.139-7.373 142.517 172.949 157.654 518.848 472.961 518.848 472.961 20.288 18.581-9.836 48.86-28.832 31.49 0 0-345.898-315.307-518.848-472.961-60.901-55.515-53.73-148.034 7.040-205.081 61.774-57.99 170.538-53.408 227.627 0.885l607.081 577.354c35.232 32.788 55.773 74.902 54.164 120.046s-24.95 91.25-69.913 133.459c-44.962 42.208-93.435 63.627-140.243 65.063z" />
<glyph unicode="&#xe959;" glyph-name="mbri-photo" d="M277.333 789.333c-58.658 0-106.667-48.009-106.667-106.667s48.009-106.667 106.667-106.667c58.658 0 106.667 48.009 106.667 106.667s-48.009 106.667-106.667 106.667zM277.333 746.667c35.599 0 64-28.401 64-64s-28.401-64-64-64c-35.599 0-64 28.401-64 64s28.401 64 64 64zM704 575.997c-4.984-0.079-10.441-1.904-14.218-5.156l-284.449-242.567-112.545 113.758c-8.317 8.31-21.798 8.31-30.116 0l-170.378-170.304c-20.906-20.064 10.043-50.999 30.116-30.103l154.923 155.014 113.123-112.438c7.881-7.875 20.504-8.347 28.951-1.081l284.593 242.567 197.59-198.91c20.073-20.896 51.020 10.038 30.116 30.103l-212.972 212.881c-4.075 4.075-8.97 6.325-14.733 6.237zM106.667 149.333h810.667c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-810.667c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM64 960c-35.087 0-64-28.913-64-64v-896c0-35.087 28.913-64 64-64h896c35.087 0 64 28.913 64 64v896c0 35.087-28.913 64-64 64h-896zM64 917.333h896c12.188 0 21.333-9.146 21.333-21.333v-896c0-12.188-9.146-21.333-21.333-21.333h-896c-12.188 0-21.333 9.146-21.333 21.333v896c0 12.188 9.146 21.333 21.333 21.333z" />
<glyph unicode="&#xe95a;" glyph-name="mbri-photos" d="M213.333 832c-46.876 0-85.333-38.458-85.333-85.333s38.458-85.333 85.333-85.333c46.876 0 85.333 38.458 85.333 85.333s-38.458 85.333-85.333 85.333zM213.333 789.333c23.817 0 42.667-18.85 42.667-42.667s-18.85-42.667-42.667-42.667c-23.817 0-42.667 18.85-42.667 42.667s18.85 42.667 42.667 42.667zM576 661.333c-4.726-0.071-10.179-2.065-13.871-5.016l-199.462-158.737-70.482 71.919c-7.499 7.521-19.391 8.373-27.885 1.998l-170.474-127.855c-22.529-16.924 4.563-49.96 25.638-34.128l157.87 117.451 69.955-72.835c7.676-7.683 19.902-8.364 28.385-1.582l200.327 158.57 112.236-114.37c20.084-20.916 51.048 10.048 30.133 30.133l-127.855 127.855c-4.077 4.079-8.747 6.685-14.513 6.597zM106.667 320h597.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-597.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM64 960c-35.087 0-64-28.913-64-64v-682.667c0-35.087 28.913-64 64-64h682.667c35.087 0 64 28.913 64 64v682.667c0 35.087-28.913 64-64 64h-682.667zM64 917.333h682.667c12.188 0 21.333-9.146 21.333-21.333v-682.667c0-12.188-9.146-21.333-21.333-21.333h-682.667c-12.188 0-21.333 9.146-21.333 21.333v682.667c0 12.188 9.146 21.333 21.333 21.333zM874.667 746.667c-14.613 0-21.333-10.565-21.333-21.333s7.075-21.333 21.333-21.333h85.333c12.188 0 21.333-9.146 21.333-21.333v-682.667c0-12.188-9.146-21.333-21.333-21.333h-682.667c-12.188 0-21.333 9.146-21.333 21.333v85.333c0.204 14.425-10.565 21.333-21.333 21.333-10.935 0-21.537-6.909-21.333-21.333v-85.333c0-35.087 28.913-64 64-64h682.667c35.087 0 64 28.913 64 64v682.667c0 35.087-28.913 64-64 64z" />
<glyph unicode="&#xe95b;" glyph-name="mbri-pin" d="M512 746.667c-94.004 0-170.667-76.663-170.667-170.667s76.663-170.667 170.667-170.667c94.004 0 170.667 76.663 170.667 170.667s-76.663 170.667-170.667 170.667zM512 704c70.945 0 128-57.055 128-128s-57.055-128-128-128c-70.945 0-128 57.055-128 128s57.055 128 128 128zM512 960c-235.389 0-426.667-191.278-426.667-426.667 0-137.505 88.818-283.678 183.917-397.667 47.549-56.994 97.007-105.755 139.167-140.75 21.080-17.498 40.31-31.509 57.083-41.583s29.598-17.333 46.5-17.333c16.902 0 29.727 7.259 46.5 17.333s36.004 24.086 57.083 41.583c42.159 34.995 91.617 83.756 139.167 140.75 95.099 113.989 183.917 260.162 183.917 397.667 0 235.389-191.278 426.667-426.667 426.667zM512 917.333c212.33 0 384-171.67 384-384 0-118.495-82.22-260.322-174-370.333-45.89-55.006-93.906-102.245-133.667-135.25-19.88-16.502-37.723-29.491-51.75-37.917s-25.698-11.167-24.583-11.167c1.114 0-10.556 2.741-24.583 11.167s-31.869 21.414-51.75 37.917c-39.761 33.005-87.777 80.244-133.667 135.25-91.78 110.011-174 251.838-174 370.333 0 212.33 171.67 384 384 384z" />
<glyph unicode="&#xe95c;" glyph-name="mbri-play" d="M938.75 448.352c-0.388 29.579-22.829 51.958-53.417 69.451l-766.807 438.539c-25.144 15.955-47.658-23.42-21.167-37.018l766.807-438.539c24.761-14.161 31.827-26.068 31.917-32.933 0.094-7.21-6.777-21.156-32.583-37.102-227.481-140.558-653.221-403.133-682.667-421.876-19.026-12.111-31.806-11.563-38.917-7.921s-14.001 12.343-14.001 32.016v797.782c0 13.606-10.616 21.127-21.333 21.333s-21.537-6.902-21.333-21.333v-798.253c0-30.636 13.365-57.329 37.251-69.563 23.889-12.234 53.687-7.571 81.168 9.922 24.028 15.296 454.812 280.961 682.332 421.542 32.312 19.965 53.132 44.72 52.75 73.953z" />
<glyph unicode="&#xe95d;" glyph-name="mbri-plus" d="M554.667 469.333c0 11.819 9.515 21.333 21.333 21.333h384c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-384c-11.819 0-21.333 9.515-21.333 21.333zM0 469.333c0 11.819 9.515 21.333 21.333 21.333h384c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-384c-11.819 0-21.333 9.515-21.333 21.333zM490.667 960c11.819 0 21.333-9.515 21.333-21.333v-938.667c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v938.667c0 11.819 9.515 21.333 21.333 21.333z" />
<glyph unicode="&#xe95e;" glyph-name="mbri-preview" d="M490.671 618.663c-0.115 0.002-0.251 0.004-0.388 0.004-1.168 0-2.315-0.093-3.433-0.273-74.983-10.976-134.171-70.284-145.285-145.611-0.149-0.954-0.233-2.053-0.233-3.173 0-11.934 9.643-21.609 21.539-21.609 10.787 0 19.722 7.956 21.294 18.338 8.374 56.776 52.539 101.051 109.029 109.319 10.66 1.398 18.807 10.453 18.807 21.417 0 11.856-9.526 21.48-21.319 21.588zM512 704c-141.132 0-256-114.868-256-256s114.868-256 256-256c141.132 0 256 114.868 256 256s-114.868 256-256 256zM512 661.333c118.073 0 213.333-95.26 213.333-213.333s-95.26-213.333-213.333-213.333c-118.073 0-213.333 95.26-213.333 213.333s95.26 213.333 213.333 213.333zM512 789.333c-107.506 0-214.535-31.773-304.583-90.5s-162.239-143.869-205.583-242.25l-3.833-8.583 3.833-8.583c43.345-98.381 115.535-183.523 205.583-242.25s197.077-90.5 304.583-90.5c107.506 0 214.535 31.773 304.583 90.5s162.239 143.869 205.583 242.25l3.833 8.583-3.833 8.583c-43.345 98.381-115.535 183.523-205.583 242.25s-197.077 90.5-304.583 90.5zM512 746.667c99.066 0 198.271-29.467 281.25-83.583 80.137-52.264 144.15-128.323 184.5-215.083-40.35-86.76-104.363-162.82-184.5-215.083-82.979-54.117-182.184-83.583-281.25-83.583s-198.271 29.467-281.25 83.583c-80.137 52.264-144.15 128.323-184.5 215.083 40.35 86.76 104.363 162.82 184.5 215.083 82.979 54.117 182.184 83.583 281.25 83.583z" />
<glyph unicode="&#xe95f;" glyph-name="mbri-print" d="M234.667 917.333c-35.087 0-64-28.913-64-64v-128c-0.001-0.090-0.002-0.196-0.002-0.302 0-11.783 9.552-21.335 21.335-21.335s21.335 9.552 21.335 21.335c0 0.106-0.001 0.212-0.002 0.318v127.984c0 12.188 9.146 21.333 21.333 21.333h554.667c12.188 0 21.333-9.146 21.333-21.333v-128c-0.001-0.090-0.002-0.196-0.002-0.302 0-11.783 9.552-21.335 21.335-21.335s21.335 9.552 21.335 21.335c0 0.106-0.001 0.212-0.002 0.318v127.984c0 35.087-28.913 64-64 64h-554.667zM746.667 576h42.667c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-42.667c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM874.667 576h42.667c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-42.667c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM149.333 362.667h725.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-725.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM277.333 192h469.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-469.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM277.333 277.333h469.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-469.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM64 661.333c-35.087 0-64-28.913-64-64v-384c0-35.087 28.913-64 64-64h106.667v-106.667c0-35.087 28.913-64 64-64h554.667c35.087 0 64 28.913 64 64v106.667h106.667c35.087 0 64 28.913 64 64v384c0 35.087-28.913 64-64 64zM64 618.667h896c12.188 0 21.333-9.146 21.333-21.333v-384c0-12.188-9.146-21.333-21.333-21.333h-106.667v64c0.207 14.601-10.565 21.333-21.333 21.333s-21.333-6.863-21.333-21.333v-213.333c0-12.188-9.146-21.333-21.333-21.333h-554.667c-12.188 0-21.333 9.146-21.333 21.333v213.333c0.188 12.046-9.29 21.522-21.333 21.333-11.782-0.184-21.333-9.307-21.333-21.333v-64h-106.667c-12.188 0-21.333 9.146-21.333 21.333v384c0 12.188 9.146 21.333 21.333 21.333z" />
<glyph unicode="&#xe960;" glyph-name="mbri-protect" d="M703.729 618.667c-5.531-0.154-11.202-2.289-15.069-6.25l-198.056-198.253-70.181 70.251c-19.089 19.108-49.695-11.369-30.137-30.167l85.25-85.335c8.323-8.328 21.814-8.328 30.137 0l213.124 213.337c13.865 13.568 4.181 36.417-15.069 36.417zM512 960c-6.164-0.136-12.468-3.015-16.417-7.75-47.557-57.016-120.588-78.279-196.917-77.583s-155.619 24.987-181.333 39.833c-14.232 8.213-32.016-2.068-32-18.5v-448c0-246.303 199.303-444.77 420.5-511.25 3.996-1.198 8.254-1.198 12.25 0 221.217 66.244 420.583 264.947 420.583 511.25v447.75c0.016 16.432-17.768 26.713-32 18.5-25.714-14.846-105.009-38.916-181.333-39.583s-149.35 20.368-196.917 77.5c-4.156 5.036-9.889 7.975-16.417 7.833zM512 914c59.074-58.745 135.984-82.677 213.333-82 67.261 0.588 129.133 16.876 170.667 33.583v-417.583c0-220.702-181.059-404.066-383.917-467.5-202.908 63.635-384.083 246.77-384.083 467.5v417.833c41.533-16.708 103.41-33.22 170.667-33.833 77.341-0.705 154.254 23.366 213.333 82z" />
<glyph unicode="&#xe961;" glyph-name="mbri-question" d="M533.333 234.667c-35.094 0-64-28.906-64-64s28.906-64 64-64c35.094 0 64 28.906 64 64s-28.906 64-64 64zM533.333 192c12.035 0 21.333-9.299 21.333-21.333s-9.299-21.333-21.333-21.333c-12.035 0-21.333 9.299-21.333 21.333s9.299 21.333 21.333 21.333zM533.333 789.333c-59.848 0.768-118.7-18.949-166.167-55.833-15.645-11.952-25.833-29.023-25.833-45.667 0-16.288 5.369-31.97 14.917-43.917s25.835-25.25 49.083-25.25c15.967 0 27.806 4.524 39.25 13.5l0.166 0.083c24.005 18.622 58.102 29.083 88.584 29.083 21.842 0 38.061-4.882 48.75-12s15.25-17.43 15.25-30.667c0-15.382-8.379-19.629-21.083-32.333-13.713-13.527-33.405-29.855-52.75-52.917-19.796-23.601-36.121-51.862-45.25-84.083-9.197-32.461-8.917-62.763-8.917-86.667v-21.333c0-19.749 7.993-37.265 20.5-48.333s28.060-15.926 43.5-15.667c15.44 0.26 31.326 5.599 43.583 16.583s20.417 28.113 20.417 47.417v21.333c0 22.586 0.035 41.121 3 51.583 3.419 12.068 10.531 25.081 20.25 36.667 9.807 11.692 26.156 25.811 44.75 44.167 19.032 18.788 43.616 45.633 54.667 85.167 3.89 13.918 5.333 24.386 5.333 38.417 0 18.358-3.502 36.615-8.583 51.333-9.589 27.772-26.193 51.204-46.5 69.417-40.224 36.075-90.814 49.325-136.917 49.917zM533.333 746.667c38.411-0.493 77.505-11.276 108.417-39 15.4-13.811 27.621-31.177 34.667-51.583 3.293-9.536 6.25-24.966 6.25-37.417 0-11.958-0.446-14.799-3.833-26.917-7.991-28.588-25.89-48.866-43.5-66.25-17.328-17.106-34.052-31.135-47.5-47.167-13.156-15.684-23.14-33.5-28.5-52.417-5.763-20.337-4.667-41.35-4.667-63.25v-21.333c0-8.32-2.508-12.313-6.25-15.667s-9.19-5.568-15.083-5.667c-5.893-0.098-11.674 1.825-15.167 4.917s-6.167 7.111-6.167 16.417v21.333c0 24.030 0.085 49.494 7.333 75.083 7.265 25.642 20.454 48.623 36.917 68.25 16.504 19.676 34.303 34.506 50.083 50.083h0.085v0.083c11.706 11.708 33.581 29.397 33.581 62.5 0 26.521-14.004 52.629-34.333 66.167s-44.371 19.167-72.333 19.167c-40.103 0-82.599-13.017-114.917-38.167l-0.083-0.083h-0.083c-6.011-4.745-10.020-5.104-14.75-4.167s-10.143 4.278-13.917 9c-3.774 4.722-5.591 10.325-5.333 14.833s1.606 8.645 8.833 14.167l0.083 0.083v0.083c39.705 30.899 90.033 47.561 140.167 46.917zM512 960c-282.517 0-512-229.483-512-512s229.483-512 512-512c282.517 0 512 229.483 512 512s-229.483 512-512 512zM512 917.333c259.458 0 469.333-209.875 469.333-469.333s-209.875-469.333-469.333-469.333c-259.458 0-469.333 209.875-469.333 469.333s209.875 469.333 469.333 469.333z" />
<glyph unicode="&#xe962;" glyph-name="mbri-quote-left" d="M256 64c71.164 0 119.217 24.469 154.42 59.080 35.26 34.667 58.913 83.089 58.913 132.91 0 40.629-9.647 77.886-26.009 112.244-16.318 34.266-37.654 64.638-58.478 93.745-20.819 29.099-41.345 57.204-57.229 86.829-15.847 29.557-28.951 59.581-28.951 91.193 0 40.427 11.701 83.331 37.781 114.213 13.634 16.069-3.303 39.995-23.574 34.248-88.080-24.673-165.927-77.935-222.084-150.159s-90.79-162.805-90.79-254.302c0-78.481 18.742-158.219 68.049-221.172 51.442-60.057 116.787-98.828 187.951-98.828zM256 106.664c-63.976 0-111.93 38.709-154.381 82.496-41.848 53.43-58.953 124.571-58.953 194.84 0 82.149 31.359 163.209 81.777 228.054 37.833 48.658 89.783 83.598 145.779 109.577-9.964-26.486-14.223-53.131-14.223-81.631 0-40.452 16.238-78.141 34.049-111.358 17.774-33.15 39.519-62.667 60.144-91.495 20.619-28.82 40.339-57.201 54.646-87.245 14.263-29.952 21.827-62.832 21.827-93.912 0-38.857-18.647-75.453-46.152-102.494-27.562-27.098-60.539-46.831-124.515-46.831zM810.786 64c71.164 0 119.152 24.469 154.355 59.080 35.26 34.667 58.858 82.853 58.858 132.909 0 40.629-9.593 77.886-25.954 112.244-16.318 34.266-37.654 64.638-58.478 93.745-20.819 29.099-41.345 57.204-57.229 86.829-15.847 29.557-28.886 59.805-28.886 91.193 0 40.427 11.636 83.331 37.716 114.213 13.634 16.069-3.303 39.995-23.575 34.248-88.080-24.673-165.927-77.935-222.083-150.159s-90.725-162.805-90.725-254.302c0-78.481 18.677-158.219 67.984-221.172 51.442-60.057 116.852-98.828 188.016-98.828zM810.786 106.664c-63.976 0-111.995 38.709-154.446 82.496-41.848 53.43-58.888 124.515-58.888 194.801 0 82.149 31.294 163.248 81.712 228.093 37.833 48.658 89.783 83.598 145.779 109.577-9.964-26.486-14.158-53.131-14.158-81.631 0-39.74 16.173-78.141 33.984-111.358 17.774-33.15 39.519-62.667 60.144-91.495 20.619-28.82 40.339-57.201 54.646-87.245 14.263-29.952 21.773-62.832 21.773-93.912 0-38.657-18.592-75.452-46.097-102.494-27.562-27.098-60.474-46.831-124.45-46.831z" />
<glyph unicode="&#xe963;" glyph-name="mbri-quote-right" d="M768 832c-71.164 0-119.217-24.469-154.42-59.080-35.26-34.667-58.913-83.089-58.913-132.91 0-40.629 9.647-77.886 26.009-112.244 16.318-34.266 37.654-64.638 58.478-93.745 20.819-29.099 41.345-57.204 57.229-86.829 15.847-29.557 28.951-59.581 28.951-91.193 0-40.427-11.701-83.331-37.781-114.213-13.634-16.069 3.303-39.995 23.574-34.248 88.080 24.673 165.927 77.935 222.084 150.159s90.79 162.805 90.79 254.302c0 78.481-18.742 158.219-68.049 221.172-51.442 60.057-116.787 98.828-187.951 98.828zM768 789.336c63.976 0 111.93-38.709 154.381-82.496 41.848-53.43 58.953-124.571 58.953-194.84 0-82.149-31.359-163.209-81.777-228.054-37.833-48.658-89.783-83.598-145.779-109.577 9.964 26.486 14.223 53.131 14.223 81.631 0 40.452-16.238 78.141-34.049 111.358-17.774 33.15-39.519 62.667-60.144 91.495-20.619 28.82-40.339 57.201-54.646 87.245-14.263 29.952-21.827 62.832-21.827 93.912 0 38.857 18.647 75.452 46.152 102.494 27.562 27.098 60.539 46.831 124.515 46.831zM213.214 832c-71.164 0-119.152-24.469-154.355-59.080-35.26-34.667-58.859-82.853-58.859-132.91 0-40.629 9.593-77.886 25.954-112.244 16.318-34.266 37.654-64.638 58.478-93.745 20.819-29.099 41.345-57.204 57.229-86.829 15.847-29.557 28.886-59.805 28.886-91.193 0-40.427-11.636-83.331-37.716-114.213-13.634-16.069 3.303-39.995 23.575-34.248 88.080 24.673 165.927 77.935 222.084 150.159s90.725 162.805 90.725 254.302c0 78.481-18.677 158.219-67.984 221.172-51.442 60.057-116.852 98.828-188.016 98.828zM213.214 789.336c63.976 0 111.995-38.709 154.446-82.496 41.848-53.43 58.888-124.515 58.888-194.801 0-82.149-31.294-163.248-81.712-228.093-37.833-48.658-89.783-83.598-145.779-109.577 9.964 26.486 14.158 53.131 14.158 81.631 0 39.74-16.173 78.141-33.984 111.358-17.774 33.15-39.519 62.667-60.144 91.495-20.619 28.82-40.339 57.201-54.646 87.245-14.263 29.952-21.773 62.832-21.773 93.912 0 38.657 18.592 75.452 46.097 102.494 27.562 27.098 60.474 46.831 124.45 46.831z" />
<glyph unicode="&#xe964;" glyph-name="mbri-refresh" d="M490.667 960c-19.175-0.004-27.723-23.777-15.083-36.417l155.583-155.583-155.583-155.583c-18.858-18.858 11.612-49.491 30.167-30.167l170.667 170.667c8.328 8.331 8.328 21.835 0 30.167l-170.667 170.667c-4.019 4.154-9.303 6.25-15.083 6.25zM512 789.333c-235.389 0-426.667-191.278-426.667-426.667s191.278-426.667 426.667-426.667c235.389 0 426.667 191.278 426.667 426.667v21.333c0.405 28.514-42.667 27.683-42.667 0v-21.333c0-212.33-171.67-384-384-384s-384 171.67-384 384c0 212.33 171.67 384 384 384h21.333c28.35 0 28.186 42.667 0 42.667z" />
<glyph unicode="&#xe965;" glyph-name="mbri-responsive" d="M469.333 341.333c0-11.782-9.551-21.333-21.333-21.333s-21.333 9.551-21.333 21.333c0 11.782 9.551 21.333 21.333 21.333s21.333-9.551 21.333-21.333zM789.333 533.333h85.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-85.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM853.333 128c0-11.782-9.551-21.333-21.333-21.333s-21.333 9.551-21.333 21.333c0 11.782 9.551 21.333 21.333 21.333s21.333-9.551 21.333-21.333zM704 618.667c-35.087 0-64-28.913-64-64v-469.333c0-35.087 28.913-64 64-64h256c35.087 0 64 28.913 64 64v469.333c0 35.087-28.913 64-64 64zM704 576h256c12.188 0 21.333-9.146 21.333-21.333v-469.333c0-12.188-9.146-21.333-21.333-21.333h-256c-12.188 0-21.333 9.146-21.333 21.333v469.333c0 12.188 9.146 21.333 21.333 21.333zM64 874.667c-35.087 0-64-28.913-64-64v-512c0-35.087 28.913-64 64-64h320v-85.333h-64c-11.819 0-21.333-9.28-21.333-21.333s9.515-21.333 21.333-21.333h256c11.819 0 21.333 9.28 21.333 21.333s-9.515 21.333-21.333 21.333h-64v85.333h64c28.85-0.41 28.85 43.075 0 42.667h-512c-12.188 0-21.333 9.146-21.333 21.333v106.667h533.333c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333h-533.333v362.667c0 12.188 9.146 21.333 21.333 21.333h768c12.188 0 21.333-9.146 21.333-21.333v-128c-0.41-28.85 43.075-28.85 42.667 0v128c0 35.087-28.913 64-64 64zM426.667 234.667h42.667v-85.333h-42.667z" />
<glyph unicode="&#xe966;" glyph-name="mbri-right" d="M512.008 0c0.154 5.535 2.454 11.456 6.414 15.325l454.099 454.008-453.849 454.030c-20.003 19.206 10.956 50.161 30.157 30.16l468.927-468.974c8.325-8.329 8.325-21.83 0-30.16l-469.177-469.224c-12.74-13.032-36.571-5.235-36.571 14.834zM0 469.333c0-11.819 9.515-21.333 21.333-21.333h853.333c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333h-853.333c-11.819 0-21.333-9.515-21.333-21.333z" />
<glyph unicode="&#xe967;" glyph-name="mbri-rocket" d="M106.667 64c-5.542-0.154-11.113-2.157-14.988-6.123l-42.711-42.711c-19.092-18.333 11.376-49.8 30.198-30.198l42.711 42.711c11.88 11.614 6.123 36.321-15.21 36.321zM277.333 106.667c-5.542-0.154-10.935-2.112-14.809-6.078l-42.711-42.711c-19.263-18.496 10.89-50.308 30.198-30.198l42.711 42.711c11.369 11.115 6.072 36.276-15.389 36.276zM106.667 192c-5.542-0.154-11.113-2.023-14.988-5.989l-42.711-42.711c-19.211-19.211 11.216-49.967 30.198-30.198l42.711 42.711c13.893 13.582 6.123 36.187-15.21 36.187zM635.35 752.786c-49.913-49.913-49.854-131.472 0.060-181.385s131.472-49.972 181.385-0.059c49.913 49.913 49.913 131.531 0 181.444s-131.532 49.913-181.445 0zM786.593 601.543c-33.591-33.591-87.392-33.532-120.983 0.059s-33.65 87.392-0.060 120.983c33.591 33.591 87.451 33.591 121.042 0s33.591-87.451 0-121.041zM234.667 320c-11.827-0.137-21.518-9.507-21.333-21.333 0-82.307 67.027-149.333 149.333-149.333 27.72 0 28.895 42.667 0 42.667-59.224 0-106.667 47.443-106.667 106.667 0.187 12.023-9.31 21.474-21.333 21.333zM910.116 959.985c-36.57-0.379-80.28-8.737-128.968-25.693-97.377-33.913-214.446-102.494-326.424-214.39-110.772-110.692-170.626-192.102-203.045-246.674-16.209-27.286-25.594-47.805-30.949-61.981-2.781-7.362-2.528-8.136-3.587-12.263-5.689-3.628-49.574-31.89-98.102-54.807-24.265-13.895-57.312-24.176-76.374-24.176 0.092 31.985 30.233 102.833 66.614 159.736 18.218 28.493 37.784 54.415 54.473 72.407 8.345 8.996 16.025 16.029 21.773 20.188 6.473 6.222 13.398-2.985 16.684-8.676 6.208-11.478 11.345-29.672 11.345-51.053 0-29.047 42.711-29.223 42.711 0 0 28.006-6.302 52.521-16.517 71.408s-24.884 34.657-47.75 34.657c-13.444 0-22.257-5.114-31.499-11.8s-18.505-15.336-28.113-25.693c-19.216-20.715-39.732-48.182-59.062-78.415-38.659-60.466-73.326-129.252-73.326-182.758 0-14.362 7.76-29.626 20.104-36.554s24.885-6.84 37.289-5.255c24.808 3.169 52.232 14.327 79.833 27.362 55.202 26.069 109.281 60.98 109.281 60.98 5.141 3.331 8.604 8.708 9.51 14.765 0 0 0.29 3.247 4.672 14.849s12.625 29.938 27.696 55.308c30.142 50.739 87.73 129.519 196.538 238.249 107.603 107.525 219.75 172.698 310.24 204.213 45.245 15.757 85.167 23.417 115.454 23.417 31.487 0 49.825-7.257 56.642-14.074s14.388-26.357 14.074-56.642c-0.311-30.285-7.66-70.209-23.417-115.454-31.515-90.491-96.688-202.637-204.213-310.24-108.729-108.808-187.509-166.397-238.249-196.538-25.37-15.071-43.706-23.314-55.308-27.696s-14.849-4.672-14.849-4.672c-6.058-0.906-11.435-4.369-14.765-9.51 0 0-34.911-54.079-60.98-109.281-13.034-27.601-24.193-55.025-27.362-79.833-1.585-12.404-1.673-24.944 5.255-37.289s22.593-20.104 36.955-20.104c53.506 0 121.891 34.667 182.357 73.327 30.233 19.33 57.7 39.845 78.415 59.062 10.358 9.608 19.007 18.87 25.693 28.113s11.8 18.055 11.8 31.499c0 22.866-15.771 37.535-34.657 47.75s-44.003 16.25-72.009 16.25c-27.887 0-28.047-42.667 0-42.667 21.381 0 40.177-4.914 51.655-11.122 12.345-7.128 10.862-12.897 8.676-16.684-4.158-5.748-11.192-13.428-20.188-21.773-17.992-16.69-43.914-36.255-72.409-54.473-56.903-36.381-127.098-66.394-159.083-66.486-0.093 0.728-0.896 2.903-0.083 9.26 1.946 15.234 11.43 41.199 23.608 66.987 22.917 48.528 51.18 92.414 54.807 98.102 4.127 1.059 4.9 0.806 12.263 3.587 14.177 5.355 34.695 14.739 61.981 30.949 54.572 32.419 135.982 92.273 246.674 203.045 111.896 111.978 180.477 229.047 214.39 326.424 16.957 48.688 25.314 92.398 25.693 128.968s-6.335 67.148-26.528 87.341c-20.193 20.193-50.771 26.907-87.341 26.528z" />
<glyph unicode="&#xe968;" glyph-name="mbri-sad-face" d="M661.333 618.667c11.819 0 21.333-9.515 21.333-21.333v-85.333c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v85.333c0 11.819 9.515 21.333 21.333 21.333zM362.667 618.667c11.819 0 21.333-9.515 21.333-21.333v-85.333c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v85.333c0 11.819 9.515 21.333 21.333 21.333zM512 277.333c-77.892 0-132.539-22.73-164.901-46.462s-45.821-50.107-45.821-50.107c-14.116-25.813 25.728-45.783 37.677-18.883 0 0 7.445 16.030 32.905 34.702s70.25 38.084 140.139 38.084c69.929 0 111.537-19.228 138.405-37.918s35.456-34.95 35.456-34.95c16.76-29.030 48.764 0.016 36.772 20.788 0 0-14.807 25.739-48.289 49.030s-84.492 45.717-162.344 45.717zM512 960c-283.279 0-512-228.721-512-512s228.721-512 512-512c283.279 0 512 228.721 512 512s-228.721 512-512 512zM512 917.333c260.38 0 469.333-208.954 469.333-469.333s-208.954-469.333-469.333-469.333c-260.38 0-469.333 208.954-469.333 469.333s208.954 469.333 469.333 469.333z" />
<glyph unicode="&#xe969;" glyph-name="mbri-sale" d="M448 320c-35.087 0-64-28.913-64-64s28.913-64 64-64c35.087 0 64 28.913 64 64s-28.913 64-64 64zM448 277.333c12.188 0 21.333-9.146 21.333-21.333s-9.146-21.333-21.333-21.333c-12.188 0-21.333 9.146-21.333 21.333s9.146 21.333 21.333 21.333zM448 576c-35.087 0-64-28.913-64-64s28.913-64 64-64c35.087 0 64 28.913 64 64s-28.913 64-64 64zM448 533.333c12.188 0 21.333-9.146 21.333-21.333s-9.146-21.333-21.333-21.333c-12.188 0-21.333 9.146-21.333 21.333s9.146 21.333 21.333 21.333zM853.333 874.667c-46.876 0-85.333-38.458-85.333-85.333s38.458-85.333 85.333-85.333c46.876 0 85.333 38.458 85.333 85.333s-38.458 85.333-85.333 85.333zM853.333 832c23.817 0 42.667-18.85 42.667-42.667s-18.85-42.667-42.667-42.667c-23.817 0-42.667 18.85-42.667 42.667s18.85 42.667 42.667 42.667zM597.333 960c-23.344 0-60.368 4.048-86.75-22.333l-491.75-491.667c-25.122-25.122-25.122-66.545 0-91.667l399.5-399.5c25.122-25.122 66.545-25.122 91.667 0l491.667 491.75c26.381 26.382 22.069 63.239 22.083 86.583l0.25 405.5c-0.001 11.782-9.552 21.332-21.333 21.333zM597.333 917.333h384l-0.252-384.167c-0.016-24.811-1.914-48.747-9.583-56.417l-491.667-491.75c-8.929-8.929-22.404-8.929-31.333 0l-399.498 399.5c-8.929 8.929-8.929 22.404 0 31.333l491.75 491.667c7.669 7.669 32.111 9.833 56.583 9.833zM277.333 405.333h341.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-341.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333z" />
<glyph unicode="&#xe96a;" glyph-name="mbri-save" d="M192 490.667c-20.705-0.004-27.949-23.997-14.45-37.062l298.028-298.039c8.314-8.31 21.789-8.31 30.102 0l298.028 298.039c20.895 20.065-10.038 50.999-30.102 30.103l-282.94-283.175-283.015 283.175c-4.011 4.146-9.884 6.958-15.652 6.958zM490.667 874.667c11.819 0 21.333-9.515 21.333-21.333v-554.667c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v554.667c0 11.819 9.515 21.333 21.333 21.333zM21.333 192c-11.782-0.183-21.518-9.551-21.333-21.333v-85.333c0-35.087 28.913-64 64-64h896c35.087 0 64 28.913 64 64v85.333c0.205 14.425-10.565 21.333-21.333 21.333s-21.537-6.909-21.333-21.333v-85.333c0-12.188-9.146-21.333-21.333-21.333h-896c-12.188 0-21.333 9.146-21.333 21.333v85.333c0.189 12.043-9.29 21.522-21.333 21.333z" />
<glyph unicode="&#xe96b;" glyph-name="mbri-search" d="M348.015 398.916l-320.756-320.077c-38.156-38.076-33.061-91.021-4.417-119.834s81.606-33.98 119.917 4.335l319.583 319.582c20.94 20.105-10.743 50.394-30.167 30.165l-319.583-319.582c-24.689-24.691-45.603-18.398-59.5-4.416-13.897 13.978-20.077 35.221 4.334 59.584l320.756 320.077c17.925 17.924-10.747 49.583-30.167 30.165zM648.5 872.252c-61.595-8.299-120.204-38.784-162.667-89.835-18.222-21.888 13.928-50.044 32.833-27.332 70.997 85.35 195.033 102.025 286.083 38.498 23.333-16.277 47.75 18.722 24.417 34.999-54.456 37.995-119.072 51.964-180.667 43.669zM682.667 960c-188.261 0-341.333-153.071-341.333-341.333s153.073-341.333 341.333-341.333c188.261 0 341.333 153.071 341.333 341.333s-153.073 341.333-341.333 341.333zM682.667 917.333c165.202 0 298.667-133.466 298.667-298.667s-133.465-298.667-298.667-298.667c-165.202 0-298.667 133.466-298.667 298.667s133.465 298.667 298.667 298.667z" />
<glyph unicode="&#xe96c;" glyph-name="mbri-setting" d="M746.667 320c-58.658 0-106.667-48.009-106.667-106.667s48.009-106.667 106.667-106.667c58.658 0 106.667 48.009 106.667 106.667s-48.009 106.667-106.667 106.667zM746.667 277.333c35.599 0 64-28.401 64-64s-28.401-64-64-64c-35.599 0-64 28.401-64 64s28.401 64 64 64zM704 490.667c-11.782-0.001-21.332-9.552-21.333-21.333v-76.917c-5.914-2.127-11.657-4.554-17.333-7.25l-56.583 56.583c-8.331 8.328-21.835 8.328-30.167 0l-60.333-60.333c-8.328-8.331-8.328-21.835 0-30.167l56.583-56.583c-2.685-5.675-5.133-11.422-7.25-17.333h-76.917c-11.782-0.001-21.332-9.552-21.333-21.333v-85.333c0.001-11.782 9.552-21.332 21.333-21.333h76.917c2.127-5.914 4.554-11.657 7.25-17.333l-56.583-56.583c-8.328-8.331-8.328-21.835 0-30.167l60.333-60.333c8.331-8.328 21.835-8.328 30.167 0l56.583 56.583c5.675-2.685 11.422-5.133 17.333-7.25v-76.917c0.001-11.782 9.552-21.332 21.333-21.333h85.333c11.782 0.001 21.332 9.552 21.333 21.333v76.917c5.914 2.127 11.657 4.554 17.333 7.25l56.583-56.583c8.331-8.328 21.835-8.328 30.167 0l60.333 60.333c8.328 8.331 8.328 21.835 0 30.167l-56.583 56.583c2.685 5.675 5.133 11.422 7.25 17.333h76.917c11.782 0.001 21.332 9.552 21.333 21.333v85.333c-0.001 11.782-9.552 21.332-21.333 21.333h-76.917c-2.127 5.914-4.554 11.657-7.25 17.333l56.583 56.583c8.328 8.331 8.328 21.835 0 30.167l-60.333 60.333c-8.331 8.328-21.835 8.328-30.167 0l-56.583-56.583c-5.675 2.685-11.422 5.133-17.333 7.25v76.917c-0.001 11.782-9.552 21.332-21.333 21.333zM725.333 448h42.667v-69.667c-0.004-9.732 6.577-18.233 16-20.667 13.463-3.487 26.351-8.858 38.333-15.917 8.389-4.928 19.048-3.557 25.917 3.334l51.417 51.417 30.167-30.167-51.417-51.417c-6.863-6.889-8.199-17.547-3.25-25.917 7.084-11.978 12.407-24.95 15.917-38.417 2.465-9.389 10.959-15.931 20.667-15.917h69.583v-42.667h-69.667c-9.732 0.004-18.233-6.577-20.667-16-3.487-13.463-8.858-26.351-15.917-38.333-4.928-8.389-3.557-19.048 3.334-25.917l51.417-51.417-30.167-30.167-51.417 51.417c-6.889 6.863-17.547 8.199-25.917 3.25-11.978-7.084-24.95-12.407-38.417-15.917-9.389-2.465-15.931-10.959-15.917-20.667v-69.583h-42.667v69.667c0.004 9.732-6.577 18.233-16 20.667-13.463 3.487-26.351 8.858-38.333 15.917-8.389 4.928-19.048 3.557-25.917-3.334l-51.417-51.417-30.167 30.167 51.417 51.417c6.863 6.889 8.199 17.547 3.25 25.917-7.084 11.978-12.407 24.951-15.917 38.417-2.466 9.389-10.959 15.931-20.667 15.917h-69.583v42.667h69.667c9.732-0.004 18.233 6.577 20.667 16 3.487 13.463 8.858 26.351 15.917 38.333 4.928 8.389 3.557 19.048-3.334 25.917l-51.417 51.417 30.167 30.167 51.417-51.417c6.889-6.863 17.547-8.199 25.917-3.25 11.978 7.084 24.95 12.407 38.417 15.917 9.389 2.465 15.931 10.959 15.917 20.667zM426.667 661.333c-70.44 0-128-57.56-128-128s57.56-128 128-128c70.44 0 128 57.56 128 128s-57.56 128-128 128zM426.667 618.667c47.381 0 85.333-37.952 85.333-85.333s-37.952-85.333-85.333-85.333c-47.381 0-85.333 37.952-85.333 85.333s37.952 85.333 85.333 85.333zM384 960c-23.268 0-42.667-19.398-42.667-42.667v-57c-30.097-7.839-58.797-19.672-85.667-35.333l-37.333 37.333c-16.451 16.451-43.882 16.451-60.333 0l-60.333-60.333c-16.451-16.451-16.451-43.882 0-60.333l37.333-37.333c-15.77-26.848-27.727-55.558-35.667-85.667h-56.667c-23.268 0-42.667-19.398-42.667-42.667v-85.333c0-23.268 19.398-42.667 42.667-42.667h57c7.839-30.097 19.672-58.797 35.333-85.667l-37.333-37.333c-16.451-16.451-16.451-43.882 0-60.333l60.333-60.333c16.451-16.451 43.882-16.451 60.333 0l37.333 37.333c26.848-15.77 55.558-27.727 85.667-35.667v-56.667c0-23.268 19.398-42.667 42.667-42.667h21.333c28.186 0 27.86 42.667 0 42.667h-21.333v70.5c0.012 10.122-7.089 18.86-17 20.917-37.39 7.715-72.937 22.476-104.75 43.583-8.461 5.639-19.726 4.523-26.917-2.667l-47.167-47.167-60.333 60.333 47.083 47.083c7.172 7.157 8.321 18.371 2.75 26.833-20.979 31.866-35.664 67.444-43.25 104.833-2.022 9.944-10.769 17.088-20.917 17.083h-70.833v85.333h70.5c10.122-0.012 18.86 7.089 20.917 17 7.715 37.39 22.476 72.937 43.583 104.75 5.639 8.461 4.523 19.726-2.667 26.917l-47.167 47.167 60.333 60.333 47.083-47.083c7.157-7.172 18.371-8.321 26.833-2.75 31.866 20.979 67.444 35.664 104.833 43.25 9.944 2.022 17.088 10.769 17.083 20.917v70.833h85.333v-70.5c-0.013-10.122 7.089-18.86 17-20.917 37.39-7.715 72.937-22.476 104.75-43.583 8.461-5.639 19.726-4.523 26.917 2.667l47.167 47.167 60.333-60.333-47.083-47.083c-7.172-7.157-8.321-18.371-2.75-26.833 20.979-31.866 35.664-67.444 43.25-104.833 2.022-9.944 10.769-17.088 20.917-17.083h70.833v-21.333c0-28.517 42.667-27.85 42.667 0v21.333c0 23.268-19.398 42.667-42.667 42.667h-57c-7.839 30.097-19.672 58.797-35.333 85.667l37.333 37.333c16.451 16.451 16.451 43.882 0 60.333l-60.333 60.333c-16.451 16.451-43.882 16.451-60.333 0l-37.333-37.333c-26.848 15.77-55.558 27.727-85.667 35.667v56.667c0 23.268-19.398 42.667-42.667 42.667z" />
<glyph unicode="&#xe96d;" glyph-name="mbri-setting2" d="M746.667 448c11.819 0 21.333-9.515 21.333-21.333v-256c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v256c0 11.819 9.515 21.333 21.333 21.333zM234.667 448c11.819 0 21.333-9.515 21.333-21.333v-256c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v256c0 11.819 9.515 21.333 21.333 21.333zM490.667 704c11.819 0 21.333-9.515 21.333-21.333v-256c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v256c0 11.819 9.515 21.333 21.333 21.333zM682.667 512c0 11.819 9.515 21.333 21.333 21.333h85.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-85.333c-11.819 0-21.333 9.515-21.333 21.333zM426.667 341.333c0 11.819 9.515 21.333 21.333 21.333h85.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-85.333c-11.819 0-21.333 9.515-21.333 21.333zM170.667 512c0 11.819 9.515 21.333 21.333 21.333h85.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-85.333c-11.819 0-21.333 9.515-21.333 21.333zM490.667 277.333c11.819 0 21.333-9.515 21.333-21.333v-85.333c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v85.333c0 11.819 9.515 21.333 21.333 21.333zM746.667 704c11.819 0 21.333-9.515 21.333-21.333v-85.333c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v85.333c0 11.819 9.515 21.333 21.333 21.333zM234.667 704c11.819 0 21.333-9.515 21.333-21.333v-85.333c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v85.333c0 11.819 9.515 21.333 21.333 21.333zM64 960c-35.087 0-64-28.913-64-64v-896c0-35.087 28.913-64 64-64h853.333c35.087 0 64 28.913 64 64v896c0 35.087-28.913 64-64 64h-853.333zM64 917.333h853.333c12.188 0 21.333-9.146 21.333-21.333v-896c0-12.188-9.146-21.333-21.333-21.333h-853.333c-12.188 0-21.333 9.146-21.333 21.333v896c0 12.188 9.146 21.333 21.333 21.333z" />
<glyph unicode="&#xe96e;" glyph-name="mbri-setting3" d="M512 618.667c-94.004 0-170.667-76.663-170.667-170.667s76.663-170.667 170.667-170.667c94.004 0 170.667 76.663 170.667 170.667s-76.663 170.667-170.667 170.667zM512 576c70.945 0 128-57.055 128-128s-57.055-128-128-128c-70.945 0-128 57.055-128 128s57.055 128 128 128zM490.667 960c-35.087 0-64-28.913-64-64v-77.5c-42.024-9.841-81.749-26.591-118.167-49.75l-52.417 55.833c-24.564 26.163-66.187 25.313-91 0.5l-30.167-30.167c-24.813-24.813-25.663-66.436 0.5-91l55.75-52.417c-23.026-36.438-39.774-76.172-49.5-118.167h-77.667c-35.087 0-64-28.913-64-64v-42.667c0-35.087 28.913-64 64-64h77.417c9.656-41.219 25.925-80.301 48.417-116.167l-54.917-54.917c-24.808-24.808-24.808-65.692 0-90.5l30.167-30.167c24.808-24.808 65.692-24.808 90.5 0l54.75 54.75c35.952-22.372 75.071-38.571 116.333-48.083v-77.583c0-35.087 28.913-64 64-64h42.667c35.087 0 64 28.913 64 64v77.417c41.219 9.656 80.301 25.925 116.167 48.417l54.917-54.917c24.808-24.808 65.692-24.808 90.5 0l30.167 30.167c24.808 24.808 24.808 65.692 0 90.5l-54.75 54.75c22.372 35.952 38.571 75.071 48.083 116.333h77.583c35.087 0 64 28.913 64 64v42.667c0 35.087-28.913 64-64 64h-77.417c-9.656 41.219-25.925 80.301-48.417 116.167l54.917 54.917c24.808 24.808 24.808 65.692 0 90.5l-30.167 30.167c-24.808 24.808-65.692 24.808-90.5 0l-54.75-54.75c-35.952 22.372-75.071 38.571-116.333 48.083v77.583c0 35.087-28.913 64-64 64h-42.667zM490.667 917.333h42.667c12.188 0 21.333-9.146 21.333-21.333v-91.333c0.001-10.456 7.524-19.154 17.452-20.98 48.499-8.648 94.434-27.591 134.798-55.603 3.398-2.389 7.621-3.817 12.179-3.817 5.884 0 11.212 2.382 15.072 6.234l64.416 64.416c8.62 8.62 21.547 8.62 30.167 0l30.167-30.167c8.62-8.62 8.62-21.547 0-30.167l-64.667-64.667c-3.872-3.863-6.268-9.204-6.268-15.106 0-4.578 1.442-8.82 3.897-12.295 28.103-40.187 47.236-86.026 56.038-134.35 1.88-10.020 10.561-17.5 20.988-17.5 0.004 0 0.009 0 0.013 0h91.083c12.188 0 21.333-9.146 21.333-21.333v-42.667c0-12.188-9.146-21.333-21.333-21.333h-91.333c-10.456-0.002-19.154-7.524-20.98-17.452-8.648-48.499-27.591-94.434-55.603-134.798-2.389-3.398-3.817-7.621-3.817-12.179 0-5.884 2.382-11.212 6.234-15.072l64.416-64.416c8.62-8.62 8.62-21.547 0-30.167l-30.167-30.167c-8.62-8.62-21.547-8.62-30.167 0l-64.667 64.667c-3.863 3.872-9.204 6.268-15.106 6.268-4.578 0-8.82-1.442-12.295-3.897-40.187-28.103-86.026-47.236-134.35-56.038-10.020-1.88-17.5-10.561-17.5-20.988 0-0.004 0-0.009 0-0.013v-91.083c0-12.188-9.146-21.333-21.333-21.333h-42.667c-12.188 0-21.333 9.146-21.333 21.333v91.333c-0.002 10.456-7.524 19.154-17.452 20.98-48.499 8.648-94.434 27.591-134.798 55.603-3.398 2.389-7.621 3.817-12.179 3.817-5.884 0-11.212-2.382-15.072-6.234l-64.416-64.416c-8.62-8.62-21.547-8.62-30.167 0l-30.167 30.167c-8.62 8.62-8.62 21.547 0 30.167l64.667 64.667c3.872 3.863 6.268 9.204 6.268 15.106 0 4.578-1.442 8.82-3.896 12.295-28.103 40.187-47.236 86.026-56.038 134.35-1.88 10.020-10.561 17.5-20.988 17.5-0.004 0-0.009 0-0.013 0h-91.083c-12.188 0-21.333 9.146-21.333 21.333v42.667c0 12.188 9.146 21.333 21.333 21.333h91.333c10.456 0.001 19.154 7.524 20.98 17.452 8.851 49.371 28.392 96.032 57.27 136.881 2.456 3.43 3.927 7.711 3.927 12.335 0 6.142-2.595 11.678-6.749 15.57l-66.178 62.178c-8.302 7.794-8.115 21.052 0.5 29.667l30.167 30.167c8.615 8.615 21.872 8.802 29.667 0.5l62.25-66.333c3.904-4.165 9.439-6.761 15.581-6.761 4.624 0 8.905 1.471 12.4 3.971 40.727 28.963 87.441 48.663 136.685 57.623 10.020 1.88 17.5 10.561 17.5 20.988 0 0.004 0 0.009 0 0.013v91.083c0 12.188 9.146 21.333 21.333 21.333z" />
<glyph unicode="&#xe96f;" glyph-name="mbri-share" d="M746.667 917.333c-11.782 0-21.352-10.023-21.333-21.333v-149.333c-61.557-4.404-106.195-17.214-169.75-75.583s-86.358-164.193-86.25-244.417c0.033-24.815 35.378-29.439 41.917-5.5 20.749 77.437 77.521 114.923 131.917 134.833 43.187 15.808 67.572 15.213 82.167 15.917v-145.25c-0.018-18.572 22.058-28.298 35.75-15.75l256 234.667c9.257 8.459 9.257 23.041 0 31.5l-256 234.667c-4.252 3.904-8.654 5.918-14.417 5.583zM768 847.5l203.083-186.167-203.083-186.167v122.167c-0.001 11.782-9.552 21.332-21.333 21.333 0 0-55.995 0.090-118.167-22.667-34.458-12.613-69.632-35.764-100.25-67.25 12.849 46.523 24.583 79.25 57.5 112.167s101.657 63.083 160.917 63.083c11.782 0.001 21.332 9.552 21.333 21.333zM64 704c-35.087 0-64-28.913-64-64v-597.333c0-35.087 28.913-64 64-64h853.333c35.087 0 64 28.913 64 64v384c0.41 28.85-43.075 28.85-42.667 0v-384c0-12.188-9.146-21.333-21.333-21.333h-853.333c-12.188 0-21.333 9.146-21.333 21.333v597.333c0 12.188 9.146 21.333 21.333 21.333h384c29.189 0 27.184 42.667 0 42.667z" />
<glyph unicode="&#xe970;" glyph-name="mbri-shopping-bag" d="M405.333 746.667h213.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-213.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM149.583 746.667c-35.19 0-59.89-29.769-63.833-61.333l-85.333-682.667c-4.732-37.88 28.644-66.667 63.833-66.667h895.5c35.19 0 68.566 28.787 63.833 66.667l-85.333 682.667c-3.943 31.564-28.643 61.333-63.833 61.333h-85.083c-28.022 0-28.183-42.667 0-42.667h85.083c12.057 0 19.583-8.655 21.5-24l85.333-682.667c1.128-9.030-9.443-18.667-21.5-18.667h-895.5c-12.057 0-22.628 9.637-21.5 18.667l85.333 682.667c1.917 15.345 9.443 24 21.5 24h85.083c27.85 0 28.853 42.667 0 42.667zM512 960c-117.568 0-213.333-95.765-213.333-213.333v-149.333c0-27.85 42.667-28.85 42.667 0v149.333c0 94.509 76.157 170.667 170.667 170.667s170.667-76.157 170.667-170.667v-149.333c0-28.686 42.667-28.016 42.667 0v149.333c0 117.568-95.765 213.333-213.333 213.333z" />
<glyph unicode="&#xe971;" glyph-name="mbri-shopping-basket" d="M704 490.667c11.819 0 21.333-9.515 21.333-21.333v-298.667c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v298.667c0 11.819 9.515 21.333 21.333 21.333zM490.667 490.667c11.819 0 21.333-9.515 21.333-21.333v-298.667c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v298.667c0 11.819 9.515 21.333 21.333 21.333zM277.333 490.667c11.819 0 21.333-9.515 21.333-21.333v-298.667c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v298.667c0 11.819 9.515 21.333 21.333 21.333zM661.888 917.333c5.524-0.154 10.772-2.411 14.634-6.364l170.284-170.281c19.962-19.165-10.85-50.147-30.099-30.098l-170.284 170.281c-12.776 12.776-4.228 36.462 15.465 36.462zM319.462 917.325c-5.524-0.154-10.772-2.45-14.634-6.402l-170.284-170.281c-19.872-19.079 10.77-50.23 30.099-30.098l170.284 170.281c13.514 13.212 3.604 36.501-15.465 36.501zM86.75 661.333c-29.419 0-55.055-13.176-70.083-34.167s-19.813-48.397-14.75-76.333l85.083-469.333c4.808-26.529 15.589-51.52 33.333-70.75s43.331-32.083 72.75-32.083h595.183c29.419 0 55.006 12.853 72.75 32.083s28.526 44.221 33.333 70.75l85.083 469.333c5.063 27.937 0.278 55.343-14.75 76.333s-40.665 34.167-70.083 34.167zM86.75 618.667h807.85c17.701 0 28.223-6.285 35.417-16.333s10.783-25.258 7.417-43.833l-85.083-469.333c-3.622-19.983-11.771-37.692-22.667-49.5s-23.716-18.333-41.417-18.333h-595.183c-17.701 0-30.521 6.525-41.417 18.333s-19.045 29.517-22.667 49.5l-85.083 469.333c-3.366 18.576 0.223 33.785 7.417 43.833s17.716 16.333 35.417 16.333z" />
<glyph unicode="&#xe972;" glyph-name="mbri-shopping-cart" d="M19.416 827.682c-14.425 0.204-21.333-10.565-21.333-21.333s6.909-21.537 21.333-21.333h111l102.833-452.75c0.078-0.277 0.161-0.557 0.25-0.833 3.642-13.528 9.283-27.097 19.417-38.5s26.045-19.917 43.833-19.917h574.417c17.821 0 33.718 8.695 43.75 20.083s15.608 24.768 19.417 38l86 298.667c5.773 20.056-3.352 39.816-16.083 51.5s-29.262 18.417-47.083 18.417h-681.75c-14.425 0.204-21.333-10.565-21.333-21.333s6.909-21.537 21.333-21.333h681.75c15.117 0 24.303-7.442 22.167-15.417l-86-298.667c-5.306-19.802-12.185-27.25-22.167-27.25h-574.417c-5.849 0-8.163 1.359-11.917 5.583-3.712 4.177-7.578 11.924-10.083 21.083l-106.5 468.75c-2.22 9.715-10.868 16.599-20.833 16.583zM318.082 571.682c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h554.667c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333zM360.749 443.682c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h469.333c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333zM339.416 230.349c-46.876 0-85.333-38.458-85.333-85.333s38.458-85.333 85.333-85.333c46.876 0 85.333 38.458 85.333 85.333s-38.458 85.333-85.333 85.333zM808.749 230.349c-46.876 0-85.333-38.458-85.333-85.333s38.458-85.333 85.333-85.333c46.876 0 85.333 38.458 85.333 85.333s-38.458 85.333-85.333 85.333zM339.416 187.682c23.817 0 42.667-18.85 42.667-42.667s-18.85-42.667-42.667-42.667c-23.817 0-42.667 18.85-42.667 42.667s18.85 42.667 42.667 42.667zM808.749 187.682c23.817 0 42.667-18.85 42.667-42.667s-18.85-42.667-42.667-42.667c-23.817 0-42.667 18.85-42.667 42.667s18.85 42.667 42.667 42.667z" />
<glyph unicode="&#xe973;" glyph-name="mbri-sites" d="M192 490.667c-35.087 0-64-28.913-64-64v-128c0-35.087 28.913-64 64-64h85.333c35.087 0 64 28.913 64 64v128c0 35.087-28.913 64-64 64h-85.333zM192 448h85.333c12.188 0 21.333-9.146 21.333-21.333v-128c0-12.188-9.146-21.333-21.333-21.333h-85.333c-12.188 0-21.333 9.146-21.333 21.333v128c0 12.188 9.146 21.333 21.333 21.333zM405.333 320h426.667c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-426.667c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM405.333 448h426.667c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-426.667c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM64 832c-35.087 0-64-28.913-64-64v-640c0-35.087 28.913-64 64-64h896c35.087 0 64 28.913 64 64v640c0 35.087-28.913 64-64 64zM64 789.333h896c12.188 0 21.333-9.146 21.333-21.333v-640c0-12.188-9.146-21.333-21.333-21.333h-896c-12.188 0-21.333 9.146-21.333 21.333v640c0 12.188 9.146 21.333 21.333 21.333zM106.667 746.667c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333c11.782 0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333zM192 746.667c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333c11.782 0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333zM277.333 746.667c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333c11.782 0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333zM106.667 661.333c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h810.667c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333z" />
<glyph unicode="&#xe974;" glyph-name="mbri-smile-face" d="M661.333 618.667c11.819 0 21.333-9.515 21.333-21.333v-85.333c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v85.333c0 11.819 9.515 21.333 21.333 21.333zM362.667 618.667c11.819 0 21.333-9.515 21.333-21.333v-85.333c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v85.333c0 11.819 9.515 21.333 21.333 21.333zM512 149.333c77.892 0 132.539 22.73 164.901 46.462s45.821 50.107 45.821 50.107c14.116 25.813-26.333 44.422-37.677 18.883 0 0-7.445-16.030-32.905-34.702s-70.25-38.084-140.139-38.084c-69.929 0-111.537 19.228-138.405 37.918s-35.456 34.95-35.456 34.95c-15.436 27.68-49.814 2.593-36.772-20.788 0 0 14.807-25.739 48.289-49.030s84.492-45.717 162.344-45.717zM512 960c-283.279 0-512-228.721-512-512s228.721-512 512-512c283.279 0 512 228.721 512 512s-228.721 512-512 512zM512 917.333c260.38 0 469.333-208.954 469.333-469.333s-208.954-469.333-469.333-469.333c-260.38 0-469.333 208.954-469.333 469.333s208.954 469.333 469.333 469.333z" />
<glyph unicode="&#xe975;" glyph-name="mbri-speed" d="M276.083 960.25c-10.184-0.638-18.391-8.332-19.82-18.219l-85.347-554.781c-0.158-0.976-0.249-2.101-0.249-3.248 0-11.782 9.55-21.333 21.332-21.335h187.334l-80.25-401.167c-0.262-1.254-0.412-2.695-0.412-4.171 0-11.783 9.552-21.335 21.335-21.335 6.721 0 12.717 3.108 16.627 7.965l512.032 640.041c2.914 3.617 4.678 8.268 4.678 13.331 0 11.783-9.552 21.335-21.335 21.335-0.003 0-0.006 0-0.009 0h-264.166l155.25 310.5c1.407 2.769 2.231 6.037 2.231 9.498 0 11.776-9.54 21.323-21.313 21.335h-341.334c-0.090 0.001-0.196 0.002-0.302 0.002-11.783 0-21.335-9.552-21.335-21.335s9.552-21.335 21.335-21.335c0.106 0 0.212 0.001 0.318 0.002h306.817l-155.25-310.5c-1.407-2.769-2.231-6.037-2.231-9.498 0-11.776 9.54-21.323 21.313-21.335h254.251l-429.5-536.833 68.167 340.667c0.261 1.252 0.41 2.691 0.41 4.165 0 11.78-9.547 21.331-21.327 21.335h-188.5l81.583 530.083c0.188 1.063 0.295 2.288 0.295 3.537 0 11.783-9.552 21.335-21.335 21.335-0.455 0-0.907-0.014-1.354-0.042z" />
<glyph unicode="&#xe976;" glyph-name="mbri-star" d="M512 960c-8.15 0.056-15.454-4.536-19.083-11.833l-144.917-289.833-331.833-83c-15.254-3.804-21.295-22.239-11.25-34.333l207.417-248.917-41.5-332.083c-2.147-17.142 15.905-29.594 31.167-21.5l310 165.333 310-165.333c15.262-8.094 33.314 4.358 31.167 21.5l-41.5 332.083 207.417 248.917c10.045 12.094 4.004 30.529-11.25 34.333l-331.833 83-144.917 289.833c-3.576 7.19-11.053 11.763-19.083 11.833zM512 891l130.25-260.5c2.785-5.576 7.869-9.656 13.917-11.167l308.333-77.083-191.583-229.917c-3.779-4.551-5.499-10.466-4.75-16.333l37.583-300.5-283.75 151.333c-6.254 3.318-13.746 3.318-20 0l-283.75-151.333 37.583 300.5c0.749 5.867-0.971 11.783-4.75 16.333l-191.583 229.917 308.333 77.083c6.047 1.511 11.132 5.59 13.917 11.167z" />
<glyph unicode="&#xe977;" glyph-name="mbri-success" d="M1002.043 789.324c-5.534-0.154-10.791-2.453-14.659-6.412l-597.037-596.911c-19.57-18.787 10.874-50.218 30.152-30.145l597.037 596.911c13.871 13.559 3.899 37.089-15.492 36.557zM21.333 490.666c-19.165-0.004-28.567-23.029-14.796-36.354l341.164-341.092c19.118-19.906 49.329 10.966 30.152 30.145l-341.164 341.092c-4.018 4.151-9.578 6.209-15.356 6.209z" />
<glyph unicode="&#xe978;" glyph-name="mbri-sun" d="M832.101 106.667c19.048 0.004 28.422 23.069 14.735 36.253l-42.384 42.185c-20.054 20.789-49.227-10.567-29.967-29.826l42.384-42.185c3.993-4.108 9.489-6.427 15.232-6.427zM149.233 106.667c-19.048 0.004-28.422 23.069-14.735 36.253l42.384 42.185c19.563 20.28 49.76-10.912 29.967-29.826l-42.384-42.185c-3.993-4.108-9.49-6.427-15.232-6.427zM490.667 789.333c-176.911 0-320-143.089-320-320s143.089-320 320-320c176.911 0 320 143.089 320 320s-143.089 320-320 320zM490.667 746.667c154.012 0 277.333-123.322 277.333-277.333s-123.322-277.333-277.333-277.333c-154.012 0-277.333 123.322-277.333 277.333s123.322 277.333 277.333 277.333zM832.153 832c19.050-0.004 28.426-23.18 14.737-36.428l-42.39-42.389c-19.976-20.806-50.777 9.994-29.971 29.97l42.39 42.389c3.993 4.127 9.491 6.458 15.234 6.458zM149.193 832c-19.050-0.004-28.426-23.18-14.737-36.428l42.39-42.389c19.977-20.806 50.777 9.994 29.971 29.97l-42.39 42.389c-3.993 4.127-9.491 6.458-15.234 6.458zM896 469.333c0 11.819 9.515 21.333 21.333 21.333h42.667c11.819 0 21.333-9.515 21.333-21.333s-21.333-21.333-21.333-21.333h-42.667c0 0-21.333 9.515-21.333 21.333zM0 469.333c0 11.819 9.515 21.333 21.333 21.333h42.667c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-42.667c-11.819 0-21.333 9.515-21.333 21.333zM490.667 64c11.819 0 21.333-9.515 21.333-21.333v-42.667c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v42.667c0 11.819 9.515 21.333 21.333 21.333zM490.667 960c11.819 0 21.333-9.515 21.333-21.333v-42.667c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v42.667c0 11.819 9.515 21.333 21.333 21.333z" />
<glyph unicode="&#xe979;" glyph-name="mbri-sun2" d="M360.067 738.586l-85.333 147.802c-13.808 23.919-51.388 3.669-36.95-21.333l85.333-147.802c15.053-26.074 49.972-1.237 36.95 21.333zM744.067 73.476l-85.333 147.802c-14.217 24.623-50.886 2.816-36.95-21.333l85.333-147.802c14.382-24.905 50.824-2.688 36.95 21.333zM242.917 637.141l-147.802 85.333c-23.918 13.811-46.341-22.511-21.333-36.949l147.802-85.333c26.072-15.053 43.888 23.927 21.333 36.949zM908.024 253.141l-147.802 85.333c-24.624 14.217-45.473-23.010-21.333-36.949l147.802-85.333c24.908-14.379 45.362 23.078 21.333 36.949zM621.504 738.586l85.333 147.802c13.808 23.919 51.388 3.669 36.95-21.333l-85.333-147.802c-15.053-26.074-49.972-1.237-36.95 21.333zM237.504 73.476l85.333 147.802c14.217 24.623 50.886 2.816 36.95-21.333l-85.333-147.802c-14.382-24.905-50.824-2.688-36.95 21.333zM738.655 637.141l147.802 85.333c23.918 13.811 46.341-22.511 21.333-36.949l-147.802-85.333c-26.072-15.053-43.888 23.927-21.333 36.949zM73.547 253.141l147.802 85.333c24.624 14.217 45.473-23.010 21.333-36.949l-147.802-85.333c-24.908-14.379-45.362 23.078-21.333 36.949zM789.335 490.667h170.667c27.618 0 28.877-42.667 0-42.667h-170.667c-30.106 0-26.044 42.667 0 42.667zM21.335 490.667h170.667c28.433 0 27.874-42.667 0-42.667h-170.667c-28.762 0-27.746 42.667 0 42.667zM512 170.667v-170.667c0-27.618-42.667-28.877-42.667 0v170.667c0 30.106 42.667 26.044 42.667 0zM512 938.667v-170.667c0-28.433-42.667-27.874-42.667 0v170.667c0 28.762 42.667 27.746 42.667 0zM490.667 703.454c-129.35 0-234.667-105.318-234.667-234.667 0-129.353 105.317-234.667 234.667-234.667s234.667 105.314 234.667 234.667c0 129.348-105.317 234.667-234.667 234.667zM490.667 660.787c106.291 0 192-85.709 192-192s-85.709-192-192-192c-106.291 0-192 85.709-192 192s85.709 192 192 192z" />
<glyph unicode="&#xe97a;" glyph-name="mbri-tablet" d="M128 469.333c0-11.782-9.551-21.333-21.333-21.333s-21.333 9.551-21.333 21.333c0 11.782 9.551 21.333 21.333 21.333s21.333-9.551 21.333-21.333zM192 746.667c11.819 0 21.333-9.515 21.333-21.333v-512c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v512c0 11.819 9.515 21.333 21.333 21.333zM64 832c-35.087 0-64-28.913-64-64v-597.333c0-35.087 28.913-64 64-64h896c35.087 0 64 28.913 64 64v597.333c0 35.087-28.913 64-64 64h-896zM64 789.333h896c12.188 0 21.333-9.146 21.333-21.333v-597.333c0-12.188-9.146-21.333-21.333-21.333h-896c-12.188 0-21.333 9.146-21.333 21.333v597.333c0 12.188 9.146 21.333 21.333 21.333z" />
<glyph unicode="&#xe97b;" glyph-name="mbri-tablet-vertical" d="M490.667 64c11.782 0 21.333-9.551 21.333-21.333s-9.551-21.333-21.333-21.333c-11.782 0-21.333 9.551-21.333 21.333s9.551 21.333 21.333 21.333zM213.333 128c0 11.819 9.515 21.333 21.333 21.333h512c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-512c-11.819 0-21.333 9.515-21.333 21.333zM128 0c0-35.089 28.913-64 64-64h597.333c35.087 0 64 28.911 64 64v896c0 35.089-28.913 64-64 64h-597.333c-35.087 0-64-28.911-64-64v-896zM170.667 0v896c0 12.186 9.146 21.333 21.333 21.333h597.333c12.188 0 21.333-9.148 21.333-21.333v-896c0-12.186-9.146-21.333-21.333-21.333h-597.333c-12.188 0-21.333 9.148-21.333 21.333z" />
<glyph unicode="&#xe97c;" glyph-name="mbri-target" d="M490.667 618.667c-82.222 0-149.333-67.111-149.333-149.333s67.111-149.333 149.333-149.333c82.222 0 149.333 67.111 149.333 149.333s-67.111 149.333-149.333 149.333zM490.667 576c59.163 0 106.667-47.504 106.667-106.667s-47.504-106.667-106.667-106.667c-59.163 0-106.667 47.504-106.667 106.667s47.504 106.667 106.667 106.667zM490.667 960c-11.819 0-21.333-9.515-21.333-21.333v-65.083c-206.551-10.812-372.105-176.366-382.917-382.917h-65.083c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h65.083c10.812-206.551 176.366-372.105 382.917-382.917v-65.083c0-11.819 9.515-21.333 21.333-21.333s21.333 9.515 21.333 21.333v65.083c206.551 10.812 372.105 176.366 382.917 382.917h65.083c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333h-65.083c-10.812 206.551-176.366 372.105-382.917 382.917v65.083c0 11.819-9.515 21.333-21.333 21.333zM469.333 830.917v-62.917c0-11.819 9.515-21.333 21.333-21.333s21.333 9.515 21.333 21.333v62.917c183.412-10.672 329.578-156.838 340.25-340.25h-62.917c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h62.917c-10.672-183.412-156.838-329.578-340.25-340.25v62.917c0 11.819-9.515 21.333-21.333 21.333s-21.333-9.515-21.333-21.333v-62.917c-183.412 10.672-329.578 156.838-340.25 340.25h62.917c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333h-62.917c10.672 183.412 156.838 329.578 340.25 340.25z" />
<glyph unicode="&#xe97d;" glyph-name="mbri-timer" d="M320 618.667c-13.037-0.010-21.333-8.107-21.333-21.333v-85.333c0-28.86 42.667-27.853 42.667 0v33.833l134.25-134.25c19.274-19.274 49.407 11.692 30.167 30.167l-134.25 134.25h33.833c28.522 0 27.698 42.667 0 42.667zM490.667 576c-27.689 0-28.353-42.667 0-42.667h21.333c70.945 0 128-57.055 128-128s-57.055-128-128-128c-70.945 0-128 57.055-128 128v21.333c0 28.186-42.667 28.026-42.667 0v-21.333c0-94.004 76.663-170.667 170.667-170.667s170.667 76.663 170.667 170.667c0 94.004-76.663 170.667-170.667 170.667zM405.333 960c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h64v-106.667c0-11.819 9.515-21.333 21.333-21.333s21.333 9.515 21.333 21.333v21.333c235.894 0 426.667-190.772 426.667-426.667s-190.772-426.667-426.667-426.667c-235.894 0-426.667 190.772-426.667 426.667 0 118.317 44.913 228.080 121.75 304.917 19.506 18.728-11.695 49.405-30.167 30.167-85.307-85.307-134.25-205.977-134.25-335.083 0-258.953 210.38-469.333 469.333-469.333s469.333 210.38 469.333 469.333c0 258.953-210.38 469.333-469.333 469.333v42.667h64c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333z" />
<glyph unicode="&#xe97e;" glyph-name="mbri-to-ftp" d="M448 661.333c-27.856 0-28.36-42.667 0-42.667h64v-234.667c0-28.186 42.667-28.356 42.667 0v234.667h64c28.351 0 27.865 42.667 0 42.667zM234.667 661.333c-11.782-0.001-21.332-9.552-21.333-21.333v-256c0-28.522 42.667-28.193 42.667 0v106.667h64c27.85 0 27.85 42.667 0 42.667h-64v85.333h106.667c28.35 0 28.016 42.667 0 42.667zM682.667 384c0-28.522 42.667-28.019 42.667 0v106.667h21.333c30.108 0 56.022 5.593 75.833 20.167s30.833 38.722 30.833 65.167c0 26.722-11.674 50.812-31.583 65.25s-45.721 20.083-75.083 20.083h-42.667c-11.782-0.001-21.332-9.552-21.333-21.333zM725.333 618.667h21.333c23.638 0 40.492-5.021 50-11.917s14-14.806 14-30.75c0-16.222-4.311-24.074-13.5-30.833s-25.942-11.833-50.5-11.833h-21.333zM533.333 277.333c-5.748-0.043-11.165-2.33-15.083-6.25l-85.333-85.333c-20.94-20.107 10.060-51.106 30.167-30.167l70.25 70.25 70.25-70.25c20.107-20.94 51.106 10.060 30.167 30.167l-85.333 85.333c-4.082 4.083-9.335 6.295-15.083 6.25zM533.333 192c11.819 0 21.333-9.515 21.333-21.333v-213.333c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v213.333c0 11.819 9.515 21.333 21.333 21.333zM64 960c-35.087 0-64-28.913-64-64v-725.333c0-35.087 28.913-64 64-64h256c28.868 0 27.652 42.667 0 42.667h-256c-12.188 0-21.333 9.146-21.333 21.333v725.333c0 12.188 9.146 21.333 21.333 21.333h247.167l164.417-164.417c4-4.001 9.426-6.249 15.083-6.25h490.667v-576c0-12.188-9.146-21.333-21.333-21.333h-213.333c-27.177 0-28.85-42.667 0-42.667h213.333c35.087 0 64 28.913 64 64v597.333c-0.001 11.782-9.552 21.332-21.333 21.333h-503.167l-164.417 164.417c-4 4.001-9.426 6.249-15.083 6.25z" />
<glyph unicode="&#xe97f;" glyph-name="mbri-to-local-drive" d="M533.333 362.667c-5.748-0.043-11.165-2.33-15.083-6.25l-85.333-85.333c-20.94-20.107 10.060-51.106 30.167-30.167l70.25 70.25 70.25-70.25c20.107-20.94 51.106 10.060 30.167 30.167l-85.333 85.333c-4.082 4.083-9.335 6.295-15.083 6.25zM533.333 277.333c11.819 0 21.333-9.515 21.333-21.333v-298.667c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v298.667c0 11.819 9.515 21.333 21.333 21.333zM64 960c-35.087 0-64-28.913-64-64v-725.333c0-35.087 28.913-64 64-64h256c28.868 0 27.652 42.667 0 42.667h-256c-12.188 0-21.333 9.146-21.333 21.333v725.333c0 12.188 9.146 21.333 21.333 21.333h247.167l164.417-164.417c4-4.001 9.426-6.249 15.083-6.25h490.667v-576c0-12.188-9.146-21.333-21.333-21.333h-213.333c-27.177 0-28.85-42.667 0-42.667h213.333c35.087 0 64 28.913 64 64v597.333c-0.001 11.782-9.552 21.332-21.333 21.333h-503.167l-164.417 164.417c-4 4.001-9.426 6.249-15.083 6.25z" />
<glyph unicode="&#xe980;" glyph-name="mbri-touch-swipe" d="M723 618.5c-13.719 0-26.971-1.766-39.167-9.75-10.403-6.81-18.041-16.602-22.417-27.917-1.348-3.486-1.733-7.091-2.417-10.667-0.506 0.182-0.904 0.492-1.417 0.667-13.44 4.586-28.302 6.418-43.333 3.75-15.157-2.691-29.695-9.904-40.75-21.917-10.687-11.613-16.594-26.107-18.333-40.833-0.436-3.69 1.353-6.878 1.417-10.5-1.168 0.384-1.972 1.241-3.167 1.583-12.917 3.699-26.872 4.573-40.667 1.583-13.84-2.999-26.842-9.759-37.167-20.083-9.933-9.933-16.341-22.415-19.5-35.667l-82.667 82.583c-7.352 7.344-15.359 15.351-25.083 22.75-9.756 7.423-21.041 13.985-34 17.917-13.031 3.953-27.189 5.060-41.25 2.083-14.118-2.989-27.203-9.953-37.583-20.333s-17.345-23.465-20.333-37.583c-2.977-14.061-1.87-28.219 2.083-41.25 3.931-12.959 10.494-24.244 17.917-34 7.399-9.724 15.401-17.736 22.75-25.083l309.25-309.167h-76.5c-11.019 0-23.020 0.064-35.75-1.667-12.769-1.734-26.003-5.32-38.5-12-12.563-6.715-23.82-16.343-32-28.917-8.212-12.623-12.75-27.443-12.75-42.75s4.538-30.128 12.75-42.75c8.18-12.574 19.437-22.202 32-28.917 12.497-6.68 25.731-10.266 38.5-12 12.73-1.729 24.731-1.667 35.75-1.667h256c28.85-0.41 27.351 42.667 0 42.667h-256c-10.925 0-20.985 0.111-30 1.333-8.976 1.219-17.227 3.585-24.083 7.25-6.791 3.63-12.63 8.846-16.417 14.667-3.755 5.772-5.833 12.78-5.833 19.417s2.078 13.645 5.833 19.417c3.787 5.821 9.626 11.037 16.417 14.667 6.856 3.665 15.107 6.031 24.083 7.25 9.015 1.224 19.075 1.333 30 1.333h128c19 0.007 28.186 23.314 15.083 36.417l-345.667 345.583c-7.283 7.281-13.871 14.009-19 20.75-5.105 6.71-8.925 13.661-11 20.5-2.053 6.768-2.475 13.904-1.167 20.083 1.296 6.123 4.501 12.001 8.75 16.25s10.127 7.454 16.25 8.75c6.179 1.308 13.316 0.886 20.083-1.167 6.839-2.074 13.79-5.895 20.5-11 6.741-5.129 13.466-11.72 20.75-19l175-174.917c18.635-19.406 49.59 11.516 30.167 30.167l-21.333 21.333c-7.163 7.163-13.59 13.743-18.5 20.333-4.895 6.571-8.565 13.494-10.5 20.25-1.921 6.708-2.251 13.761-0.916 19.917 1.324 6.11 4.473 11.89 8.583 16s9.89 7.259 16 8.583c6.156 1.334 13.209 1.004 19.917-0.916 6.756-1.935 13.679-5.605 20.25-10.5 6.59-4.91 12.926-11.59 20.333-18.5l23.26-21.699c18.983-17.709 47.339 10.708 28.050 29.997-17.118 17.118-27.455 29.485-32.977 44.118-2.747 7.28-3.871 14.831-3.084 21.5 0.774 6.551 3.595 12.847 7.417 17 3.942 4.283 10.185 7.57 16.833 8.75 6.774 1.202 14.564 0.483 22.083-2.083 20.702-8.693 32.18-20.68 45.083-33.583 20.315-20.315 49.175 14.186 30.167 30.167-5.255 4.418-9.535 10.704-12.917 14.5-3.044 4.344-5.078 8.784-5.833 12.75-0.742 3.9-0.375 7.956 0.833 11.083 1.194 3.089 3.566 6.019 6.083 7.667 3.020 1.977 7.901 3.248 13 2.917 5.28-0.343 11.215-2.235 17.167-5.417 12.18-6.512 23.849-18.016 36.833-31l213.333-213.333c19.19-19.19 49.273 11.060 30.167 30.167l-213.333 213.333c-12.734 12.734-26.938 27.78-46.833 38.417-10.086 5.392-21.689 10.333-34.583 10.333zM362.667 704c-28.016 0-28.189-42.667 0-42.667h33.833l-48.917-48.917c-19.069-18.308 11.609-49.495 30.167-30.167l48.917 48.917v-33.833c0-28.686 42.667-27.856 42.667 0v85.333c-0.001 11.782-9.552 21.332-21.333 21.333zM106.667 448c-11.782-0.184-21.333-8.858-21.333-21.333v-85.333c0.001-11.782 9.552-21.332 21.333-21.333h85.333c28.85-0.41 28.85 43.075 0 42.667h-33.833l48.917 48.917c12.873 12.585 4.675 36.537-15.083 36.417-5.538-0.034-11.213-2.288-15.083-6.25l-48.917-48.917v33.833c0.194 12.377-9.29 21.522-21.333 21.333zM298.667 128c0-11.782-9.551-21.333-21.333-21.333s-21.333 9.551-21.333 21.333c0 11.782 9.551 21.333 21.333 21.333s21.333-9.551 21.333-21.333zM234.667 874.667h85.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-85.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM64 960c-35.087 0-64-28.913-64-64v-810.667c0-35.087 28.913-64 64-64h213.333c28.85-0.41 28.85 43.075 0 42.667h-213.333c-12.188 0-21.333 9.146-21.333 21.333v810.667c0 12.188 9.146 21.333 21.333 21.333h426.667c12.188 0 21.333-9.146 21.333-21.333v-298.667c-0.41-28.85 43.075-28.85 42.667 0v298.667c0 35.087-28.913 64-64 64z" />
<glyph unicode="&#xe981;" glyph-name="mbri-touch" d="M723 618.667c-13.542 0-26.971-1.933-39.167-9.917-10.403-6.81-18.041-16.602-22.417-27.917-1.348-3.486-1.733-7.091-2.417-10.667-0.506 0.182-0.904 0.492-1.417 0.667-13.44 4.586-28.302 6.418-43.333 3.75-15.157-2.691-29.695-9.904-40.75-21.917-10.687-11.613-16.594-26.107-18.333-40.833-0.436-3.69 1.353-6.878 1.417-10.5-1.168 0.384-1.972 1.241-3.167 1.583-12.917 3.699-26.872 4.573-40.667 1.583-13.84-2.999-26.842-9.759-37.167-20.083-9.933-9.933-16.341-22.415-19.5-35.667l-82.667 82.583c-7.352 7.344-15.359 15.351-25.083 22.75-9.756 7.423-21.041 13.985-34 17.917-13.031 3.953-27.189 5.060-41.25 2.083-14.118-2.989-27.203-9.953-37.583-20.333s-17.345-23.465-20.333-37.583c-2.977-14.061-1.87-28.219 2.083-41.25 3.931-12.959 10.494-24.244 17.917-34 7.399-9.724 15.401-17.736 22.75-25.083l309.25-309.167h-76.5c-11.019 0-23.020 0.064-35.75-1.667-12.769-1.734-26.003-5.32-38.5-12-12.563-6.715-23.82-16.343-32-28.917-8.212-12.623-12.75-27.443-12.75-42.75s4.538-30.128 12.75-42.75c8.18-12.574 19.437-22.202 32-28.917 12.497-6.68 25.731-10.266 38.5-12 12.73-1.729 24.731-1.667 35.75-1.667h256c28.85-0.41 27.351 42.667 0 42.667h-256c-10.925 0-20.985 0.111-30 1.333-8.976 1.219-17.227 3.585-24.083 7.25-6.791 3.63-12.63 8.846-16.417 14.667-3.755 5.772-5.833 12.78-5.833 19.417s2.078 13.645 5.833 19.417c3.787 5.821 9.626 11.037 16.417 14.667 6.856 3.665 15.107 6.031 24.083 7.25 9.015 1.225 19.075 1.333 30 1.333h128c19 0.007 28.186 23.314 15.083 36.417l-345.667 345.583c-7.283 7.281-13.871 14.009-19 20.75-5.105 6.71-8.925 13.661-11 20.5-2.053 6.768-2.475 13.904-1.167 20.083 1.296 6.123 4.501 12.001 8.75 16.25s10.127 7.454 16.25 8.75c6.179 1.308 13.316 0.886 20.083-1.167 6.839-2.074 13.79-5.895 20.5-11 6.741-5.129 13.466-11.72 20.75-19l175-174.917c18.635-19.406 49.59 11.516 30.167 30.167l-21.333 21.333c-7.163 7.163-13.59 13.743-18.5 20.333-4.895 6.571-8.565 13.494-10.5 20.25-1.921 6.708-2.251 13.761-0.916 19.917 1.324 6.11 4.473 11.89 8.583 16s9.89 7.259 16 8.583c6.156 1.334 13.209 1.004 19.917-0.916 6.756-1.935 13.679-5.605 20.25-10.5 6.59-4.91 12.926-11.59 20.333-18.5l23.26-21.699c18.983-17.709 47.339 10.708 28.050 29.997-17.118 17.118-27.455 29.485-32.977 44.118-2.747 7.28-3.871 14.831-3.084 21.5 0.774 6.551 3.595 12.847 7.417 17 3.942 4.283 10.185 7.57 16.833 8.75 6.774 1.202 14.564 0.483 22.083-2.083 20.702-8.693 32.18-20.68 45.083-33.583 20.315-20.315 49.175 14.186 30.167 30.167-5.255 4.418-9.536 10.704-12.917 14.5-3.044 4.344-5.078 8.784-5.833 12.75-0.742 3.901-0.375 7.956 0.833 11.083 1.194 3.089 3.566 6.019 6.083 7.667 3.020 1.977 7.901 3.248 13 2.917 5.28-0.343 11.215-2.235 17.167-5.417 12.18-6.512 23.849-18.016 36.833-31l213.333-213.333c19.19-19.19 49.273 11.060 30.167 30.167l-213.333 213.333c-12.734 12.734-26.938 27.78-46.833 38.417-10.086 5.392-21.041 10.5-34.583 10.5zM191.333 448c-5.551-0.039-10.81-2.508-14.667-6.5l-42.667-42.667c-18.906-18.152 11.858-49.236 30.167-30.167l42.667 42.667c14.031 13.56 4.177 36.804-15.5 36.667zM405.333 661.333c-5.536-0.154-11.463-2.038-15.333-6l-42.667-42.667c-18.61-17.868 10.066-50.268 30.167-30.167l42.667 42.667c12.684 12.401 5.087 36.167-14.833 36.167zM149.333 661.333c-19.174-0.004-28.348-23.162-15.083-36l42.667-42.667c19.528-20.339 49.299 11.797 30.167 30.167l-42.667 42.667c-4.020 4.154-9.303 5.833-15.083 5.833zM85.333 512c0 11.819 9.515 21.333 21.333 21.333h42.667c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-42.667c-11.819 0-21.333 9.515-21.333 21.333zM277.333 704c11.819 0 21.333-9.515 21.333-21.333v-42.667c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v42.667c0 11.819 9.515 21.333 21.333 21.333zM298.736 128.001c0-11.782-9.551-21.333-21.333-21.333s-21.333 9.551-21.333 21.333c0 11.782 9.551 21.333 21.333 21.333s21.333-9.551 21.333-21.333zM234.736 874.668h85.333c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-85.333c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM64.070 960.001c-35.087 0-64-28.913-64-64v-810.667c0-35.087 28.913-64 64-64h213.333c28.85-0.41 28.85 43.075 0 42.667h-213.333c-12.188 0-21.333 9.146-21.333 21.333v810.667c0 12.188 9.146 21.333 21.333 21.333h426.667c12.188 0 21.333-9.146 21.333-21.333v-298.667c-0.41-28.85 43.075-28.85 42.667 0v298.667c0 35.087-28.913 64-64 64z" />
<glyph unicode="&#xe982;" glyph-name="mbri-trash" d="M661.34 576.831c12.606-0.166 22.476-12.028 21.048-24.566l-42.595-426.347c-2.741-27.982-45.202-24.148-42.429 4.164l42.595 426.347c0.919 11.182 10.173 20.57 21.381 20.402zM362.791 576c-12.606-0.166-22.606-11.197-21.179-23.735l42.595-426.347c2.773-28.312 45.202-24.148 42.429 4.164l-42.595 426.347c-0.919 11.182-10.042 19.739-21.25 19.571zM405.333 960c-35.058 0-64-28.913-64-64v-64h-149.333c-11.809 0-21.333-9.515-21.333-21.333s9.524-21.333 21.333-21.333h640c11.809 0 21.333 9.515 21.333 21.333s-9.524 21.333-21.333 21.333h-149.333v64c0 35.087-28.942 64-64 64zM405.333 917.333h213.333c12.178 0 21.333-9.146 21.333-21.333v-64h-256v64c0 12.188 9.156 21.333 21.333 21.333zM234.667 746.667c-35.168 0-68.282-28.779-63.55-66.667l85.262-682.667c3.943-31.569 28.453-61.333 63.621-61.333h384c35.168 0 59.678 29.765 63.621 61.333l85.262 682.667c4.732 37.888-28.382 66.667-63.55 66.667zM234.667 704h554.667c12.068 0 22.378-9.645 21.252-18.667l-85.262-682.667c-1.916-15.341-9.255-24-21.323-24h-384c-12.068 0-19.407 8.659-21.323 24l-85.262 682.667c-1.127 9.022 9.184 18.667 21.252 18.667z" />
<glyph unicode="&#xe983;" glyph-name="mbri-underline" d="M170.667 938.667v-405.333c0-188.732 152.603-341.333 341.333-341.333s341.333 152.602 341.333 341.333v405.333c-0.001 11.17-10.164 21.333-21.333 21.333h-128c-11.17 0-21.332-10.163-21.333-21.333v-405.333c0-95.731-75.74-170.667-170.667-170.667-95.017 0-170.667 74.931-170.667 170.667v405.333c-0.001 11.17-10.164 21.333-21.333 21.333h-128c-15.388 0-21.333-10.214-21.333-21.333zM213.333 917.333h85.333v-384c0-118.477 95.615-213.333 213.333-213.333 117.808 0 213.333 94.857 213.333 213.333v384h85.333v-384c0-165.828-132.837-298.667-298.667-298.667s-298.667 132.838-298.667 298.667zM170.667 85.333v-128c0.001-11.17 10.164-21.333 21.333-21.333h640c11.17 0 21.332 10.163 21.333 21.333v128c-0.001 11.17-10.164 21.333-21.333 21.333h-640c-13.856 0-21.333-9.412-21.333-21.333zM213.333 64h597.333v-85.333h-597.333z" />
<glyph unicode="&#xe984;" glyph-name="mbri-unlink" d="M638.922 7.253l-42.691 124.706c-8.051 29.581-50.068 18.825-40.023-12.983l42.691-124.71c7.246-26.62 48.216-17.114 40.023 12.988zM385.078 7.253l42.691 124.706c8.051 29.581 50.068 18.825 40.023-12.983l-42.691-124.71c-7.246-26.62-48.216-17.114-40.023 12.988zM638.922 888.747l-42.691-124.706c-8.051-29.581-50.068-18.825-40.023 12.983l42.691 124.71c7.246 26.62 48.216 17.114 40.023-12.988zM768 704.004c141.455 0 256-114.543 256-256s-114.545-256-256-256h-106.667c-28.205 0-28.405 42.667 0 42.667h106.667c118.556 0 213.333 94.78 213.333 213.333s-94.778 213.333-213.333 213.333h-106.667c-29.040 0-27.944 42.667 0 42.667zM385.078 888.747l42.691-124.706c8.051-29.581 50.068-18.825 40.023 12.983l-42.691 124.71c-7.246 26.62-48.216 17.114-40.023-12.988zM256 704.004c-141.455 0-256-114.543-256-256s114.545-256 256-256h106.667c28.205 0 28.405 42.667 0 42.667h-106.667c-118.556 0-213.333 94.78-213.333 213.333s94.778 213.333 213.333 213.333h106.667c29.040 0 27.944 42.667 0 42.667z" />
<glyph unicode="&#xe985;" glyph-name="mbri-unlock" d="M362.667 448c-58.658 0-106.667-48.009-106.667-106.667 0.026-32.842 17.323-61.636 42.667-81.667v-89c0-35.087 28.913-64 64-64s64 28.913 64 64v89.083c25.323 20.008 42.609 48.774 42.667 81.583 0 58.658-48.009 106.667-106.667 106.667zM362.667 405.333c35.599 0 64-28.401 64-64-0.040-22.858-12.204-43.821-32-55.25-6.422-3.758-10.667-10.621-10.667-18.476 0-0.008 0-0.017 0-0.025v-96.915c0-12.188-9.146-21.333-21.333-21.333s-21.333 9.146-21.333 21.333v96.833c0 0.007 0 0.015 0 0.024 0 7.855-4.245 14.719-10.566 18.422-19.916 11.495-32.083 32.507-32.101 55.388 0 35.599 28.401 64 64 64zM768 917.333c-141.132 0-256-114.868-256-256v-21.333c-0.204-14.425 10.565-21.333 21.333-21.333s21.537 6.909 21.333 21.333v21.333c0 118.073 95.26 213.333 213.333 213.333s213.333-95.26 213.333-213.333v-21.333c-0.204-14.425 10.565-21.333 21.333-21.333s21.537 6.909 21.333 21.333v21.333c0 141.132-114.868 256-256 256zM64 576c-35.087 0-64-28.913-64-64v-469.333c0-35.087 28.913-64 64-64h597.333c35.087 0 64 28.913 64 64v469.333c0 35.087-28.913 64-64 64h-597.333zM64 533.333h597.333c12.188 0 21.333-9.146 21.333-21.333v-469.333c0-12.188-9.146-21.333-21.333-21.333h-597.333c-12.188 0-21.333 9.146-21.333 21.333v469.333c0 12.188 9.146 21.333 21.333 21.333z" />
<glyph unicode="&#xe986;" glyph-name="mbri-up-down" d="M207.929 796.033l112.767 112.6 111.39-112.6c19.259-19.784 51.195 10.003 30.293 30.292l-126.521 127.729c-7.939 7.926-22.384 7.926-30.323 0l-127.929-127.729c-20.889-20.803 10.149-50.384 30.323-30.292zM682.752 810.666v-682.665c0-28.151 42.667-27.582 42.667 0v682.665c0 28.339-42.667 27.736-42.667 0zM816.071 142.637l-112.767-112.604-111.39 112.604c-19.259 19.784-51.195-10.007-30.293-30.296l126.521-127.725c7.939-7.931 22.384-7.931 30.323 0l127.929 127.725c20.889 20.807-10.149 50.384-30.323 30.296zM341.418 128v682.665c0 28.566-42.667 27.526-42.667 0v-682.665c0-28.819 42.667-27.59 42.667 0z" />
<glyph unicode="&#xe987;" glyph-name="mbri-up" d="M959.92 448.008c-5.535 0.154-11.375 2.454-15.245 6.414l-454.008 454.099-454.030-453.849c-19.206-20.003-50.161 10.956-30.16 30.157l468.974 468.927c8.329 8.325 21.83 8.325 30.16 0l469.224-469.177c13.032-12.74 5.155-36.571-14.914-36.571zM490.667-64c11.819 0 21.333 9.515 21.333 21.333v853.333c0 11.819-9.515 21.333-21.333 21.333s-21.333-9.515-21.333-21.333v-853.333c0-11.819 9.515-21.333 21.333-21.333z" />
<glyph unicode="&#xe988;" glyph-name="mbri-update" d="M37.277 369.364l112.813 112.604 111.435-112.604c19.266-19.784 51.215 10.007 30.306 30.296l-126.572 127.725c-7.942 7.931-22.393 7.931-30.336 0l-127.981-127.725c-20.898-20.807 10.153-50.384 30.336-30.296zM986.723 526.64l-112.813-112.604-111.435 112.604c-19.266 19.784-51.215-10.007-30.306-30.296l126.572-127.725c7.942-7.931 22.393-7.931 30.336 0l127.98 127.725c20.898 20.807-10.153 50.384-30.336 30.296zM528 831.454c-49.859 2.013-99.105-6.064-145.333-22.666-92.456-33.213-173.502-101.535-218.667-197.332-1.903-3.129-3.029-6.912-3.029-10.958 0-11.783 9.552-21.335 21.335-21.335 9.507 0 17.561 6.218 20.319 14.809 40.29 85.521 111.131 145.27 193.375 174.813 82.243 29.547 175.962 28.25 261.333-11.999 85.371-40.244 146.458-111.088 176-193.328 7.386-20.572 12.646-42.342 16-64.001 1.639-10.441 10.57-18.333 21.345-18.333 11.925 0 21.592 9.667 21.592 21.592 0 1.202-0.098 2.381-0.287 3.529-3.755 24.24-10.348 48.76-18.65 71.875-33.21 92.457-101.533 172.169-197.333 217.334-47.9 22.58-98.141 33.979-148 36zM148 414.121c-9.403-2.363-16.254-10.742-16.254-20.721 0-1.158 0.092-2.294 0.27-3.402 3.756-24.239 10.348-48.763 18.651-71.874 33.21-92.461 101.534-172.174 197.333-217.338s200.877-47.875 293.333-14.666c92.456 33.213 173.502 102.871 218.667 198.668 1.903 3.129 3.029 6.912 3.029 10.958 0 11.783-9.552 21.335-21.335 21.335-9.507 0-17.561-6.218-20.319-14.809-40.29-85.521-111.131-146.606-193.375-176.149-82.244-29.547-175.962-26.918-261.333 13.33-85.371 40.244-146.458 111.088-176 193.332-7.385 20.563-12.646 41.010-16 62.665-1.039 10.907-10.153 19.371-21.245 19.371-1.927 0-3.795-0.256-5.571-0.735z" />
<glyph unicode="&#xe989;" glyph-name="mbri-upload" d="M518.247-15.096c8.318-8.316 21.804-8.316 30.122 0l127.842 127.833c20.655 20.078-10.043 50.773-30.122 30.12l-112.781-112.773-112.722 112.714c-20.079 20.656-50.78-10.042-30.122-30.12zM533.337 106.652c-11.818 0-21.332 9.514-21.332 21.331v213.309c0 11.817 9.514 21.331 21.332 21.331s21.332-9.514 21.332-21.331v-213.309c0-11.817-9.514-21.331-21.332-21.331zM568.503 917.247c-54.471 1.235-109.155-10.79-158.077-35.079-61.518-30.543-111.418-75.354-144.328-135.568-70.218 2.857-140.756-27.189-190.742-76.825-53.352-52.977-81.186-129.351-74.33-204.227 5.424-59.243 32.127-115.825 74.33-157.732 42.206-41.909 99.616-73.122 158.41-73.158h43.582c11.818 0 21.332 9.514 21.332 21.331s-9.514 21.331-21.332 21.331h-40.582c-48.893 4.216-96.593 26.253-131.411 60.826-34.902 34.657-57.348 82.273-61.831 131.235-5.644 61.649 17.896 126.438 61.831 170.064 43.938 43.629 108.874 70.567 170.493 64.493 8.809-0.853 17.231 2.655 21.166 10.582 28.249 56.663 75.694 101.326 132.411 129.485 42.539 21.12 90.493 31.659 138.078 30.58 15.836-0.359 31.756-2.142 47.331-5.083 70.806-13.368 136.65-54.159 180.076-111.654s64.674-131.469 58.164-203.227c-0.975-10.857 6.391-19.202 17.083-21.331 32.638-6.436 63.264-27.677 83.33-54.244s30.152-61.264 27.416-94.406c-1.408-17.046-6.2-33.739-14.166-48.328-7.929-14.522-19.289-27.255-32.832-36.579-13.566-9.341-29.74-15.674-46.748-18.915-17.029-3.245-35.426-3.5-55.165-3.5h-42.665c-11.818 0-21.332-9.514-21.332-21.331s9.514-21.331 21.332-21.331h42.665c20.017 0.001 41.14 0.137 63.164 4.333 22.045 4.2 43.736 12.376 62.914 25.58 19.201 13.221 35.043 30.875 46.165 51.244 11.085 20.302 17.302 42.754 19.166 65.326 3.63 43.953-9.357 88.407-35.915 123.569-23.171 30.678-54.771 51.214-91.496 62.16 3.015 77.182-20.457 154.914-67.081 216.642-50.016 66.219-124.695 112.589-206.242 127.986-17.872 3.376-35.982 5.337-54.165 5.749z" />
<glyph unicode="&#xe98a;" glyph-name="mbri-user" d="M512 746.667c-90.465 0-170.667-73.6-170.667-170.667v-85.333c0-4.212 1.247-8.329 3.583-11.833l39.083-58.667v-66.75l-203-121.75c-6.428-3.869-10.352-10.83-10.333-18.333v-42.667c0-28.003 42.667-28.512 42.667 0v30.583l203 121.75c6.428 3.869 10.352 10.83 10.333 18.333v85.333c0 4.212-1.247 8.329-3.583 11.833l-39.083 58.667v78.833c0 73.6 60.598 128 128 128s128-54.4 128-128v-78.833l-39.083-58.667c-2.336-3.504-3.583-7.622-3.583-11.833v-85.333c-0.019-7.503 3.905-14.464 10.333-18.333l203-121.75v-30.583c0-29.019 42.667-27.326 42.667 0v42.667c0.019 7.503-3.905 14.464-10.333 18.333l-203 121.75v66.75l39.083 58.667c2.336 3.504 3.583 7.622 3.583 11.833v85.333c0 97.067-80.202 170.667-170.667 170.667zM512 960c-282.517 0-512-229.483-512-512s229.483-512 512-512c282.517 0 512 229.483 512 512s-229.483 512-512 512zM512 917.333c259.458 0 469.333-209.875 469.333-469.333s-209.875-469.333-469.333-469.333c-259.458 0-469.333 209.875-469.333 469.333s209.875 469.333 469.333 469.333z" />
<glyph unicode="&#xe98b;" glyph-name="mbri-user2" d="M512 789.333c-77.575 0-124.614-45.018-146.667-95.417s-24-106.21-24-139.25c0-61.435-6.921-92.937-78-154.583-14.95-13.033-5.582-37.631 14.25-37.417 35.625 0.44 91.473 3.652 142.667 28.667-2.623-17.708-3.402-40.377-9-49.333-9.607-15.371-21.324-22-48.583-22-36.741 0-81.882-11.402-120.5-35.167s-71.5-62.611-71.5-114.167c0-28.022 42.667-28.519 42.667 0 0 33.778 20.451 58.931 51.167 77.833s70.907 28.833 98.167 28.833c36.741 0 67.69 14.704 84.75 42s21.917 62.889 21.917 107.333c-0.007 19-22.977 28.514-36.417 15.083-30.246-30.246-70.641-34.117-110.25-34.917 42.129 49.245 61.333 95.164 61.333 147.833 0 30.96 2.797 81.815 20.417 122.083s45.182 69.917 107.583 69.917c62.402 0 89.963-29.649 107.583-69.917s20.417-91.123 20.417-122.083c0-52.669 19.204-98.589 61.333-147.833-39.609 0.8-80.004 4.67-110.25 34.917-13.44 13.431-36.409 3.917-36.417-15.083 0-44.444 4.857-80.038 21.917-107.333s48.009-42 84.75-42c27.259 0 67.451-9.931 98.167-28.833s51.167-44.056 51.167-77.833c0-27.682 42.667-29.095 42.667 0 0 51.556-32.882 90.402-71.5 114.167s-83.759 35.167-120.5 35.167c-27.259 0-38.977 6.629-48.583 22-5.598 8.957-6.377 31.626-9 49.333 51.194-25.015 107.041-28.227 142.667-28.667 19.832-0.213 29.2 24.384 14.25 37.417-71.079 61.646-78 93.148-78 154.583 0 33.040-1.947 88.851-24 139.25s-69.092 95.417-146.667 95.417zM512 960c-282.517 0-512-229.483-512-512s229.483-512 512-512c282.517 0 512 229.483 512 512s-229.483 512-512 512zM512 917.333c259.458 0 469.333-209.875 469.333-469.333s-209.875-469.333-469.333-469.333c-259.458 0-469.333 209.875-469.333 469.333s209.875 469.333 469.333 469.333z" />
<glyph unicode="&#xe98c;" glyph-name="mbri-users" d="M320 661.333c-54.549 0-94.389-31.788-117.333-70.417s-32-84.152-32-121.583c0-33.791-0.428-53.424-4.5-67.333s-11.629-25.296-31.917-45.583c-13.431-13.44-3.917-36.409 15.083-36.417 35.374 0 72.195 6.806 102.833 21.333-2.424-12.423-6.163-26.39-10.917-35.25-10.102-18.83-22.146-28.75-49.25-28.75-27.516 0-28.517-42.667 0-42.667 40.557 0 71.184 22.080 86.833 51.25s19.833 64.12 19.833 98.083c-0.007 19-22.977 28.514-36.417 15.083-19.642-19.642-43.482-27.423-70.25-31.667 5.543 5.543 12.829 14.599 15.167 22.583 6.595 22.528 6.167 45.542 6.167 79.333 0 30.151 8.294 69.941 26 99.75s41.815 49.583 80.667 49.583c38.852 0 62.961-19.774 80.667-49.583s26-69.599 26-99.75c0-34.528 1.593-59.797 9-82.583 2.589-7.964 6.452-15.286 12.333-21.167-25.261 2.649-45.79 9.068-70.25 33.5-13.44 13.431-36.409 3.917-36.417-15.083 0-33.964 4.184-68.914 19.833-98.083s46.277-51.25 86.833-51.25c27.681-0.393 28.686 42.667 0 42.667-27.104 0-39.148 9.92-49.25 28.75-4.712 8.782-9.327 22.959-11.75 35.25 31.6-15.333 68.807-21.333 103.667-21.333 19 0.007 28.514 22.977 15.083 36.417-16.577 16.558-24.49 28.088-29.5 43.5s-6.917 36.362-6.917 69.417c0 37.432-9.056 82.955-32 121.583s-62.784 70.417-117.333 70.417zM512 960c-282.517 0-512-229.483-512-512s229.483-512 512-512c282.517 0 512 229.483 512 512s-229.483 512-512 512zM512 917.333c259.458 0 469.333-209.875 469.333-469.333s-209.875-469.333-469.333-469.333c-259.458 0-469.333 209.875-469.333 469.333s209.875 469.333 469.333 469.333zM888.198 273.126c-22.701 22.701-34.864 37.624-34.864 37.624v66.75l39.083 58.667c2.336 3.504 3.583 7.622 3.583 11.833v85.333c0 97.067-80.202 170.667-170.667 170.667s-170.667-73.6-170.667-170.667v-85.333c0-4.212 1.247-8.329 3.583-11.833l39.084-58.667v-66.75l-203-121.75c-6.428-3.869-10.352-10.83-10.333-18.333v-42.667c0-28.003 42.667-28.512 42.667 0v30.583l203 121.75c6.428 3.869 10.352 10.83 10.333 18.333v85.333c0 4.212-1.247 8.329-3.583 11.833l-39.084 58.667v78.833c0 73.6 60.598 128 128 128s128-54.4 128-128v-78.833l-39.083-58.667c-2.336-3.504-3.583-7.622-3.583-11.833v-85.333c-0.019-7.503 4.457-12.457 10.333-18.333 0 0 12.289-15.049 34.864-37.624s55.035 7.715 32.333 30.417z" />
<glyph unicode="&#xe98d;" glyph-name="mbri-video" d="M406 661.333c-12.094 0-22.005-9.286-22-21.333v-384c0.041-18.433 21.863-28.143 35.583-15.833l213.333 192c9.38 8.472 9.38 23.195 0 31.667l-213.333 192c-3.736 3.38-8.545 5.5-13.583 5.5zM426.667 592.167l160.167-144.167-160.167-144.167zM64 832c-35.087 0-64-28.913-64-64v-640c0-35.087 28.913-64 64-64h896c35.087 0 64 28.913 64 64v640c0 35.087-28.913 64-64 64zM64 789.333h896c12.188 0 21.333-9.146 21.333-21.333v-640c0-12.188-9.146-21.333-21.333-21.333h-896c-12.188 0-21.333 9.146-21.333 21.333v640c0 12.188 9.146 21.333 21.333 21.333z" />
<glyph unicode="&#xe98e;" glyph-name="mbri-video-play" d="M405.333 618.667c-12.456 0-21.333-9.453-21.333-21.333v-298.667c-0.025-17.282 19.433-27.421 33.583-17.5l213.333 149.333c12.174 8.491 12.174 26.509 0 35l-213.333 149.333c-3.523 2.456-7.955 3.833-12.25 3.833zM426.667 556.333l154.75-108.333-154.75-108.333zM1002.667 149.333h-42.667c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h42.667c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333zM960 320c-11.819 0-21.333-9.515-21.333-21.333v-85.333c0-11.819 9.515-21.333 21.333-21.333s21.333 9.515 21.333 21.333v85.333c0 11.819-9.515 21.333-21.333 21.333zM960 533.333c-11.819 0-21.333-9.515-21.333-21.333v-128c0-11.819 9.515-21.333 21.333-21.333s21.333 9.515 21.333 21.333v128c0 11.819-9.515 21.333-21.333 21.333zM960 704c-11.819 0-21.333-9.515-21.333-21.333v-85.333c0-11.819 9.515-21.333 21.333-21.333s21.333 9.515 21.333 21.333v85.333c0 11.819-9.515 21.333-21.333 21.333zM1002.667 789.333h-42.667c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h42.667c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333zM21.333 149.333h42.667c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-42.667c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM64 320c11.819 0 21.333-9.515 21.333-21.333v-85.333c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v85.333c0 11.819 9.515 21.333 21.333 21.333zM64 533.333c11.819 0 21.333-9.515 21.333-21.333v-128c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v128c0 11.819 9.515 21.333 21.333 21.333zM64 704c11.819 0 21.333-9.515 21.333-21.333v-85.333c0-11.819-9.515-21.333-21.333-21.333s-21.333 9.515-21.333 21.333v85.333c0 11.819 9.515 21.333 21.333 21.333zM21.333 789.333h42.667c11.819 0 21.333-9.515 21.333-21.333s-9.515-21.333-21.333-21.333h-42.667c-11.819 0-21.333 9.515-21.333 21.333s9.515 21.333 21.333 21.333zM192 789.333c-35.087 0-64-28.913-64-64v-554.667c0-35.087 28.913-64 64-64h640c35.087 0 64 28.913 64 64v554.667c0 35.087-28.913 64-64 64zM192 746.667h640c12.188 0 21.333-9.146 21.333-21.333v-554.667c0-12.188-9.146-21.333-21.333-21.333h-640c-12.188 0-21.333 9.146-21.333 21.333v554.667c0 12.188 9.146 21.333 21.333 21.333z" />
<glyph unicode="&#xe98f;" glyph-name="mbri-watch" d="M277.333 789.333c-58.724 0-106.667-47.942-106.667-106.667v-26l-154.5-38.667c-9.489-2.369-16.151-10.887-16.167-20.667v-298.667c0.015-9.78 6.678-18.297 16.167-20.667l154.5-38.667v-26c0-58.724 47.942-106.667 106.667-106.667h469.333c58.724 0 106.667 47.942 106.667 106.667v26l154.5 38.583c9.489 2.369 16.151 10.887 16.167 20.667v298.667c-0.015 9.78-6.678 18.297-16.167 20.667l-154.5 38.583v26.167c0 58.724-47.942 106.667-106.667 106.667zM277.333 746.667h469.333c35.825 0 64-28.175 64-64v-469.333c0-35.825-28.175-64-64-64h-469.333c-35.825 0-64 28.175-64 64v469.333c0 35.825 28.175 64 64 64zM170.667 612.667v-329.333l-128 32v265.333zM853.333 612.583l128-32v-265.333l-128-32zM426.667 320c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667zM682.667 320c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667zM682.667 576c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667zM426.667 576c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667zM448 640c0-35.094 28.906-64 64-64s64 28.906 64 64c0 35.094-28.906 64-64 64s-64-28.906-64-64zM490.667 640c0 12.035 9.299 21.333 21.333 21.333s21.333-9.299 21.333-21.333c0-12.035-9.299-21.333-21.333-21.333s-21.333 9.299-21.333 21.333zM448 256c0-35.094 28.906-64 64-64s64 28.906 64 64c0 35.094-28.906 64-64 64s-64-28.906-64-64zM490.667 256c0 12.035 9.299 21.333 21.333 21.333s21.333-9.299 21.333-21.333c0-12.035-9.299-21.333-21.333-21.333s-21.333 9.299-21.333 21.333zM704 512c-35.094 0-64-28.906-64-64s28.906-64 64-64c35.094 0 64 28.906 64 64s-28.906 64-64 64zM704 469.333c12.035 0 21.333-9.299 21.333-21.333s-9.299-21.333-21.333-21.333c-12.035 0-21.333 9.299-21.333 21.333s9.299 21.333 21.333 21.333zM320 512c-35.094 0-64-28.906-64-64s28.906-64 64-64c35.094 0 64 28.906 64 64s-28.906 64-64 64zM320 469.333c12.035 0 21.333-9.299 21.333-21.333s-9.299-21.333-21.333-21.333c-12.035 0-21.333 9.299-21.333 21.333s9.299 21.333 21.333 21.333zM512 533.333c-46.876 0-85.333-38.458-85.333-85.333s38.458-85.333 85.333-85.333c46.876 0 85.333 38.458 85.333 85.333s-38.458 85.333-85.333 85.333zM512 490.667c23.817 0 42.667-18.85 42.667-42.667s-18.85-42.667-42.667-42.667c-23.817 0-42.667 18.85-42.667 42.667s18.85 42.667 42.667 42.667z" />
<glyph unicode="&#xe990;" glyph-name="mbri-website-theme" d="M598.5 448c-23.79 1.309-45.994-8.86-61.583-25.333-15.39-16.263-24.917-37.307-24.917-58.5v-60.417c0-18.117-15.472-24.067-26.417-27-24.653-5.907-20.268-42.216 5.083-42.083h85.333c11.615 0 24.942 0.013 39.167 3.667 14.271 3.665 27.864 10.723 39 21.417 11.093 10.652 18.678 23.867 23.083 37.75 4.365 13.755 5.537 27.51 5.417 40.333-0.213 22.811-4.565 47.383-18.167 69-6.823 10.845-15.885 20.655-27.167 28.083-11.334 7.463-24.599 12.3-38.833 13.083zM596.167 405.333c5.894-0.324 12.247-2.46 17.75-6.083 5.556-3.658 10.587-8.948 14.5-15.167 7.871-12.509 11.42-29.16 11.583-46.667 0.094-9.893-0.911-19.102-3.417-27-2.466-7.77-6.624-14.751-11.917-19.833-5.249-5.041-12.435-8.931-20.167-10.917-7.778-1.998-17.398-2.333-28.5-2.333h-31.083c13.296 16.465 9.75 33.316 9.75 54.917v28.917c0 12.256 5.648 24.134 13.25 32.167 7.402 7.822 18.641 12.529 28.25 12zM1003.25 789.333c-3.46 0.099-6.892-0.644-10-2.167-89.718-43.962-176.238-94.459-258.667-150.917-19.619-13.437-40.366-28.032-58.25-47.667-18.032-19.797-32.844-44.937-36.167-74.167-3.334-29.324 5.794-59.877 27.417-81.5s52.176-30.75 81.5-27.417c29.23 3.323 54.369 18.135 74.167 36.167 19.635 17.884 34.229 38.631 47.667 58.25 56.457 82.429 106.955 168.949 150.917 258.667 6.468 11.203-3.030 30.342-18.583 30.75zM943.5 708.833c-33.889-62.797-67.428-125.879-107.75-184.75-13.143-19.188-26.11-37.127-41.25-50.917-14.977-13.642-32.744-23.343-50.25-25.333-16.903-1.922-35.225 3.975-46.5 15.25s-17.171 29.597-15.25 46.5c1.99 17.507 11.692 35.273 25.333 50.25 13.79 15.14 31.728 28.107 50.917 41.25 58.871 40.322 121.953 73.861 184.75 107.75zM106.667 746.667c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333c11.782 0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333zM192 746.667c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333c11.782 0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333zM277.333 746.667c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333c11.782 0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333zM106.667 661.333c-11.819 0-21.333-9.515-21.333-21.333s9.515-21.333 21.333-21.333h554.667c11.819 0 21.333 9.515 21.333 21.333s-9.515 21.333-21.333 21.333zM64 832c-35.087 0-64-28.913-64-64v-640c0-35.087 28.913-64 64-64h810.667c35.087 0 64 28.913 64 64v298.667c0.205 14.425-10.564 21.333-21.333 21.333s-21.537-6.909-21.333-21.333v-298.667c0-12.188-9.146-21.333-21.333-21.333h-810.667c-12.188 0-21.333 9.146-21.333 21.333v640c0 12.188 9.146 21.333 21.333 21.333h810.667c14.189-0.201 21.361 10.617 21.333 21.333s-7.253 21.333-21.333 21.333z" />
<glyph unicode="&#xe991;" glyph-name="mbri-wifi" d="M512 789.333c-181.374 0-361.692-62.694-503.917-175.25-21.177-16.75 5.635-50.006 26.5-33.5 134.492 106.436 305.904 166.083 477.417 166.083s342.925-59.647 477.417-166.083c20.843-16.488 48.247 16.297 26.5 33.5-142.224 112.556-322.543 175.25-503.917 175.25zM512 576c-123.361 0-245.419-48.84-334.75-133.917-19.364-18.526 9.535-49.935 29.5-30.833 81.136 77.273 193.205 122.083 305.25 122.083s224.114-44.811 305.25-122.083c19.534-18.689 49.212 11.974 29.5 30.833-89.331 85.077-211.389 133.917-334.75 133.917zM512 362.667c-33.768 0-67.265-8.913-96.583-25.667s-54.023-41.075-71.167-70.167c-12.59-21.806 22.462-46.098 36.833-21.667 13.313 22.592 32.732 41.823 55.5 54.833s49.194 20 75.417 20c26.223 0 52.649-6.99 75.417-20s42.187-32.241 55.5-54.833c14.675-24.952 49.772-0.324 36.833 21.667-17.144 29.092-41.848 53.413-71.167 70.167s-62.816 25.667-96.583 25.667zM554.667 149.333c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667z" />
<glyph unicode="&#xe992;" glyph-name="mbri-windows" d="M533.333 405.333c-11.782-0.001-21.332-9.552-21.333-21.333v-341.333c-0.006-10.308 7.359-19.147 17.5-21l469.333-85.333c13.105-2.392 25.174 7.678 25.167 21v426.667c-0.001 11.782-9.552 21.332-21.333 21.333zM554.667 362.667h426.667v-379.75l-426.667 77.583zM21.333 405.333c-11.782-0.001-21.332-9.552-21.333-21.333v-258.75c-0.018-10.446 7.529-19.369 17.833-21.083l384-64c13.016-2.163 24.856 7.888 24.833 21.083v322.75c-0.001 11.782-9.552 21.332-21.333 21.333zM42.667 362.667h341.333v-276.25l-341.333 56.833zM1002 960c-1.062-0.032-2.121-0.143-3.167-0.333l-469.333-85.333c-10.141-1.853-17.506-10.692-17.5-21v-341.333c0.001-11.782 9.552-21.332 21.333-21.333h469.333c11.782 0.001 21.332 9.552 21.333 21.333v426.667c0.005 12.047-9.776 21.333-22 21.333zM981.333 913.083v-379.75h-426.667v302.167zM404.667 853.333c-1.346-0.040-2.685-0.207-4-0.5l-384-85.333c-9.748-2.186-16.674-10.843-16.667-20.833v-234.667c0.001-11.782 9.552-21.332 21.333-21.333h384c11.782 0.001 21.332 9.552 21.333 21.333v320c0.005 12.047-9.959 21.709-22 21.333zM384 805.417v-272.083h-341.333v196.167z" />
<glyph unicode="&#xe993;" glyph-name="mbri-zoom-out" d="M348.015 398.916l-320.756-320.077c-38.156-38.076-33.061-91.021-4.417-119.834s81.606-33.98 119.917 4.335l319.583 319.582c20.94 20.105-10.743 50.394-30.167 30.165l-319.583-319.582c-24.689-24.691-45.603-18.398-59.5-4.416-13.897 13.978-20.077 35.221 4.334 59.584l320.756 320.077c17.925 17.924-10.747 49.583-30.167 30.165zM533.333 661.333h298.667c28.507 0 27.615-42.667 0-42.667h-298.667c-27.767 0-27.875 42.667 0 42.667zM682.667 960c-188.261 0-341.333-153.071-341.333-341.333s153.073-341.333 341.333-341.333c188.261 0 341.333 153.071 341.333 341.333s-153.073 341.333-341.333 341.333zM682.667 917.333c165.202 0 298.667-133.466 298.667-298.667s-133.465-298.667-298.667-298.667c-165.202 0-298.667 133.466-298.667 298.667s133.465 298.667 298.667 298.667z" />
<glyph unicode="&#xe994;" glyph-name="mbri-redo" d="M1005.283 662.118c10.603-1.348 18.719-10.313 18.719-21.174 0-0.524-0.019-1.044-0.056-1.559l0.004-170.598c-0.001-11.782-9.552-21.332-21.333-21.333h-170.667c-0.090-0.001-0.196-0.002-0.302-0.002-11.783 0-21.335 9.552-21.335 21.335s9.552 21.335 21.335 21.335c0.106 0 0.212-0.001 0.318-0.002h149.317v149.333c-0.034 0.45-0.053 0.974-0.053 1.503 0 11.783 9.552 21.335 21.335 21.335 0.958 0 1.901-0.063 2.826-0.186zM449.283 739.456c69.457 11.814 140.12 9.114 208-5.333 67.881-14.451 132.385-40.969 190.667-80 29.141-19.52 57.458-42.65 82.667-68.002 4.628-3.938 7.545-9.768 7.545-16.279 0-11.783-9.552-21.335-21.335-21.335-6.844 0-12.936 3.223-16.84 8.234-23.228 23.369-47.865 43.406-74.702 61.381-53.676 35.947-114.667 61.329-177.333 74.667-125.334 26.679-260.022 6.746-376-66.667-142.771-90.372-229.333-246.549-229.333-413.333 0.001-0.090 0.002-0.196 0.002-0.302 0-11.783-9.552-21.335-21.335-21.335s-21.335 9.552-21.335 21.335c0 0.106 0.001 0.212 0.002 0.318 0 181.462 94.428 351.263 249.333 449.315 62.845 39.782 130.543 65.519 200 77.338z" />
<glyph unicode="&#xe995;" glyph-name="mbri-undo" d="M18.667 662.118c-10.603-1.348-18.719-10.313-18.719-21.174 0-0.524 0.019-1.044 0.056-1.559l-0.004-170.598c0.001-11.782 9.552-21.332 21.333-21.333h170.667c0.090-0.001 0.196-0.002 0.302-0.002 11.783 0 21.335 9.552 21.335 21.335s-9.552 21.335-21.335 21.335c-0.106 0-0.212-0.001-0.318-0.002h-149.317v149.333c0.034 0.45 0.053 0.974 0.053 1.503 0 11.783-9.552 21.335-21.335 21.335-0.958 0-1.901-0.063-2.826-0.186zM574.667 739.456c-69.457 11.814-140.12 9.114-208-5.333-67.881-14.451-132.385-40.969-190.667-80-29.141-19.52-57.458-42.65-82.667-68.002-4.628-3.938-7.545-9.768-7.545-16.279 0-11.783 9.552-21.335 21.335-21.335 6.844 0 12.936 3.223 16.84 8.234 23.228 23.369 47.865 43.406 74.702 61.381 53.676 35.947 114.667 61.329 177.333 74.667 125.334 26.679 260.022 6.746 376-66.667 142.771-90.372 229.333-246.549 229.333-413.333-0.001-0.090-0.002-0.196-0.002-0.302 0-11.783 9.552-21.335 21.335-21.335s21.335 9.552 21.335 21.335c0 0.106-0.001 0.212-0.002 0.318 0 181.462-94.428 351.263-249.333 449.315-62.845 39.782-130.543 65.519-200 77.338z" />
</font></defs></svg>

Before

Width:  |  Height:  |  Size: 201 KiB

View File

@ -1,498 +0,0 @@
@font-face {
font-family: 'Moririse2';
font-display: swap;
src: url('mobirise2.eot?f2bix4');
src: url('mobirise2.eot?f2bix4#iefix') format('embedded-opentype'),
url('mobirise2.ttf?f2bix4') format('truetype'),
url('mobirise2.woff?f2bix4') format('woff'),
url('mobirise2.svg?f2bix4#mobirise2') format('svg');
font-weight: normal;
font-style: normal;
}
[class^="mobi-"], [class*=" mobi-"] {
/* use !important to prevent issues with browser extensions that change fonts */
font-family: 'Moririse2' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.mobi-mbri-add-submenu:before {
content: "\e900";
}
.mobi-mbri-alert:before {
content: "\e901";
}
.mobi-mbri-align-center:before {
content: "\e902";
}
.mobi-mbri-align-justify:before {
content: "\e903";
}
.mobi-mbri-align-left:before {
content: "\e904";
}
.mobi-mbri-align-right:before {
content: "\e905";
}
.mobi-mbri-android:before {
content: "\e906";
}
.mobi-mbri-apple:before {
content: "\e907";
}
.mobi-mbri-arrow-down:before {
content: "\e908";
}
.mobi-mbri-arrow-next:before {
content: "\e909";
}
.mobi-mbri-arrow-prev:before {
content: "\e90a";
}
.mobi-mbri-arrow-up:before {
content: "\e90b";
}
.mobi-mbri-bold:before {
content: "\e90c";
}
.mobi-mbri-bookmark:before {
content: "\e90d";
}
.mobi-mbri-bootstrap:before {
content: "\e90e";
}
.mobi-mbri-briefcase:before {
content: "\e90f";
}
.mobi-mbri-browse:before {
content: "\e910";
}
.mobi-mbri-bulleted-list:before {
content: "\e911";
}
.mobi-mbri-calendar:before {
content: "\e912";
}
.mobi-mbri-camera:before {
content: "\e913";
}
.mobi-mbri-cart-add:before {
content: "\e914";
}
.mobi-mbri-cart-full:before {
content: "\e915";
}
.mobi-mbri-cash:before {
content: "\e916";
}
.mobi-mbri-change-style:before {
content: "\e917";
}
.mobi-mbri-chat:before {
content: "\e918";
}
.mobi-mbri-clock:before {
content: "\e919";
}
.mobi-mbri-close:before {
content: "\e91a";
}
.mobi-mbri-cloud:before {
content: "\e91b";
}
.mobi-mbri-code:before {
content: "\e91c";
}
.mobi-mbri-contact-form:before {
content: "\e91d";
}
.mobi-mbri-credit-card:before {
content: "\e91e";
}
.mobi-mbri-cursor-click:before {
content: "\e91f";
}
.mobi-mbri-cust-feedback:before {
content: "\e920";
}
.mobi-mbri-database:before {
content: "\e921";
}
.mobi-mbri-delivery:before {
content: "\e922";
}
.mobi-mbri-desktop:before {
content: "\e923";
}
.mobi-mbri-devices:before {
content: "\e924";
}
.mobi-mbri-down:before {
content: "\e925";
}
.mobi-mbri-download-2:before {
content: "\e926";
}
.mobi-mbri-download:before {
content: "\e927";
}
.mobi-mbri-drag-n-drop-2:before {
content: "\e928";
}
.mobi-mbri-drag-n-drop:before {
content: "\e929";
}
.mobi-mbri-edit-2:before {
content: "\e92a";
}
.mobi-mbri-edit:before {
content: "\e92b";
}
.mobi-mbri-error:before {
content: "\e92c";
}
.mobi-mbri-extension:before {
content: "\e92d";
}
.mobi-mbri-features:before {
content: "\e92e";
}
.mobi-mbri-file:before {
content: "\e92f";
}
.mobi-mbri-flag:before {
content: "\e930";
}
.mobi-mbri-folder:before {
content: "\e931";
}
.mobi-mbri-gift:before {
content: "\e932";
}
.mobi-mbri-github:before {
content: "\e933";
}
.mobi-mbri-globe-2:before {
content: "\e934";
}
.mobi-mbri-globe:before {
content: "\e935";
}
.mobi-mbri-growing-chart:before {
content: "\e936";
}
.mobi-mbri-hearth:before {
content: "\e937";
}
.mobi-mbri-help:before {
content: "\e938";
}
.mobi-mbri-home:before {
content: "\e939";
}
.mobi-mbri-hot-cup:before {
content: "\e93a";
}
.mobi-mbri-idea:before {
content: "\e93b";
}
.mobi-mbri-image-gallery:before {
content: "\e93c";
}
.mobi-mbri-image-slider:before {
content: "\e93d";
}
.mobi-mbri-info:before {
content: "\e93e";
}
.mobi-mbri-italic:before {
content: "\e93f";
}
.mobi-mbri-key:before {
content: "\e940";
}
.mobi-mbri-laptop:before {
content: "\e941";
}
.mobi-mbri-layers:before {
content: "\e942";
}
.mobi-mbri-left-right:before {
content: "\e943";
}
.mobi-mbri-left:before {
content: "\e944";
}
.mobi-mbri-letter:before {
content: "\e945";
}
.mobi-mbri-like:before {
content: "\e946";
}
.mobi-mbri-link:before {
content: "\e947";
}
.mobi-mbri-lock:before {
content: "\e948";
}
.mobi-mbri-login:before {
content: "\e949";
}
.mobi-mbri-logout:before {
content: "\e94a";
}
.mobi-mbri-magic-stick:before {
content: "\e94b";
}
.mobi-mbri-map-pin:before {
content: "\e94c";
}
.mobi-mbri-menu:before {
content: "\e94d";
}
.mobi-mbri-mobile-2:before {
content: "\e94e";
}
.mobi-mbri-mobile-horizontal:before {
content: "\e94f";
}
.mobi-mbri-mobile:before {
content: "\e950";
}
.mobi-mbri-mobirise:before {
content: "\e951";
}
.mobi-mbri-more-horizontal:before {
content: "\e952";
}
.mobi-mbri-more-vertical:before {
content: "\e953";
}
.mobi-mbri-music:before {
content: "\e954";
}
.mobi-mbri-new-file:before {
content: "\e955";
}
.mobi-mbri-numbered-list:before {
content: "\e956";
}
.mobi-mbri-opened-folder:before {
content: "\e957";
}
.mobi-mbri-pages:before {
content: "\e958";
}
.mobi-mbri-paper-plane:before {
content: "\e959";
}
.mobi-mbri-paperclip:before {
content: "\e95a";
}
.mobi-mbri-phone:before {
content: "\e95b";
}
.mobi-mbri-photo:before {
content: "\e95c";
}
.mobi-mbri-photos:before {
content: "\e95d";
}
.mobi-mbri-pin:before {
content: "\e95e";
}
.mobi-mbri-play:before {
content: "\e95f";
}
.mobi-mbri-plus:before {
content: "\e960";
}
.mobi-mbri-preview:before {
content: "\e961";
}
.mobi-mbri-print:before {
content: "\e962";
}
.mobi-mbri-protect:before {
content: "\e963";
}
.mobi-mbri-question:before {
content: "\e964";
}
.mobi-mbri-quote-left:before {
content: "\e965";
}
.mobi-mbri-quote-right:before {
content: "\e966";
}
.mobi-mbri-redo:before {
content: "\e967";
}
.mobi-mbri-refresh:before {
content: "\e968";
}
.mobi-mbri-responsive-2:before {
content: "\e969";
}
.mobi-mbri-responsive:before {
content: "\e96a";
}
.mobi-mbri-right:before {
content: "\e96b";
}
.mobi-mbri-rocket:before {
content: "\e96c";
}
.mobi-mbri-sad-face:before {
content: "\e96d";
}
.mobi-mbri-sale:before {
content: "\e96e";
}
.mobi-mbri-save:before {
content: "\e96f";
}
.mobi-mbri-search:before {
content: "\e970";
}
.mobi-mbri-setting-2:before {
content: "\e971";
}
.mobi-mbri-setting-3:before {
content: "\e972";
}
.mobi-mbri-setting:before {
content: "\e973";
}
.mobi-mbri-share:before {
content: "\e974";
}
.mobi-mbri-shopping-bag:before {
content: "\e975";
}
.mobi-mbri-shopping-basket:before {
content: "\e976";
}
.mobi-mbri-shopping-cart:before {
content: "\e977";
}
.mobi-mbri-sites:before {
content: "\e978";
}
.mobi-mbri-smile-face:before {
content: "\e979";
}
.mobi-mbri-speed:before {
content: "\e97a";
}
.mobi-mbri-star:before {
content: "\e97b";
}
.mobi-mbri-success:before {
content: "\e97c";
}
.mobi-mbri-sun:before {
content: "\e97d";
}
.mobi-mbri-sun2:before {
content: "\e97e";
}
.mobi-mbri-tablet-vertical:before {
content: "\e97f";
}
.mobi-mbri-tablet:before {
content: "\e980";
}
.mobi-mbri-target:before {
content: "\e981";
}
.mobi-mbri-timer:before {
content: "\e982";
}
.mobi-mbri-to-ftp:before {
content: "\e983";
}
.mobi-mbri-to-local-drive:before {
content: "\e984";
}
.mobi-mbri-touch-swipe:before {
content: "\e985";
}
.mobi-mbri-touch:before {
content: "\e986";
}
.mobi-mbri-trash:before {
content: "\e987";
}
.mobi-mbri-underline:before {
content: "\e988";
}
.mobi-mbri-undo:before {
content: "\e989";
}
.mobi-mbri-unlink:before {
content: "\e98a";
}
.mobi-mbri-unlock:before {
content: "\e98b";
}
.mobi-mbri-up-down:before {
content: "\e98c";
}
.mobi-mbri-up:before {
content: "\e98d";
}
.mobi-mbri-update:before {
content: "\e98e";
}
.mobi-mbri-upload-2:before {
content: "\e98f";
}
.mobi-mbri-upload:before {
content: "\e990";
}
.mobi-mbri-user-2:before {
content: "\e991";
}
.mobi-mbri-user:before {
content: "\e992";
}
.mobi-mbri-users:before {
content: "\e993";
}
.mobi-mbri-video-play:before {
content: "\e994";
}
.mobi-mbri-video:before {
content: "\e995";
}
.mobi-mbri-watch:before {
content: "\e996";
}
.mobi-mbri-website-theme-2:before {
content: "\e997";
}
.mobi-mbri-website-theme:before {
content: "\e998";
}
.mobi-mbri-wifi:before {
content: "\e999";
}
.mobi-mbri-windows:before {
content: "\e99a";
}
.mobi-mbri-zoom-in:before {
content: "\e99b";
}
.mobi-mbri-zoom-out:before {
content: "\e99c";
}

View File

@ -1,167 +0,0 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by IcoMoon</metadata>
<defs>
<font id="mobirise-24px" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
<glyph unicode="&#xe900;" glyph-name="mbri-add-submenu" d="M853.333 917.333h-853.333v-256h853.333v256zM768 746.667h-682.667v85.333h682.667v-85.333zM853.333 576h-853.333v-256h853.333v256zM768 405.333h-682.667v85.333h682.667v-85.333zM512 234.667v-256h512v256h-512zM938.667 64h-341.333v85.333h341.333v-85.333z" />
<glyph unicode="&#xe901;" glyph-name="mbri-alert" d="M810.667 192v341.333c0 166.4-132.267 298.667-298.667 298.667s-298.667-132.267-298.667-298.667v-341.333h-85.333v-85.333h256c0-72.533 55.467-128 128-128s128 55.467 128 128h256v85.333h-85.333zM512 64c-25.6 0-42.667 17.067-42.667 42.667h85.333c0-25.6-17.067-42.667-42.667-42.667zM725.333 192h-426.667v341.333c0 119.467 93.867 213.333 213.333 213.333s213.333-93.867 213.333-213.333v-341.333zM128 533.333h-85.333c0 123.733 46.933 243.2 136.533 332.8l59.733-59.733c-72.533-72.533-110.933-170.667-110.933-273.067zM981.333 533.333h-85.333c0 102.4-38.4 200.533-110.933 273.067l59.733 59.733c89.6-89.6 136.533-209.067 136.533-332.8z" />
<glyph unicode="&#xe902;" glyph-name="mbri-align-center" d="M768 704h-512v85.333h512v-85.333zM1024 576h-1024v-85.333h1024v85.333zM768 362.667h-512v-85.333h512v85.333zM1024 149.333h-1024v-85.333h1024v85.333z" />
<glyph unicode="&#xe903;" glyph-name="mbri-align-justify" d="M1024 704h-1024v85.333h1024v-85.333zM1024 576h-1024v-85.333h1024v85.333zM1024 362.667h-1024v-85.333h1024v85.333zM1024 149.333h-1024v-85.333h1024v85.333z" />
<glyph unicode="&#xe904;" glyph-name="mbri-align-left" d="M1024 704h-1024v85.333h1024v-85.333zM597.333 576h-597.333v-85.333h597.333v85.333zM1024 362.667h-1024v-85.333h1024v85.333zM597.333 149.333h-597.333v-85.333h597.333v85.333z" />
<glyph unicode="&#xe905;" glyph-name="mbri-align-right" d="M1024 721.067h-1024v68.267h1024v-68.267zM1024 584.533h-614.4v-68.267h614.4v68.267zM1024 379.733h-1024v-68.267h1024v68.267zM1024 174.933h-614.4v-68.267h614.4v68.267z" />
<glyph unicode="&#xe906;" glyph-name="mbri-android" d="M738.133 789.333l68.267 106.667-72.533 46.933-64-102.4c-51.2 21.333-102.4 34.133-157.867 34.133s-106.667-12.8-153.6-38.4l-68.267 102.4-68.267-42.667 64-106.667c-68.267-64-115.2-153.6-115.2-256v-469.333h128v-128h85.333v128h256v-128h85.333v128h128v469.333c0 102.4-46.933 192-115.2 256zM512 789.333c128 0 230.4-93.867 251.733-213.333h-503.467c21.333 119.467 123.733 213.333 251.733 213.333zM768 149.333h-512v341.333h512v-341.333zM42.667 448h85.333v-256h-85.333v256zM981.333 448v-256h-85.333v256h85.333z" />
<glyph unicode="&#xe907;" glyph-name="mbri-apple" d="M853.333 405.333c0 51.2 21.333 89.6 64 119.467l25.6 17.067-8.533 29.867c-17.067 51.2-51.2 93.867-98.133 123.733-46.933 34.133-102.4 51.2-153.6 51.2-34.133 0-59.733-12.8-81.067-21.333-25.6-12.8-51.2-21.333-89.6-21.333s-59.733 8.533-76.8 21.333c-21.333 8.533-46.933 21.333-93.867 21.333-72.533 0-136.533-29.867-183.467-85.333-46.933-59.733-72.533-149.333-72.533-256 0-102.4 34.133-217.6 89.6-315.733 25.6-42.667 51.2-81.067 81.067-106.667 29.867-29.867 59.733-46.933 85.333-46.933 46.933 0 72.533 8.533 102.4 21.333 0 0 42.667 21.333 68.267 21.333s42.667-8.533 64-17.067c0 0 59.733-25.6 106.667-25.6 25.6 0 59.733 21.333 72.533 29.867 21.333 17.067 46.933 42.667 72.533 72.533 51.2 59.733 89.6 132.267 106.667 200.533l8.533 29.867-25.6 17.067c-42.667 25.6-64 68.267-64 119.467zM759.467 89.6c-38.4-51.2-64-68.267-81.067-68.267-29.867 0-68.267 17.067-68.267 17.067-25.6 12.8-55.467 25.6-98.133 25.6s-102.4-25.6-102.4-25.6c-21.333-8.533-38.4-17.067-64-17.067-29.867 0-76.8 72.533-98.133 110.933-46.933 81.067-76.8 187.733-76.8 273.067 0 89.6 17.067 157.867 55.467 200.533 29.867 38.4 68.267 55.467 115.2 55.467 25.6 0 34.133-4.267 55.467-12.8 21.333-12.8 55.467-29.867 115.2-29.867 55.467 0 93.867 17.067 123.733 29.867 17.067 8.533 29.867 12.8 46.933 12.8 34.133 0 72.533-12.8 102.4-34.133 21.333-17.067 38.4-34.133 51.2-55.467-46.933-42.667-72.533-102.4-72.533-166.4 0-68.267 25.6-128 72.533-170.667-12.8-51.2-46.933-98.133-76.8-145.067zM541.867 759.467l-59.733 59.733 128 128 59.733-59.733-128-128z" />
<glyph unicode="&#xe908;" glyph-name="mbri-arrow-down" d="M59.733 763.733l452.267-452.267 452.267 452.267 59.733-59.733-512-512-512 512z" />
<glyph unicode="&#xe909;" glyph-name="mbri-arrow-next" d="M196.267-4.267l452.267 452.267-452.267 452.267 59.733 59.733 512-512-512-512z" />
<glyph unicode="&#xe90a;" glyph-name="mbri-arrow-prev" d="M827.733 900.267l-452.267-452.267 452.267-452.267-59.733-59.733-512 512 512 512z" />
<glyph unicode="&#xe90b;" glyph-name="mbri-arrow-up" d="M964.267 174.933l-452.267 452.267-452.267-452.267-59.733 59.733 512 512 512-512z" />
<glyph unicode="&#xe90c;" glyph-name="mbri-bold" d="M674.133 507.733c59.733 46.933 93.867 119.467 93.867 196.267 0 140.8-115.2 256-256 256h-298.667v-1024h341.333c166.4 0 298.667 132.267 298.667 298.667 0 119.467-72.533 226.133-179.2 273.067zM298.667 874.667h213.333c93.867 0 170.667-76.8 170.667-170.667s-76.8-170.667-170.667-170.667h-213.333v341.333zM554.667 21.333h-256v426.667h256c119.467 0 213.333-93.867 213.333-213.333s-93.867-213.333-213.333-213.333z" />
<glyph unicode="&#xe90d;" glyph-name="mbri-bookmark" d="M853.333-59.733l-341.333 243.2-341.333-243.2v1019.733h682.667v-1019.733zM512 285.867l256-183.467v772.267h-512v-772.267l256 183.467z" />
<glyph unicode="&#xe90e;" glyph-name="mbri-bootstrap" d="M0 960v-1024h1024v1024h-1024zM938.667 21.333h-853.333v853.333h853.333v-853.333zM725.333 320c0 64-34.133 115.2-85.333 145.067 25.6 29.867 42.667 68.267 42.667 110.933 0 93.867-76.8 170.667-170.667 170.667h-170.667v-597.333h213.333c93.867 0 170.667 76.8 170.667 170.667zM426.667 661.333h85.333c46.933 0 85.333-38.4 85.333-85.333s-38.4-85.333-85.333-85.333h-85.333v170.667zM426.667 405.333h128c46.933 0 85.333-38.4 85.333-85.333s-38.4-85.333-85.333-85.333h-128v170.667z" />
<glyph unicode="&#xe90f;" glyph-name="mbri-briefcase" d="M725.333 704v170.667h-426.667v-170.667h-298.667v-682.667h1024v682.667h-298.667zM384 789.333h256v-85.333h-256v85.333zM938.667 106.667h-853.333v298.667h853.333v-298.667zM938.667 490.667h-853.333v128h853.333v-128z" />
<glyph unicode="&#xe910;" glyph-name="mbri-browse" d="M0 832v-768h1024v768h-1024zM938.667 149.333h-853.333v426.667h853.333v-426.667zM938.667 661.333h-853.333v85.333h853.333v-85.333zM358.4 192l98.133 98.133c17.067-8.533 34.133-12.8 55.467-12.8 72.533 0 128 55.467 128 128s-55.467 128-128 128-128-55.467-128-128c0-21.333 4.267-38.4 12.8-55.467l-98.133-98.133 59.733-59.733zM512 448c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667-42.667 17.067-42.667 42.667 17.067 42.667 42.667 42.667z" />
<glyph unicode="&#xe911;" glyph-name="mbri-bulleted-list" d="M128 661.333c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM128 832c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667zM128 320c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM128 490.667c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667zM128-21.333c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM128 149.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667zM1024 832h-682.667v-85.333h682.667v85.333zM1024 490.667h-682.667v-85.333h682.667v85.333zM1024 149.333h-682.667v-85.333h682.667v85.333z" />
<glyph unicode="&#xe912;" glyph-name="mbri-calendar" d="M810.667 832v42.667h-85.333v-42.667h-426.667v42.667h-85.333v-42.667h-213.333v-810.667h1024v810.667h-213.333zM938.667 106.667h-853.333v640h128v-42.667h85.333v42.667h426.667v-42.667h85.333v42.667h128v-640zM213.333 448h85.333v-85.333h-85.333v85.333zM384 448h85.333v-85.333h-85.333v85.333zM554.667 448h85.333v-85.333h-85.333v85.333zM725.333 448h85.333v-85.333h-85.333v85.333zM213.333 618.667h85.333v-85.333h-85.333v85.333zM384 618.667h85.333v-85.333h-85.333v85.333zM554.667 618.667h85.333v-85.333h-85.333v85.333zM725.333 618.667h85.333v-85.333h-85.333v85.333zM213.333 277.333h85.333v-85.333h-85.333v85.333zM384 277.333h85.333v-85.333h-85.333v85.333zM554.667 277.333h85.333v-85.333h-85.333v85.333zM725.333 277.333h85.333v-85.333h-85.333v85.333z" />
<glyph unicode="&#xe913;" glyph-name="mbri-camera" d="M755.2 704l-42.667 128h-401.067l-42.667-128h-268.8v-640h1024v640h-268.8zM938.667 149.333h-853.333v469.333h243.2l42.667 128h281.6l42.667-128h243.2v-469.333zM512 618.667c-119.467 0-213.333-93.867-213.333-213.333s93.867-213.333 213.333-213.333 213.333 93.867 213.333 213.333-93.867 213.333-213.333 213.333zM512 277.333c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128z" />
<glyph unicode="&#xe914;" glyph-name="mbri-cart-add" d="M981.333 704l-51.2-384h-657.067l17.067-85.333h605.867v-85.333h-674.133l-128 640h-93.867v85.333h162.133l93.867-469.333h597.333l42.667 298.667zM341.333 106.667c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333-38.4 85.333-85.333 85.333zM768 106.667c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333-38.4 85.333-85.333 85.333zM695.467 750.933l59.733-59.733-200.533-200.533-200.533 200.533 59.733 59.733 98.133-98.133v307.2h85.333v-307.2l98.133 98.133z" />
<glyph unicode="&#xe915;" glyph-name="mbri-cart-full" d="M896 149.333h-674.133l-128 640h-93.867v85.333h162.133l34.133-170.667h785.067l-51.2-384h-657.067l17.067-85.333h605.867v-85.333zM256 405.333h597.333l29.867 213.333h-669.867l42.667-213.333zM341.333 106.667c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333-38.4 85.333-85.333 85.333zM768 106.667c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333-38.4 85.333-85.333 85.333zM810.667 874.667h-469.333v-85.333h469.333v85.333z" />
<glyph unicode="&#xe916;" glyph-name="mbri-cash" d="M512 960c-281.6 0-512-230.4-512-512s230.4-512 512-512 512 230.4 512 512-230.4 512-512 512zM512 21.333c-234.667 0-426.667 192-426.667 426.667s192 426.667 426.667 426.667 426.667-192 426.667-426.667-192-426.667-426.667-426.667zM725.333 341.333c0-81.067-68.267-149.333-149.333-149.333h-21.333v-85.333h-85.333v85.333h-128v85.333h234.667c34.133 0 64 29.867 64 64s-29.867 64-64 64h-128c-81.067 0-149.333 68.267-149.333 149.333s68.267 149.333 149.333 149.333h21.333v85.333h85.333v-85.333h128v-85.333h-234.667c-34.133 0-64-29.867-64-64s29.867-64 64-64h128c81.067 0 149.333-68.267 149.333-149.333z" />
<glyph unicode="&#xe917;" glyph-name="mbri-change-style" d="M512 960c-281.6 0-512-230.4-512-512 0-68.267 12.8-119.467 34.133-153.6 21.333-38.4 55.467-59.733 93.867-59.733 68.267 0 128 59.733 128 128 0 46.933 38.4 85.333 85.333 85.333s85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333c-68.267 0-128-68.267-128-145.067 0-55.467 25.6-102.4 72.533-136.533 51.2-38.4 128-59.733 226.133-59.733 281.6 0 512 230.4 512 512s-230.4 512-512 512zM512 21.333c-98.133 0-149.333 21.333-174.933 42.667-34.133 21.333-38.4 46.933-38.4 68.267 0 29.867 21.333 59.733 42.667 59.733 93.867 0 170.667 76.8 170.667 170.667s-76.8 170.667-170.667 170.667-170.667-76.8-170.667-170.667c0-21.333-21.333-42.667-42.667-42.667-4.267 0-12.8 0-21.333 17.067s-21.333 46.933-21.333 110.933c0 234.667 192 426.667 426.667 426.667s426.667-192 426.667-426.667-192-426.667-426.667-426.667zM725.333 170.667c0-34.133-29.867-64-64-64s-64 29.867-64 64 29.867 64 64 64 64-29.867 64-64zM512 768c0-34.133-29.867-64-64-64s-64 29.867-64 64 29.867 64 64 64 64-29.867 64-64zM597.333 725.333c0 34.133 29.867 64 64 64s64-29.867 64-64-29.867-64-64-64-64 29.867-64 64zM725.333 554.667c0 34.133 29.867 64 64 64s64-29.867 64-64-29.867-64-64-64-64 29.867-64 64zM853.333 341.333c0-34.133-29.867-64-64-64s-64 29.867-64 64 29.867 64 64 64 64-29.867 64-64z" />
<glyph unicode="&#xe918;" glyph-name="mbri-chat" d="M0-38.4v913.067h1024v-640h-750.933l-273.067-273.067zM85.333 789.333v-622.933l153.6 153.6h699.733v469.333h-853.333z" />
<glyph unicode="&#xe919;" glyph-name="mbri-clock" d="M512 960c-281.6 0-512-230.4-512-512s230.4-512 512-512 512 230.4 512 512-230.4 512-512 512zM512 21.333c-234.667 0-426.667 192-426.667 426.667s192 426.667 426.667 426.667 426.667-192 426.667-426.667-192-426.667-426.667-426.667zM469.333 789.333h85.333v-384h-256v85.333h170.667v298.667z" />
<glyph unicode="&#xe91a;" glyph-name="mbri-close" d="M571.733 448l439.467-439.467-59.733-59.733-439.467 439.467-439.467-439.467-59.733 59.733 439.467 439.467-439.467 439.467 59.733 59.733 439.467-439.467 439.467 439.467 59.733-59.733-439.467-439.467z" />
<glyph unicode="&#xe91b;" glyph-name="mbri-cloud" d="M853.333 106.667h-597.333c-140.8 0-256 115.2-256 256 0 136.533 110.933 251.733 247.467 256 59.733 128 187.733 213.333 328.533 213.333 200.533 0 362.667-162.133 362.667-362.667 0-12.8 0-29.867-4.267-42.667 51.2-29.867 89.6-85.333 89.6-149.333 0-93.867-76.8-170.667-170.667-170.667zM256 533.333c-93.867 0-170.667-76.8-170.667-170.667s76.8-170.667 170.667-170.667h597.333c46.933 0 85.333 38.4 85.333 85.333 0 38.4-25.6 72.533-64 81.067l-38.4 12.8 8.533 38.4c4.267 21.333 8.533 42.667 8.533 59.733 0 153.6-123.733 277.333-277.333 277.333-115.2 0-221.867-72.533-260.267-183.467l-12.8-29.867h-46.933z" />
<glyph unicode="&#xe91c;" glyph-name="mbri-code" d="M260.267 588.8l-140.8-140.8 140.8-140.8-59.733-59.733-200.533 200.533 200.533 200.533 59.733-59.733zM823.467 648.533l-59.733-59.733 140.8-140.8-140.8-140.8 59.733-59.733 200.533 200.533-200.533 200.533zM345.6 166.4l76.8-34.133 256 597.333-76.8 34.133-256-597.333z" />
<glyph unicode="&#xe91d;" glyph-name="mbri-contact-form" d="M640 704h-426.667v85.333h426.667v-85.333zM640 618.667h-426.667v-85.333h426.667v85.333zM426.667 448h-213.333v-85.333h213.333v85.333zM810.667 345.6v-409.6h-768v1024h768v-324.267l68.267 68.267 145.067-145.067-213.333-213.333zM878.933 584.533l-366.933-366.933v-25.6h25.6l366.933 366.933-25.6 25.6zM725.333 260.267l-153.6-153.6h-145.067v145.067l298.667 298.667v324.267h-597.333v-853.333h597.333v238.933z" />
<glyph unicode="&#xe91e;" glyph-name="mbri-credit-card" d="M0 789.333v-640h1024v640h-1024zM938.667 234.667h-853.333v298.667h853.333v-298.667zM938.667 618.667h-853.333v85.333h853.333v-85.333zM512 320h-341.333v85.333h341.333v-85.333z" />
<glyph unicode="&#xe91f;" glyph-name="mbri-cursor-click" d="M998.4 234.667l-571.733 571.733v-802.133l200.533 200.533 102.4-238.933 76.8 34.133-102.4 234.667h294.4zM512 601.6l281.6-281.6h-170.667l-110.933-110.933v392.533zM512 874.667h-85.333v85.333h85.333v-85.333zM256 618.667h-85.333v85.333h85.333v-85.333zM682.667 704h85.333v-85.333h-85.333v85.333zM290.133 541.867l59.733-59.733-59.733-59.733-59.733 59.733 59.733 59.733zM648.533 780.8l-59.733 59.733 59.733 59.733 59.733-59.733-59.733-59.733zM290.133 904.533l59.733-59.733-59.733-64-64 59.733 64 64z" />
<glyph unicode="&#xe920;" glyph-name="mbri-cust-feedback" d="M0 874.667v-913.067l273.067 273.067h750.933v640h-1024zM938.667 320h-699.733l-153.6-153.6v622.933h853.333v-469.333zM469.333 388.267l-157.867 157.867 59.733 59.733 98.133-98.133 226.133 226.133 59.733-59.733-285.867-285.867z" />
<glyph unicode="&#xe921;" glyph-name="mbri-database" d="M512 960c-217.6 0-384-81.067-384-192v-640c0-110.933 166.4-192 384-192s384 81.067 384 192v640c0 110.933-166.4 192-384 192zM512 874.667c183.467 0 298.667-64 298.667-106.667s-115.2-106.667-298.667-106.667-298.667 64-298.667 106.667 115.2 106.667 298.667 106.667zM512 21.333c-183.467 0-298.667 64-298.667 106.667v89.6c68.267-42.667 174.933-68.267 298.667-68.267s230.4 25.6 298.667 68.267v-89.6c0-42.667-115.2-106.667-298.667-106.667zM512 234.667c-183.467 0-298.667 64-298.667 106.667v89.6c68.267-42.667 174.933-68.267 298.667-68.267s230.4 25.6 298.667 68.267v-89.6c0-42.667-115.2-106.667-298.667-106.667zM512 448c-183.467 0-298.667 64-298.667 106.667v89.6c68.267-42.667 174.933-68.267 298.667-68.267s230.4 25.6 298.667 68.267v-89.6c0-42.667-115.2-106.667-298.667-106.667z" />
<glyph unicode="&#xe922;" glyph-name="mbri-delivery" d="M640 832l-384-192v-430.933l384-192 384 192v430.933l-384 192zM887.467 614.4l-247.467-123.733-247.467 123.733 247.467 123.733 247.467-123.733zM341.333 546.133l256-128v-285.867l-256 128v285.867zM682.667 132.267v285.867l256 128v-285.867l-256-128zM0 661.333h170.667v-85.333h-170.667v85.333zM0 490.667h170.667v-85.333h-170.667v85.333zM0 320h170.667v-85.333h-170.667v85.333z" />
<glyph unicode="&#xe923;" glyph-name="mbri-desktop" d="M1024 192v682.667h-1024v-682.667h384v-85.333h-85.333v-85.333h426.667v85.333h-85.333v85.333h384zM554.667 106.667h-85.333v85.333h85.333v-85.333zM85.333 277.333v512h853.333v-512h-853.333z" />
<glyph unicode="&#xe924;" glyph-name="mbri-devices" d="M810.667 64h-85.333v85.333h85.333v-85.333zM981.333 618.667v-682.667h-938.667v1024h768v-341.333h170.667zM554.667 21.333v597.333h170.667v256h-597.333v-853.333h426.667zM896 533.333h-256v-512h256v512zM384 106.667h85.333v85.333h-85.333v-85.333z" />
<glyph unicode="&#xe925;" glyph-name="mbri-down" d="M797.867 221.867l-285.867-285.867-285.867 285.867 59.733 59.733 183.467-183.467v861.867h85.333v-861.867l183.467 183.467 59.733-59.733z" />
<glyph unicode="&#xe926;" glyph-name="mbri-download-2" d="M652.8 196.267l59.733-59.733-200.533-200.533-200.533 200.533 59.733 59.733 98.133-98.133v477.867h85.333v-477.867l98.133 98.133zM844.8 661.333c-29.867 145.067-162.133 256-311.467 256-136.533 0-256-89.6-302.933-213.333h-17.067c-119.467 0-213.333-93.867-213.333-213.333s93.867-213.333 213.333-213.333h170.667v85.333h-170.667c-72.533 0-128 55.467-128 128s55.467 128 128 128h85.333l4.267 25.6c21.333 110.933 119.467 187.733 230.4 187.733 123.733 0 226.133-93.867 234.667-217.6v-38.4h64c59.733 0 106.667-46.933 106.667-106.667s-46.933-106.667-106.667-106.667h-192v-85.333h192c106.667 0 192 85.333 192 192 0 102.4-76.8 183.467-179.2 192z" />
<glyph unicode="&#xe927;" glyph-name="mbri-download" d="M285.867 452.267l-59.733-59.733 285.867-285.867 285.867 285.867-59.733 59.733-183.467-183.467v691.2h-85.333v-691.2l-183.467 183.467zM853.333 106.667v-85.333h-682.667v85.333h-85.333v-170.667h853.333v170.667h-85.333z" />
<glyph unicode="&#xe928;" glyph-name="mbri-drag-n-drop-2" d="M768 704v85.333h-85.333v-85.333h-426.667v-426.667h-85.333v-85.333h85.333v-256h768v768h-256zM938.667 21.333h-597.333v597.333h597.333v-597.333zM0 960h85.333v-85.333h-85.333v85.333zM256 874.667h-85.333v85.333h85.333v-85.333zM426.667 874.667h-85.333v85.333h85.333v-85.333zM597.333 874.667h-85.333v85.333h85.333v-85.333zM768 874.667h-85.333v85.333h85.333v-85.333zM0 789.333h85.333v-85.333h-85.333v85.333zM0 618.667h85.333v-85.333h-85.333v85.333zM0 448h85.333v-85.333h-85.333v85.333zM0 277.333h85.333v-85.333h-85.333v85.333z" />
<glyph unicode="&#xe929;" glyph-name="mbri-drag-n-drop" d="M1024 448l-200.533-200.533-59.733 59.733 98.133 98.133h-307.2v-307.2l98.133 98.133 59.733-59.733-200.533-200.533-200.533 200.533 59.733 59.733 98.133-98.133v307.2h-307.2l98.133-98.133-59.733-59.733-200.533 200.533 200.533 200.533 59.733-59.733-98.133-98.133h307.2v307.2l-98.133-98.133-59.733 59.733 200.533 200.533 200.533-200.533-59.733-59.733-98.133 98.133v-307.2h307.2l-98.133 98.133 59.733 59.733 200.533-200.533z" />
<glyph unicode="&#xe92a;" glyph-name="mbri-edit-2" d="M708.267 960l-708.267-708.267v-315.733h315.733l708.267 708.267-315.733 315.733zM904.533 644.267l-102.4-102.4-196.267 196.267 102.4 102.4 196.267-196.267zM281.6 21.333h-196.267v196.267l460.8 460.8 196.267-196.267-460.8-460.8z" />
<glyph unicode="&#xe92b;" glyph-name="mbri-edit" d="M853.333 448h85.333v-512h-938.667v938.667h512v-85.333h-426.667v-768h768v426.667zM298.667 465.067l494.933 494.933 230.4-230.4-494.933-494.933h-230.4v230.4zM384 320h110.933l409.6 409.6-110.933 110.933-409.6-409.6v-110.933z" />
<glyph unicode="&#xe92c;" glyph-name="mbri-error" d="M490.667 960c-268.8 0-490.667-221.867-490.667-490.667s221.867-490.667 490.667-490.667 490.667 221.867 490.667 490.667-221.867 490.667-490.667 490.667zM490.667 64c-221.867 0-405.333 183.467-405.333 405.333s183.467 405.333 405.333 405.333 405.333-183.467 405.333-405.333-183.467-405.333-405.333-405.333zM755.2 674.133l-204.8-204.8 204.8-204.8-59.733-59.733-204.8 204.8-204.8-204.8-59.733 59.733 204.8 204.8-204.8 204.8 59.733 59.733 204.8-204.8 204.8 204.8 59.733-59.733z" />
<glyph unicode="&#xe92d;" glyph-name="mbri-extension" d="M853.333-64h-341.333v85.333c0 46.933-38.4 85.333-85.333 85.333s-85.333-38.4-85.333-85.333v-85.333h-341.333v341.333h85.333c46.933 0 85.333 38.4 85.333 85.333s-38.4 85.333-85.333 85.333h-85.333v341.333h256c0 93.867 76.8 170.667 170.667 170.667s170.667-76.8 170.667-170.667h256v-256c93.867 0 170.667-76.8 170.667-170.667s-76.8-170.667-170.667-170.667v-256zM597.333 21.333h170.667v256h85.333c46.933 0 85.333 38.4 85.333 85.333s-38.4 85.333-85.333 85.333h-85.333v256h-256v85.333c0 46.933-38.4 85.333-85.333 85.333s-85.333-38.4-85.333-85.333v-85.333h-256v-170.667c93.867 0 170.667-76.8 170.667-170.667s-76.8-170.667-170.667-170.667v-170.667h170.667c0 93.867 76.8 170.667 170.667 170.667s170.667-76.8 170.667-170.667z" />
<glyph unicode="&#xe92e;" glyph-name="mbri-features" d="M0-64h426.667v426.667h-426.667v-426.667zM85.333 277.333h256v-256h-256v256zM0 448h426.667v426.667h-426.667v-426.667zM85.333 789.333h256v-256h-256v256zM512-64h426.667v426.667h-426.667v-426.667zM597.333 277.333h256v-256h-256v256zM669.867 627.2l-157.867 119.467h196.267l59.733 170.667 59.733-170.667h196.267l-157.867-119.467 59.733-179.2-157.867 110.933-157.867-110.933 59.733 179.2z" />
<glyph unicode="&#xe92f;" glyph-name="mbri-file" d="M614.4 960h-486.4v-1024h768v742.4l-281.6 281.6zM640 814.933l110.933-110.933h-110.933v110.933zM810.667 21.333h-597.333v853.333h341.333v-256h256v-597.333zM298.667 277.333h426.667v-85.333h-426.667v85.333zM298.667 448h426.667v-85.333h-426.667v85.333z" />
<glyph unicode="&#xe930;" glyph-name="mbri-flag" d="M938.667 960h-810.667v-1024h85.333v426.667h725.333l-149.333 298.667 149.333 298.667zM802.133 448h-588.8v426.667h588.8l-106.667-213.333 106.667-213.333z" />
<glyph unicode="&#xe931;" glyph-name="mbri-folder" d="M486.4 704l-128 128h-358.4v-810.667h1024v682.667h-537.6zM938.667 106.667h-853.333v640h238.933l128-128h486.4v-512z" />
<glyph unicode="&#xe932;" glyph-name="mbri-gift" d="M785.067 661.333c17.067 25.6 25.6 55.467 25.6 85.333 0 93.867-76.8 170.667-170.667 170.667-51.2 0-98.133-21.333-128-59.733-29.867 38.4-76.8 59.733-128 59.733-93.867 0-170.667-76.8-170.667-170.667 0-29.867 8.533-59.733 25.6-85.333h-238.933v-256h85.333v-469.333h853.333v469.333h85.333v256h-238.933zM554.667 746.667c0 46.933 38.4 85.333 85.333 85.333s85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333h-85.333v85.333zM384 832c46.933 0 85.333-38.4 85.333-85.333v-85.333h-85.333c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333zM853.333 21.333h-682.667v384h682.667v-384zM938.667 490.667h-853.333v85.333h853.333v-85.333z" />
<glyph unicode="&#xe933;" glyph-name="mbri-github" d="M938.667 686.933v273.067l-226.133-93.867c-115.2 38.4-247.467 38.4-362.667 0l-221.867 93.867v-281.6c-29.867-46.933-42.667-93.867-42.667-145.067 0-132.267 98.133-251.733 256-307.2v-128c-98.133-25.6-128 17.067-162.133 76.8-29.867 46.933-64 102.4-136.533 102.4v-85.333c25.6 0 38.4-17.067 64-59.733 34.133-51.2 76.8-128 183.467-128 17.067 0 34.133 0 51.2 4.267v-72.533h384v290.133c157.867 55.467 256 174.933 256 307.2 0 55.467-12.8 106.667-42.667 153.6zM669.867 298.667l-29.867-12.8v-264.533h-213.333v264.533l-29.867 8.533c-136.533 42.667-226.133 136.533-226.133 238.933 0 38.4 12.8 72.533 34.133 110.933l8.533 8.533v179.2l136.533-55.467 17.067 4.267c106.667 38.4 230.4 38.4 337.067 0l17.067-4.267 132.267 55.467v-170.667l8.533-12.8c21.333-34.133 34.133-72.533 34.133-115.2 0-102.4-89.6-196.267-226.133-234.667z" />
<glyph unicode="&#xe934;" glyph-name="mbri-globe-2" d="M512 960c-281.6 0-512-230.4-512-512s230.4-512 512-512 512 230.4 512 512-230.4 512-512 512zM512 21.333c-51.2 0-110.933 81.067-140.8 204.8 93.867 12.8 192 12.8 285.867 0-34.133-123.733-93.867-204.8-145.067-204.8zM512 874.667c51.2 0 110.933-81.067 140.8-204.8-89.6-8.533-187.733-8.533-281.6 0 29.867 123.733 89.6 204.8 140.8 204.8zM341.333 448c0 51.2 4.267 98.133 8.533 140.8 55.467-8.533 106.667-12.8 162.133-12.8s106.667 4.267 162.133 12.8c8.533-42.667 8.533-89.6 8.533-140.8s-4.267-98.133-8.533-140.8c-106.667 12.8-217.6 12.8-320 0-8.533 42.667-12.8 89.6-12.8 140.8zM755.2 601.6c46.933 8.533 89.6 21.333 136.533 38.4 29.867-59.733 46.933-123.733 46.933-192s-17.067-132.267-46.933-192c-46.933 17.067-89.6 25.6-136.533 38.4 8.533 46.933 12.8 98.133 12.8 153.6s-4.267 106.667-12.8 153.6zM844.8 712.533c-34.133-12.8-68.267-21.333-106.667-25.6-12.8 59.733-34.133 110.933-59.733 153.6 68.267-29.867 123.733-72.533 166.4-128zM345.6 840.533c-25.6-42.667-46.933-93.867-64-153.6-34.133 4.267-68.267 12.8-102.4 25.6 42.667 55.467 98.133 98.133 166.4 128zM132.267 640c46.933-17.067 89.6-25.6 136.533-38.4-8.533-46.933-12.8-98.133-12.8-153.6s4.267-106.667 12.8-153.6c-46.933-8.533-89.6-21.333-136.533-38.4-29.867 59.733-46.933 123.733-46.933 192s17.067 132.267 46.933 192zM179.2 183.467c34.133 12.8 68.267 21.333 106.667 25.6 12.8-59.733 34.133-110.933 59.733-153.6-68.267 29.867-123.733 72.533-166.4 128zM678.4 55.467c25.6 42.667 46.933 93.867 59.733 153.6 34.133-8.533 72.533-17.067 106.667-25.6-42.667-55.467-98.133-98.133-166.4-128z" />
<glyph unicode="&#xe935;" glyph-name="mbri-globe" d="M512 960c-281.6 0-512-230.4-512-512s230.4-512 512-512 512 230.4 512 512-230.4 512-512 512zM209.067 746.667h174.933c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667h-149.333c-59.733 0-106.667-46.933-106.667-106.667s46.933-106.667 106.667-106.667h21.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667h-162.133c-4.267 25.6-8.533 55.467-8.533 85.333 0 115.2 46.933 221.867 123.733 298.667zM119.467 277.333h136.533c72.533 0 128 55.467 128 128s-55.467 128-128 128h-21.333c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333h149.333c72.533 0 128 55.467 128 128s-55.467 128-128 128h-55.467c55.467 25.6 115.2 42.667 183.467 42.667 174.933 0 324.267-106.667 392.533-256h-179.2c-72.533 0-128-55.467-128-128s55.467-128 128-128h21.333c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333h-192c-72.533 0-128-55.467-128-128s55.467-128 128-128h140.8c-55.467-25.6-119.467-42.667-183.467-42.667-174.933 0-324.267 106.667-392.533 256zM814.933 149.333h-260.267c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h192c59.733 0 106.667 46.933 106.667 106.667s-46.933 106.667-106.667 106.667h-21.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h204.8c4.267-25.6 8.533-55.467 8.533-85.333 0-115.2-46.933-221.867-123.733-298.667z" />
<glyph unicode="&#xe936;" glyph-name="mbri-growing-chart" d="M1024 832v-298.667h-85.333v153.6l-384-384-128 128-366.933-366.933-59.733 59.733 426.667 426.667 128-128 324.267 324.267h-153.6v85.333h298.667z" />
<glyph unicode="&#xe937;" glyph-name="mbri-hearth" d="M512-25.6l-422.4 422.4c-119.467 119.467-119.467 311.467 0 430.933 55.467 59.733 132.267 89.6 213.333 89.6h4.267c76.8 0 149.333-29.867 204.8-81.067 55.467 51.2 128 81.067 204.8 81.067 81.067 0 157.867-29.867 217.6-89.6s89.6-136.533 89.6-217.6c0-81.067-29.867-157.867-89.6-213.333l-422.4-422.4zM307.2 832c-59.733 0-115.2-21.333-157.867-64-85.333-85.333-85.333-226.133 0-311.467l362.667-362.667 362.667 362.667c42.667 42.667 64 98.133 64 153.6 0 59.733-21.333 115.2-64 157.867s-98.133 64-157.867 64-115.2-21.333-157.867-64l-46.933-51.2-51.2 51.2c-42.667 42.667-93.867 64-153.6 64z" />
<glyph unicode="&#xe938;" glyph-name="mbri-help" d="M512 960c-281.6 0-512-230.4-512-512s230.4-512 512-512 512 230.4 512 512-230.4 512-512 512zM512 21.333c-234.667 0-426.667 192-426.667 426.667s192 426.667 426.667 426.667 426.667-192 426.667-426.667-192-426.667-426.667-426.667zM725.333 576c0-76.8-46.933-119.467-89.6-157.867s-81.067-68.267-81.067-140.8h-85.333c0 110.933 59.733 162.133 110.933 204.8 38.4 34.133 59.733 55.467 59.733 93.867 0 72.533-55.467 128-128 128s-128-55.467-128-128h-85.333c0 119.467 93.867 213.333 213.333 213.333s213.333-93.867 213.333-213.333zM469.333 192h85.333v-85.333h-85.333v85.333z" />
<glyph unicode="&#xe939;" glyph-name="mbri-home" d="M512 883.2l-494.933-358.4 51.2-68.267 102.4 72.533v-507.733h682.667v507.733l102.4-76.8 51.2 68.267-494.933 362.667zM554.667 106.667h-85.333v213.333h85.333v-213.333zM768 106.667h-128v298.667h-256v-298.667h-128v486.4l256 187.733 256-187.733v-486.4z" />
<glyph unicode="&#xe93a;" glyph-name="mbri-hot-cup" d="M853.333 533.333h-42.667v128h-768v-469.333c0-140.8 115.2-256 256-256h256c128 0 230.4 93.867 251.733 213.333h46.933c93.867 0 170.667 76.8 170.667 170.667v42.667c0 93.867-76.8 170.667-170.667 170.667zM725.333 192c0-93.867-76.8-170.667-170.667-170.667h-256c-93.867 0-170.667 76.8-170.667 170.667v384h597.333v-384zM938.667 320c0-46.933-38.4-85.333-85.333-85.333h-42.667v213.333h42.667c46.933 0 85.333-38.4 85.333-85.333v-42.667zM384 746.667h-85.333v213.333h85.333v-213.333zM554.667 746.667h-85.333v85.333h85.333v-85.333z" />
<glyph unicode="&#xe93b;" glyph-name="mbri-idea" d="M554.667 874.667h-85.333v85.333h85.333v-85.333zM42.667 448h85.333v85.333h-85.333v-85.333zM896 533.333v-85.333h85.333v85.333h-85.333zM268.8 793.6l-59.733 59.733-59.733-59.733 59.733-59.733 59.733 59.733zM755.2 187.733l59.733-59.733 59.733 59.733-59.733 59.733-59.733-59.733zM149.333 187.733l59.733-59.733 59.733 59.733-59.733 59.733-59.733-59.733zM755.2 793.6l59.733-59.733 59.733 59.733-59.733 59.733-59.733-59.733zM810.667 490.667c0-98.133-46.933-187.733-128-243.2v-140.8c0-93.867-76.8-170.667-170.667-170.667s-170.667 76.8-170.667 170.667v140.8c-81.067 55.467-128 149.333-128 243.2 0 166.4 132.267 298.667 298.667 298.667s298.667-132.267 298.667-298.667zM725.333 490.667c0 119.467-93.867 213.333-213.333 213.333s-213.333-93.867-213.333-213.333c0-76.8 42.667-145.067 106.667-183.467l21.333-12.8v-187.733c0-46.933 38.4-85.333 85.333-85.333s85.333 38.4 85.333 85.333v187.733l21.333 12.8c64 38.4 106.667 106.667 106.667 183.467z" />
<glyph unicode="&#xe93c;" glyph-name="mbri-image-gallery" d="M1024 622.933l-554.667 251.733-72.533-157.867-396.8-179.2 256-558.933 349.867 162.133 162.133-76.8 256 558.933zM298.667 93.867l-183.467 401.067 226.133 102.4-128-277.333 290.133-132.267-204.8-93.867zM328.533 358.4l183.467 401.067 396.8-179.2-183.467-401.067-396.8 179.2z" />
<glyph unicode="&#xe93d;" glyph-name="mbri-image-slider" d="M0 960v-853.333h1024v853.333h-1024zM162.133 192l264.533 264.533 264.533-264.533h-529.067zM938.667 192h-128l-238.933 238.933 196.267 196.267 170.667-170.667v-264.533zM938.667 576l-170.667 170.667-256-256-85.333 85.333-341.333-341.333v640h853.333v-298.667zM256 576c72.533 0 128 55.467 128 128s-55.467 128-128 128-128-55.467-128-128 55.467-128 128-128zM256 746.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667-42.667 17.067-42.667 42.667 17.067 42.667 42.667 42.667zM469.333 21.333h85.333v-85.333h-85.333v85.333zM640 21.333h85.333v-85.333h-85.333v85.333zM298.667 21.333h85.333v-85.333h-85.333v85.333z" />
<glyph unicode="&#xe93e;" glyph-name="mbri-info" d="M512 960c-281.6 0-512-230.4-512-512s230.4-512 512-512 512 230.4 512 512-230.4 512-512 512zM512 21.333c-234.667 0-426.667 192-426.667 426.667s192 426.667 426.667 426.667 426.667-192 426.667-426.667-192-426.667-426.667-426.667zM554.667 661.333h-85.333v85.333h85.333v-85.333zM554.667 149.333h-85.333v426.667h85.333v-426.667z" />
<glyph unicode="&#xe93f;" glyph-name="mbri-italic" d="M507.733-64c-55.467 0-85.333 25.6-98.133 46.933-42.667 64-25.6 192 59.733 396.8 102.4 234.667 81.067 298.667 72.533 311.467-4.267 4.267-8.533 12.8-29.867 12.8-25.6 0-64-46.933-98.133-81.067l-59.733 55.467c46.933 55.467 98.133 110.933 157.867 110.933 55.467 0 85.333-25.6 102.4-51.2 42.667-68.267 25.6-192-64-392.533-98.133-238.933-76.8-298.667-68.267-315.733 0-4.267 8.533-8.533 25.6-8.533 25.6 0 64 46.933 98.133 81.067l64-55.467c-51.2-55.467-102.4-110.933-162.133-110.933zM576 960c-34.133 0-64-29.867-64-64s29.867-64 64-64 64 29.867 64 64-29.867 64-64 64z" />
<glyph unicode="&#xe940;" glyph-name="mbri-key" d="M422.4 490.667c-21.333 98.133-106.667 170.667-209.067 170.667-119.467 0-213.333-93.867-213.333-213.333s93.867-213.333 213.333-213.333c102.4 0 187.733 72.533 209.067 170.667h302.933v-170.667h85.333v170.667h128v-170.667h85.333v256h-601.6zM213.333 320c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128z" />
<glyph unicode="&#xe941;" glyph-name="mbri-laptop" d="M938.667 277.333v512h-853.333v-512h-85.333v-213.333h1024v213.333h-85.333zM938.667 149.333h-853.333v42.667h853.333v-42.667zM170.667 704h682.667v-426.667h-682.667v426.667z" />
<glyph unicode="&#xe942;" glyph-name="mbri-layers" d="M1024 661.333l-512 298.667-512-298.667 512-298.667 512 298.667zM512 861.867l345.6-200.533-345.6-200.533-345.6 200.533 345.6 200.533zM960 533.333l46.933-72.533-494.933-311.467-490.667 311.467 42.667 72.533 448-281.6 448 281.6zM960 320l46.933-72.533-494.933-311.467-490.667 311.467 42.667 72.533 448-281.6 448 281.6z" />
<glyph unicode="&#xe943;" glyph-name="mbri-left-right" d="M678.4 674.133l59.733 59.733 285.867-285.867-285.867-285.867-59.733 59.733 183.467 183.467h-699.733l183.467-183.467-59.733-59.733-285.867 285.867 285.867 285.867 59.733-59.733-183.467-183.467h699.733l-183.467 183.467z" />
<glyph unicode="&#xe944;" glyph-name="mbri-left" d="M0 490.667l285.867-285.867 59.733 59.733-183.467 183.467h861.867v85.333h-861.867l183.467 183.467-59.733 59.733-285.867-285.867z" />
<glyph unicode="&#xe945;" glyph-name="mbri-letter" d="M0 789.333v-682.667h1024v682.667h-1024zM844.8 704l-332.8-200.533-332.8 200.533h665.6zM85.333 192v469.333l426.667-256 426.667 256v-469.333h-853.333z" />
<glyph unicode="&#xe946;" glyph-name="mbri-like" d="M665.6 533.333l59.733 119.467v264.533h-204.8l-46.933-192-132.267-157.867v51.2h-341.333v-640h341.333v46.933l72.533-46.933h460.8l149.333 554.667h-358.4zM256 64h-170.667v469.333h170.667v-469.333zM806.4 64h-366.933l-98.133 64v302.933l209.067 251.733 38.4 149.333h51.2v-162.133l-110.933-221.867h384l-106.667-384z" />
<glyph unicode="&#xe947;" glyph-name="mbri-link" d="M682.667 362.667l341.333 341.333-256 256-341.333-341.333 93.867-93.867-85.333-85.333-93.867 93.867-341.333-341.333 256-256 341.333 341.333-93.867 93.867 85.333 85.333 93.867-93.867zM469.333 277.333l-213.333-213.333-128 128 213.333 213.333 29.867-29.867-72.533-76.8 64-64 72.533 72.533 34.133-29.867zM554.667 618.667l213.333 213.333 128-128-213.333-213.333-29.867 29.867 72.533 76.8-64 64-72.533-72.533-34.133 29.867z" />
<glyph unicode="&#xe948;" glyph-name="mbri-lock" d="M768 533.333v170.667c0 140.8-115.2 256-256 256s-256-115.2-256-256v-170.667h-85.333v-597.333h682.667v597.333h-85.333zM341.333 704c0 93.867 76.8 170.667 170.667 170.667s170.667-76.8 170.667-170.667v-170.667h-341.333v170.667zM768 21.333h-512v426.667h512v-426.667z" />
<glyph unicode="&#xe949;" glyph-name="mbri-login" d="M648.533 405.333h-605.867v85.333h605.867l-140.8 140.8 59.733 59.733 243.2-243.2-243.2-243.2-59.733 59.733 140.8 140.8zM341.333 960v-341.333h85.333v256h469.333v-853.333h-469.333v256h-85.333v-341.333h640v1024h-640z" />
<glyph unicode="&#xe94a;" glyph-name="mbri-logout" d="M861.867 405.333h-605.867v85.333h605.867l-140.8 140.8 59.733 59.733 243.2-243.2-243.2-243.2-59.733 59.733 140.8 140.8zM640 960v-341.333h-85.333v256h-469.333v-853.333h469.333v256h85.333v-341.333h-640v1024h640z" />
<glyph unicode="&#xe94b;" glyph-name="mbri-magic-stick" d="M682.667 789.333c-93.867 0-170.667-76.8-170.667-170.667 0-29.867 8.533-59.733 25.6-85.333l-537.6-537.6 59.733-59.733 537.6 537.6c25.6-17.067 55.467-25.6 85.333-25.6 93.867 0 170.667 76.8 170.667 170.667s-76.8 170.667-170.667 170.667zM682.667 533.333c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM725.333 874.667h-85.333v85.333h85.333v-85.333zM640 362.667h85.333v-85.333h-85.333v85.333zM426.667 576h-85.333v85.333h85.333v-85.333zM1024 661.333v-85.333h-85.333v85.333h85.333zM891.733 768l-59.733 59.733 59.733 59.733 59.733-59.733-59.733-59.733zM891.733 469.333l59.733-59.733-59.733-59.733-59.733 59.733 59.733 59.733zM473.6 768l-64 59.733 59.733 59.733 59.733-59.733-55.467-59.733z" />
<glyph unicode="&#xe94c;" glyph-name="mbri-map-pin" d="M512 960c-213.333 0-384-170.667-384-384 0-315.733 345.6-610.133 358.4-618.667l25.6-21.333 25.6 21.333c12.8 8.533 358.4 302.933 358.4 618.667 0 213.333-170.667 384-384 384zM512 42.667c-76.8 68.267-298.667 307.2-298.667 533.333 0 166.4 132.267 298.667 298.667 298.667s298.667-132.267 298.667-298.667c0-226.133-221.867-465.067-298.667-533.333zM512 746.667c-93.867 0-170.667-76.8-170.667-170.667s76.8-170.667 170.667-170.667 170.667 76.8 170.667 170.667-76.8 170.667-170.667 170.667zM512 490.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333z" />
<glyph unicode="&#xe94d;" glyph-name="mbri-menu" d="M1024 746.667v-85.333h-1024v85.333h1024zM0 405.333h1024v85.333h-1024v-85.333zM0 149.333h1024v85.333h-1024v-85.333z" />
<glyph unicode="&#xe94e;" glyph-name="mbri-mobile-2" d="M213.333 960v-1024h597.333v1024h-597.333zM725.333 21.333h-426.667v853.333h426.667v-853.333zM554.667 64h-85.333v85.333h85.333v-85.333z" />
<glyph unicode="&#xe94f;" glyph-name="mbri-mobile-horizontal" d="M1024 746.667h-1024v-597.333h1024v597.333zM85.333 234.667v426.667h853.333v-426.667h-853.333zM128 405.333v85.333h85.333v-85.333h-85.333z" />
<glyph unicode="&#xe950;" glyph-name="mbri-mobile" d="M213.333 960v-1024h597.333v1024h-597.333zM725.333 21.333h-426.667v853.333h426.667v-853.333zM597.333 746.667h-170.667v85.333h170.667v-85.333zM426.667 64h-85.333v85.333h85.333v-85.333zM597.333 149.333h85.333v-85.333h-85.333v85.333zM554.667 64h-85.333v85.333h85.333v-85.333zM426.667 192h-85.333v85.333h85.333v-85.333zM597.333 277.333h85.333v-85.333h-85.333v85.333zM554.667 192h-85.333v85.333h85.333v-85.333zM426.667 320h-85.333v85.333h85.333v-85.333zM597.333 405.333h85.333v-85.333h-85.333v85.333zM554.667 320h-85.333v85.333h85.333v-85.333z" />
<glyph unicode="&#xe951;" glyph-name="mbri-mobirise" d="M682.667 789.333h-85.333v85.333h85.333v-85.333zM0 874.667h512v-853.333h-512v853.333zM85.333 106.667h341.333v682.667h-341.333v-682.667zM213.333 149.333h85.333v85.333h-85.333v-85.333zM938.667 490.667v-85.333h85.333v85.333h-85.333zM806.4 721.067l59.733-59.733 59.733 59.733-59.733 59.733-59.733-59.733zM806.4 174.933l59.733-59.733 59.733 59.733-59.733 59.733-59.733-59.733zM597.333 21.333h85.333v85.333h-85.333v-85.333zM597.333 704v-85.333c93.867 0 170.667-76.8 170.667-170.667s-76.8-170.667-170.667-170.667v-85.333c140.8 0 256 115.2 256 256s-115.2 256-256 256z" />
<glyph unicode="&#xe952;" glyph-name="mbri-more-horizontal" d="M256 448c0-46.933-38.4-85.333-85.333-85.333s-85.333 38.4-85.333 85.333 38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333zM512 533.333c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333-38.4 85.333-85.333 85.333zM853.333 533.333c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333-38.4 85.333-85.333 85.333z" />
<glyph unicode="&#xe953;" glyph-name="mbri-more-vertical" d="M512 704c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM597.333 448c0 46.933-38.4 85.333-85.333 85.333s-85.333-38.4-85.333-85.333 38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333zM597.333 106.667c0 46.933-38.4 85.333-85.333 85.333s-85.333-38.4-85.333-85.333 38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333z" />
<glyph unicode="&#xe954;" glyph-name="mbri-music" d="M298.667 810.667v-627.2c-12.8 4.267-25.6 8.533-42.667 8.533-72.533 0-128-55.467-128-128s55.467-128 128-128 128 55.467 128 128v507.733l426.667 106.667v-366.933c-12.8 4.267-25.6 8.533-42.667 8.533-72.533 0-128-55.467-128-128s55.467-128 128-128 128 55.467 128 128v768l-597.333-149.333zM256 21.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667 42.667-17.067 42.667-42.667-17.067-42.667-42.667-42.667zM384 661.333v81.067l426.667 106.667v-81.067l-426.667-106.667zM768 149.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667 42.667-17.067 42.667-42.667-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe955;" glyph-name="mbri-new-file" d="M614.4 960h-486.4v-1024h768v742.4l-281.6 281.6zM640 814.933l110.933-110.933h-110.933v110.933zM213.333 21.333v853.333h341.333v-256h256v-597.333h-597.333z" />
<glyph unicode="&#xe956;" glyph-name="mbri-numbered-list" d="M1024 832v-85.333h-597.333v85.333h597.333zM426.667 64h597.333v85.333h-597.333v-85.333zM426.667 405.333h597.333v85.333h-597.333v-85.333zM0 661.333h85.333v256h-85.333v-256zM0 320h85.333v256h-85.333v-256zM128 320h85.333v256h-85.333v-256zM0-21.333h85.333v256h-85.333v-256zM128-21.333h85.333v256h-85.333v-256zM256-21.333h85.333v256h-85.333v-256z" />
<glyph unicode="&#xe957;" glyph-name="mbri-opened-folder" d="M896 533.333v170.667h-409.6l-128 128h-358.4v-810.667h896l128 512h-128zM85.333 746.667h238.933l128-128h358.4v-85.333h-695.467l-29.867-123.733v337.067zM827.733 106.667h-729.6l85.333 341.333h733.867l-89.6-341.333z" />
<glyph unicode="&#xe958;" glyph-name="mbri-pages" d="M614.4 960h-358.4v-853.333h640v571.733l-281.6 281.6zM640 814.933l110.933-110.933h-110.933v110.933zM810.667 192h-469.333v682.667h213.333v-256h256v-426.667zM170.667 21.333h554.667v-85.333h-640v853.333h85.333v-768z" />
<glyph unicode="&#xe959;" glyph-name="mbri-paper-plane" d="M29.867 537.6l362.667-204.8 106.667-366.933 145.067 200.533 200.533-132.267 153.6 908.8-968.533-405.333zM221.867 524.8l529.067 226.133-332.8-332.8-196.267 106.667zM529.067 157.867l-29.867 106.667 72.533-46.933-42.667-59.733zM780.8 179.2l-285.867 192 379.733 379.733-93.867-571.733z" />
<glyph unicode="&#xe95a;" glyph-name="mbri-paperclip" d="M298.667-64c-76.8 0-153.6 29.867-209.067 85.333-59.733 59.733-89.6 132.267-89.6 213.333s29.867 153.6 89.6 209.067l443.733 452.267c42.667 42.667 93.867 64 149.333 64s110.933-21.333 149.333-64 64-93.867 64-149.333c0-55.467-21.333-110.933-64-149.333l-443.733-452.267c-51.2-51.2-132.267-51.2-179.2 0s-51.2 132.267 0 179.2l362.667 362.667 59.733-59.733-362.667-362.667c-17.067-17.067-17.067-42.667 0-59.733s42.667-17.067 59.733 0l443.733 452.267c25.6 21.333 38.4 55.467 38.4 89.6s-12.8 68.267-38.4 89.6c-46.933 46.933-132.267 46.933-179.2 0l-443.733-452.267c-42.667-42.667-64-93.867-64-149.333s21.333-110.933 64-149.333c81.067-81.067 217.6-81.067 302.933 0l384 384 59.733-59.733-384-384c-59.733-59.733-136.533-89.6-213.333-89.6z" />
<glyph unicode="&#xe95b;" glyph-name="mbri-phone" d="M806.4-64l-29.867 17.067c-162.133 89.6-307.2 192-439.467 324.267-128 128-234.667 273.067-320 435.2l-17.067 29.867 217.6 217.6 264.533-264.533-85.333-123.733 234.667-234.667 123.733 85.333 264.533-264.533-213.333-221.867zM396.8 332.8c119.467-115.2 247.467-213.333 392.533-294.4l115.2 115.2-153.6 153.6-123.733-85.333-337.067 337.067 85.333 123.733-157.867 157.867-110.933-115.2c81.067-145.067 174.933-273.067 290.133-392.533z" />
<glyph unicode="&#xe95c;" glyph-name="mbri-photo" d="M1024 960h-853.333v-853.333h853.333v853.333zM938.667 192h-682.667v682.667h682.667v-682.667zM0 746.667v-810.667h810.667v85.333h-725.333v725.333h-85.333zM371.2 230.4l-59.733 59.733 200.533 204.8 85.333-85.333 170.667 170.667 115.2-115.2-59.733-59.733-55.467 51.2-170.667-170.667-85.333 85.333-140.8-140.8zM341.333 725.333c0 34.133 29.867 64 64 64s64-29.867 64-64-29.867-64-64-64-64 29.867-64 64z" />
<glyph unicode="&#xe95d;" glyph-name="mbri-photos" d="M0 874.667v-853.333h1024v853.333h-1024zM938.667 789.333v-298.667l-170.667 170.667-256-256-85.333 85.333-341.333-341.333v640h853.333zM691.2 106.667h-529.067l264.533 264.533 264.533-264.533zM810.667 106.667l-238.933 238.933 196.267 196.267 170.667-170.667v-264.533h-128zM256 490.667c72.533 0 128 55.467 128 128s-55.467 128-128 128-128-55.467-128-128 55.467-128 128-128zM256 661.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667-42.667 17.067-42.667 42.667 17.067 42.667 42.667 42.667z" />
<glyph unicode="&#xe95e;" glyph-name="mbri-pin" d="M691.2 960l-149.333-149.333 59.733-59.733-93.867-93.867-149.333-25.6-59.733 59.733-179.2-179.2 196.267-196.267-315.733-320 59.733-59.733 315.733 315.733 196.267-196.267 179.2 179.2-55.467 55.467 21.333 149.333 93.867 93.867 59.733-59.733 153.6 153.6-332.8 332.8zM571.733 174.933l-332.8 332.8 59.733 59.733 332.8-332.8-59.733-59.733zM814.933 657.067l-174.933-174.933-17.067-115.2-187.733 187.733 115.2 17.067 174.933 174.933-59.733 59.733 29.867 29.867 213.333-209.067-29.867-29.867-64 59.733z" />
<glyph unicode="&#xe95f;" glyph-name="mbri-play" d="M85.333-64v1024l853.333-512-853.333-512zM170.667 810.667v-721.067l597.333 358.4-597.333 362.667z" />
<glyph unicode="&#xe960;" glyph-name="mbri-plus" d="M1024 405.333h-469.333v-469.333h-85.333v469.333h-469.333v85.333h469.333v469.333h85.333v-469.333h469.333v-85.333z" />
<glyph unicode="&#xe961;" glyph-name="mbri-preview" d="M512 192c-187.733 0-366.933 85.333-490.667 230.4l-21.333 25.6 21.333 25.6c123.733 145.067 302.933 230.4 490.667 230.4s366.933-85.333 490.667-230.4l21.333-25.6-21.333-25.6c-123.733-145.067-302.933-230.4-490.667-230.4zM110.933 448c102.4-110.933 247.467-170.667 401.067-170.667s294.4 59.733 401.067 170.667c-102.4 110.933-247.467 170.667-401.067 170.667s-294.4-59.733-401.067-170.667zM512 320c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM512 490.667c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667z" />
<glyph unicode="&#xe962;" glyph-name="mbri-print" d="M0 704v-597.333h170.667v-170.667h682.667v170.667h170.667v597.333h-1024zM768 21.333h-512v256h512v-256zM938.667 192h-85.333v170.667h-682.667v-170.667h-85.333v426.667h853.333v-426.667zM256 789.333h-85.333v170.667h682.667v-170.667h-85.333v85.333h-512v-85.333zM853.333 448h-85.333v85.333h85.333v-85.333z" />
<glyph unicode="&#xe963;" glyph-name="mbri-protect" d="M512-68.267l-17.067 4.267c-221.867 93.867-366.933 277.333-366.933 469.333v409.6l384 145.067 384-145.067v-409.6c0-192-145.067-375.467-366.933-465.067l-17.067-8.533zM213.333 755.2v-349.867c0-153.6 115.2-302.933 298.667-379.733 183.467 76.8 298.667 226.133 298.667 379.733v349.867l-298.667 110.933-298.667-110.933zM755.2 588.8l-59.733 59.733-226.133-226.133-98.133 98.133-59.733-59.733 157.867-157.867 285.867 285.867z" />
<glyph unicode="&#xe964;" glyph-name="mbri-question" d="M853.333 618.667c0-119.467-76.8-192-153.6-260.267-72.533-72.533-145.067-136.533-145.067-251.733h-85.333c0 153.6 93.867 238.933 174.933 311.467 64 64 123.733 119.467 123.733 200.533 0 140.8-115.2 256-256 256s-256-115.2-256-256h-85.333c0 187.733 153.6 341.333 341.333 341.333s341.333-153.6 341.333-341.333zM469.333-64h85.333v85.333h-85.333v-85.333z" />
<glyph unicode="&#xe965;" glyph-name="mbri-quote-left" d="M345.6 849.067l-302.933-251.733v-490.667h426.667v426.667h-153.6l170.667 170.667-140.8 145.067zM384 448v-256h-256v362.667l209.067 174.933 29.867-25.6-153.6-153.6v-102.4h170.667zM998.4 704l-145.067 145.067-298.667-251.733v-490.667h426.667v426.667h-153.6l170.667 170.667zM896 448v-256h-256v362.667l209.067 174.933 29.867-25.6-153.6-153.6v-102.4h170.667z" />
<glyph unicode="&#xe966;" glyph-name="mbri-quote-right" d="M678.4 89.6l302.933 251.733v490.667h-426.667v-426.667h153.6l-170.667-170.667 140.8-145.067zM640 490.667v256h256v-362.667l-209.067-174.933-29.867 25.6 153.6 153.6v102.4h-170.667zM25.6 234.667l145.067-145.067 302.933 251.733v490.667h-430.933v-426.667h153.6l-170.667-170.667zM128 490.667v256h256v-362.667l-209.067-174.933-29.867 25.6 153.6 153.6v102.4h-170.667z" />
<glyph unicode="&#xe967;" glyph-name="mbri-redo" d="M0 290.133l85.333-25.6c21.333 68.267 59.733 136.533 115.2 187.733 170.667 166.4 452.267 166.4 627.2 0 38.4-38.4 68.267-85.333 93.867-132.267h-324.267v-85.333h426.667v426.667h-85.333v-209.067c-17.067 21.333-34.133 42.667-51.2 59.733-204.8 196.267-541.867 196.267-746.667 0-68.267-59.733-115.2-136.533-140.8-221.867z" />
<glyph unicode="&#xe968;" glyph-name="mbri-refresh" d="M640 704h217.6l-46.933 46.933c-162.133 166.4-435.2 166.4-601.6 0s-166.4-439.467 0-605.867c81.067-81.067 187.733-123.733 302.933-123.733s221.867 42.667 302.933 123.733l59.733-59.733c-102.4-98.133-230.4-149.333-362.667-149.333s-260.267 51.2-362.667 149.333c-200.533 200.533-200.533 524.8 0 725.333s524.8 200.533 725.333 0l21.333-21.333v170.667h85.333v-341.333h-341.333v85.333z" />
<glyph unicode="&#xe969;" glyph-name="mbri-responsive-2" d="M768 192h85.333v-85.333h-85.333zM938.667 661.333v256h-938.667v-640h426.667v-85.333h-170.667v-85.333h341.333v-128h426.667v682.667h-85.333zM85.333 362.667v469.333h768v-170.667h-256v-298.667h-512zM512 192v85.333h85.333v-85.333h-85.333zM938.667 64h-256v512h256v-512z" />
<glyph unicode="&#xe96a;" glyph-name="mbri-responsive" d="M938.667 746.667v170.667h-938.667v-682.667h597.333v-256h426.667v768h-85.333zM85.333 320v512h768v-85.333h-256v-426.667h-512zM938.667 64h-256v597.333h256v-597.333zM853.333 106.667h-85.333v85.333h85.333v-85.333zM128 618.667h85.333v-85.333h-85.333v85.333z" />
<glyph unicode="&#xe96b;" glyph-name="mbri-right" d="M1024 490.667l-285.867-285.867-59.733 59.733 183.467 183.467h-861.867v85.333h861.867l-183.467 183.467 59.733 59.733 285.867-285.867z" />
<glyph unicode="&#xe96c;" glyph-name="mbri-rocket" d="M725.333 294.4v110.933c0 12.8 21.333 324.267-183.467 529.067l-29.867 25.6-29.867-29.867c-204.8-204.8-183.467-516.267-183.467-524.8v-115.2l-170.667-311.467 76.8-42.667 93.867 170.667v-85.333h170.667v-85.333h85.333v85.333h170.667v89.6l93.867-174.933 76.8 46.933-170.667 311.467zM640 405.333v-298.667h-85.333v170.667h-85.333v-170.667h-85.333v302.933c0 4.267-17.067 256 128 426.667 140.8-170.667 128-426.667 128-430.933zM512 618.667c46.933 0 85.333-38.4 85.333-85.333s-38.4-85.333-85.333-85.333-85.333 38.4-85.333 85.333 38.4 85.333 85.333 85.333z" />
<glyph unicode="&#xe96d;" glyph-name="mbri-sad-face" d="M512 960c-281.6 0-512-230.4-512-512s230.4-512 512-512 512 230.4 512 512-230.4 512-512 512zM512 21.333c-234.667 0-426.667 192-426.667 426.667s192 426.667 426.667 426.667 426.667-192 426.667-426.667-192-426.667-426.667-426.667zM320 448c-34.133 0-64 29.867-64 64s29.867 64 64 64 64-29.867 64-64-29.867-64-64-64zM768 512c0-34.133-29.867-64-64-64s-64 29.867-64 64 29.867 64 64 64 64-29.867 64-64zM362.667 170.667l-59.733 59.733c115.2 115.2 307.2 115.2 422.4 0l-59.733-59.733c-85.333 85.333-221.867 85.333-302.933 0z" />
<glyph unicode="&#xe96e;" glyph-name="mbri-sale" d="M657.067 874.667h-102.4v85.333h-85.333v-85.333h-102.4l-196.267-196.267v-742.4h682.667v742.4l-196.267 196.267zM768 21.333h-512v622.933l145.067 145.067h68.267v-98.133c-25.6-12.8-42.667-42.667-42.667-72.533 0-46.933 38.4-85.333 85.333-85.333s85.333 38.4 85.333 85.333c0 29.867-17.067 59.733-42.667 72.533v98.133h68.267l145.067-145.067v-622.933zM597.333 192h85.333v-85.333h-85.333v85.333zM426.667 362.667h-85.333v85.333h85.333v-85.333zM622.933 448l59.733-59.733-281.6-281.6-59.733 59.733 281.6 281.6z" />
<glyph unicode="&#xe96f;" glyph-name="mbri-save" d="M827.733 960h-827.733v-1024h1024v827.733l-196.267 196.267zM725.333 874.667v-170.667h-426.667v170.667h426.667zM938.667 21.333h-853.333v853.333h128v-256h597.333v238.933l128-128v-708.267zM512 448c-72.533 0-128-55.467-128-128s55.467-128 128-128 128 55.467 128 128-55.467 128-128 128zM512 277.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667 42.667-17.067 42.667-42.667-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe970;" glyph-name="mbri-search" d="M1011.2 8.533l-401.067 401.067c46.933 59.733 72.533 132.267 72.533 209.067 0 187.733-153.6 341.333-341.333 341.333s-341.333-153.6-341.333-341.333 153.6-341.333 341.333-341.333c76.8 0 149.333 25.6 209.067 72.533l401.067-401.067 59.733 59.733zM341.333 362.667c-140.8 0-256 115.2-256 256s115.2 256 256 256 256-115.2 256-256-115.2-256-256-256z" />
<glyph unicode="&#xe971;" glyph-name="mbri-setting-2" d="M810.667 149.333h-42.667v85.333h42.667v725.333h85.333v-725.333h42.667v-85.333h-42.667v-213.333h-85.333v213.333zM469.333-64h85.333v725.333h42.667v85.333h-42.667v213.333h-85.333v-213.333h-42.667v-85.333h42.667v-725.333zM128-64h85.333v213.333h42.667v85.333h-42.667v725.333h-85.333v-725.333h-42.667v-85.333h42.667v-213.333z" />
<glyph unicode="&#xe972;" glyph-name="mbri-setting-3" d="M725.333 405.333c-55.467 0-102.4-34.133-119.467-85.333h-605.867v-85.333h605.867c17.067-51.2 64-85.333 119.467-85.333s102.4 34.133 119.467 85.333h179.2v85.333h-179.2c-17.067 51.2-64 85.333-119.467 85.333zM725.333 234.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667 42.667-17.067 42.667-42.667-17.067-42.667-42.667-42.667zM418.133 661.333c-17.067 51.2-64 85.333-119.467 85.333s-102.4-34.133-119.467-85.333h-179.2v-85.333h179.2c17.067-51.2 64-85.333 119.467-85.333s102.4 34.133 119.467 85.333h605.867v85.333h-605.867zM298.667 576c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667 42.667-17.067 42.667-42.667-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe973;" glyph-name="mbri-setting" d="M1024 328.533v238.933l-123.733 29.867-8.533 21.333 68.267 106.667-170.667 170.667-106.667-68.267-25.6 8.533-25.6 123.733h-238.933l-29.867-123.733-21.333-8.533-106.667 68.267-170.667-170.667 68.267-106.667-8.533-21.333-123.733-29.867v-238.933l123.733-29.867 8.533-21.333-68.267-106.667 170.667-170.667 106.667 68.267 25.6-8.533 25.6-123.733h238.933l29.867 123.733 25.6 8.533 106.667-68.267 170.667 170.667-72.533 106.667 8.533 25.6 123.733 25.6zM849.067 183.467l-72.533-72.533-85.333 55.467-106.667-42.667-21.333-102.4h-102.4l-21.333 98.133-106.667 42.667-85.333-55.467-72.533 72.533 55.467 85.333-42.667 106.667-102.4 25.6v102.4l98.133 21.333 42.667 106.667-55.467 85.333 72.533 72.533 85.333-55.467 106.667 42.667 25.6 102.4h102.4l21.333-98.133 106.667-42.667 85.333 55.467 72.533-72.533-55.467-85.333 42.667-106.667 98.133-21.333v-102.4l-98.133-21.333-42.667-106.667 55.467-89.6zM512 661.333c-119.467 0-213.333-93.867-213.333-213.333s93.867-213.333 213.333-213.333 213.333 93.867 213.333 213.333-93.867 213.333-213.333 213.333zM512 320c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128z" />
<glyph unicode="&#xe974;" glyph-name="mbri-share" d="M0 17.067v132.267c0 281.6 260.267 516.267 597.333 550.4v192l401.067-401.067-401.067-401.067v230.4c-264.533-12.8-426.667-81.067-520.533-192-25.6-38.4-76.8-110.933-76.8-110.933zM682.667 686.933v-68.267h-38.4c-256-12.8-469.333-157.867-533.333-341.333 115.2 81.067 294.4 128 533.333 132.267h42.667v-110.933l196.267 196.267-200.533 192z" />
<glyph unicode="&#xe975;" glyph-name="mbri-shopping-bag" d="M891.733 704h-166.4v42.667c0 119.467-93.867 213.333-213.333 213.333s-213.333-93.867-213.333-213.333v-42.667h-166.4l-51.2-768h857.6l-46.933 768zM384 746.667c0 72.533 55.467 128 128 128s128-55.467 128-128v-42.667h-256v42.667zM174.933 21.333l34.133 597.333h89.6v-85.333h85.333v85.333h256v-85.333h85.333v85.333h89.6l38.4-597.333h-678.4z" />
<glyph unicode="&#xe976;" glyph-name="mbri-shopping-basket" d="M839.68 550.4l-194.56 389.12-61.44-30.72 180.907-358.4h-505.173l180.907 361.813-61.44 30.72-194.56-392.533h-184.32l116.053-614.4h791.893l116.053 614.4h-184.32zM853.333 4.267h-682.667l-88.747 477.867h860.16l-88.747-477.867z" />
<glyph unicode="&#xe977;" glyph-name="mbri-shopping-cart" d="M896 149.333h-674.133l-128 640h-93.867v85.333h162.133l34.133-170.667h785.067l-51.2-384h-657.067l17.067-85.333h605.867v-85.333zM256 405.333h597.333l29.867 213.333h-669.867l42.667-213.333zM341.333 106.667c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333-38.4 85.333-85.333 85.333zM768 106.667c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333-38.4 85.333-85.333 85.333z" />
<glyph unicode="&#xe978;" glyph-name="mbri-sites" d="M1024 192v682.667h-1024v-682.667h384v-85.333h-85.333v-85.333h426.667v85.333h-85.333v85.333h384zM554.667 106.667h-85.333v85.333h85.333v-85.333zM85.333 277.333v512h853.333v-512h-853.333zM512 661.333h341.333v-85.333h-341.333v85.333zM512 490.667h170.667v-85.333h-170.667v85.333zM170.667 405.333h256v256h-256v-256zM256 576h85.333v-85.333h-85.333v85.333z" />
<glyph unicode="&#xe979;" glyph-name="mbri-smile-face" d="M512 960c-281.6 0-512-230.4-512-512s230.4-512 512-512 512 230.4 512 512-230.4 512-512 512zM512 21.333c-234.667 0-426.667 192-426.667 426.667s192 426.667 426.667 426.667 426.667-192 426.667-426.667-192-426.667-426.667-426.667zM661.333 298.667l59.733-59.733c-59.733-59.733-136.533-85.333-209.067-85.333-76.8 0-153.6 29.867-209.067 85.333l59.733 59.733c81.067-85.333 217.6-85.333 298.667 0zM320 448c-34.133 0-64 29.867-64 64s29.867 64 64 64 64-29.867 64-64-29.867-64-64-64zM768 512c0-34.133-29.867-64-64-64s-64 29.867-64 64 29.867 64 64 64 64-29.867 64-64z" />
<glyph unicode="&#xe97a;" glyph-name="mbri-speed" d="M874.667 42.667l-59.733 59.733c166.4 166.4 166.4 435.2 0 601.6-166.4 170.667-439.467 170.667-605.867 4.267s-166.4-439.467 0-605.867l-59.733-59.733c-200.533 200.533-200.533 524.8 0 725.333s524.8 200.533 725.333 0c200.533-200.533 200.533-524.8 0-725.333zM426.667 430.933l281.6-281.6 59.733 59.733-281.6 281.6-59.733-59.733z" />
<glyph unicode="&#xe97b;" glyph-name="mbri-star" d="M827.733-25.6l-315.733 230.4-315.733-230.4 119.467 371.2-315.733 230.4h392.533l119.467 371.2 119.467-371.2h392.533l-315.733-230.4 119.467-371.2zM512 311.467l153.6-110.933-59.733 179.2 153.6 110.933h-187.733l-59.733 179.2-59.733-179.2h-187.733l153.6-110.933-59.733-179.2 153.6 110.933z" />
<glyph unicode="&#xe97c;" glyph-name="mbri-success" d="M384 64l-384 384 59.733 59.733 324.267-324.267 580.267 580.267 59.733-59.733-640-640z" />
<glyph unicode="&#xe97d;" glyph-name="mbri-sun" d="M469.333 106.667h85.333v-170.667h-85.333v170.667zM554.667 960h-85.333v-170.667h85.333v170.667zM170.667 490.667h-170.667v-85.333h170.667v85.333zM853.333 490.667v-85.333h170.667v85.333h-170.667zM721.067 174.933l119.467-119.467 59.733 59.733-119.467 119.467-59.733-59.733zM302.933 721.067l-123.733 119.467-59.733-59.733 119.467-119.467 64 59.733zM119.467 115.2l59.733-59.733 119.467 119.467-59.733 59.733-119.467-119.467zM904.533 780.8l-59.733 59.733-119.467-119.467 59.733-59.733 119.467 119.467zM768 448c0-140.8-115.2-256-256-256s-256 115.2-256 256 115.2 256 256 256 256-115.2 256-256zM682.667 448c0 93.867-76.8 170.667-170.667 170.667s-170.667-76.8-170.667-170.667 76.8-170.667 170.667-170.667 170.667 76.8 170.667 170.667z" />
<glyph unicode="&#xe97e;" glyph-name="mbri-sun2" d="M512 789.333c-187.733 0-341.333-153.6-341.333-341.333s153.6-341.333 341.333-341.333 341.333 153.6 341.333 341.333-153.6 341.333-341.333 341.333zM512 192c-140.8 0-256 115.2-256 256s115.2 256 256 256 256-115.2 256-256-115.2-256-256-256zM554.667 874.667h-85.333v85.333h85.333v-85.333zM469.333 21.333h85.333v-85.333h-85.333v85.333zM0 490.667h85.333v-85.333h-85.333v85.333zM1024 490.667v-85.333h-85.333v85.333h85.333zM179.2 721.067l-59.733 59.733 59.733 59.733 59.733-59.733-59.733-59.733zM844.8 174.933l59.733-59.733-59.733-59.733-59.733 59.733 59.733 59.733zM179.2 174.933l59.733-59.733-59.733-59.733-59.733 59.733 59.733 59.733zM844.8 840.533l59.733-59.733-59.733-59.733-59.733 59.733 59.733 59.733z" />
<glyph unicode="&#xe97f;" glyph-name="mbri-tablet-vertical" d="M896-64h-768v1024h768v-1024zM213.333 21.333h597.333v853.333h-597.333v-853.333zM554.667 192h-85.333v-85.333h85.333v85.333z" />
<glyph unicode="&#xe980;" glyph-name="mbri-tablet" d="M0 64v768h1024v-768h-1024zM85.333 746.667v-597.333h853.333v597.333h-853.333zM256 405.333v85.333h-85.333v-85.333h85.333z" />
<glyph unicode="&#xe981;" glyph-name="mbri-target" d="M1024 490.667h-89.6c-21.333 200.533-179.2 362.667-379.733 379.733v89.6h-85.333v-89.6c-200.533-17.067-362.667-179.2-379.733-379.733h-89.6v-85.333h89.6c21.333-200.533 179.2-362.667 379.733-379.733v-89.6h85.333v89.6c200.533 21.333 362.667 179.2 379.733 379.733h89.6v85.333zM512 106.667c-187.733 0-341.333 153.6-341.333 341.333s153.6 341.333 341.333 341.333 341.333-153.6 341.333-341.333-153.6-341.333-341.333-341.333zM512 661.333c-119.467 0-213.333-93.867-213.333-213.333s93.867-213.333 213.333-213.333 213.333 93.867 213.333 213.333-93.867 213.333-213.333 213.333zM512 320c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128z" />
<glyph unicode="&#xe982;" glyph-name="mbri-timer" d="M840.533 631.467l85.333 85.333-59.733 59.733-85.333-85.333c-64 55.467-140.8 85.333-226.133 93.867v89.6h128v85.333h-341.333v-85.333h128v-89.6c-213.333-21.333-384-200.533-384-422.4 0-234.667 192-426.667 426.667-426.667s426.667 192 426.667 426.667c0 102.4-34.133 196.267-98.133 268.8zM512 21.333c-187.733 0-341.333 153.6-341.333 341.333s153.6 341.333 341.333 341.333 341.333-153.6 341.333-341.333-153.6-341.333-341.333-341.333zM469.333 618.667h85.333v-256h-85.333v256z" />
<glyph unicode="&#xe983;" glyph-name="mbri-to-ftp" d="M1024 149.333v640h-494.933l-170.667 170.667h-358.4v-810.667h469.333v-128h-469.333v-85.333h1024v85.333h-469.333v128h469.333zM85.333 874.667h238.933l170.667-170.667h443.733v-469.333h-853.333v640z" />
<glyph unicode="&#xe984;" glyph-name="mbri-to-local-drive" d="M887.467 789.333h-247.467v-85.333h179.2l115.2-426.667h-844.8l115.2 426.667h179.2v85.333h-247.467l-136.533-512v-341.333h1024v341.333l-136.533 512zM938.667 21.333h-853.333v170.667h853.333v-170.667zM328.533 665.6l140.8-140.8v435.2h85.333v-435.2l140.8 140.8 59.733-59.733-243.2-243.2-243.2 243.2 59.733 59.733z" />
<glyph unicode="&#xe985;" glyph-name="mbri-touch-swipe" d="M900.267 418.133l-260.267 64v221.867c0 72.533-55.467 128-128 128s-128-55.467-128-128v-324.267c-51.2 42.667-128 42.667-179.2-8.533-25.6-25.6-38.4-59.733-38.4-93.867s12.8-68.267 38.4-93.867l247.467-247.467h529.067v375.467c0 51.2-34.133 93.867-81.067 106.667zM896 21.333h-409.6l-221.867 221.867c-8.533 8.533-12.8 21.333-12.8 34.133s4.267 25.6 12.8 34.133c21.333 17.067 51.2 17.067 68.267 0l136.533-136.533v529.067c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-290.133l324.267-81.067c8.533-4.267 17.067-12.8 17.067-21.333v-290.133zM861.867 661.333h-136.533v85.333h136.533l-55.467 55.467 59.733 59.733 157.867-157.867-157.867-157.867-59.733 59.733 55.467 55.467zM217.6 605.867l-59.733-59.733-157.867 157.867 157.867 157.867 59.733-59.733-55.467-55.467h136.533v-85.333h-136.533l55.467-55.467z" />
<glyph unicode="&#xe986;" glyph-name="mbri-touch" d="M298.667 704h-85.333c0 140.8 115.2 256 256 256s256-115.2 256-256h-85.333c0 93.867-76.8 170.667-170.667 170.667s-170.667-76.8-170.667-170.667zM938.667 311.467v-375.467h-529.067l-247.467 247.467c-25.6 25.6-38.4 59.733-38.4 93.867s12.8 68.267 38.4 93.867c51.2 51.2 128 51.2 179.2 8.533v324.267c0 72.533 55.467 128 128 128s128-55.467 128-128v-221.867l260.267-64c46.933-12.8 81.067-55.467 81.067-106.667zM853.333 311.467c0 8.533-8.533 17.067-17.067 21.333l-324.267 81.067v290.133c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-529.067l-136.533 136.533c-17.067 17.067-46.933 17.067-68.267 0-8.533-8.533-12.8-21.333-12.8-34.133s4.267-25.6 12.8-34.133l221.867-221.867h409.6v290.133z" />
<glyph unicode="&#xe987;" glyph-name="mbri-trash" d="M682.667 789.333v170.667h-341.333v-170.667h-256v-85.333h85.333l42.667-768h597.333l42.667 768h85.333v85.333h-256zM426.667 874.667h170.667v-85.333h-170.667v85.333zM729.6 21.333h-435.2l-34.133 682.667h507.733l-38.4-682.667z" />
<glyph unicode="&#xe988;" glyph-name="mbri-underline" d="M853.333 960v-512c0-187.733-153.6-341.333-341.333-341.333s-341.333 153.6-341.333 341.333v512h85.333v-512c0-140.8 115.2-256 256-256s256 115.2 256 256v512h85.333zM170.667-64h682.667v85.333h-682.667v-85.333z" />
<glyph unicode="&#xe989;" glyph-name="mbri-undo" d="M1024 290.133l-85.333-25.6c-21.333 68.267-59.733 136.533-115.2 187.733-170.667 166.4-452.267 166.4-627.2 0-38.4-38.4-68.267-85.333-93.867-132.267h324.267v-85.333h-426.667v426.667h85.333v-209.067c17.067 21.333 34.133 42.667 51.2 59.733 204.8 196.267 541.867 196.267 746.667 0 68.267-59.733 115.2-136.533 140.8-221.867z" />
<glyph unicode="&#xe98a;" glyph-name="mbri-unlink" d="M256 64l-128 128 234.667 234.667-64 64-298.667-298.667 256-256 298.667 298.667-64 64-234.667-234.667zM1024 704l-256 256-298.667-298.667 64-64 234.667 234.667 128-128-234.667-234.667 64-64 298.667 298.667zM426.667 832h-85.333v-128h85.333v128zM128 533.333h128v85.333h-128v-85.333zM597.333 64h85.333v128h-85.333v-128zM896 362.667h-128v-85.333h128v85.333z" />
<glyph unicode="&#xe98b;" glyph-name="mbri-unlock" d="M768 960c-140.8 0-256-115.2-256-256v-170.667h-512v-597.333h682.667v597.333h-85.333v170.667c0 93.867 76.8 170.667 170.667 170.667s170.667-76.8 170.667-170.667v-85.333h85.333v85.333c0 140.8-115.2 256-256 256zM597.333 21.333h-512v426.667h512v-426.667z" />
<glyph unicode="&#xe98c;" glyph-name="mbri-up-down" d="M738.133 281.6l59.733-59.733-285.867-285.867-285.867 285.867 59.733 59.733 183.467-183.467v699.733l-183.467-183.467-59.733 59.733 285.867 285.867 285.867-285.867-59.733-59.733-183.467 183.467v-699.733l183.467 183.467z" />
<glyph unicode="&#xe98d;" glyph-name="mbri-up" d="M226.133 674.133l285.867 285.867 285.867-285.867-59.733-59.733-183.467 183.467v-861.867h-85.333v861.867l-183.467-183.467-59.733 59.733z" />
<glyph unicode="&#xe98e;" glyph-name="mbri-update" d="M725.333 238.933l59.733-59.733c-72.533-72.533-170.667-110.933-273.067-110.933-192 0-354.133 140.8-379.733 328.533l-59.733-59.733-59.733 59.733 157.867 153.6 157.867-157.867-59.733-59.733-46.933 46.933c29.867-132.267 149.333-230.4 290.133-230.4 81.067 0 153.6 29.867 213.333 89.6zM951.467 563.2l-59.733-59.733c-25.6 187.733-187.733 328.533-379.733 328.533-102.4 0-200.533-38.4-273.067-110.933l59.733-59.733c59.733 55.467 132.267 85.333 213.333 85.333 140.8 0 260.267-98.133 290.133-230.4l-46.933 46.933-59.733-59.733 157.867-157.867 157.867 157.867-59.733 59.733z" />
<glyph unicode="&#xe98f;" glyph-name="mbri-upload-2" d="M554.667 21.333h-85.333v477.867l-98.133-98.133-59.733 59.733 200.533 200.533 200.533-200.533-59.733-59.733-98.133 98.133v-477.867zM844.8 661.333c-29.867 145.067-162.133 256-311.467 256-136.533 0-256-89.6-302.933-213.333h-17.067c-119.467 0-213.333-93.867-213.333-213.333s93.867-213.333 213.333-213.333h170.667v85.333h-170.667c-72.533 0-128 55.467-128 128s55.467 128 128 128h85.333l4.267 25.6c21.333 110.933 119.467 187.733 230.4 187.733 123.733 0 226.133-93.867 234.667-217.6v-38.4h64c59.733 0 106.667-46.933 106.667-106.667s-46.933-106.667-106.667-106.667h-192v-85.333h192c106.667 0 192 85.333 192 192 0 102.4-76.8 183.467-179.2 192z" />
<glyph unicode="&#xe990;" glyph-name="mbri-upload" d="M285.867 614.4l-59.733 59.733 285.867 285.867 285.867-285.867-59.733-59.733-183.467 183.467v-691.2h-85.333v691.2l-183.467-183.467zM853.333 106.667v-85.333h-682.667v85.333h-85.333v-170.667h853.333v170.667h-85.333z" />
<glyph unicode="&#xe991;" glyph-name="mbri-user-2" d="M512 960c-281.6 0-512-230.4-512-512s230.4-512 512-512 512 230.4 512 512-230.4 512-512 512zM256 106.667c0 140.8 115.2 256 256 256s256-115.2 256-256c-72.533-55.467-157.867-85.333-256-85.333s-183.467 34.133-256 85.333zM384 576c0 72.533 55.467 128 128 128s128-55.467 128-128-55.467-128-128-128-128 55.467-128 128zM844.8 179.2c-21.333 106.667-93.867 192-192 238.933 42.667 38.4 72.533 93.867 72.533 157.867 0 119.467-93.867 213.333-213.333 213.333s-213.333-93.867-213.333-213.333c0-64 29.867-119.467 72.533-157.867-98.133-46.933-166.4-132.267-192-238.933-59.733 72.533-93.867 166.4-93.867 268.8 0 234.667 192 426.667 426.667 426.667s426.667-192 426.667-426.667c0-102.4-34.133-196.267-93.867-268.8z" />
<glyph unicode="&#xe992;" glyph-name="mbri-user" d="M669.867 503.467c59.733 46.933 98.133 119.467 98.133 200.533 0 140.8-115.2 256-256 256s-256-115.2-256-256c0-81.067 38.4-153.6 98.133-200.533-157.867-64-268.8-217.6-268.8-396.8v-170.667h853.333v170.667c0 179.2-110.933 332.8-268.8 396.8zM341.333 704c0 93.867 76.8 170.667 170.667 170.667s170.667-76.8 170.667-170.667-76.8-170.667-170.667-170.667-170.667 76.8-170.667 170.667zM853.333 21.333h-682.667v85.333c0 187.733 153.6 341.333 341.333 341.333s341.333-153.6 341.333-341.333v-85.333z" />
<glyph unicode="&#xe993;" glyph-name="mbri-users" d="M840.533 460.8c34.133 34.133 55.467 85.333 55.467 136.533 0 106.667-85.333 192-192 192s-192-85.333-192-192c-17.067 12.8-38.4 25.6-59.733 34.133 34.133 34.133 59.733 85.333 59.733 136.533 0 106.667-85.333 192-192 192s-192-85.333-192-192c0-55.467 21.333-102.4 55.467-136.533-106.667-51.2-183.467-162.133-183.467-290.133v-234.667h384v-170.667h640v234.667c0 128-76.8 238.933-183.467 290.133zM704 704c59.733 0 106.667-46.933 106.667-106.667s-46.933-106.667-106.667-106.667-106.667 46.933-106.667 106.667 46.933 106.667 106.667 106.667zM213.333 768c0 59.733 46.933 106.667 106.667 106.667s106.667-46.933 106.667-106.667-46.933-106.667-106.667-106.667-106.667 46.933-106.667 106.667zM85.333 341.333c0 128 106.667 234.667 234.667 234.667 89.6 0 174.933-55.467 213.333-136.533-85.333-51.2-140.8-145.067-149.333-247.467h-298.667v149.333zM938.667 21.333h-469.333v149.333c0 128 106.667 234.667 234.667 234.667s234.667-106.667 234.667-234.667v-149.333z" />
<glyph unicode="&#xe994;" glyph-name="mbri-video-play" d="M0 832v-768h1024v768h-1024zM938.667 149.333h-853.333v597.333h853.333v-597.333zM384 661.333v-426.667l341.333 213.333-341.333 213.333zM469.333 499.2l89.6-51.2-89.6-51.2v102.4z" />
<glyph unicode="&#xe995;" glyph-name="mbri-video" d="M981.333 750.933l-256-213.333v209.067h-682.667v-597.333h682.667v209.067l256-213.333v605.867zM640 234.667h-512v426.667h512v-426.667zM896 324.267l-145.067 123.733 145.067 123.733v-247.467z" />
<glyph unicode="&#xe996;" glyph-name="mbri-watch" d="M469.333 618.667h85.333v-213.333h-170.667v85.333h85.333v128zM853.333 448c0-106.667-51.2-204.8-128-268.8l-51.2-243.2h-324.267l-51.2 243.2c-76.8 64-128 157.867-128 268.8 0 106.667 51.2 204.8 128 268.8l51.2 243.2h324.267l51.2-243.2c76.8-64 128-162.133 128-268.8zM396.8 768c38.4 12.8 76.8 21.333 115.2 21.333s76.8-8.533 115.2-21.333l-21.333 106.667h-187.733l-21.333-106.667zM627.2 128c-38.4-12.8-76.8-21.333-115.2-21.333s-76.8 8.533-115.2 21.333l21.333-106.667h187.733l21.333 106.667zM768 448c0 140.8-115.2 256-256 256s-256-115.2-256-256 115.2-256 256-256 256 115.2 256 256z" />
<glyph unicode="&#xe997;" glyph-name="mbri-website-theme-2" d="M640 576v384h-256v-384l-256-85.333v-554.667h768v554.667l-256 85.333zM810.667 21.333h-341.333v85.333h-85.333v-85.333h-170.667v256h597.333v-256zM810.667 362.667h-597.333v68.267l256 85.333v358.4h85.333v-358.4l256-85.333v-68.267z" />
<glyph unicode="&#xe998;" glyph-name="mbri-website-theme" d="M896-64h-768v640h-128v384h379.733l8.533-29.867c17.067-59.733 64-98.133 123.733-98.133s106.667 38.4 123.733 98.133l8.533 29.867h379.733v-384h-128v-640zM213.333 21.333h597.333v640h128v213.333h-230.4c-34.133-76.8-110.933-128-196.267-128s-162.133 51.2-196.267 128h-230.4v-213.333h128v-640z" />
<glyph unicode="&#xe999;" glyph-name="mbri-wifi" d="M631.467 226.133l-119.467-119.467-119.467 119.467c64 68.267 174.933 68.267 238.933 0zM149.333 469.333l59.733-59.733c166.4 166.4 439.467 166.4 605.867 0l59.733 59.733c-200.533 200.533-524.8 200.533-725.333 0zM268.8 349.867l59.733-59.733c51.2 46.933 115.2 72.533 183.467 72.533s132.267-25.6 179.2-76.8l59.733 59.733c-64 68.267-149.333 102.4-238.933 102.4s-174.933-34.133-243.2-98.133zM512 789.333c-183.467 0-354.133-72.533-482.133-200.533l59.733-59.733c110.933 110.933 264.533 174.933 422.4 174.933s311.467-64 422.4-174.933l59.733 59.733c-128 128-298.667 200.533-482.133 200.533z" />
<glyph unicode="&#xe99a;" glyph-name="mbri-windows" d="M0 785.067v-669.867l1024-140.8v947.2l-1024-136.533zM938.667 490.667h-422.4v277.333l422.4 59.733v-337.067zM430.933 755.2v-264.533h-345.6v217.6l345.6 46.933zM85.333 405.333h345.6v-264.533l-345.6 46.933v217.6zM516.267 128v277.333h422.4v-337.067l-422.4 59.733z" />
<glyph unicode="&#xe99b;" glyph-name="mbri-zoom-in" d="M610.133 409.6c46.933 59.733 72.533 132.267 72.533 209.067 0 187.733-153.6 341.333-341.333 341.333s-341.333-153.6-341.333-341.333 153.6-341.333 341.333-341.333c76.8 0 149.333 25.6 209.067 72.533l401.067-401.067 59.733 59.733-401.067 401.067zM341.333 362.667c-140.8 0-256 115.2-256 256s115.2 256 256 256 256-115.2 256-256-115.2-256-256-256zM384 661.333h128v-85.333h-128v-128h-85.333v128h-128v85.333h128v128h85.333v-128z" />
<glyph unicode="&#xe99c;" glyph-name="mbri-zoom-out" d="M1011.2 8.533l-401.067 401.067c46.933 59.733 72.533 132.267 72.533 209.067 0 187.733-153.6 341.333-341.333 341.333s-341.333-153.6-341.333-341.333 153.6-341.333 341.333-341.333c76.8 0 149.333 25.6 209.067 72.533l401.067-401.067 59.733 59.733zM341.333 362.667c-140.8 0-256 115.2-256 256s115.2 256 256 256 256-115.2 256-256-115.2-256-256-256zM170.667 661.333h341.333v-85.333h-341.333v85.333z" />
</font></defs></svg>

Before

Width:  |  Height:  |  Size: 71 KiB

View File

@ -1,70 +0,0 @@
/*
yt-player. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.arrayIteratorImpl=function(a){var b=0;return function(){return b<a.length?{done:!1,value:a[b++]}:{done:!0}}};$jscomp.arrayIterator=function(a){return{next:$jscomp.arrayIteratorImpl(a)}};$jscomp.makeIterator=function(a){var b="undefined"!=typeof Symbol&&Symbol.iterator&&a[Symbol.iterator];return b?b.call(a):$jscomp.arrayIterator(a)};$jscomp.ASSUME_ES5=!1;$jscomp.ASSUME_NO_NATIVE_MAP=!1;$jscomp.ASSUME_NO_NATIVE_SET=!1;$jscomp.SIMPLE_FROUND_POLYFILL=!1;
$jscomp.objectCreate=$jscomp.ASSUME_ES5||"function"==typeof Object.create?Object.create:function(a){var b=function(){};b.prototype=a;return new b};$jscomp.underscoreProtoCanBeSet=function(){var a={a:!0},b={};try{return b.__proto__=a,b.a}catch(c){}return!1};$jscomp.setPrototypeOf="function"==typeof Object.setPrototypeOf?Object.setPrototypeOf:$jscomp.underscoreProtoCanBeSet()?function(a,b){a.__proto__=b;if(a.__proto__!==b)throw new TypeError(a+" is not extensible");return a}:null;
$jscomp.inherits=function(a,b){a.prototype=$jscomp.objectCreate(b.prototype);a.prototype.constructor=a;if($jscomp.setPrototypeOf){var c=$jscomp.setPrototypeOf;c(a,b)}else for(c in b)if("prototype"!=c)if(Object.defineProperties){var d=Object.getOwnPropertyDescriptor(b,c);d&&Object.defineProperty(a,c,d)}else a[c]=b[c];a.superClass_=b.prototype};$jscomp.getGlobal=function(a){return"undefined"!=typeof window&&window===a?a:"undefined"!=typeof global&&null!=global?global:a};$jscomp.global=$jscomp.getGlobal(this);
$jscomp.defineProperty=$jscomp.ASSUME_ES5||"function"==typeof Object.defineProperties?Object.defineProperty:function(a,b,c){a!=Array.prototype&&a!=Object.prototype&&(a[b]=c.value)};$jscomp.polyfill=function(a,b,c,d){if(b){c=$jscomp.global;a=a.split(".");for(d=0;d<a.length-1;d++){var e=a[d];e in c||(c[e]={});c=c[e]}a=a[a.length-1];d=c[a];b=b(d);b!=d&&null!=b&&$jscomp.defineProperty(c,a,{configurable:!0,writable:!0,value:b})}};$jscomp.FORCE_POLYFILL_PROMISE=!1;
$jscomp.polyfill("Promise",function(a){function b(){this.batch_=null}function c(a){return a instanceof e?a:new e(function(b,c){b(a)})}if(a&&!$jscomp.FORCE_POLYFILL_PROMISE)return a;b.prototype.asyncExecute=function(a){if(null==this.batch_){this.batch_=[];var b=this;this.asyncExecuteFunction(function(){b.executeBatch_()})}this.batch_.push(a)};var d=$jscomp.global.setTimeout;b.prototype.asyncExecuteFunction=function(a){d(a,0)};b.prototype.executeBatch_=function(){for(;this.batch_&&this.batch_.length;){var a=
this.batch_;this.batch_=[];for(var b=0;b<a.length;++b){var c=a[b];a[b]=null;try{c()}catch(l){this.asyncThrow_(l)}}}this.batch_=null};b.prototype.asyncThrow_=function(a){this.asyncExecuteFunction(function(){throw a;})};var e=function(a){this.state_=0;this.result_=void 0;this.onSettledCallbacks_=[];var b=this.createResolveAndReject_();try{a(b.resolve,b.reject)}catch(h){b.reject(h)}};e.prototype.createResolveAndReject_=function(){function a(a){return function(d){c||(c=!0,a.call(b,d))}}var b=this,c=!1;
return{resolve:a(this.resolveTo_),reject:a(this.reject_)}};e.prototype.resolveTo_=function(a){if(a===this)this.reject_(new TypeError("A Promise cannot resolve to itself"));else if(a instanceof e)this.settleSameAsPromise_(a);else{a:switch(typeof a){case "object":var b=null!=a;break a;case "function":b=!0;break a;default:b=!1}b?this.resolveToNonPromiseObj_(a):this.fulfill_(a)}};e.prototype.resolveToNonPromiseObj_=function(a){var b=void 0;try{b=a.then}catch(h){this.reject_(h);return}"function"==typeof b?
this.settleSameAsThenable_(b,a):this.fulfill_(a)};e.prototype.reject_=function(a){this.settle_(2,a)};e.prototype.fulfill_=function(a){this.settle_(1,a)};e.prototype.settle_=function(a,b){if(0!=this.state_)throw Error("Cannot settle("+a+", "+b+"): Promise already settled in state"+this.state_);this.state_=a;this.result_=b;this.executeOnSettledCallbacks_()};e.prototype.executeOnSettledCallbacks_=function(){if(null!=this.onSettledCallbacks_){for(var a=0;a<this.onSettledCallbacks_.length;++a)f.asyncExecute(this.onSettledCallbacks_[a]);
this.onSettledCallbacks_=null}};var f=new b;e.prototype.settleSameAsPromise_=function(a){var b=this.createResolveAndReject_();a.callWhenSettled_(b.resolve,b.reject)};e.prototype.settleSameAsThenable_=function(a,b){var c=this.createResolveAndReject_();try{a.call(b,c.resolve,c.reject)}catch(l){c.reject(l)}};e.prototype.then=function(a,b){function c(a,b){return"function"==typeof a?function(b){try{d(a(b))}catch(m){f(m)}}:b}var d,f,g=new e(function(a,b){d=a;f=b});this.callWhenSettled_(c(a,d),c(b,f));return g};
e.prototype.catch=function(a){return this.then(void 0,a)};e.prototype.callWhenSettled_=function(a,b){function c(){switch(d.state_){case 1:a(d.result_);break;case 2:b(d.result_);break;default:throw Error("Unexpected state: "+d.state_);}}var d=this;null==this.onSettledCallbacks_?f.asyncExecute(c):this.onSettledCallbacks_.push(c)};e.resolve=c;e.reject=function(a){return new e(function(b,c){c(a)})};e.race=function(a){return new e(function(b,d){for(var e=$jscomp.makeIterator(a),f=e.next();!f.done;f=e.next())c(f.value).callWhenSettled_(b,
d)})};e.all=function(a){var b=$jscomp.makeIterator(a),d=b.next();return d.done?c([]):new e(function(a,e){function f(b){return function(c){g[b]=c;h--;0==h&&a(g)}}var g=[],h=0;do g.push(void 0),h++,c(d.value).callWhenSettled_(f(g.length-1),e),d=b.next();while(!d.done)})};return e},"es6","es3");$jscomp.owns=function(a,b){return Object.prototype.hasOwnProperty.call(a,b)};
$jscomp.polyfill("Object.entries",function(a){return a?a:function(a){var b=[],d;for(d in a)$jscomp.owns(a,d)&&b.push([d,a[d]]);return b}},"es8","es3");$jscomp.assign="function"==typeof Object.assign?Object.assign:function(a,b){for(var c=1;c<arguments.length;c++){var d=arguments[c];if(d)for(var e in d)$jscomp.owns(d,e)&&(a[e]=d[e])}return a};$jscomp.polyfill("Object.assign",function(a){return a||$jscomp.assign},"es6","es3");
$jscomp.findInternal=function(a,b,c){a instanceof String&&(a=String(a));for(var d=a.length,e=0;e<d;e++){var f=a[e];if(b.call(c,f,e,a))return{i:e,v:f}}return{i:-1,v:void 0}};$jscomp.polyfill("Array.prototype.find",function(a){return a?a:function(a,c){return $jscomp.findInternal(this,a,c).v}},"es6","es3");$jscomp.SYMBOL_PREFIX="jscomp_symbol_";$jscomp.initSymbol=function(){$jscomp.initSymbol=function(){};$jscomp.global.Symbol||($jscomp.global.Symbol=$jscomp.Symbol)};
$jscomp.SymbolClass=function(a,b){this.$jscomp$symbol$id_=a;$jscomp.defineProperty(this,"description",{configurable:!0,writable:!0,value:b})};$jscomp.SymbolClass.prototype.toString=function(){return this.$jscomp$symbol$id_};$jscomp.Symbol=function(){function a(c){if(this instanceof a)throw new TypeError("Symbol is not a constructor");return new $jscomp.SymbolClass($jscomp.SYMBOL_PREFIX+(c||"")+"_"+b++,c)}var b=0;return a}();
$jscomp.initSymbolIterator=function(){$jscomp.initSymbol();var a=$jscomp.global.Symbol.iterator;a||(a=$jscomp.global.Symbol.iterator=$jscomp.global.Symbol("Symbol.iterator"));"function"!=typeof Array.prototype[a]&&$jscomp.defineProperty(Array.prototype,a,{configurable:!0,writable:!0,value:function(){return $jscomp.iteratorPrototype($jscomp.arrayIteratorImpl(this))}});$jscomp.initSymbolIterator=function(){}};
$jscomp.initSymbolAsyncIterator=function(){$jscomp.initSymbol();var a=$jscomp.global.Symbol.asyncIterator;a||(a=$jscomp.global.Symbol.asyncIterator=$jscomp.global.Symbol("Symbol.asyncIterator"));$jscomp.initSymbolAsyncIterator=function(){}};$jscomp.iteratorPrototype=function(a){$jscomp.initSymbolIterator();a={next:a};a[$jscomp.global.Symbol.iterator]=function(){return this};return a};
$jscomp.iteratorFromArray=function(a,b){$jscomp.initSymbolIterator();a instanceof String&&(a+="");var c=0,d={next:function(){if(c<a.length){var e=c++;return{value:b(e,a[e]),done:!1}}d.next=function(){return{done:!0,value:void 0}};return d.next()}};d[Symbol.iterator]=function(){return d};return d};$jscomp.polyfill("Array.prototype.entries",function(a){return a?a:function(){return $jscomp.iteratorFromArray(this,function(a,c){return[a,c]})}},"es6","es3");
$jscomp.polyfill("Array.from",function(a){return a?a:function(a,c,d){c=null!=c?c:function(a){return a};var b=[],f="undefined"!=typeof Symbol&&Symbol.iterator&&a[Symbol.iterator];if("function"==typeof f){a=f.call(a);for(var g=0;!(f=a.next()).done;)b.push(c.call(d,f.value,g++))}else for(f=a.length,g=0;g<f;g++)b.push(c.call(d,a[g],g));return b}},"es6","es3");$jscomp.polyfill("Object.is",function(a){return a?a:function(a,c){return a===c?0!==a||1/a===1/c:a!==a&&c!==c}},"es6","es3");
$jscomp.polyfill("Array.prototype.includes",function(a){return a?a:function(a,c){var b=this;b instanceof String&&(b=String(b));var e=b.length;c=c||0;for(0>c&&(c=Math.max(c+e,0));c<e;c++){var f=b[c];if(f===a||Object.is(f,a))return!0}return!1}},"es7","es3");
$jscomp.checkStringArgs=function(a,b,c){if(null==a)throw new TypeError("The 'this' value for String.prototype."+c+" must not be null or undefined");if(b instanceof RegExp)throw new TypeError("First argument to String.prototype."+c+" must not be a regular expression");return a+""};$jscomp.polyfill("String.prototype.includes",function(a){return a?a:function(a,c){return-1!==$jscomp.checkStringArgs(this,a,"includes").indexOf(a,c||0)}},"es6","es3");var EventEmitter=function(){this.events={}};
EventEmitter.prototype.on=function(a,b){"object"!==typeof this.events[a]&&(this.events[a]=[]);this.events[a].push(b)};EventEmitter.prototype.removeListener=function(a,b){"object"===typeof this.events[a]&&(b=this.indexOf(this.events[a],b),-1<b&&this.events[a].splice(b,1))};EventEmitter.prototype.emit=function(a){var b,c=[].slice.call(arguments,1);if("object"===typeof this.events[a]){var d=this.events[a].slice();var e=d.length;for(b=0;b<e;b++)d[b].apply(this,c)}};
EventEmitter.prototype.once=function(a,b){this.on(a,function d(){this.removeListener(a,d);b.apply(this,arguments)})};
var loadScript=function(a,b,c){return new Promise(function(d,e){var f=document.createElement("script");f.async=!0;f.src=a;for(var g=$jscomp.makeIterator(Object.entries(b||{})),k=g.next();!k.done;k=g.next()){var h=$jscomp.makeIterator(k.value);k=h.next().value;h=h.next().value;f.setAttribute(k,h)}f.onload=function(){f.onerror=f.onload=null;d(f)};f.onerror=function(){f.onerror=f.onload=null;e(Error("Failed to load "+a))};(c||document.head||document.getElementsByTagName("head")[0]).appendChild(f)})},
YOUTUBE_IFRAME_API_SRC="https://www.youtube.com/iframe_api",YOUTUBE_STATES={"-1":"unstarted",0:"ended",1:"playing",2:"paused",3:"buffering",5:"cued"},YOUTUBE_ERROR={INVALID_PARAM:2,HTML5_ERROR:5,NOT_FOUND:100,UNPLAYABLE_1:101,UNPLAYABLE_2:150},loadIframeAPICallbacks=[],C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0=function(a,b){EventEmitter.call(this);var c=this;a="string"===typeof a?
document.querySelector(a):a;this._id=a.id?a.id:a.id="ytplayer-"+Math.random().toString(16).slice(2,8);this._opts=Object.assign({width:640,height:360,autoplay:!1,captions:void 0,controls:!0,keyboard:!0,fullscreen:!0,annotations:!0,modestBranding:!1,related:!0,timeupdateFrequency:1E3,playsInline:!0,start:0},b);this.videoId=null;this.destroyed=!1;this._api=null;this._autoplay=!1;this._player=null;this._ready=!1;this._queue=[];this.replayInterval=[];this._interval=null;this._startInterval=this._startInterval.bind(this);
this._stopInterval=this._stopInterval.bind(this);this.on("playing",this._startInterval);this.on("unstarted",this._stopInterval);this.on("ended",this._stopInterval);this.on("paused",this._stopInterval);this.on("buffering",this._stopInterval);this._loadIframeAPI(function(a,b){if(a)return c._destroy(Error("YouTube Iframe API failed to load"));c._api=b;c.videoId&&c.load(c.videoId,c._autoplay,c._start)})};
$jscomp.inherits(C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0,EventEmitter);C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.indexOf=function(a,b){for(var c=0,d=a.length,e=-1,f=!1;c<d&&!f;)a[c]===b&&(e=c,f=!0),c++;return e};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.load=function(a,b,c){b=void 0===b?!1:b;c=void 0===c?0:c;this.destroyed||(this._startOptimizeDisplayEvent(),this._optimizeDisplayHandler("center, center"),this.videoId=a,this._autoplay=b,this._start=c,this._api&&(this._player?this._ready&&(b?this._player.loadVideoById(a,c):this._player.cueVideoById(a,c)):this._createPlayer(a)))};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.play=function(){this._ready?this._player.playVideo():this._queueCommand("play")};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.replayFrom=function(a){var b=this;!this.replayInterval.find(function(a){return a.iframeParent===b._player.h.parentNode})&&a&&this.replayInterval.push({iframeParent:this._player.h.parentNode,interval:setInterval(function(){if(b._player.getCurrentTime()>=b._player.getDuration()-Number(a)){b.seek(0);for(var c=$jscomp.makeIterator(b.replayInterval.entries()),
d=c.next();!d.done;d=c.next()){d=$jscomp.makeIterator(d.value);var e=d.next().value;d.next();Object.hasOwnProperty.call(b.replayInterval,e)&&(clearInterval(b.replayInterval[e].interval),b.replayInterval.splice(e,1))}}},1E3*Number(a))})};C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.pause=function(){this._ready?this._player.pauseVideo():this._queueCommand("pause")};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.stop=function(){this._ready?this._player.stopVideo():this._queueCommand("stop")};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.seek=function(a){this._ready?this._player.seekTo(a,!0):this._queueCommand("seek",a)};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._optimizeDisplayHandler=function(a){if(this._player){var b=this._player.h;a=a.split(",");if(b){var c;if(c=b.parentElement){var d=window.getComputedStyle(c);var e=c.clientHeight+parseFloat(d.marginTop,10)+parseFloat(d.marginBottom,10)+parseFloat(d.borderTopWidth,10)+parseFloat(d.borderBottomWidth,10);c=c.clientWidth+parseFloat(d.marginLeft,
10)+parseFloat(d.marginRight,10)+parseFloat(d.borderLeftWidth,10)+parseFloat(d.borderRightWidth,10);e+=80;b.style.width=c+"px";b.style.height=Math.ceil(parseFloat(b.style.width,10)/1.7)+"px";b.style.marginTop=Math.ceil(-((parseFloat(b.style.height,10)-e)/2))+"px";b.style.marginLeft=0;if(d=parseFloat(b.style.height,10)<e)b.style.height=e+"px",b.style.width=Math.ceil(1.7*parseFloat(b.style.height,10))+"px",b.style.marginTop=0,b.style.marginLeft=Math.ceil(-((parseFloat(b.style.width,10)-c)/2))+"px";
for(var f in a)if(a.hasOwnProperty(f))switch(a[f].replace(/ /g,"")){case "top":b.style.marginTop=d?-((parseFloat(b.style.height,10)-e)/2)+"px":0;break;case "bottom":b.style.marginTop=d?0:-(parseFloat(b.style.height,10)-e)+"px";break;case "left":b.style.marginLeft=0;break;case "right":b.style.marginLeft=d?-(parseFloat(b.style.width,10)-c):"0px";break;default:parseFloat(b.style.width,10)>c&&(b.style.marginLeft=-((parseFloat(b.style.width,10)-c)/2)+"px")}}}}};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.stopResize=function(){window.removeEventListener("resize",this._resizeListener);this._resizeListener=null};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.stopReplay=function(a){for(var b=$jscomp.makeIterator(this.replayInterval.entries()),c=b.next();!c.done;c=b.next()){c=$jscomp.makeIterator(c.value);var d=c.next().value;c.next();Object.hasOwnProperty.call(this.replayInterval,d)&&a===this.replayInterval[d].iframeParent&&(clearInterval(this.replayInterval[d].interval),this.replayInterval.splice(d,
1))}};C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.setVolume=function(a){this._ready?this._player.setVolume(a):this._queueCommand("setVolume",a)};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.loadPlaylist=function(){this._ready?this._player.loadPlaylist(this.videoId):this._queueCommand("loadPlaylist",this.videoId)};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.setLoop=function(a){this._ready?this._player.setLoop(a):this._queueCommand("setLoop",a)};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.getVolume=function(){return this._ready&&this._player.getVolume()||0};C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.mute=function(){this._ready?this._player.mute():this._queueCommand("mute")};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.unMute=function(){this._ready?this._player.unMute():this._queueCommand("unMute")};C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.isMuted=function(){return this._ready&&this._player.isMuted()||!1};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.setSize=function(a,b){this._ready?this._player.setSize(a,b):this._queueCommand("setSize",a,b)};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.setPlaybackRate=function(a){this._ready?this._player.setPlaybackRate(a):this._queueCommand("setPlaybackRate",a)};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.setPlaybackQuality=function(a){this._ready?this._player.setPlaybackQuality(a):this._queueCommand("setPlaybackQuality",a)};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.getPlaybackRate=function(){return this._ready&&this._player.getPlaybackRate()||1};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.getAvailablePlaybackRates=function(){return this._ready&&this._player.getAvailablePlaybackRates()||[1]};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.getDuration=function(){return this._ready&&this._player.getDuration()||0};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.getProgress=function(){return this._ready&&this._player.getVideoLoadedFraction()||0};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.getState=function(){return this._ready&&YOUTUBE_STATES[this._player.getPlayerState()]||"unstarted"};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.getCurrentTime=function(){return this._ready&&this._player.getCurrentTime()||0};C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.destroy=function(){this._destroy()};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._destroy=function(a){this.destroyed||(this.destroyed=!0,this._player&&(this._player.stopVideo&&this._player.stopVideo(),this._player.destroy()),this._player=this._api=this._opts=this._id=this.videoId=null,this._ready=!1,this._queue=null,this._stopInterval(),this.removeListener("playing",this._startInterval),this.removeListener("paused",
this._stopInterval),this.removeListener("buffering",this._stopInterval),this.removeListener("unstarted",this._stopInterval),this.removeListener("ended",this._stopInterval),a&&this.emit("error",a))};C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._queueCommand=function(a,b){for(var c=[],d=1;d<arguments.length;++d)c[d-1]=arguments[d];this.destroyed||this._queue.push([a,c])};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._flushQueue=function(){for(;this._queue.length;){var a=this._queue.shift();this[a[0]].apply(this,a[1])}};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._loadIframeAPI=function(a){if(window.YT&&"function"===typeof window.YT.Player)return a(null,window.YT);loadIframeAPICallbacks.push(a);Array.from(document.getElementsByTagName("script")).some(function(a){return a.src===YOUTUBE_IFRAME_API_SRC})||loadScript(YOUTUBE_IFRAME_API_SRC).catch(function(a){for(;loadIframeAPICallbacks.length;)loadIframeAPICallbacks.shift()(a)});
var b=window.onYouTubeIframeAPIReady;window.onYouTubeIframeAPIReady=function(){for("function"===typeof b&&b();loadIframeAPICallbacks.length;)loadIframeAPICallbacks.shift()(null,window.YT)}};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._createPlayer=function(a){var b=this;if(!this.destroyed){var c=this._opts;this._player=new this._api.Player(this._id,{width:c.width,height:c.height,videoId:a,host:c.host,playerVars:{autoplay:c.autoplay?1:0,mute:c.mute?1:0,hl:null!=c.captions&&!1!==c.captions?c.captions:void 0,cc_lang_pref:null!=c.captions&&!1!==c.captions?c.captions:
void 0,controls:c.controls?2:0,enablejsapi:1,allowfullscreen:!0,iv_load_policy:c.annotations?1:3,modestbranding:c.modestBranding?1:0,origin:"*",rel:c.related?1:0,mode:"transparent",showinfo:0,html5:1,version:3,playerapiid:"iframe_YTP_1624972482514"},events:{onReady:function(){return b._onReady(a)},onStateChange:function(a){return b._onStateChange(a)},onPlaybackQualityChange:function(a){return b._onPlaybackQualityChange(a)},onPlaybackRateChange:function(a){return b._onPlaybackRateChange(a)},onError:function(a){return b._onError(a)}}})}};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._onReady=function(a){this.destroyed||(this._ready=!0,this.load(this.videoId,this._autoplay,this._start),this._flushQueue())};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._onStateChange=function(a){if(!this.destroyed){var b=YOUTUBE_STATES[a.data];if(b)["paused","buffering","ended"].includes(b)&&this._onTimeupdate(),this.emit(b),["unstarted","playing","cued"].includes(b)&&this._onTimeupdate();else throw Error("Unrecognized state change: "+a);}};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._onPlaybackQualityChange=function(a){this.destroyed||this.emit("playbackQualityChange",a.data)};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._onPlaybackRateChange=function(a){this.destroyed||this.emit("playbackRateChange",a.data)};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._onError=function(a){if(!this.destroyed&&(a=a.data,a!==YOUTUBE_ERROR.HTML5_ERROR)){if(a===YOUTUBE_ERROR.UNPLAYABLE_1||a===YOUTUBE_ERROR.UNPLAYABLE_2||a===YOUTUBE_ERROR.NOT_FOUND||a===YOUTUBE_ERROR.INVALID_PARAM)return this.emit("unplayable",this.videoId);this._destroy(Error("YouTube Player Error. Unknown error code: "+a))}};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._startOptimizeDisplayEvent=function(){var a=this;this._resizeListener||(this._resizeListener=function(){return a._optimizeDisplayHandler("center, center")},window.addEventListener("resize",this._resizeListener))};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._onTimeupdate=function(){this.emit("timeupdate",this.getCurrentTime())};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._startInterval=function(){var a=this;this._interval=setInterval(function(){return a._onTimeupdate()},this._opts.timeupdateFrequency)};
C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._stopInterval=function(){clearInterval(this._interval);this._interval=null};YouTubePlayer=C_$hudson$workspace$Mobirise_Windows_release_web$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0;

View File

@ -1,20 +0,0 @@
/*
countdown.js v2.6.1 http://countdownjs.org
Copyright (c)2006-2014 Stephen M. McKamey.
Licensed under The MIT License.
*/
var countdown=function(){function z(a,b){var c=a.getTime();a.setMonth(a.getMonth()+b);return Math.round((a.getTime()-c)/864E5)}function v(a){var b=a.getTime(),c=new Date(b);c.setMonth(a.getMonth()+1);return Math.round((c.getTime()-b)/864E5)}function w(a,b){b=b instanceof Date||null!==b&&isFinite(b)?new Date(+b):new Date;if(!a)return b;var c=+a.value||0;if(c)return b.setTime(b.getTime()+c),b;(c=+a.milliseconds||0)&&b.setMilliseconds(b.getMilliseconds()+c);(c=+a.seconds||0)&&b.setSeconds(b.getSeconds()+
c);(c=+a.minutes||0)&&b.setMinutes(b.getMinutes()+c);(c=+a.hours||0)&&b.setHours(b.getHours()+c);(c=+a.weeks||0)&&(c*=7);(c+=+a.days||0)&&b.setDate(b.getDate()+c);(c=+a.months||0)&&b.setMonth(b.getMonth()+c);(c=+a.millennia||0)&&(c*=10);(c+=+a.centuries||0)&&(c*=10);(c+=+a.decades||0)&&(c*=10);(c+=+a.years||0)&&b.setFullYear(b.getFullYear()+c);return b}function C(a,b){return x(a)+(1===a?p[b]:q[b])}function n(){}function k(a,b,c,e,l,d){0<=a[c]&&(b+=a[c],delete a[c]);b/=l;if(1>=b+1)return 0;if(0<=a[e]){a[e]=
+(a[e]+b).toFixed(d);switch(e){case "seconds":if(60!==a.seconds||isNaN(a.minutes))break;a.minutes++;a.seconds=0;case "minutes":if(60!==a.minutes||isNaN(a.hours))break;a.hours++;a.minutes=0;case "hours":if(24!==a.hours||isNaN(a.days))break;a.days++;a.hours=0;case "days":if(7!==a.days||isNaN(a.weeks))break;a.weeks++;a.days=0;case "weeks":if(a.weeks!==v(a.refMonth)/7||isNaN(a.months))break;a.months++;a.weeks=0;case "months":if(12!==a.months||isNaN(a.years))break;a.years++;a.months=0;case "years":if(10!==
a.years||isNaN(a.decades))break;a.decades++;a.years=0;case "decades":if(10!==a.decades||isNaN(a.centuries))break;a.centuries++;a.decades=0;case "centuries":if(10!==a.centuries||isNaN(a.millennia))break;a.millennia++;a.centuries=0}return 0}return b}function A(a,b,c,e,l,d){var f=new Date;a.start=b=b||f;a.end=c=c||f;a.units=e;a.value=c.getTime()-b.getTime();0>a.value&&(f=c,c=b,b=f);a.refMonth=new Date(b.getFullYear(),b.getMonth(),15,12,0,0);try{a.millennia=0;a.centuries=0;a.decades=0;a.years=c.getFullYear()-
b.getFullYear();a.months=c.getMonth()-b.getMonth();a.weeks=0;a.days=c.getDate()-b.getDate();a.hours=c.getHours()-b.getHours();a.minutes=c.getMinutes()-b.getMinutes();a.seconds=c.getSeconds()-b.getSeconds();a.milliseconds=c.getMilliseconds()-b.getMilliseconds();var g;0>a.milliseconds?(g=s(-a.milliseconds/1E3),a.seconds-=g,a.milliseconds+=1E3*g):1E3<=a.milliseconds&&(a.seconds+=m(a.milliseconds/1E3),a.milliseconds%=1E3);0>a.seconds?(g=s(-a.seconds/60),a.minutes-=g,a.seconds+=60*g):60<=a.seconds&&(a.minutes+=
m(a.seconds/60),a.seconds%=60);0>a.minutes?(g=s(-a.minutes/60),a.hours-=g,a.minutes+=60*g):60<=a.minutes&&(a.hours+=m(a.minutes/60),a.minutes%=60);0>a.hours?(g=s(-a.hours/24),a.days-=g,a.hours+=24*g):24<=a.hours&&(a.days+=m(a.hours/24),a.hours%=24);for(;0>a.days;)a.months--,a.days+=z(a.refMonth,1);7<=a.days&&(a.weeks+=m(a.days/7),a.days%=7);0>a.months?(g=s(-a.months/12),a.years-=g,a.months+=12*g):12<=a.months&&(a.years+=m(a.months/12),a.months%=12);10<=a.years&&(a.decades+=m(a.years/10),a.years%=
10,10<=a.decades&&(a.centuries+=m(a.decades/10),a.decades%=10,10<=a.centuries&&(a.millennia+=m(a.centuries/10),a.centuries%=10)));b=0;!(e&1024)||b>=l?(a.centuries+=10*a.millennia,delete a.millennia):a.millennia&&b++;!(e&512)||b>=l?(a.decades+=10*a.centuries,delete a.centuries):a.centuries&&b++;!(e&256)||b>=l?(a.years+=10*a.decades,delete a.decades):a.decades&&b++;!(e&128)||b>=l?(a.months+=12*a.years,delete a.years):a.years&&b++;!(e&64)||b>=l?(a.months&&(a.days+=z(a.refMonth,a.months)),delete a.months,
7<=a.days&&(a.weeks+=m(a.days/7),a.days%=7)):a.months&&b++;!(e&32)||b>=l?(a.days+=7*a.weeks,delete a.weeks):a.weeks&&b++;!(e&16)||b>=l?(a.hours+=24*a.days,delete a.days):a.days&&b++;!(e&8)||b>=l?(a.minutes+=60*a.hours,delete a.hours):a.hours&&b++;!(e&4)||b>=l?(a.seconds+=60*a.minutes,delete a.minutes):a.minutes&&b++;!(e&2)||b>=l?(a.milliseconds+=1E3*a.seconds,delete a.seconds):a.seconds&&b++;if(!(e&1)||b>=l){var h=k(a,0,"milliseconds","seconds",1E3,d);if(h&&(h=k(a,h,"seconds","minutes",60,d))&&(h=
k(a,h,"minutes","hours",60,d))&&(h=k(a,h,"hours","days",24,d))&&(h=k(a,h,"days","weeks",7,d))&&(h=k(a,h,"weeks","months",v(a.refMonth)/7,d))){e=h;var n,p=a.refMonth,q=p.getTime(),r=new Date(q);r.setFullYear(p.getFullYear()+1);n=Math.round((r.getTime()-q)/864E5);if(h=k(a,e,"months","years",n/v(a.refMonth),d))if(h=k(a,h,"years","decades",10,d))if(h=k(a,h,"decades","centuries",10,d))if(h=k(a,h,"centuries","millennia",10,d))throw Error("Fractional unit overflow");}}}finally{delete a.refMonth}return a}
function d(a,b,c,e,d){var f;c=+c||222;e=0<e?e:NaN;d=0<d?20>d?Math.round(d):20:0;var k=null;"function"===typeof a?(f=a,a=null):a instanceof Date||(null!==a&&isFinite(a)?a=new Date(+a):("object"===typeof k&&(k=a),a=null));var g=null;"function"===typeof b?(f=b,b=null):b instanceof Date||(null!==b&&isFinite(b)?b=new Date(+b):("object"===typeof b&&(g=b),b=null));k&&(a=w(k,b));g&&(b=w(g,a));if(!a&&!b)return new n;if(!f)return A(new n,a,b,c,e,d);var k=c&1?1E3/30:c&2?1E3:c&4?6E4:c&8?36E5:c&16?864E5:6048E5,
h,g=function(){f(A(new n,a,b,c,e,d),h)};g();return h=setInterval(g,k)}var s=Math.ceil,m=Math.floor,p,q,r,t,u,f,x,y;n.prototype.toString=function(a){var b=y(this),c=b.length;if(!c)return a?""+a:u;if(1===c)return b[0];a=r+b.pop();return b.join(t)+a};n.prototype.toHTML=function(a,b){a=a||"span";var c=y(this),e=c.length;if(!e)return(b=b||u)?"\x3c"+a+"\x3e"+b+"\x3c/"+a+"\x3e":b;for(var d=0;d<e;d++)c[d]="\x3c"+a+"\x3e"+c[d]+"\x3c/"+a+"\x3e";if(1===e)return c[0];e=r+c.pop();return c.join(t)+e};n.prototype.addTo=
function(a){return w(this,a)};y=function(a){var b=[],c=a.millennia;c&&b.push(f(c,10));(c=a.centuries)&&b.push(f(c,9));(c=a.decades)&&b.push(f(c,8));(c=a.years)&&b.push(f(c,7));(c=a.months)&&b.push(f(c,6));(c=a.weeks)&&b.push(f(c,5));(c=a.days)&&b.push(f(c,4));(c=a.hours)&&b.push(f(c,3));(c=a.minutes)&&b.push(f(c,2));(c=a.seconds)&&b.push(f(c,1));(c=a.milliseconds)&&b.push(f(c,0));return b};d.MILLISECONDS=1;d.SECONDS=2;d.MINUTES=4;d.HOURS=8;d.DAYS=16;d.WEEKS=32;d.MONTHS=64;d.YEARS=128;d.DECADES=256;
d.CENTURIES=512;d.MILLENNIA=1024;d.DEFAULTS=222;d.ALL=2047;var D=d.setFormat=function(a){if(a){if("singular"in a||"plural"in a){var b=a.singular||[];b.split&&(b=b.split("|"));var c=a.plural||[];c.split&&(c=c.split("|"));for(var d=0;10>=d;d++)p[d]=b[d]||p[d],q[d]=c[d]||q[d]}"string"===typeof a.last&&(r=a.last);"string"===typeof a.delim&&(t=a.delim);"string"===typeof a.empty&&(u=a.empty);"function"===typeof a.formatNumber&&(x=a.formatNumber);"function"===typeof a.formatter&&(f=a.formatter)}},B=d.resetFormat=
function(){p=" millisecond; second; minute; hour; day; week; month; year; decade; century; millennium".split(";");q=" milliseconds; seconds; minutes; hours; days; weeks; months; years; decades; centuries; millennia".split(";");r=" and ";t=", ";u="";x=function(a){return a};f=C};d.setLabels=function(a,b,c,d,f,k,m){D({singular:a,plural:b,last:c,delim:d,empty:f,formatNumber:k,formatter:m})};d.resetLabels=B;B();"undefined"!==typeof module&&module.exports?module.exports=d:"undefined"!==typeof window&&("function"===
typeof window.define&&"undefined"!==typeof window.define.amd)&&window.define("countdown",[],function(){return d});return d}();

View File

@ -20,9 +20,9 @@
<title>Clubhaus Schornbach</title>
<link href="{% static 'homepage/new_assets/bootstrap/bootstrap.min.css' %}" rel="stylesheet">
<link href="{% static 'homepage/new_assets/self/custom.css' %}" rel="stylesheet">
<link href="{% static 'homepage/new_assets/bootstrap-icons/bootstrap-icons.css' %}" rel="stylesheet">
<link href="{% static 'homepage/assets/bootstrap/bootstrap.min.css' %}" rel="stylesheet">
<link href="{% static 'homepage/assets/self/custom.css' %}" rel="stylesheet">
<link href="{% static 'homepage/assets/bootstrap-icons/bootstrap-icons.css' %}" rel="stylesheet">
{% block extra_header_block %}{% endblock %}
</head>
@ -54,7 +54,7 @@
</footer>
</div>
<script src="{% static 'homepage/new_assets/bootstrap/bootstrap.min.js' %}"></script>
<script src="{% static 'homepage/assets/bootstrap/bootstrap.min.js' %}"></script>
{% block extra_scripts_block %}{% endblock %}
</body>

View File

@ -5,7 +5,7 @@
{% block extra_header_block %}
<style>
.cus-bg-image {
background-image: url("{% static 'homepage/image01.jpg' %}");
background-image: url("{% static 'homepage/web-party.jpg' %}");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
@ -15,7 +15,7 @@
{% block extra_scripts_block %}
<!-- countdown -->
<script src="{% static 'homepage/new_assets/countdown/countdown.js' %}"></script>
<script src="{% static 'homepage/assets/countdown/countdown.js' %}"></script>
<script>
const timerId =
countdown(
@ -84,6 +84,7 @@
Terminabstimmung
</div>
<div class="card-body">
{% if votes %}
<h5 class="card-title text-start">Aktuelle Ergebnisse</h5>
<!-- results table -->
@ -92,38 +93,30 @@
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">15. August</th>
<th scope="col">7. August</th>
<th scope="col">27. August</th>
<th scope="col">1. September</th>
{% for dateOption in dates %}
<th scope="col">{{ dateOption.date|date:'d. F' }}</th>
{% endfor %}
</tr>
</thead>
<tbody class="table-group-divider">
{% for voter in votes.items %}
<tr>
<td>Marcel</td>
<td><i class="fs-4 text-success bi-check-circle"></i></td>
<td><i class="fs-4 text-success bi-check-circle"></i></td>
<td><i class="fs-4 text-success bi-check-circle"></i></td>
<td>{{ voter.0 }}</td>
{% for date in voter.1.items %}
{% if date.1 %}
<td><i class="fs-4 text-success bi-check-circle"></i></td>
{% else %}
<td><i class="fs-4 text-danger bi-x-circle"></i></td>
{% endif %}
{% endfor %}
</tr>
<tr>
<td>Tim</td>
<td><i class="fs-4 text-success bi-check-circle"></i></td>
<td><i class="fs-4 text-danger bi-x-circle"></i></td>
<td><i class="fs-4 text-success bi-check-circle"></i></td>
<td><i class="fs-4 text-danger bi-x-circle"></i></td>
</tr>
<tr>
<td>Dome</td>
<td><i class="fs-4 text-danger bi-x-circle"></i></td>
<td><i class="fs-4 text-success bi-check-circle"></i></td>
<td><i class="fs-4 text-success bi-check-circle"></i></td>
<td><i class="fs-4 text-danger bi-x-circle"></i></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% else %}
<h1>Es hat noch keiner abgestimmt!</h1>
{% endif %}
<button type="button" class="btn btn-primary float-end" data-bs-toggle="modal"
data-bs-target="#votingModal">
Jetzt abstimmen
@ -174,7 +167,7 @@
aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content text-bg-dark">
<form>
<form method="post" action="{% url 'voting' %}">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Abstimmung</h5>
<button type="button" class="btn-close bg-white" data-bs-dismiss="modal"
@ -184,15 +177,19 @@
{% csrf_token %}
<div class="mb-3">
<label for="nameInput" class="form-label">Name</label>
<input type="text" class="form-control" id="nameInput">
<input type="text" class="form-control" id="nameInput" name="name"
{% if request.session.name %} value="{{ request.session.name }}" {% endif %}>
</div>
{% language 'de' %}
{% for dateOption in dates %}
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
<input class="form-check-input" type="checkbox"
name="{{ dateOption.date.isoformat }}">
<label class="form-check-label" for="flexCheckDefault">
{{ next_event.date|date:'l, d. F H:i' }}
{{ dateOption.date|date:'l, d. F H:i' }}
</label>
</div>
{% endfor %}
{% endlanguage %}
</div>
<div class="modal-footer">

View File

@ -4,7 +4,7 @@
{% block site_name %}Tobacco Card{% endblock %}
{% block extra_scripts_block %}
<script defer src="{% static 'homepage/new_assets/masonry/masonry.pkgd.min.js' %}"></script>
<script defer src="{% static 'homepage/assets/masonry/masonry.pkgd.min.js' %}"></script>
{% endblock %}
{% block main %}

View File

@ -1,11 +1,10 @@
import datetime
import django.utils.timezone
from django.core.cache import cache
from django.http import HttpRequest
from django.http import HttpRequest, HttpResponseRedirect
from django.shortcuts import render
from django.urls import reverse
from .models import Tobacco, ClubhausEvent
from .models import Tobacco, ClubhausEvent, EventDate, EventDateVotes
def index(request: HttpRequest) -> django.http.HttpResponse:
@ -18,28 +17,45 @@ def tobacco(request: HttpRequest) -> django.http.HttpResponse:
def events(request: HttpRequest) -> django.http.HttpResponse:
yesterday = django.utils.timezone.now() - datetime.timedelta(days=1)
next_events = ClubhausEvent.objects.filter(date__gte=yesterday).order_by('-date')
next_event = next_events[0] if next_events else None
return render(request, 'homepage/events.html', {'next_event': next_event})
next_events = ClubhausEvent.objects.filter(active=True).order_by('-id')
if len(next_events) == 1:
next_event = next_events[0]
dates = EventDate.objects.filter(event=next_event).order_by("date")
votes = EventDateVotes.objects.filter(date__event=next_event)
voter_names = sorted(set(map(lambda v: v.name, votes)))
vote_map = {}
for voter_name in voter_names:
vote_map[voter_name] = {date.date.isoformat(): False for date in dates}
for vote in votes:
v_name = vote.name
v_date = vote.date.date.isoformat()
if v_name in vote_map and v_date in vote_map[v_name]:
vote_map[v_name][v_date] = True
return render(request, 'homepage/events.html', {'next_event': next_event, "dates": dates, 'votes': vote_map})
else:
return HttpResponseRedirect(reverse("index"))
def voting(request: HttpRequest) -> django.http.HttpResponse:
request.session.clear_expired()
ip = request.META.get("REMOTE_ADDR")
cache_key = f"voting_block_{ip}"
rate_cache: django.core.cache.BaseCache = cache
if ip not in rate_cache:
rate_cache.add(f"voting_block_{ip}", 0, 15)
rate_cache.incr(f"voting_block_{ip}")
rate_cache.add(cache_key, 0, 3600)
rate_cache.incr(cache_key)
if request.method == "GET":
return render(request, 'homepage/voting.html',
{"ip": ip, "request_count": rate_cache.get(f"voting_block_{ip}"), "session": request.session})
if request.method == "POST" and rate_cache.get(cache_key) < 3:
if name := request.POST["name"]:
request.session["name"] = name
for date in EventDate.objects.filter(event__active=True).order_by("date"):
if date.date.isoformat() in request.POST:
EventDateVotes.objects.update_or_create(name=name, date=date)
else:
EventDateVotes.objects.filter(name=name, date=date).delete()
elif request.method == "POST":
key = request.POST["key"]
value = request.POST["value"]
request.session[key] = value
return render(request, 'homepage/voting.html', {"ip": ip, "session": request.session})
# return HttpResponseRedirect(reverse("index"))
return HttpResponseRedirect(reverse("events"))