diff --git a/.gitignore b/.gitignore index 9491a2f..9d1a5b6 100644 --- a/.gitignore +++ b/.gitignore @@ -360,4 +360,6 @@ MigrationBackup/ .ionide/ # Fody - auto-generated XML schema -FodyWeavers.xsd \ No newline at end of file +FodyWeavers.xsd +/.idea/.idea.decePubClient/.idea +/.idea/config diff --git a/App.razor b/App.razor index 6fd3ed1..81a7df9 100644 --- a/App.razor +++ b/App.razor @@ -1,12 +1,27 @@ - - - - - - - Not found - -

Sorry, there's nothing at this address.

-
-
-
+ + + + + + + @if (context.User.Identity?.IsAuthenticated != true) + { + + } + else + { +

You are not authorized to access this resource.

+ } +
+
+ +
+ + Not found + +

Sorry, there's nothing at this address.

+
+
+
+
+
\ No newline at end of file diff --git a/Components/ActionBar.razor b/Components/ActionBar.razor index c87c6d4..6ec7ff9 100644 --- a/Components/ActionBar.razor +++ b/Components/ActionBar.razor @@ -1,5 +1,106 @@ -

ActionBar

+
+ + @if (isPosting) + { +
+ +
+ } + +
+ + +
+ @if (OnTimelineChanged.HasDelegate) + { +
+ + + + + + @foreach (var timelineType in Enum.GetValues()) + { + + } + + +
+ } + @if (OnTimeSortingChanged.HasDelegate) + { +
+ + + + + + @foreach (var timeSortingType in Enum.GetValues()) + { + + } + + +
+ } +
+
+ + @if (OnMessageSubmit.HasDelegate) + { +
+ +
+ } + else + { +
+ } + +
+ +
@code { - + [CascadingParameter] CascadingState CascadingState { get; set; } + [Parameter] public EventCallback OnMessageSubmit { get; set; } + [Parameter] public EventCallback OnTimelineChanged { get; set; } + [Parameter] public EventCallback OnTimeSortingChanged { get; set; } + [Inject] ILocalStorageService LocalStorage { get; set; } + bool isPosting { get; set; } = false; + ActionBarFilter Filters { get; set; } = new(); + + protected override async Task OnInitializedAsync() + { + var filters = await LocalStorage.GetItemAsync(nameof(ActionBarFilter)); + if (filters == default) + await LocalStorage.SetItemAsync(nameof(ActionBarFilter), Filters); + else + Filters = filters; + } + + void OpenCloseMessageForm() + { + isPosting = !isPosting; + } + async Task OnTimelineChange(TimelineType timelineType) + { + Filters.TimelineType = timelineType; + await LocalStorage.SetItemAsync(nameof(ActionBarFilter), Filters); + await OnTimelineChanged.InvokeAsync(Filters.TimelineType); + } + async Task OnTimeSortChange(TimeSortingType timeSorting) + { + Filters.TimeSortingType = timeSorting; + await LocalStorage.SetItemAsync(nameof(ActionBarFilter), Filters); + await OnTimeSortingChanged.InvokeAsync(Filters.TimeSortingType); + } } \ No newline at end of file diff --git a/Components/Content.razor b/Components/Content.razor new file mode 100644 index 0000000..ccda9e2 --- /dev/null +++ b/Components/Content.razor @@ -0,0 +1,248 @@ +
+ +
+ + + @Message.User.UserName + + +
+ +
+ +
+

+ + + @Message.User.DisplayName + + + @Message.User.UserName + + + + + @Message.CreatedAt.GetPassedTime(CascadingState.Localizer) + + + +

+ @if (Message.Title is { Length: > 0 }) + { +

@Message.Title

+ } + + @if (Message.Content is { Length: > 0 }) + { +
+ @((MarkupString)Message.Content) +
+ } + + @if (Message.Medias.Count != 0) + { +
+ @foreach (var media in Message.Medias) + { + if (media.ContentType.StartsWith("image")) + { + + @media.AltText + + } + else if (media.ContentType.StartsWith("video")) + { + + } + else if (media.ContentType.StartsWith("audio")) + { + + } + else + { +
+ + + +
+

+ @media.FileName +

+

+ @media.ContentType +

+
+ +
+ } + } +
+ } + +
+ +
+
+ @if (OnMessageReply.HasDelegate) + { + + } + @if (OnMessageBoost.HasDelegate) + { + + } + @if (OnMessageFavourite.HasDelegate) + { + + } +
+ +
+ + + + + + @if (OnUserDirectMessage.HasDelegate) + { + + } + @if (OnUserSilence.HasDelegate) + { + + } + @if (OnUserBlock.HasDelegate) + { + + } + @if (@*Message.User.UserName == CurrentUserName &&*@ OnMessageDelete.HasDelegate) + { + + } + + + @if (IncludeExpand) + { + + + + + + } +
+
+ + @if (isAnswering) + { + + } +
+ +
+ +@code { + [CascadingParameter] Task AuthState { get; set; } + [CascadingParameter] CascadingState CascadingState { get; set; } + [Parameter] public Message Message { get; set; } = new(); + [Parameter] public EventCallback OnMessageReply { get; set; } + [Parameter] public EventCallback OnMessageBoost { get; set; } + [Parameter] public EventCallback OnMessageFavourite { get; set; } + [Parameter] public EventCallback OnMessageDelete { get; set; } + [Parameter] public EventCallback OnUserDirectMessage { get; set; } + [Parameter] public EventCallback OnMessageMediaDownload { get; set; } + [Parameter] public EventCallback OnUserBlock { get; set; } + [Parameter] public EventCallback OnUserSilence { get; set; } + [Parameter] public string CssContainer { get; set; } + [Parameter] public bool IncludeExpand { get; set; } = true; + + bool isAnswering { get; set; } = false; + + string CurrentUserName + { + get + { + return AuthState.Result.User.Identity?.Name; + } + } + + async Task DeleteMessage() + { + isAnswering = false; + await OnMessageDelete.InvokeAsync(Message); + } + + async Task SubmitReply(MessageForm messageForm) + { + isAnswering = false; + await OnMessageReply.InvokeAsync(messageForm); + } + + async Task Reply() + { + await Task.Run(() => + { + }); + isAnswering = !isAnswering; + } +} \ No newline at end of file diff --git a/Components/LoadingData.razor b/Components/LoadingData.razor new file mode 100644 index 0000000..daadcb4 --- /dev/null +++ b/Components/LoadingData.razor @@ -0,0 +1,13 @@ +

+ . + . + . + @CascadingState.Localizer["loading"] + . + . + . +

+ +@code { + [CascadingParameter] CascadingState CascadingState { get; set; } +} \ No newline at end of file diff --git a/Components/MessageUpsertForm.razor b/Components/MessageUpsertForm.razor index 16fabcd..72cf9a1 100644 --- a/Components/MessageUpsertForm.razor +++ b/Components/MessageUpsertForm.razor @@ -1,7 +1,430 @@ - - + + + +
+
+ +
+
+ + @(MessageForm.Content?.Length ?? 0)/5000 +
+ @if (showPreviewButton && isPreviewOpen && MessageForm.Content is { Length: > 0 }) + { +
+
+ @switch (MessageForm.ContentType) + { + case ContentType.Markdown: + @((MarkupString)Markdown.ToHtml(MessageForm.Content)) + break; + case ContentType.HTML: +

@((MarkupString)MessageForm.Content)

+ break; + } +
+
+ } +
+ + @contentError +
+
+ +
+ @foreach (var media in MessageForm.Media) + { + switch (MessageForm.MediaType) + { + case MediaType.Images: +
+ @media.AltText +
+
+
+

+ @media.FileName +

+

+ @media.ContentType @media.Size.GetFileSize(CascadingState.Localizer) +

+
+ +
+
+
+ +
+
+
+
+ break; + case MediaType.Video: + case MediaType.Documents: +
+ + + +
+

+ @media.FileName +

+

+ @media.ContentType @media.Size.GetFileSize(CascadingState.Localizer) +

+
+ +
+ break; + case MediaType.Audio: +
+ + + +
+

+ @media.FileName +

+

+ @media.ContentType @media.Size.GetFileSize(CascadingState.Localizer) +

+ +
+ +
+ break; + } + } + +
+ + @if (fileInputErrorMessage is { Length: > 0 }) + { +
+ @((MarkupString)fileInputErrorMessage) +
+ } + +
+
+ + + + + +
+ + + + +
+
+
+ +
+ +
+ +
+
+
+ + @foreach (var mediaType in Enum.GetValues()) + { + + } + +
+ + + +
+
+ +
+
+
+ + @foreach (var contentType in Enum.GetValues()) + { + + } + +
+ + + +
+ +
+
+
+ + @if (showPreviewButton) + { + + } + +
+ +
+ + + +
+ +
+
@code { - + [CascadingParameter] CascadingState CascadingState { get; set; } + [Parameter] public Message AnsweringMessage { get; set; } + [Parameter] public EventCallback OnMessageSubmit { get; set; } + MessageForm MessageForm { get; set; } = new(); + int totalCharacters { get; set; } = 0; + string fileInputErrorMessage { get; set; } + string contentError { get; set; } + string acceptedFilesTypes { get; set; } = ".jpg,.jpeg,.png,.gif"; + bool showPreviewButton { get; set; } = false; + bool isPreviewOpen { get; set; } = false; + + void OpenCloseMessageType() + { + MessageForm.IsScopeOptionsOpen = !MessageForm.IsScopeOptionsOpen; + } + + void UpdateMessageType(MessageType messageType) + { + MessageForm.MessageType = messageType; + MessageForm.IsScopeOptionsOpen = false; + } + + protected override void OnInitialized() + { + if (AnsweringMessage != default) + { + MessageForm.Title = AnsweringMessage.Title; + MessageForm.RootMessageId = AnsweringMessage.RootMessageId ?? AnsweringMessage.MessageId; + } + } + + bool ShouldDisableUpload() + { + switch (MessageForm.MediaType) + { + case MediaType.Images: + return MessageForm.Media.Count == 5; + case MediaType.Video: + case MediaType.Audio: + return MessageForm.Media.Count == 1; + case MediaType.Documents: + return MessageForm.Media.Count == 3; + default: + return true; + } + } + + bool ShouldHaveMultipleUpload() + { + return MessageForm.MediaType is MediaType.Images or MediaType.Documents; + } + + async Task OnFileChange(InputFileChangeEventArgs eventArgs) + { + try + { + fileInputErrorMessage = string.Empty; + var maximumFileCount = MessageForm.MediaType switch + { + MediaType.Images => 5, + MediaType.Audio => 1, + MediaType.Video => 1, + MediaType.Documents => 3 + }; + if (eventArgs.FileCount > maximumFileCount) + { + fileInputErrorMessage = string.Format(CascadingState.Localizer["The maximum number of files accepted is {0}, but {1} were supplied."], maximumFileCount, eventArgs.FileCount); + return; + } + if (eventArgs.FileCount + MessageForm.Media.Count > maximumFileCount) + { + fileInputErrorMessage = string.Format(CascadingState.Localizer["The maximum number of files accepted is {0}, but {1} were supplied."], maximumFileCount, $"{MessageForm.Media.Count}+{eventArgs.FileCount}"); + return; + } + var maxAllowedSize = MessageForm.MediaType switch + { + MediaType.Images => 3_145_728, + MediaType.Audio => 5_242_880, + MediaType.Video => 20_971_520, + MediaType.Documents => 3_145_728 + }; + var uploadMedia = default(UploadMedia); + using (var memStream = new MemoryStream()) + foreach (var file in eventArgs.GetMultipleFiles(maximumFileCount)) + { + if (file.Name == default || file.ContentType == default) continue; + if (MessageForm.Media.Any(m => m.FileName == file.Name)) continue; + if (file.Size > maxAllowedSize) + { + fileInputErrorMessage += string.Format(CascadingState.Localizer["Supplied file \"{0}\" with size {1:N0}MBs exceeds the maximum of {2:N0}MBs."], file.Name, file.Size / 1_048_576, maxAllowedSize / 1_048_576) + "
"; + continue; + } + + uploadMedia = new() + { + FileName = file.Name, + ContentType = file.ContentType, + Size = file.Size + }; + try + { + using (var imgStream = file.OpenReadStream(maxAllowedSize)) + { + await imgStream.CopyToAsync(memStream); + memStream.Position = 0; + uploadMedia.Blob = memStream.ToArray(); + await memStream.FlushAsync(); + } + } + catch (IOException e) + { + fileInputErrorMessage = e.Message; + continue; + } + catch (Exception e) + { + fileInputErrorMessage = e.Message; + continue; + } + if (MessageForm.MediaType is MediaType.Images or MediaType.Audio) + uploadMedia.Base64Preview = $"data:{uploadMedia.ContentType};base64,{Convert.ToBase64String(uploadMedia.Blob)}"; + + MessageForm.Media.Add(uploadMedia); + } + } + catch (Exception e) + { + fileInputErrorMessage = e.Message; + } + } + + void RemoveFile(UploadMedia media) + { + MessageForm.Media.Remove(media); + } + + void OnTitleChanged(string value) + { + MessageForm.Title = value; + } + + void ContentLengthChanged() + { + totalCharacters = MessageForm.Content?.Length ?? 0; + StateHasChanged(); + } + + void OnContentTypeChanged(ContentType contentType) + { + MessageForm.ContentType = contentType; + showPreviewButton = contentType is ContentType.Markdown or ContentType.HTML; + } + + void OnMediaTypeChanged(MediaType mediaType) + { + MessageForm.MediaType = mediaType; + acceptedFilesTypes = mediaType switch + { + MediaType.Images => ".jpg,.jpeg,.png,.gif", + MediaType.Video => ".webm,.mp4,.m4v", + MediaType.Audio => ".mp3,.wav,.flac,.m4a", + MediaType.Documents => ".xlsx,.csv,.ppt,.odt", + _ => default + }; + } + + void OnOpenClosePreview() + { + isPreviewOpen = !isPreviewOpen; + } + + async Task OnValidSubmit() + { + contentError = default; + if ((MessageForm.Content is { Length: 0 } && MessageForm.Media.Count == 0)) + { + contentError = CascadingState.Localizer["Missing content, either message or media"]; + return; + } + + await OnMessageSubmit.InvokeAsync(MessageForm); + } } \ No newline at end of file diff --git a/Components/OpenDownContainer.razor b/Components/OpenDownContainer.razor new file mode 100644 index 0000000..99d22c8 --- /dev/null +++ b/Components/OpenDownContainer.razor @@ -0,0 +1,36 @@ +
+ +
+ @TitleChildren + +
+ +
+ @InnerContent +
+ +
+ +@code { + [Parameter] public RenderFragment TitleChildren { get; set; } + [Parameter] public RenderFragment InnerContent { get; set; } + [Parameter] public bool HasInnerContent { get; set; } = true; + [Parameter] public string InnerContentContainerCss { get; set; } = "block w-auto ml-5 md:ml-10 rounded-lg neomorph is-nxsmall"; + + [Parameter] + public bool IsOpen { get; set; } = false; + string Hidden { get; set; } = VConstants.HideClass; + string ButtonCss => $"{(HasInnerContent ? default : "cursor-not-allowed")} neoBtnSmall"; + string LeftIconCss => IsOpen ? "ion-md-arrow-dropup" : "ion-md-arrow-dropdown"; + + void OpenCloseInnerContent() + { + IsOpen = !IsOpen; + Hidden = IsOpen ? default : VConstants.HideClass; + } +} \ No newline at end of file diff --git a/Extensions/GenericExtensions.cs b/Extensions/GenericExtensions.cs index 2f5e425..7a4be63 100644 --- a/Extensions/GenericExtensions.cs +++ b/Extensions/GenericExtensions.cs @@ -1,6 +1,187 @@ -namespace decePubClient.Extensions; +using System.Collections.Specialized; +using System.ComponentModel; +using System.Globalization; +using System.Reflection; +using System.Web; -public class GenericExtensions +using Blazored.LocalStorage; + +using decePubClient.Models; +using decePubClient.Models.Types; +using decePubClient.Resources; +using decePubClient.Services; + +using DnetIndexedDb; +using DnetIndexedDb.Fluent; +using DnetIndexedDb.Models; + +using Markdig; + +using Microsoft.AspNetCore.Components; +using Microsoft.AspNetCore.Components.WebAssembly.Hosting; +using Microsoft.Extensions.Localization; + +namespace decePubClient.Extensions; + +public static class GenericExtensions { - + public static NameValueCollection QueryString(this NavigationManager navigationManager) => + HttpUtility.ParseQueryString(new Uri(navigationManager.Uri).Query); + + public static string QueryString(this NavigationManager navigationManager, string key) => + navigationManager.QueryString()[key]; + + public static T QueryString(this NavigationManager navigationManager, string key) + { + var value = navigationManager.QueryString()[key]; + var converter = TypeDescriptor.GetConverter(typeof(T)); + if (converter.IsValid(value)) + return (T)Convert.ChangeType(value, typeof(T)); + else + return default; + } + + public static async Task SetDefaultCulture(this WebAssemblyHost host) + { + var storage = host.Services.GetRequiredService(); + var language = await storage.GetItemAsync("languageCode"); + if (language is { Length: 0 }) + await storage.SetItemAsync("languageCode", language); + + var culture = new CultureInfo(language ??= "en-GB"); + CultureInfo.DefaultThreadCurrentCulture = culture; + CultureInfo.DefaultThreadCurrentUICulture = culture; + } + + public static IServiceCollection AddIndexedDb(this IServiceCollection services) + { + return services.AddIndexedDbDatabase(options => + { + var model = new IndexedDbDatabaseModel() + .WithName("data") + .WithVersion(1) + .WithModelId(1); + + model.AddStore(nameof(Message)) + .WithKey(nameof(Message.MessageId)) + .AddUniqueIndex(nameof(Message.MessageId)) + .AddIndex(nameof(Message.RootMessageId)) + .AddIndex(nameof(Message.User)) + .AddIndex(nameof(Message.MessageType)) + .AddIndex(nameof(Message.Title)) + .AddIndex(nameof(Message.Content)) + .AddIndex(nameof(Message.CreatedAt)) + .AddIndex(nameof(Message.Medias)); + + options.UseDatabase(model); + }); + } + + public static string GetPassedTime(this DateTime dateTime, IStringLocalizer localizer) + { + var timeframe = DateTime.Now - dateTime.ToLocalTime(); + switch ((int)timeframe.TotalHours) + { + case >= 24: + return string.Format(localizer["{0}d"], (int)timeframe.TotalDays); + case >= 1 and < 24: + return string.Format(localizer["{0}h"], (int)timeframe.TotalHours); + case 0: + return string.Format(localizer["{0}m"], (int)timeframe.TotalMinutes); + default: + return default; + } + } + + public static string GetFileSize(this long size, IStringLocalizer localizer) + { + switch (size) + { + case >= 1_048_576: + return string.Format(localizer["{0:N0}MB"], size / 1_048_576); + case < 1_048_576: + return string.Format(localizer["{0}KB"], size / 1_024); + default: + return default; + } + } + + public static string ParseContent(this string content, ContentType contentType) + { + switch (contentType) + { + case ContentType.PlainText: + return content; + case ContentType.HTML: + return ((MarkupString)content).Value; + case ContentType.Markdown: + return Markdown.ToHtml(content); + default: + return default; + } + } + + public static string GetMessageTypeIcon(this MessageType messageType) + { + switch (messageType) + { + case MessageType.Public: + return "ion-md-globe"; + case MessageType.Unlisted: + return "ion-md-unlock"; + case MessageType.FollowersOnly: + return "ion-md-lock"; + case MessageType.Direct: + return "ion-md-paper-plane"; + default: + return default; + } + } + + public static string GetTimelineTypeIcon(this TimelineType timelineType) + { + switch (timelineType) + { + case TimelineType.Home: + return "ion-md-home"; + case TimelineType.Local: + return "ion-md-people"; + case TimelineType.Federation: + return "ion-md-globe"; + default: + return default; + } + } + + public static string GetContentTypeIcon(this ContentType contentType) + { + switch (contentType) + { + case ContentType.PlainText: + return "ion-md-quote"; + case ContentType.HTML: + return "ion-logo-html5"; + case ContentType.Markdown: + return "ion-logo-markdown"; + default: + return default; + } + } + + public static string GetMediaTypeIcon(this MediaType mediaType) + { + switch (mediaType) + { + case MediaType.Images: + return "ion-md-images"; + case MediaType.Video: + return "ion-md-videocam"; + case MediaType.Documents: + return "ion-md-document"; + case MediaType.Audio: + return "ion-md-volume-high"; + default: + return default; + } + } } \ No newline at end of file diff --git a/Helpers/Faker.cs b/Helpers/Faker.cs index 5f28270..c732481 100644 --- a/Helpers/Faker.cs +++ b/Helpers/Faker.cs @@ -1 +1,34 @@ - \ No newline at end of file +using decePubClient.Models; + +namespace decePubClient.Helpers; + +public static class Faker +{ + static IReadOnlyList Users => new List + { + new(), + new() + { + UserId = "7b5703dc-aee8-46b1-aed2-cd06021a1c0c", + DisplayName = "loweel", + UserName = "@loweel@bbs.keinpfusch.net", + PictureUrl = "https://bbs.keinpfusch.net/media/4729611f9aaef76399600ba2f117e5da609e5bf46dd7d502dae3e7b9fdc5cc78.WBMX2L9V1D00", + BackgroundUrl = "https://bbs.keinpfusch.net/media/6e283b943ca297629cb35b7fdfc790907dfd24b6303518e10992b2b5a6658947.3EUB6O4OMR2X", + ProfileUrl = "https://letsrulethe.world/users/AG6rE2nRya826QEJFY" + }, + new() + { + UserId = "bc9c2a2b-fc5f-42fc-b907-ac30203eed45", + DisplayName = "Valentina Nappi", + UserName = "@valentina.nappi@mastodon.uno", + PictureUrl = "https://cdn.masto.host/mastodonuno/cache/accounts/avatars/106/816/797/491/758/442/original/2b2995b82af966fb.jpg", + BackgroundUrl = "https://cdn.masto.host/mastodonuno/cache/accounts/headers/106/816/797/491/758/442/original/898aedf6cd3a2da3.jpeg", + ProfileUrl = "https://mastodon.uno/web/@valenappi@beta.birdsite.live" + } + }; + + public static MessageUser GetRandomUser() + { + return Users[Random.Shared.Next(0, Users.Count)]; + } +} \ No newline at end of file diff --git a/Helpers/SUtility.cs b/Helpers/SUtility.cs index ca22d20..40aaf7b 100644 --- a/Helpers/SUtility.cs +++ b/Helpers/SUtility.cs @@ -1,10 +1,6 @@ -using collAnon.Shared; -using System; -using System.IO; -using System.Net.Mail; -using System.Text.Json; +using System.Net.Mail; -namespace collAnon.Client.Helpers +namespace decePubClient.Helpers { public static class SUtility { @@ -27,12 +23,6 @@ namespace collAnon.Client.Helpers return !(end < now && now < start); } - public static bool CacheHasExpired(long? lastTimeCacheTimeTicks) - { - if (!lastTimeCacheTimeTicks.HasValue) return true; - return (DateTime.Now.Ticks - lastTimeCacheTimeTicks.Value) > VConstants.CacheExpirationPeriod.Ticks; - } - public static string GetFileIcon(string fileName) { switch (Path.GetExtension(fileName)) @@ -62,21 +52,6 @@ namespace collAnon.Client.Helpers } } - public static string GetMissingMimeType(string fileName) - { - switch (Path.GetExtension(fileName)) - { - case ".docx": - return "application/vnd.openxmlformats-officedocument.wordprocessingml.document"; - - case ".xlsx": - return "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"; - - default: - return string.Empty; - } - } - public static bool IsValidEmail(string email) { try @@ -89,18 +64,5 @@ namespace collAnon.Client.Helpers return false; } } - - public static string GetQrCodeBase64(string base64String) => $"data:image/png;base64,{base64String}"; - - public static int GetRand() - { - var random = new Random(DateTime.Now.Millisecond); - return random.Next(0, random.Next(10, 1000)); - } - - public static T Deserialize(string value) - { - return JsonSerializer.Deserialize(value, new JsonSerializerOptions { PropertyNamingPolicy = JsonNamingPolicy.CamelCase }); - } } } \ No newline at end of file diff --git a/LayerComponents/CascadingState.razor b/LayerComponents/CascadingState.razor index 8c92004..1a0a8bb 100644 --- a/LayerComponents/CascadingState.razor +++ b/LayerComponents/CascadingState.razor @@ -1,5 +1,179 @@ -

CascadingState

+@if (PublicCacheData != null) +{ + if (PublicCacheData.ThemeIsDarkMode) + { + + + } + else + { + + + } +} + + + + @ChildContent + @code { - + [Parameter] public RenderFragment ChildContent { get; set; } + [Inject] public IStringLocalizer Localizer { get; set; } + [Inject] IStorage DbStorage { get; set; } + [Inject] ILocalStorageService Storage { get; set; } + [Inject] IJSRuntime JS { get; set; } + // [Inject] DataService DataService { get; set; } + [Inject] public AppStatusService Status { get; set; } + [Inject] ILogger Logger { get; set; } + + public bool IsOnline { get; set; } = true; + Timer IsOnlineTimer { get; set; } + public PublicCacheData PublicCacheData { get; set; } + public User User { get; set; } + + DotNetObjectReference cascadingStateReference; + + protected override async Task OnInitializedAsync() + { + try + { + IsOnlineTimer = new Timer(async _ => await UpdateIsOnline(), new AutoResetEvent(false), 0, 10000); + cascadingStateReference = DotNetObjectReference.Create(this); + await JS.InvokeVoidAsync("cascadingStateInstanceReference", cascadingStateReference); + PublicCacheData = await Storage.GetItemAsync(nameof(PublicCacheData)); + if (PublicCacheData == null) + { + PublicCacheData = new(); + await UpdatePublicCache(PublicCacheData); + } + + User = new(); + } + catch (Exception ex) + { + Logger.LogError(ex, $"{nameof(CascadingState)}.{nameof(OnInitializedAsync)}"); + } + } + + public async ValueTask UpdatePublicCache(PublicCacheData publicCacheData) + { + try + { + PublicCacheData = publicCacheData; + await Storage.SetItemAsync(nameof(PublicCacheData), PublicCacheData); + StateHasChanged(); + } + catch (Exception ex) + { + Console.WriteLine($"{nameof(CascadingState)}.{nameof(UpdatePublicCache)}"); + Console.WriteLine(ex.ToString()); + } + } + + [JSInvokable] + public async Task LogFromJs(string message, string where) + { + try + { + await ProcessError(new(message), where); + } + catch (Exception ex) + { + Logger.LogError(ex, $"{nameof(CascadingState)}.{nameof(LogFromJs)}"); + } + } + + async Task UpdateIsOnline() + { + try + { + var latestOnlineState = await Status.IsOnline(); + + //var latestOnlineState = Random.Shared.Next() % 2 == 0; + if (latestOnlineState != IsOnline) + { + IsOnline = latestOnlineState; + StateHasChanged(); + } + // else + // { + // var pingIsOnline = await DataService.Ping(); + // if (pingIsOnline != IsOnline) + // { + // IsOnline = pingIsOnline; + // StateHasChanged(); + // } + // } + } + catch (Exception ex) + { + Logger.LogError(ex, $"{nameof(CascadingState)}.{nameof(UpdateIsOnline)}"); + } + } + + public async ValueTask ProcessError(Exception ex, string where) + { + try + { + await DbStorage.AddLog(ex, where); + Logger.LogError(ex, where); + await Task.Run(() => { + }); + } + catch (Exception exception) + { + Logger.LogError(exception, $"{nameof(CascadingState)}.{nameof(ProcessError)}"); + } + } + + public async ValueTask ProcessWarning(string message, string where) + { + try + { + await DbStorage.AddLog(message, where); + Logger.LogWarning("{where} - {message}", where, message); + await Task.Run(() => { + }); + } + catch (Exception exception) + { + Logger.LogError(exception, $"{nameof(CascadingState)}.{nameof(ProcessWarning)}"); + } + } } \ No newline at end of file diff --git a/LayerComponents/PagesBase.cs b/LayerComponents/PagesBase.cs new file mode 100644 index 0000000..df06113 --- /dev/null +++ b/LayerComponents/PagesBase.cs @@ -0,0 +1,9 @@ +using Microsoft.AspNetCore.Components; + +namespace decePubClient.LayerComponents +{ + public class PagesBase : ComponentBase + { + public bool IsLoading { get; set; } = true; + } +} diff --git a/Models/ActionBarFilter.cs b/Models/ActionBarFilter.cs index f28fa55..cee60c3 100644 --- a/Models/ActionBarFilter.cs +++ b/Models/ActionBarFilter.cs @@ -1,6 +1,9 @@ -namespace decePubClient.Models; +using decePubClient.Models.Types; + +namespace decePubClient.Models; public class ActionBarFilter { - + public TimelineType TimelineType { get; set; } = TimelineType.Home; + public TimeSortingType TimeSortingType { get; set; } = TimeSortingType.Ascending; } \ No newline at end of file diff --git a/Models/Media.cs b/Models/Media.cs new file mode 100644 index 0000000..e3dfd19 --- /dev/null +++ b/Models/Media.cs @@ -0,0 +1,11 @@ +namespace decePubClient.Models +{ + public class Media + { + public string FileName { get; set; } + public string Url { get; set; } + public string ContentType { get; set; } + public string AltText { get; set; } + public byte[] Blob { get; set; } //TODO TEMPORARY + } +} diff --git a/Models/Mention.cs b/Models/Mention.cs new file mode 100644 index 0000000..6f30756 --- /dev/null +++ b/Models/Mention.cs @@ -0,0 +1,10 @@ +namespace decePubClient.Models +{ + public class Mention + { + public string DisplayName { get; set; } + public string UserName { get; set; } + public string UserId { get; set; } + public string ProfileUrl { get; set; } + } +} diff --git a/Models/Message.cs b/Models/Message.cs new file mode 100644 index 0000000..895582b --- /dev/null +++ b/Models/Message.cs @@ -0,0 +1,23 @@ +using System.ComponentModel; +using System.Text.Json.Serialization; +using decePubClient.Models.Types; + +namespace decePubClient.Models +{ + public class Message + { + public MessageUser User { get; set; } = new(); + public MessageType MessageType { get; set; } = MessageType.Public; + public string RootMessageId { get; set; } + public string MessageId { get; set; } + public string Title { get; set; } + public string Content { get; set; } + public bool IsFavourite { get; set; } = false; + public bool IsBoosted { get; set; } = false; + public List Medias { get; set; } = new(); + public DateTime CreatedAt { get; set; } + + [Bindable(false), JsonIgnore] + public bool IsOptionsOpen { get; set; } = false; + } +} diff --git a/Models/MessageForm.cs b/Models/MessageForm.cs index b21874a..f71a11d 100644 --- a/Models/MessageForm.cs +++ b/Models/MessageForm.cs @@ -1,6 +1,28 @@ -namespace decePubClient.Models; +using System.ComponentModel; +using System.ComponentModel.DataAnnotations; +using System.Text.Json.Serialization; + +using decePubClient.Models.Types; +using decePubClient.Resources; + +namespace decePubClient.Models; public class MessageForm { - + public string RootMessageId { get; set; } + + [Required(ErrorMessageResourceName = ValidationNames.Required, ErrorMessageResourceType = typeof(ErrorMessages))] + public MessageType MessageType { get; set; } = MessageType.Public; + [Required(ErrorMessageResourceName = ValidationNames.Required, ErrorMessageResourceType = typeof(ErrorMessages))] + public ContentType ContentType { get; set; } = ContentType.PlainText; + [StringLength(64, ErrorMessageResourceName = ValidationNames.MaxLength, ErrorMessageResourceType = typeof(ErrorMessages))] + public string Title { get; set; } + [StringLength(5_000, ErrorMessageResourceName = ValidationNames.MaxLength, ErrorMessageResourceType = typeof(ErrorMessages))] + public string Content { get; set; } + public List Media { get; set; } = new(); + + [JsonIgnore, Bindable(false)] + public MediaType MediaType { get; set; } = MediaType.Images; + [JsonIgnore, Bindable(false)] + public bool IsScopeOptionsOpen { get; set; } = false; } \ No newline at end of file diff --git a/Models/MessageUser.cs b/Models/MessageUser.cs new file mode 100644 index 0000000..9bb1eb1 --- /dev/null +++ b/Models/MessageUser.cs @@ -0,0 +1,12 @@ +namespace decePubClient.Models +{ + public class MessageUser + { + public string UserId { get; set; } = "45f14fa8-c40f-4121-997c-ef2542196a50"; + public string UserName { get; set; } = "@loosy@letsrulethe.world"; + public string DisplayName { get; set; } = "loosy"; + public string PictureUrl { get; set; } = "https://letsrulethe.world/media/c22d7a6dfcce11e4d2d8d4f6298842a36751b0a179dc5333d24663e4b93793b4.jpg"; + public string BackgroundUrl { get; set; } = "https://letsrulethe.world/media/717cc7f5a090cfbe77be46941060b9a54454c351c74ff2f056363e002c8e2c3f.png"; + public string ProfileUrl { get; set; } = "https://letsrulethe.world/users/loosy"; + } +} diff --git a/Models/SettingsOptions.cs b/Models/SettingsOptions.cs new file mode 100644 index 0000000..22cbc8d --- /dev/null +++ b/Models/SettingsOptions.cs @@ -0,0 +1,7 @@ +namespace decePubClient.Models +{ + public class SettingsOptions + { + public bool IsOpen { get; set; } + } +} diff --git a/Models/Types/ContentType.cs b/Models/Types/ContentType.cs index 944d33a..b7cce15 100644 --- a/Models/Types/ContentType.cs +++ b/Models/Types/ContentType.cs @@ -1,6 +1,8 @@ namespace decePubClient.Models.Types; -public class ContentType +public enum ContentType { - + PlainText, + HTML, + Markdown } \ No newline at end of file diff --git a/Models/Types/MessageType.cs b/Models/Types/MessageType.cs new file mode 100644 index 0000000..2b0e680 --- /dev/null +++ b/Models/Types/MessageType.cs @@ -0,0 +1,10 @@ +namespace decePubClient.Models.Types +{ + public enum MessageType + { + Direct, + FollowersOnly, + Unlisted, + Public + } +} diff --git a/Models/Types/TimeSortingType.cs b/Models/Types/TimeSortingType.cs index 6a51fa4..2bcc9b1 100644 --- a/Models/Types/TimeSortingType.cs +++ b/Models/Types/TimeSortingType.cs @@ -1,3 +1,7 @@ namespace decePubClient.Models.Types; -public enum TimeSortingType { } \ No newline at end of file +public enum TimeSortingType +{ + Ascending, + Descending +} \ No newline at end of file diff --git a/Models/UploadMedia.cs b/Models/UploadMedia.cs index c14d38f..f9503b6 100644 --- a/Models/UploadMedia.cs +++ b/Models/UploadMedia.cs @@ -1,6 +1,16 @@ -namespace decePubClient.Models; +using System.ComponentModel; +using System.Text.Json.Serialization; + +namespace decePubClient.Models; public class UploadMedia { - + public string ContentType { get; set; } + public string FileName { get; set; } + public string AltText { get; set; } + public byte[] Blob { get; set; } + public string Base64Preview { get; set; } + + [JsonIgnore, Bindable(false)] + public long Size { get; set; } } \ No newline at end of file diff --git a/Models/User.cs b/Models/User.cs new file mode 100644 index 0000000..df7d638 --- /dev/null +++ b/Models/User.cs @@ -0,0 +1,21 @@ +namespace decePubClient.Models +{ + public class User + { + public string Id { get; set; } = "45f14fa8-c40f-4121-997c-ef2542196a50"; + public bool IsAuthenticated { get; set; } = false; + public List Claims { get; set; } = new(); + + public string UserName { get; set; } = "@loosy@letsrulethe.world"; + public string DisplayName { get; set; } = "loosy"; + public string PictureUrl { get; set; } = "https://letsrulethe.world/media/c22d7a6dfcce11e4d2d8d4f6298842a36751b0a179dc5333d24663e4b93793b4.jpg"; + public string BackgroundUrl { get; set; } = "https://letsrulethe.world/media/717cc7f5a090cfbe77be46941060b9a54454c351c74ff2f056363e002c8e2c3f.png"; + public string ProfileUrl { get; set; } = "https://letsrulethe.world/users/loosy"; + } + + public class UserClaim + { + public string Type { get; set; } + public string Value { get; set; } + } +} diff --git a/Models/VConstants.cs b/Models/VConstants.cs new file mode 100644 index 0000000..40d643a --- /dev/null +++ b/Models/VConstants.cs @@ -0,0 +1,7 @@ +namespace decePubClient.Models +{ + public static class VConstants + { + public const string HideClass = "hidden"; + } +} diff --git a/Pages/Administration.razor b/Pages/Administration.razor index d9d4ee6..7c26b64 100644 --- a/Pages/Administration.razor +++ b/Pages/Administration.razor @@ -1,4 +1,5 @@ @page "/administration" +@inherits PagesBase
diff --git a/Pages/Authentication.razor b/Pages/Authentication.razor new file mode 100644 index 0000000..79683f4 --- /dev/null +++ b/Pages/Authentication.razor @@ -0,0 +1,23 @@ +@page "/authentication/{action}" +@inherits PagesBase + + +
+ +
+ + + +
+ +
+ +@code { + [Parameter] + public string Action { get; set; } + + protected override void OnInitialized() + { + base.OnInitialized(); + } +} \ No newline at end of file diff --git a/Pages/Counter.razor b/Pages/Counter.razor deleted file mode 100644 index ef23cb3..0000000 --- a/Pages/Counter.razor +++ /dev/null @@ -1,18 +0,0 @@ -@page "/counter" - -Counter - -

Counter

- -

Current count: @currentCount

- - - -@code { - private int currentCount = 0; - - private void IncrementCount() - { - currentCount++; - } -} diff --git a/Pages/ExpandMessage.razor b/Pages/ExpandMessage.razor index c0078e9..333c82e 100644 --- a/Pages/ExpandMessage.razor +++ b/Pages/ExpandMessage.razor @@ -1,42 +1,207 @@ -@page "/expand/{messageId}" -@Localizer +@page "/expand" +@page "/expand/{messageId}" +@inherits PagesBase +@CascadingState.Localizer -
+
-
+
+
-
+ @if (IsLoading) + { + + } -
+ @foreach (var message in Ancestors) + { + + } + + + @foreach (var message in Descendants) + { + + } + +
+
+ + @code { - [CascadingParameter] IStringLocalizer Localizer { get; set; } + [CascadingParameter] CascadingState CascadingState { get; set; } [Inject] NavigationManager Navigation { get; set; } [Inject] IStorage DbStorage { get; set; } - [SupplyParameterFromQuery] string messageId { get; set; } + [Inject] ILocalStorageService LocalStorage { get; set; } + [Inject] IBlazorDownloadFileService BlazorDownloadFileService { get; set; } + [Inject] MessagesService MessagesService { get; set; } + [Parameter] public string MessageId { get; set; } - List Messages { get; set; } = new(); + List Ancestors { get; set; } = new(); + Message CurrentMessage { get; set; } = new(); + List Descendants { get; set; } = new(); + + TimeSortingType TimeSortingType { get; set; } = TimeSortingType.Ascending; protected override async Task OnInitializedAsync() { - if (messageId is { Length: 0 }) + if (MessageId is { Length: 0 }) { Navigation.NavigateTo("/"); return; } - var currentMessage = await DbStorage.GetMessage(messageId); - - var messages = await DbStorage.GetMessages(); - - if (currentMessage.RootMessageId is { Length: > 0 }) - Messages = messages.Where(m => m.RootMessageId == currentMessage.RootMessageId) - .OrderByDescending(m => m.CreatedAt) - .ToList(); + var filters = await LocalStorage.GetItemAsync(nameof(ActionBarFilter)); + if (filters == default) + await LocalStorage.SetItemAsync(nameof(ActionBarFilter), new ActionBarFilter()); else - Messages = messages.Where(m => m.RootMessageId == messageId) - .OrderByDescending(m => m.CreatedAt) - .ToList(); + TimeSortingType = filters.TimeSortingType; + + CurrentMessage = await DbStorage.GetMessage(MessageId); + + Ancestors = new List + { + new() + { + RootMessageId = default, + MessageId = "51C698E3-7C28-4C90-9212-48D5C81DE089", + User = Faker.GetRandomUser(), + MessageType = (MessageType)Random.Shared.Next(0, 4), + Title = CurrentMessage?.Title, + Content = "

esempio di messaggio precedente a quello espanso

", + Medias = new(), + CreatedAt = DateTime.UtcNow.AddMinutes(Random.Shared.Next(-5000, 0)), + IsFavourite = Random.Shared.Next() % 2 == 0, + IsBoosted = Random.Shared.Next() % 2 == 0, + } + }; + + Descendants = new List + { + new() + { + RootMessageId = default, + MessageId = "0569A1DF-46FC-4485-9F11-F8CDFB794404", + User = Faker.GetRandomUser(), + MessageType = (MessageType)Random.Shared.Next(0, 4), + Title = CurrentMessage?.Title, + Content = "

esempio di messaggio successivo a quello espanso

", + Medias = new(), + CreatedAt = DateTime.UtcNow.AddMinutes(Random.Shared.Next(-5000, 0)), + IsFavourite = Random.Shared.Next() % 2 == 0, + IsBoosted = Random.Shared.Next() % 2 == 0, + } + }; + IsLoading = false; } -} + + void OnTimeSortingChanged(TimeSortingType timeSortingType) + { + TimeSortingType = timeSortingType; + } + + async Task OnMessageReply(MessageForm messageForm) + { + await Task.Run(() => + { + }); + var replyMessage = await MessagesService.SubmitMessage(messageForm); + Descendants.Add(new() + { + MessageId = Guid.NewGuid().ToString(), + Content = messageForm.Content?.ParseContent(messageForm.ContentType), + CreatedAt = DateTime.UtcNow, + MessageType = messageForm.MessageType, + Medias = messageForm.Media.Select(m => new Media + { + FileName = m.FileName, + AltText = m.AltText, + ContentType = m.ContentType, + Url = m.Base64Preview, + Blob = m.Blob + }).ToList(), + Title = messageForm.Title, + User = new MessageUser + { + UserId = CascadingState.User.Id, + UserName = CascadingState.User.UserName, + DisplayName = CascadingState.User.DisplayName, + PictureUrl = CascadingState.User.PictureUrl, + ProfileUrl = CascadingState.User.ProfileUrl, + BackgroundUrl = CascadingState.User.BackgroundUrl + }, + }); + } + + async ValueTask OnMessageBoost(Message message) + { + await Task.Run(() => + { + }); + message.IsBoosted = !message.IsBoosted; + var boostedMessage = await MessagesService.BoostUnboostMessage(message); + } + + async ValueTask OnMessageFavourite(Message message) + { + await Task.Run(() => + { + }); + message.IsFavourite = !message.IsFavourite; + var favouriteMessage = await MessagesService.FavouriteUnfavouriteMessage(message); + } + + async ValueTask OnMessageDelete(Message message) + { + await Task.Run(() => + { + }); + var deleteResult = await MessagesService.DeleteMessage(message); + } + + async ValueTask OnMessageMediaDownload(Media media) + { + await Task.Run(() => + { + }); + await BlazorDownloadFileService.DownloadFileAsync(media.FileName, media.Blob, media.ContentType); + } + + async ValueTask OnUserBlock(MessageUser messageUser) + { + await Task.Run(() => + { + }); + var blockResult = await MessagesService.BlockUserFromMessage(messageUser); + } + + async ValueTask OnUserDirectMessage(Message message) + { + await Task.Run(() => + { + }); + var directMessage = await MessagesService.ReplyMessage(message, MessageType.Direct); + } + + async ValueTask OnUserSilence(MessageUser messageUser) + { + await Task.Run(() => + { + }); + var silenceResult = await MessagesService.SilenceUserFromMessage(messageUser); + } +} \ No newline at end of file diff --git a/Pages/FetchData.razor b/Pages/FetchData.razor deleted file mode 100644 index 7d004a5..0000000 --- a/Pages/FetchData.razor +++ /dev/null @@ -1,57 +0,0 @@ -@page "/fetchdata" -@inject HttpClient Http - -Weather forecast - -

Weather forecast

- -

This component demonstrates fetching data from the server.

- -@if (forecasts == null) -{ -

Loading...

-} -else -{ - - - - - - - - - - - @foreach (var forecast in forecasts) - { - - - - - - - } - -
DateTemp. (C)Temp. (F)Summary
@forecast.Date.ToShortDateString()@forecast.TemperatureC@forecast.TemperatureF@forecast.Summary
-} - -@code { - private WeatherForecast[]? forecasts; - - protected override async Task OnInitializedAsync() - { - forecasts = await Http.GetFromJsonAsync("sample-data/weather.json"); - } - - public class WeatherForecast - { - public DateTime Date { get; set; } - - public int TemperatureC { get; set; } - - public string? Summary { get; set; } - - public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); - } -} diff --git a/Pages/Index.razor b/Pages/Index.razor index 6085c4a..066d917 100644 --- a/Pages/Index.razor +++ b/Pages/Index.razor @@ -1,9 +1,225 @@ @page "/" +@page "/home" +@page "/index" +@inherits PagesBase +@CascadingState.Localizer["Index"] -Index +
-

Hello, world!

+
+
-Welcome to your new app. + @if (IsLoading) + { + + } + else if (Messages.Count == 0) + { +

+ @CascadingState.Localizer["Empty"] +

+ } - + @foreach (var message in Messages) + { + + } + @* + + @foreach (var message in Messages) + { + + } + + + @foreach (var message in Messages) + { + + } + + *@ + + +
+
+ + + +
+ +@code { + [CascadingParameter] Task AuthState { get; set; } + [CascadingParameter] CascadingState CascadingState { get; set; } + [Inject] IBlazorDownloadFileService BlazorDownloadFileService { get; set; } + [Inject] IStorage Storage { get; set; } + [Inject] ILocalStorageService LocalStorage { get; set; } + [Inject] HttpClient Http { get; set; } + [Inject] MessagesService MessagesService { get; set; } + + TimelineType TimelineType { get; set; } = TimelineType.Home; + TimeSortingType TimeSortingType { get; set; } = TimeSortingType.Ascending; + + IReadOnlyList userClaim + { + get + { + var auth = AuthState.Result; + if (auth.User.Identity?.IsAuthenticated ?? false) + return auth.User.Claims.ToList(); + return new List(); + } + } + + List IncomingMessages { get; set; } = new(); + List Messages { get; set; } = new(); + string Response { get; set; } + + protected override async Task OnInitializedAsync() + { + var filters = await LocalStorage.GetItemAsync(nameof(ActionBarFilter)); + if (filters == default) + await LocalStorage.SetItemAsync(nameof(ActionBarFilter), new ActionBarFilter()); + else + { + TimelineType = filters.TimelineType; + TimeSortingType = filters.TimeSortingType; + } + + Messages = await Storage.GetMessages(); + //try + //{ + // var response = await Http.GetAsync("api/test"); + // Response = await response.Content.ReadAsStringAsync(); + //} + //catch + //{ + //} + IsLoading = false; + } + + void OnTimelineChanged(TimelineType timelineType) + { + TimelineType = timelineType; + } + + void OnTimeSortingChanged(TimeSortingType timeSortingType) + { + TimeSortingType = timeSortingType; + } + + async Task OnMessageSubmit(MessageForm messageForm) + { + await Task.Run(() => + { + }); + var submitMessage = await MessagesService.SubmitMessage(messageForm); + Messages.Insert(0, new() + { + MessageId = Guid.NewGuid().ToString(), + Content = messageForm.Content?.ParseContent(messageForm.ContentType), + CreatedAt = DateTime.UtcNow, + MessageType = messageForm.MessageType, + Medias = messageForm.Media.Select(m => new Media + { + FileName = m.FileName, + AltText = m.AltText, + ContentType = m.ContentType, + Url = m.Base64Preview, + Blob = m.Blob + }).ToList(), + Title = messageForm.Title, + User = new MessageUser + { + UserId = CascadingState.User.Id, + UserName = CascadingState.User.UserName, + DisplayName = CascadingState.User.DisplayName, + PictureUrl = CascadingState.User.PictureUrl, + ProfileUrl = CascadingState.User.ProfileUrl, + BackgroundUrl = CascadingState.User.BackgroundUrl + }, + }); + } + + async Task OnMessageReply(MessageForm messageForm) + { + await Task.Run(() => + { + }); + var replyMessage = await MessagesService.SubmitMessage(messageForm); + Messages.Insert(0, new() + { + RootMessageId = messageForm.RootMessageId, + MessageId = Guid.NewGuid().ToString(), + Content = messageForm.Content?.ParseContent(messageForm.ContentType), + CreatedAt = DateTime.UtcNow, + MessageType = messageForm.MessageType, + Medias = messageForm.Media.Select(m => new Media + { + FileName = m.FileName, + AltText = m.AltText, + ContentType = m.ContentType, + Url = m.Base64Preview, + Blob = m.Blob + }).ToList(), + Title = messageForm.Title, + User = new MessageUser + { + UserId = CascadingState.User.Id, + UserName = CascadingState.User.UserName, + DisplayName = CascadingState.User.DisplayName, + PictureUrl = CascadingState.User.PictureUrl, + ProfileUrl = CascadingState.User.ProfileUrl, + BackgroundUrl = CascadingState.User.BackgroundUrl + } + }); + } + + async ValueTask OnMessageBoost(Message message) + { + message.IsBoosted = !message.IsBoosted; + var boostedMessage = await MessagesService.BoostUnboostMessage(message); + } + + async ValueTask OnMessageFavourite(Message message) + { + message.IsFavourite = !message.IsFavourite; + var favouriteMessage = await MessagesService.FavouriteUnfavouriteMessage(message); + } + + async ValueTask OnMessageDelete(Message message) + { + Messages.Remove(message); + var deleteResult = await MessagesService.DeleteMessage(message); + } + + async ValueTask OnMessageMediaDownload(Media media) + { + await Task.Run(() => + { + }); + await BlazorDownloadFileService.DownloadFileAsync(media.FileName, media.Blob, media.ContentType); + } + + async ValueTask OnUserBlock(MessageUser messageUser) + { + var blockResult = await MessagesService.BlockUserFromMessage(messageUser); + } + + async ValueTask OnUserDirectMessage(Message message) + { + var directMessage = await MessagesService.ReplyMessage(message, MessageType.Direct); + } + + async ValueTask OnUserSilence(MessageUser messageUser) + { + var silenceResult = await MessagesService.SilenceUserFromMessage(messageUser); + } + +} \ No newline at end of file diff --git a/Pages/Login.razor b/Pages/Login.razor new file mode 100644 index 0000000..e8b42f0 --- /dev/null +++ b/Pages/Login.razor @@ -0,0 +1,16 @@ +@page "/login" +@inherits PagesBase +@CascadingState.Localizer["Login"] + +
+ +
+ +
+ +
+ +@code { + [CascadingParameter] CascadingState CascadingState { get; set; } + +} diff --git a/Pages/Logout.razor b/Pages/Logout.razor new file mode 100644 index 0000000..fc8751a --- /dev/null +++ b/Pages/Logout.razor @@ -0,0 +1,25 @@ +@page "/logout" +@inherits PagesBase +@CascadingState.Localizer["Logout"] + +
+ +
+

@CascadingState.Localizer["Logging out..."]

+
+ +
+ +@code { + [CascadingParameter] CascadingState CascadingState { get; set; } + //[Inject] TokenAuthStateProvider AuthStateProvider { get; set; } + [Inject] SignOutSessionStateManager SignOutSessionStateManager { get; set; } + [Inject] NavigationManager Navigation { get; set; } + + protected override async Task OnInitializedAsync() + { + //await AuthStateProvider.LogoutAsync(true); + await SignOutSessionStateManager.SetSignOutState(); + Navigation.NavigateTo("authenticatio/logout"); + } +} diff --git a/Pages/Settings.razor b/Pages/Settings.razor new file mode 100644 index 0000000..7b0bed6 --- /dev/null +++ b/Pages/Settings.razor @@ -0,0 +1,75 @@ +@page "/settings" +@inherits PagesBase +@CascadingState.Localizer["Settings"] + +
+ +
+ + + +

+ @CascadingState.Localizer["General"] +

+
+ +
+

+ @CascadingState.Localizer["Empty"] +

+
+
+
+ + + +

+ @CascadingState.Localizer["Profile"] +

+
+ +
+

+ @CascadingState.Localizer["Empty"] +

+
+
+
+ + + +

+ @CascadingState.Localizer["Data import/export"] +

+
+ +
+

+ @CascadingState.Localizer["Empty"] +

+
+
+
+ + + +

+ @CascadingState.Localizer["Mutes/Blocks"] +

+
+ +
+

+ @CascadingState.Localizer["Empty"] +

+
+
+
+ +
+ +
+ +@code { + [CascadingParameter] CascadingState CascadingState { get; set; } +} diff --git a/Program.cs b/Program.cs index fc95031..7dd32ee 100644 --- a/Program.cs +++ b/Program.cs @@ -1,12 +1,72 @@ using decePubClient; - using Microsoft.AspNetCore.Components.Web; using Microsoft.AspNetCore.Components.WebAssembly.Hosting; +using System.Net.Http.Headers; +using System.Text.Json; +using Append.Blazor.Notifications; +using Blazored.LocalStorage; +using Blazored.Modal; +using decePubClient.Extensions; +using decePubClient.Services; +using Microsoft.AspNetCore.Components.WebAssembly.Authentication; +using Toolbelt.Blazor.Extensions.DependencyInjection; +using Microsoft.AspNetCore.Components.Authorization; var builder = WebAssemblyHostBuilder.CreateDefault(args); builder.RootComponents.Add("#app"); -builder.RootComponents.Add("head::after"); +// builder.RootComponents.Add("head::after"); -builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); +builder.Services.AddBlazorDownloadFile(); +builder.Services.AddOptions() + .AddTransient(); +builder.Services.AddBlazoredLocalStorage(config => +{ + config.JsonSerializerOptions.WriteIndented = false; + config.JsonSerializerOptions.PropertyNameCaseInsensitive = true; + config.JsonSerializerOptions.IgnoreReadOnlyProperties = true; + config.JsonSerializerOptions.ReadCommentHandling = JsonCommentHandling.Skip; + config.JsonSerializerOptions.PropertyNamingPolicy = JsonNamingPolicy.CamelCase; +}) + .AddBlazoredModal() + //.AddScoped() + .AddScoped() + .AddScoped() + //.AddScoped(provider => provider.GetRequiredService()) + //.AddTransient() + .AddHeadElementHelper(options => options.DisableClientScriptAutoInjection = true) + .AddLocalization() + .AddNotifications() + .AddTransient() + .AddIndexedDb(); -await builder.Build().RunAsync(); + +builder.Services.AddOidcAuthentication(options => +{ + builder.Configuration.Bind("Local", options.ProviderOptions); + options.ProviderOptions.Authority = "https://demo.identityserver.io"; + options.ProviderOptions.ClientId = "interactive.public"; + options.ProviderOptions.ResponseType = "code"; + options.ProviderOptions.DefaultScopes.Add("api"); + options.ProviderOptions.DefaultScopes.Add("email"); + options.ProviderOptions.DefaultScopes.Add("profile"); +}); + +builder.Services.AddHttpClient("default", client => +{ + client.BaseAddress = new Uri(builder.HostEnvironment.BaseAddress); + client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json")); +}); + +builder.Services.AddHttpClient("ComponentsWebAssembly_CSharp.ServerAPI", client => +{ + client.BaseAddress = new Uri("https://demo.identityserver.io"); +}) + //.AddHttpMessageHandler() +.AddHttpMessageHandler(); + +builder.Services.AddTransient(sp => sp.GetRequiredService().CreateClient("ComponentsWebAssembly_CSharp.ServerAPI")); +builder.Services.AddScoped(); + +var host = builder.Build(); +await host.SetDefaultCulture(); +await host.RunAsync(); \ No newline at end of file diff --git a/Resources/ErrorMessages.Designer.cs b/Resources/ErrorMessages.Designer.cs new file mode 100644 index 0000000..f6c62d3 --- /dev/null +++ b/Resources/ErrorMessages.Designer.cs @@ -0,0 +1,72 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace decePubClient.Resources { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class ErrorMessages { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal ErrorMessages() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("decePubClient.Resources.ErrorMessages", typeof(ErrorMessages).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to This field is required.. + /// + public static string Required { + get { + return ResourceManager.GetString("Required", resourceCulture); + } + } + } +} diff --git a/Resources/ErrorMessages.cs b/Resources/ErrorMessages.cs deleted file mode 100644 index c36f70c..0000000 --- a/Resources/ErrorMessages.cs +++ /dev/null @@ -1,6 +0,0 @@ -namespace decePubClient.Resources; - -public class ErrorMessages -{ - -} \ No newline at end of file diff --git a/Resources/ErrorMessages.resx b/Resources/ErrorMessages.resx index 4ba99c0..4cf3e1a 100644 --- a/Resources/ErrorMessages.resx +++ b/Resources/ErrorMessages.resx @@ -1,21 +1,123 @@  - - - - - - - - text/microsoft-resx - - - 1.3 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + This field is required. + \ No newline at end of file diff --git a/SCSS/base.scss b/SCSS/base.scss index e69de29..d30c7f0 100644 --- a/SCSS/base.scss +++ b/SCSS/base.scss @@ -0,0 +1,92 @@ +body { + color: var(--text-color); + background-color: var(--background); +} + +.background { + background-color: var(--background); +} + +details > summary::-webkit-details-marker { + color: var(--text-color) +} + +:focus-visible { + outline: none +} + +*, ::after, ::before { + scrollbar-color: inherit; + scrollbar-width: inherit; +} + +::-webkit-scrollbar { + width: 8px; +} + +::-webkit-scrollbar-button { + width: 8px; + height: 5px; +} + +::-webkit-scrollbar-track { + background: transparent; + border: thin solid transparent; + box-shadow: none; + border-radius: 10px; +} + +::-webkit-scrollbar-thumb { + background: var(--primary-color-dark); + border: thin solid transparent; + border-radius: 10px; +} + +::-webkit-scrollbar-thumb:hover { + background: var(--primary-color-dark); +} + +::-moz-selection { /* Code for Firefox */ + color: var(--primary-color); + background: var(--primary-color-dark); +} + +::selection { + color: var(--primary-color); + background: var(--primary-color-dark); +} + +.flex.flex-col-reverse>div:first-child { + margin-top: 1rem; +} + +.loadAnimation span { + animation-name: blink; + animation-duration: 1.4s; + animation-iteration-count: infinite; + animation-fill-mode: both; +} + +.loadAnimation span:nth-child(1) { + animation-delay: .4s; +} + +.loadAnimation span:nth-child(2) { + animation-delay: .3s; +} + +.loadAnimation span:nth-child(3) { + animation-delay: .2s; +} + +.loadAnimation span:nth-child(4) { + animation-delay: .2s; +} + +.loadAnimation span:nth-child(5) { + animation-delay: .3s; +} + +.loadAnimation span:nth-child(6) { + animation-delay: .4s; +} \ No newline at end of file diff --git a/SCSS/main.scss b/SCSS/main.scss index e69de29..9522eb7 100644 --- a/SCSS/main.scss +++ b/SCSS/main.scss @@ -0,0 +1,4 @@ +@import "mixins.scss"; +@import "variables.scss"; +@import "neomorph.scss"; +@import "base.scss"; \ No newline at end of file diff --git a/SCSS/mixins.scss b/SCSS/mixins.scss index ad4cf01..9c75aff 100644 --- a/SCSS/mixins.scss +++ b/SCSS/mixins.scss @@ -1,57 +1,32 @@ //MEDIA QUERY MANAGER -/*$breakpoint argument choices: -- phone -- tab-port -- tab-land -- desk -- big-desktop -*/ - @mixin MediaQuery($breakpoint) { - // max-width:768px; - @if $breakpoint==phone { - @media screen and (max-width: 768px) { + @if $breakpoint==sm { + @media (min-width: 640px) { @content } } - @if $breakpoint==tab-p { - // min-width:768px; - // max-width:900px; - @media screen and (min-width: 768px) and (max-width: 900px) { + @if $breakpoint==md { + @media (min-width: 768px) { @content } } - @if $breakpoint==tab-l { - // min-width:901px; - // max-width:1200px; - @media screen and (min-width: 901px) and (max-width: 1200px) { + @if $breakpoint==lg { + @media (min-width: 1024px) { @content } } - @if $breakpoint==laptop { - // min-width:1201px; - // max-width:1366px; - @media screen and (min-width: 1201px) and (max-width: 1366px) { + @if $breakpoint==xl { + @media (min-width: 1280px) { @content } } - @if $breakpoint==desk { - // min-width:1201px; - // max-width:1800px; - @media screen and (min-width: 1201px) and (max-width: 1800px) { - @content - } - } - - @if $breakpoint==big-d { - // min-width:1801px; - // max-width:4000px; - @media screen and (min-width: 1801px) and (max-width: 4000px) { + @if $breakpoint=="2xl" { + @media (min-width: 1536px) { @content } } diff --git a/SCSS/neomorph.scss b/SCSS/neomorph.scss index e69de29..d2289c7 100644 --- a/SCSS/neomorph.scss +++ b/SCSS/neomorph.scss @@ -0,0 +1,653 @@ +:root { + --shadow-offset: 8px; + --blur-radius: 16px; + --is-inset: inherit; +} + +.neomorph { + box-shadow: calc(-1 * var(--shadow-offset)) calc(-1 * var(--shadow-offset)) var(--blur-radius) var(--light-shadow), var(--shadow-offset) var(--shadow-offset) var(--blur-radius) var(--dark-shadow); + + &Inset { + box-shadow: inset var(--shadow-offset) var(--shadow-offset) var(--blur-radius) var(--dark-shadow), inset calc(-1 * var(--shadow-offset)) calc(-1 * var(--shadow-offset)) var(--blur-radius) var(--light-shadow); + + &.is-nxxsmall { + --shadow-offset: 2px; + --blur-radius: 4px; + + &-sm { + @include MediaQuery(sm) { + --shadow-offset: 2px; + --blur-radius: 4px; + } + } + + &-md { + @include MediaQuery(md) { + --shadow-offset: 2px; + --blur-radius: 4px; + } + } + + &-lg { + @include MediaQuery(lg) { + --shadow-offset: 2px; + --blur-radius: 4px; + } + } + + &-xl { + @include MediaQuery(xl) { + --shadow-offset: 2px; + --blur-radius: 4px; + } + } + + &-2xl { + @include MediaQuery(2xl) { + --shadow-offset: 2px; + --blur-radius: 4px; + } + } + } + + &.is-nxsmall { + --shadow-offset: 3px; + --blur-radius: 6px; + + &-sm { + @include MediaQuery(sm) { + --shadow-offset: 3px; + --blur-radius: 6px; + } + } + + &-md { + @include MediaQuery(md) { + --shadow-offset: 3px; + --blur-radius: 6px; + } + } + + &-lg { + @include MediaQuery(lg) { + --shadow-offset: 3px; + --blur-radius: 6px; + } + } + + &-xl { + @include MediaQuery(xl) { + --shadow-offset: 3px; + --blur-radius: 6px; + } + } + + &-2xl { + @include MediaQuery(2xl) { + --shadow-offset: 3px; + --blur-radius: 6px; + } + } + } + + &.is-nsmall { + --shadow-offset: 6px; + --blur-radius: 12px; + + &-sm { + @include MediaQuery(sm) { + --shadow-offset: 6px; + --blur-radius: 12px; + } + } + + &-md { + @include MediaQuery(md) { + --shadow-offset: 6px; + --blur-radius: 12px; + } + } + + &-lg { + @include MediaQuery(lg) { + --shadow-offset: 6px; + --blur-radius: 12px; + } + } + + &-xl { + @include MediaQuery(xl) { + --shadow-offset: 6px; + --blur-radius: 12px; + } + } + + &-2xl { + @include MediaQuery(2xl) { + --shadow-offset: 6px; + --blur-radius: 12px; + } + } + } + } + + &.is-nxxsmall { + --shadow-offset: 2px; + --blur-radius: 4px; + + &-sm { + @include MediaQuery(sm) { + --shadow-offset: 2px; + --blur-radius: 4px; + } + } + + &-md { + @include MediaQuery(md) { + --shadow-offset: 2px; + --blur-radius: 4px; + } + } + + &-lg { + @include MediaQuery(lg) { + --shadow-offset: 2px; + --blur-radius: 4px; + } + } + + &-xl { + @include MediaQuery(xl) { + --shadow-offset: 2px; + --blur-radius: 4px; + } + } + + &-2xl { + @include MediaQuery(2xl) { + --shadow-offset: 2px; + --blur-radius: 4px; + } + } + } + + &.is-nxsmall { + --shadow-offset: 3px; + --blur-radius: 6px; + + &-sm { + @include MediaQuery(sm) { + --shadow-offset: 3px; + --blur-radius: 6px; + } + } + + &-md { + @include MediaQuery(md) { + --shadow-offset: 3px; + --blur-radius: 6px; + } + } + + &-lg { + @include MediaQuery(lg) { + --shadow-offset: 3px; + --blur-radius: 6px; + } + } + + &-xl { + @include MediaQuery(xl) { + --shadow-offset: 3px; + --blur-radius: 6px; + } + } + + &-2xl { + @include MediaQuery(2xl) { + --shadow-offset: 3px; + --blur-radius: 6px; + } + } + } + + &.is-nsmall { + --shadow-offset: 6px; + --blur-radius: 12px; + + &-sm { + @include MediaQuery(sm) { + --shadow-offset: 6px; + --blur-radius: 12px; + } + } + + &-md { + @include MediaQuery(md) { + --shadow-offset: 6px; + --blur-radius: 12px; + } + } + + &-lg { + @include MediaQuery(lg) { + --shadow-offset: 6px; + --blur-radius: 12px; + } + } + + &-xl { + @include MediaQuery(xl) { + --shadow-offset: 6px; + --blur-radius: 12px; + } + } + + &-2xl { + @include MediaQuery(2xl) { + --shadow-offset: 6px; + --blur-radius: 12px; + } + } + } + + &.is-nnormal { + --shadow-offset: 8px; + --blur-radius: 16px; + + &-sm { + @include MediaQuery(sm) { + --shadow-offset: 8px; + --blur-radius: 16px; + } + } + + &-md { + @include MediaQuery(md) { + --shadow-offset: 8px; + --blur-radius: 16px; + } + } + + &-lg { + @include MediaQuery(lg) { + --shadow-offset: 8px; + --blur-radius: 16px; + } + } + + &-xl { + @include MediaQuery(xl) { + --shadow-offset: 8px; + --blur-radius: 16px; + } + } + + &-2xl { + @include MediaQuery(2xl) { + --shadow-offset: 8px; + --blur-radius: 16px; + } + } + } +} + +button.neo,.neo { + &Btn { + background-image: linear-gradient(145deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)); + box-shadow: -3px -3px 6px var(--light-shadow), 3px 3px 6px var(--dark-shadow); + border: none; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + + &:focus { + background-image: linear-gradient(-45deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)); + box-shadow: -3px -3px 6px var(--light-shadow), 3px 3px 6px var(--dark-shadow); + border: none; + } + + &Small { + background-image: linear-gradient(145deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)); + box-shadow: -2px -2px 4px var(--light-shadow), 2px 2px 4px var(--dark-shadow); + border: none; + + &:focus { + background-image: linear-gradient(-45deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)); + box-shadow: -2px -2px 4px var(--light-shadow), 2px 2px 4px var(--dark-shadow); + border: none; + + &:not(:active) { + background-image: linear-gradient(-45deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)); + box-shadow: -2px -2px 4px var(--light-shadow), 2px 2px 4px var(--dark-shadow); + } + + & input[type=file] { + background-image: linear-gradient(-45deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)); + } + } + + @include MediaQuery(phone) { + &-mobile { + background-image: linear-gradient(145deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)); + box-shadow: -2px -2px 4px var(--light-shadow), 2px 2px 4px var(--dark-shadow); + border: none; + + &:focus { + background-image: linear-gradient(-45deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)); + box-shadow: -2px -2px 4px var(--light-shadow), 2px 2px 4px var(--dark-shadow); + border: none; + + &:not(:active) { + background-image: linear-gradient(-45deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)); + box-shadow: -2px -2px 4px var(--light-shadow), 2px 2px 4px var(--dark-shadow); + } + } + } + } + + &Plain { + box-shadow: -3px -3px 6px var(--light-shadow), 3px 3px 6px var(--dark-shadow); + border: none; + + &:focus { + box-shadow: -3px -3px 6px var(--light-shadow), 3px 3px 6px var(--dark-shadow); + border: none; + } + + @include MediaQuery(phone) { + &-mobile { + box-shadow: -3px -3px 6px var(--light-shadow), 3px 3px 6px var(--dark-shadow); + border: none; + + &:focus { + box-shadow: -3px -3px 6px var(--light-shadow), 3px 3px 6px var(--dark-shadow); + border: none; + } + } + } + } + + &InsetPlain { + background-image: linear-gradient(145deg, var(--primary-gradiend-dark), var(--primary-gradiend-light)); + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); + border: none; + + &:focus { + background-image: linear-gradient(145deg, var(--primary-gradiend-darker), var(--primary-gradiend-lighter)); + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); + border: none; + } + + @include MediaQuery(phone) { + &-mobile { + background-image: linear-gradient(145deg, var(--primary-gradiend-dark), var(--primary-gradiend-light)); + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); + border: none; + + &:focus { + background-image: linear-gradient(145deg, var(--primary-gradiend-darker), var(--primary-gradiend-lighter)); + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); + border: none; + } + } + } + } + + &XInsetPlain { + background-image: linear-gradient(145deg, var(--primary-gradiend-dark), var(--primary-gradiend-light)); + box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow); + border: none; + + &:focus { + background-image: linear-gradient(145deg, var(--primary-gradiend-darker), var(--primary-gradiend-lighter)); + box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow); + border: none; + } + + @include MediaQuery(phone) { + &-mobile { + background-image: linear-gradient(145deg, var(--primary-gradiend-dark), var(--primary-gradiend-light)); + box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow); + border: none; + + &:focus { + background-image: linear-gradient(145deg, var(--primary-gradiend-darker), var(--primary-gradiend-lighter)); + box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow); + border: none; + } + } + } + } + } + + &InsetPlain { + background-image: linear-gradient(145deg, var(--primary-gradiend-dark), var(--primary-gradiend-light)); + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); + border: none; + + &:focus { + background-image: linear-gradient(145deg, var(--primary-gradiend-darker), var(--primary-gradiend-lighter)); + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); + border: none; + + &:not(:active) { + background-image: linear-gradient(145deg, var(--primary-gradiend-darker), var(--primary-gradiend-lighter)); + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); + } + } + + @include MediaQuery(phone) { + &-mobile { + background-image: linear-gradient(145deg, var(--primary-gradiend-dark), var(--primary-gradiend-light)); + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); + border: none; + + &:focus { + background-image: linear-gradient(145deg, var(--primary-gradiend-darker), var(--primary-gradiend-lighter)); + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); + border: none; + + &:not(:active) { + background-image: linear-gradient(145deg, var(--primary-gradiend-darker), var(--primary-gradiend-lighter)); + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); + } + } + } + } + } + } + + &File { + box-shadow: 0px 0px 0px var(--light-shadow), 0px 0px 0px var(--dark-shadow); + transition: all .2s linear; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + + @include MediaQuery(phone) { + box-shadow: -3px -3px 6px var(--light-shadow), 3px 3px 6px var(--dark-shadow); + background: var(--primary-color); + } + + &:hover { + box-shadow: -3px -3px 6px var(--light-shadow), 3px 3px 6px var(--dark-shadow); + } + + &:focus-visible { + background: linear-gradient(-45deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)); + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); + outline: none; + } + + &.isSelected { + background: linear-gradient(145deg, var(--primary-gradiend-dark), var(--primary-gradiend-light)); + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); + + &:focus-visible { + background: linear-gradient(-45deg, var(--primary-gradiend-lighter), var(--primary-gradiend-darker)); + outline: none; + } + } + + &.is-active, &.active { + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); + color: var(--black); + } + } + + &Input { + box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow); + background: linear-gradient(145deg, var(--primary-gradiend-dark), var(--primary-gradiend-light)); + border: none; + + &:focus { + background: linear-gradient(145deg, var(--primary-gradiend-darker), var(--primary-gradiend-lighter)); + border: none; + } + } + + &Select { + & > select { + box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow); + background: linear-gradient(145deg, var(--primary-gradiend-dark), var(--primary-gradiend-light)); + border: none; + + &:focus { + background: linear-gradient(145deg, var(--primary-gradiend-darker), var(--primary-gradiend-lighter)); + border: none; + } + } + } +} + +.neoCheckbox { + opacity: 0; + width: 0; + + &:focus + label:before { + background: linear-gradient(145deg, var(--primary-gradiend-darker), var(--primary-gradiend-lighter)) !important; + } + + &Container { + position: relative; + } + + & + label { + padding: .15rem .15rem .15rem 2rem; + cursor: pointer; + font-size: 1rem; + line-height: 1.5; + + &:before { + animation-name: none; + width: 1.5rem; + height: 1.5rem; + border-radius: 100px; + position: absolute; + left: 0; + top: 0rem; + content: ''; + border: none; + box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow); + background: linear-gradient(145deg, var(--primary-gradiend-dark), var(--primary-gradiend-light)) !important; + } + } + + &:checked.is-checked-bold + label { + font-weight: bold + } + + &:checked + label:after { + display: inline-block; + width: .375rem; + height: .6rem; + top: .35rem; + left: .55rem; + transform: translateY(0rem) rotate(45deg); + border-width: .1rem; + border-top-width: 0.1rem; + border-left-width: 0.1rem; + border-style: solid; + border-top-style: solid; + border-left-style: solid; + border-color: var(--text-color); + border-top: 0; + border-left: 0; + position: absolute; + content: ''; + } +} + +hr.neoSeparator { + &Flat { + height: 10px; + border: none; + border-radius: 20px; + box-shadow: -2px -2px 4px var(--light-shadow), 2px 2px 4px var(--dark-shadow); + background: var(--background); + } + + &Pressed { + height: 10px; + border: none; + border-radius: 20px; + box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow); + background: linear-gradient(145deg, var(--primary-gradiend-dark), var(--primary-gradiend-light)); + } +} + +input.neoRange[type=range] { + height: 30px; + -webkit-appearance: none; + width: 100%; + background: transparent; + + &:focus { + outline: none; + } + + &::-webkit-slider-runnable-track { + width: 100%; + height: 20px; + cursor: pointer; + animate: 0.2s; + border-radius: 20px; + box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow); + background: linear-gradient(90deg, hsl(0, 90%, 80%), hsl(10, 90%, 80%), hsl(20, 90%, 80%), hsl(30, 90%, 80%), hsl(40, 90%, 80%), hsl(50, 90%, 80%), hsl(60, 90%, 80%), hsl(70, 90%, 80%), hsl(80, 90%, 80%), hsl(90, 90%, 80%), hsl(100, 90%, 80%), hsl(110, 90%, 80%), hsl(120, 90%, 80%), hsl(130, 90%, 80%), hsl(140, 90%, 80%), hsl(150, 90%, 80%), hsl(160, 90%, 80%), hsl(170, 90%, 80%), hsl(180, 90%, 80%), hsl(190, 90%, 80%), hsl(200, 90%, 80%), hsl(210, 90%, 80%), hsl(220, 90%, 80%), hsl(230, 90%, 80%), hsl(240, 90%, 80%), hsl(250, 90%, 80%), hsl(260, 90%, 80%), hsl(270, 90%, 80%), hsl(280, 90%, 80%), hsl(290, 90%, 80%), hsl(300, 90%, 80%), hsl(310, 90%, 80%), hsl(320, 90%, 80%), hsl(330, 90%, 80%), hsl(340, 90%, 80%), hsl(350, 90%, 80%), hsl(359, 90%, 80%)) !important; + } + + &::-webkit-slider-thumb { + border: none; + height: 26px; + width: 26px; + border-radius: 20px; + box-shadow: 2px 2px 4px var(--dark-shadow), -2px -2px 4px var(--light-shadow); + background: linear-gradient(145deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)) !important; + cursor: pointer; + -webkit-appearance: none; + margin-top: -3px; + } + + &:focus::-webkit-slider-runnable-track { + background: linear-gradient(90deg, hsl(0, 90%, 80%), hsl(10, 90%, 80%), hsl(20, 90%, 80%), hsl(30, 90%, 80%), hsl(40, 90%, 80%), hsl(50, 90%, 80%), hsl(60, 90%, 80%), hsl(70, 90%, 80%), hsl(80, 90%, 80%), hsl(90, 90%, 80%), hsl(100, 90%, 80%), hsl(110, 90%, 80%), hsl(120, 90%, 80%), hsl(130, 90%, 80%), hsl(140, 90%, 80%), hsl(150, 90%, 80%), hsl(160, 90%, 80%), hsl(170, 90%, 80%), hsl(180, 90%, 80%), hsl(190, 90%, 80%), hsl(200, 90%, 80%), hsl(210, 90%, 80%), hsl(220, 90%, 80%), hsl(230, 90%, 80%), hsl(240, 90%, 80%), hsl(250, 90%, 80%), hsl(260, 90%, 80%), hsl(270, 90%, 80%), hsl(280, 90%, 80%), hsl(290, 90%, 80%), hsl(300, 90%, 80%), hsl(310, 90%, 80%), hsl(320, 90%, 80%), hsl(330, 90%, 80%), hsl(340, 90%, 80%), hsl(350, 90%, 80%), hsl(359, 90%, 80%)) !important; + } + + &::-moz-range-track { + width: 100%; + height: 20px; + cursor: pointer; + border-radius: 20px; + box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow); + background: linear-gradient(90deg, hsl(0, 90%, 80%), hsl(10, 90%, 80%), hsl(20, 90%, 80%), hsl(30, 90%, 80%), hsl(40, 90%, 80%), hsl(50, 90%, 80%), hsl(60, 90%, 80%), hsl(70, 90%, 80%), hsl(80, 90%, 80%), hsl(90, 90%, 80%), hsl(100, 90%, 80%), hsl(110, 90%, 80%), hsl(120, 90%, 80%), hsl(130, 90%, 80%), hsl(140, 90%, 80%), hsl(150, 90%, 80%), hsl(160, 90%, 80%), hsl(170, 90%, 80%), hsl(180, 90%, 80%), hsl(190, 90%, 80%), hsl(200, 90%, 80%), hsl(210, 90%, 80%), hsl(220, 90%, 80%), hsl(230, 90%, 80%), hsl(240, 90%, 80%), hsl(250, 90%, 80%), hsl(260, 90%, 80%), hsl(270, 90%, 80%), hsl(280, 90%, 80%), hsl(290, 90%, 80%), hsl(300, 90%, 80%), hsl(310, 90%, 80%), hsl(320, 90%, 80%), hsl(330, 90%, 80%), hsl(340, 90%, 80%), hsl(350, 90%, 80%), hsl(359, 90%, 80%)) !important; + border: none; + } + + &::-moz-range-thumb { + border: none; + height: 26px; + width: 26px; + border-radius: 20px; + box-shadow: 2px 2px 4px var(--dark-shadow), -2px -2px 4px var(--light-shadow); + background: linear-gradient(145deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)) !important; + cursor: pointer; + } +} diff --git a/SCSS/variables.scss b/SCSS/variables.scss index e69de29..9d5176d 100644 --- a/SCSS/variables.scss +++ b/SCSS/variables.scss @@ -0,0 +1,34 @@ +:root{ + --background: hsl(25,84%,88%); + --text-color: hsl(25,84%,26.4%); + --placeholder-text-color: hsla(25,84%,26.4%,.3); + --black: hsl(0, 0%, 4%); + --black-bis: hsl(0, 0%, 7%); + --black-ter: hsl(0, 0%, 14%); + --white: hsl(0, 4%, 99.8%); + --primary-color: hsl(25,84%,88%); + --primary-color-light: hsl(25,84%,100%); + --primary-color-dark: hsl(25,84%,66%); + --primary-gradiend-light: hsl(25,84%,92%); + --primary-gradiend-dark: hsl(25,84%,84%); + --primary-gradiend-lighter: hsl(25,84%,96%); + --primary-gradiend-darker: hsl(25,84%,80%); + --secondary-color: hsl(205, 84%, 88%); + --secondary-color-light: hsl(205, 84%, 100%); + --secondary-color-dark: hsl(205, 84%, 84%); + --light-shadow: hsla(25,84%,100%, .5); + --dark-shadow: hsla(25,84%,66%, .5); + /*--fa-primary-color: hsl(25,84%,26.4%); + --fa-secondary-color: hsl(25,84%,66%);*/ + --fa-primary-color: hsl(205,84%,26.4%); + --fa-secondary-color: hsl(205,84%,66%); + /*--fa-primary-color: hsl(115,84%,26.4%); + --fa-secondary-color: hsl(115,84%,66%);*/ + --fa-primary-opacity: 0.80; + --fa-secondary-opacity: 0.80; + --danger-color: hsl(0, 82%, 91%); + --warning-color: hsl(48, 82%, 91%); + --info-color: hsl(196, 82%, 91%); + --plus-green: hsl(96, 49%, 49%); + --plus-gold: hsl(51, 72%, 46%); +} \ No newline at end of file diff --git a/Services/AppStatusService.cs b/Services/AppStatusService.cs index 086d507..ea6120a 100644 --- a/Services/AppStatusService.cs +++ b/Services/AppStatusService.cs @@ -1,6 +1,54 @@ -namespace decePubClient.Services; +using Microsoft.JSInterop; + +namespace decePubClient.Services; public class AppStatusService { - + readonly IJSRuntime JsRuntime; + readonly IJSInProcessRuntime JsSyncRuntime; + + public AppStatusService(IJSRuntime JSRuntime) + { + JsRuntime = JSRuntime; + JsSyncRuntime = (IJSInProcessRuntime)JSRuntime; + } + + public async ValueTask IsOnline() => await JsSyncRuntime.InvokeAsync("isOnline"); + + public bool InputCaptureSupported() => JsSyncRuntime.Invoke("inputCaptureSupported"); + + public bool IsServiceWorkerAvailable() => JsSyncRuntime.Invoke("isServiceWorkerAvailable"); + + public string Language() => JsSyncRuntime.Invoke("getLanguage"); + + public void Language(string language) => JsSyncRuntime.InvokeVoid("setLanguage", language); + + public long GetHeight(string classId) => JsSyncRuntime.Invoke("getHeight", classId); + + public void SetAppBadge(int counter) => JsSyncRuntime.InvokeVoid("setAppBadge", counter); + + public void ClearAppBadge() => JsSyncRuntime.InvokeVoid("clearAppBadge"); + + public async ValueTask ClearCache() + { + await JsRuntime.InvokeVoidAsync("clearCache"); + } + + public async ValueTask ClearLocalStorage() + { + await JsRuntime.InvokeVoidAsync("clearLocalStorage"); + } + + public void ReloadPage() + { + JsSyncRuntime.InvokeVoid("reloadPage"); + } + + public bool IsMobileMedia() => JsSyncRuntime.Invoke("isMobileMedia"); + + public bool CanShare() => JsSyncRuntime.Invoke("canShareStuff"); + + public async ValueTask ShareTextUrl(string title, string text, Uri uri) => await JsRuntime.InvokeVoidAsync("shareTextUrl", title, text, uri.ToString()); + + public async ValueTask ShareText(string title, string text) => await JsRuntime.InvokeVoidAsync("shareText", title, text); } \ No newline at end of file diff --git a/Services/IHttpService.cs b/Services/IHttpService.cs index 3a92c0f..0c90aee 100644 --- a/Services/IHttpService.cs +++ b/Services/IHttpService.cs @@ -8,15 +8,15 @@ namespace decePubClient.Services { public interface IHttpService { - Task Get(string uri, object payload = default, string?[] queryParams = default); + Task Get(string uri, object payload = default, string[] queryParams = default); - Task GetAnon(string uri, object payload = default, string?[] queryParams = default); + Task GetAnon(string uri, object payload = default, string[] queryParams = default); Task Post(string uri, object payload = default); Task PostAnon(string uri, object payload = default); - Task Delete(string uri, string?[] queryParams = default, object payload = default); + Task Delete(string uri, string[] queryParams = default, object payload = default); } public class HttpService : IHttpService @@ -41,7 +41,7 @@ namespace decePubClient.Services DbStorage = dbStorage; } - public async Task Get(string uri, object payload = default, string?[] queryParams = default) + public async Task Get(string uri, object payload = default, string[] queryParams = default) { try { @@ -82,7 +82,7 @@ namespace decePubClient.Services } } - public async Task GetAnon(string uri, object payload = default, string?[] queryParams = default) + public async Task GetAnon(string uri, object payload = default, string[] queryParams = default) { try { @@ -123,7 +123,7 @@ namespace decePubClient.Services } } - public async Task Delete(string uri, string?[] queryParams = default, object payload = default) + public async Task Delete(string uri, string[] queryParams = default, object payload = default) { try { diff --git a/Services/IStorage.cs b/Services/IStorage.cs new file mode 100644 index 0000000..b996a53 --- /dev/null +++ b/Services/IStorage.cs @@ -0,0 +1,322 @@ +using decePubClient.Helpers; +using decePubClient.Models; +using decePubClient.Models.Types; +using Markdig; + +namespace decePubClient.Services +{ + public interface IStorage + { + ValueTask> GetMessages(); + ValueTask GetMessage(string messageId); + ValueTask AddMessages(List messages); + ValueTask UpdateMessages(List messages); + ValueTask RemoveMessage(string messageId); + + ValueTask> GetClientLogs(); + ValueTask AddLog(Exception exception, string where); + ValueTask AddLog(string message, string where); + + ValueTask RemoveAll(bool includeClientLogs = false); + } + + public class Storage : IStorage + { + readonly IndexedDb _db; + readonly ILogger _logger; + + public Storage(IndexedDb indexedDb, ILogger logger) + { + _db = indexedDb; + _logger = logger; + } + + #region Messagges + + public async ValueTask GetMessage(string messageId) + { + await _db.OpenIndexedDb(); + var message = await _db.GetByKey(nameof(Message), messageId); + + if (message is null) + { + var messages = await GetMessages(); + return messages.FirstOrDefault(m => m.MessageId == messageId); + } + + return message; + } + + public async ValueTask> GetMessages() + { + await _db.OpenIndexedDb(); + var messages = await _db.GetAll(nameof(Message)) ?? new(); + + + if (messages.Count == 0) + { + messages.Add(new() + { + RootMessageId = default, + MessageId = "992167EE-8947-4823-B1E2-B4E1019B6974", + User = Faker.GetRandomUser(), + MessageType = (MessageType)Random.Shared.Next(0, 4), + Title = default, + Content = "test di messaggio normale senza titolo", + Medias = new(), + CreatedAt = DateTime.UtcNow.AddMinutes(Random.Shared.Next(-5000, 0)), + IsFavourite = Random.Shared.Next() % 2 == 0, + IsBoosted = Random.Shared.Next() % 2 == 0, + }); + messages.Add(new() + { + RootMessageId = default, + MessageId = "C5307644-4EA8-4B5F-A240-7CFE4DE34741", + User = Faker.GetRandomUser(), + MessageType = (MessageType)Random.Shared.Next(0, 4), + Title = "sopra la panca la capra canta", + Content = Markdown.ToHtml("test di messaggio con titolo"), + Medias = new(), + CreatedAt = DateTime.UtcNow.AddMinutes(Random.Shared.Next(-5000, 0)), + IsFavourite = Random.Shared.Next() % 2 == 0, + IsBoosted = Random.Shared.Next() % 2 == 0, + }); + messages.Add(new() + { + RootMessageId = default, + MessageId = "E473D562-D210-4453-93DA-157D4B90B0D8", + User = Faker.GetRandomUser(), + MessageType = (MessageType)Random.Shared.Next(0, 4), + Title = default, + Content = "dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd test di messaggio con overflow del testo", + Medias = new(), + CreatedAt = DateTime.UtcNow.AddMinutes(Random.Shared.Next(-5000, 0)), + IsFavourite = Random.Shared.Next() % 2 == 0, + IsBoosted = Random.Shared.Next() % 2 == 0, + }); + messages.Add(new() + { + RootMessageId = default, + MessageId = "adf89dc6-0484-430e-a7c9-fcb1179b0c28", + User = Faker.GetRandomUser(), + MessageType = (MessageType)Random.Shared.Next(0, 4), + Title = default, + Content = "test video", + Medias = new() + { + new() + { + FileName = "8252d175e714db88beb8ee0349dbac90405d3d5148e96e0cfd7de3b0876dbb1b.mp4", + Url = "https://ihatebeinga.live/media/8252d175e714db88beb8ee0349dbac90405d3d5148e96e0cfd7de3b0876dbb1b.mp4", + AltText = "https://ihatebeinga.live/media/8252d175e714db88beb8ee0349dbac90405d3d5148e96e0cfd7de3b0876dbb1b.mp4", + ContentType = "video/mp4" + } + }, + CreatedAt = DateTime.UtcNow.AddMinutes(Random.Shared.Next(-5000, 0)), + IsFavourite = Random.Shared.Next() % 2 == 0, + IsBoosted = Random.Shared.Next() % 2 == 0, + }); + messages.Add(new() + { + RootMessageId = default, + MessageId = "96025b43-5235-44e9-a3fa-98df31edfbfb", + User = Faker.GetRandomUser(), + MessageType = (MessageType)Random.Shared.Next(0, 4), + Title = default, + Content = "test immagine", + Medias = new() + { + new() + { + FileName = "51a7cf620f1dd096ac5867d5b78f8c71d57a23972b31c64ec124a8c41e77a618.jpg", + Url = "https://ihatebeinga.live/media/51a7cf620f1dd096ac5867d5b78f8c71d57a23972b31c64ec124a8c41e77a618.jpg", + AltText = "51a7cf620f1dd096ac5867d5b78f8c71d57a23972b31c64ec124a8c41e77a618.jpg", + ContentType = "image/jpg" + } + }, + CreatedAt = DateTime.UtcNow.AddMinutes(Random.Shared.Next(-5000, 0)), + IsFavourite = Random.Shared.Next() % 2 == 0, + IsBoosted = Random.Shared.Next() % 2 == 0, + }); + messages.Add(new() + { + RootMessageId = default, + MessageId = "96025b43-5235-44e9-a3fa-98df31edfbfb", + User = Faker.GetRandomUser(), + MessageType = (MessageType)Random.Shared.Next(0, 4), + Title = default, + Content = "test immagini", + Medias = new() + { + new() + { + FileName = "51a7cf620f1dd096ac5867d5b78f8c71d57a23972b31c64ec124a8c41e77a618.jpg", + Url = "https://ihatebeinga.live/media/51a7cf620f1dd096ac5867d5b78f8c71d57a23972b31c64ec124a8c41e77a618.jpg", + AltText = "51a7cf620f1dd096ac5867d5b78f8c71d57a23972b31c64ec124a8c41e77a618.jpg", + ContentType = "image/jpg" + }, + new() + { + FileName = "51a7cf620f1dd096ac5867d5b78f8c71d57a23972b31c64ec124a8c41e77a618.jpg", + Url = "https://ihatebeinga.live/media/51a7cf620f1dd096ac5867d5b78f8c71d57a23972b31c64ec124a8c41e77a618.jpg", + AltText = "51a7cf620f1dd096ac5867d5b78f8c71d57a23972b31c64ec124a8c41e77a618.jpg", + ContentType = "image/jpg" + }, + new() + { + FileName = "51a7cf620f1dd096ac5867d5b78f8c71d57a23972b31c64ec124a8c41e77a618.jpg", + Url = "https://ihatebeinga.live/media/51a7cf620f1dd096ac5867d5b78f8c71d57a23972b31c64ec124a8c41e77a618.jpg", + AltText = "51a7cf620f1dd096ac5867d5b78f8c71d57a23972b31c64ec124a8c41e77a618.jpg", + ContentType = "image/jpg" + } + }, + CreatedAt = DateTime.UtcNow.AddMinutes(Random.Shared.Next(-5000, 0)), + IsFavourite = Random.Shared.Next() % 2 == 0, + IsBoosted = Random.Shared.Next() % 2 == 0, + }); + } + + messages = messages.OrderByDescending(m => m.CreatedAt).ToList(); + + return messages; + } + + public async ValueTask AddMessages(List messages) + { + await _db.OpenIndexedDb(); + var result = await _db.AddItems(nameof(Message), messages); + _logger.LogInformation(result); + return result; + } + + public async ValueTask UpdateMessages(List messages) + { + await _db.OpenIndexedDb(); + var result = await _db.UpdateItems(nameof(Message), messages); + _logger.LogInformation(result); + return result; + + } + + public async ValueTask RemoveMessage(string messageId) + { + await _db.OpenIndexedDb(); + var result = await _db.DeleteByKey(nameof(Message), messageId); + _logger.LogInformation(result); + return result; + } + + #endregion + + #region Logs + + public async ValueTask> GetClientLogs() + { + try + { + _logger.LogInformation($"opening on {nameof(GetClientLogs)}"); + await _db.OpenIndexedDb(); + return (await _db.GetAll(nameof(ClientLogs))).OrderByDescending(cl => cl.TimeStamp).ToArray(); + } + catch (Exception ex) + { + _logger.LogError(ex, ex.Message); + return new List(); + } + } + + public async ValueTask AddLog(Exception exception, string where) + { + try + { + await _db.OpenIndexedDb(); + + var maxKey = await _db.GetMaxKey(nameof(ClientLogs)); + var minKey = await _db.GetMinKey(nameof(ClientLogs)); + + if (minKey - maxKey <= -100) + for (var i = minKey; i < minKey + 50; i++) + _ = await _db.DeleteByKey(nameof(ClientLogs), i); + + maxKey += 1; + var result = await _db.AddItems(nameof(ClientLogs), new() + { + new() + { + Id = maxKey, + Where = where, + Exception = new() + { + Type = exception.GetType().ToString(), + HelpLink = exception.HelpLink, + HResult = exception.HResult.ToString(), + InnerExceptionMessage = exception.InnerException?.Message, + Message = exception.Message, + Source = exception.Source, + StackTrace = exception.StackTrace, + TargetSiteName = exception.TargetSite?.Name + } + } + }); + _logger.LogDebug($"{nameof(AddLog)}() add logs result = {result}"); + } + catch (Exception ex) + { + _logger.LogError(ex, ex.Message); + } + } + + public async ValueTask AddLog(string message, string where) + { + try + { + await _db.OpenIndexedDb(); + + var maxKey = await _db.GetMaxKey(nameof(ClientLogs)); + var minKey = await _db.GetMinKey(nameof(ClientLogs)); + + if (minKey - maxKey <= -100) + for (var i = minKey; i < minKey + 50; i++) + _ = await _db.DeleteByKey(nameof(ClientLogs), i); + + maxKey += 1; + var result = await _db.AddItems(nameof(ClientLogs), new() + { + new() + { + Id = maxKey, + Where = where, + Exception = null, + WarningMessage = message + } + }); + } + catch (Exception ex) + { + _logger.LogError(ex, ex.Message); + } + } + + #endregion + + public async ValueTask RemoveAll(bool includeClientLogs = false) + { + try + { + _logger.LogInformation($"opening on {nameof(RemoveAll)}"); + await _db.OpenIndexedDb(); + _ = await _db.DeleteAll(nameof(Message)); + if (includeClientLogs) + _ = await _db.DeleteAll(nameof(ClientLogs)); + + return true; + } + catch (Exception ex) + { + _logger.LogError(ex, ex.Message); + return default; + } + } + + } +} diff --git a/Services/IndexedDb.cs b/Services/IndexedDb.cs new file mode 100644 index 0000000..0667514 --- /dev/null +++ b/Services/IndexedDb.cs @@ -0,0 +1,14 @@ +using DnetIndexedDb; + +using Microsoft.JSInterop; + +namespace decePubClient.Services +{ + public class IndexedDb : IndexedDbInterop + { + public IndexedDb(IJSRuntime jsRuntime, IndexedDbOptions options) + : base(jsRuntime, options) + { + } + } +} diff --git a/Services/MessagesService.cs b/Services/MessagesService.cs index 2139511..8fd67dd 100644 --- a/Services/MessagesService.cs +++ b/Services/MessagesService.cs @@ -1,10 +1,77 @@ -namespace decePubClient.Services +using Blazored.Modal.Services; +using decePubClient.Models; +using decePubClient.Models.Types; + +namespace decePubClient.Services { public class MessagesService { - public MessagesService() - { + readonly IModalService modalService; + readonly IStorage storage; + readonly HttpClient http; + public MessagesService(IHttpClientFactory clientFactory, IModalService modalService, IStorage storage) + { + this.modalService = modalService; + this.storage = storage; + http = clientFactory.CreateClient("default"); + } + + //Covers also direct message + public async Task SubmitMessage(MessageForm messageForm) + { + //TODO + + await Task.Run(() => {}); + return new(); + } + + //Covers also direct message + public async Task ReplyMessage(Message messageToReply, MessageType messageType = MessageType.Public) + { + //TODO + + await Task.Run(() => {}); + return messageToReply; + } + + public async Task BoostUnboostMessage(Message messageToReply) + { + //TODO + + await Task.Run(() => {}); + return messageToReply; + } + + public async Task FavouriteUnfavouriteMessage(Message messageToReply) + { + //TODO + + await Task.Run(() => {}); + return messageToReply; + } + + public async Task DeleteMessage(Message messageToReply) + { + //TODO + + await Task.Run(() => {}); + return messageToReply; + } + + public async Task BlockUserFromMessage(MessageUser messageUser) + { + //TODO + await Task.Run(() => {}); + return messageUser; + } + + public async Task SilenceUserFromMessage(MessageUser messageUser) + { + //TODO + + await Task.Run(() => {}); + return messageUser; } } -} +} \ No newline at end of file diff --git a/Shared/LoginDisplay.razor b/Shared/LoginDisplay.razor new file mode 100644 index 0000000..2c67fac --- /dev/null +++ b/Shared/LoginDisplay.razor @@ -0,0 +1,24 @@ +@inject NavigationManager Navigation +@inject SignOutSessionStateManager SignOutManager + + + + + + + + @CascadingState.Localizer["Login"] + + + + +@code { + [CascadingParameter] CascadingState CascadingState { get; set; } + private async Task BeginSignOut(MouseEventArgs args) + { + await SignOutManager.SetSignOutState(); + Navigation.NavigateTo("authentication/logout"); + } +} \ No newline at end of file diff --git a/Shared/MainLayout.razor b/Shared/MainLayout.razor index 839b8fe..b5e0b6e 100644 --- a/Shared/MainLayout.razor +++ b/Shared/MainLayout.razor @@ -1,17 +1,11 @@ @inherits LayoutComponentBase -
- +
+ -
-
- About -
- -
- @Body -
-
-
+
+
+ @Body +
+
+
\ No newline at end of file diff --git a/Shared/NavMenu.razor b/Shared/NavMenu.razor index 09dbda9..136798e 100644 --- a/Shared/NavMenu.razor +++ b/Shared/NavMenu.razor @@ -1,39 +1,222 @@ - + @code { - private bool collapseNavMenu = true; + [CascadingParameter] CascadingState CascadingState { get; set; } + string menuToggle = "hidden"; + bool IsThemeChanging { get; set; } = false; + bool ThemeIsDarkMode { get; set; } = false; + short ThemeIndexColour { get; set; } = 25; + int RandomId { get; set; } - private string? NavMenuCssClass => collapseNavMenu ? "collapse" : null; + protected override async Task OnInitializedAsync() + { + await Task.Run(() => + { + }); + RandomId = Random.Shared.Next(0, int.MaxValue); + if (!CascadingState.Status.IsMobileMedia()) + menuToggle = default; - private void ToggleNavMenu() - { - collapseNavMenu = !collapseNavMenu; - } -} + ThemeIsDarkMode = CascadingState.PublicCacheData?.ThemeIsDarkMode ?? false; + ThemeIndexColour = CascadingState.PublicCacheData?.ThemeIndexColour ?? 25; + } + + private void ToggleNavMenu() + { + menuToggle = menuToggle is { Length: > 0 } ? default : "hidden"; + } + + protected async Task ResetToOriginalColour() + { + IsThemeChanging = true; + CascadingState.PublicCacheData.ThemeIndexColour = + ThemeIndexColour = + 25; + + // if (AuthData?.User != null) + // { + // AuthData.User.UserSettings.ThemeIndexColour = ThemeIndexColour; + // await Storage.SetItemAsync(nameof(AuthData), AuthData); + // } + + await CascadingState.UpdatePublicCache(CascadingState.PublicCacheData); + + IsThemeChanging = false; + } + + protected async Task UpdateThemeColour(ChangeEventArgs eventArgs) + { + IsThemeChanging = true; + var indexColour = short.Parse(eventArgs.Value?.ToString()); + CascadingState.PublicCacheData.ThemeIndexColour = + ThemeIndexColour = + indexColour; + + // if (AuthData?.User != null) + // { + // AuthData.User.UserSettings.ThemeIndexColour = ThemeIndexColour; + // await Storage.SetItemAsync(nameof(AuthData), AuthData); + // } + + await CascadingState.UpdatePublicCache(CascadingState.PublicCacheData); + + IsThemeChanging = false; + } + + protected async Task UpdateThemeDarkMode(bool isDarkMode) + { + IsThemeChanging = true; + CascadingState.PublicCacheData.ThemeIsDarkMode = + ThemeIsDarkMode = isDarkMode; + Console.WriteLine("Dark updated {0}", ThemeIsDarkMode); + + // if (AuthData?.User != null) + // { + // AuthData.User.UserSettings.ThemeIsDarkMode = ThemeIsDarkMode; + // await Storage.SetItemAsync(nameof(AuthData), AuthData); + // } + + await CascadingState.UpdatePublicCache(CascadingState.PublicCacheData); + + IsThemeChanging = false; + } +} \ No newline at end of file diff --git a/Shared/RedirectToLogin.razor b/Shared/RedirectToLogin.razor new file mode 100644 index 0000000..7e8250f --- /dev/null +++ b/Shared/RedirectToLogin.razor @@ -0,0 +1,8 @@ +@inject NavigationManager Navigation + +@code { + protected override void OnInitialized() + { + Navigation.NavigateTo($"authentication/login?returnUrl={Uri.EscapeDataString(Navigation.Uri)}"); + } +} \ No newline at end of file diff --git a/Shared/SurveyPrompt.razor b/Shared/SurveyPrompt.razor deleted file mode 100644 index 962027f..0000000 --- a/Shared/SurveyPrompt.razor +++ /dev/null @@ -1,16 +0,0 @@ -
- - @Title - - - Please take our - brief survey - - and tell us what you think. -
- -@code { - // Demonstrates how a parent component can supply parameters - [Parameter] - public string? Title { get; set; } -} diff --git a/_Imports.razor b/_Imports.razor index 1b1f403..a161a02 100644 --- a/_Imports.razor +++ b/_Imports.razor @@ -1,10 +1,31 @@ -@using System.Net.Http +@using System.IO +@using System.Net.Http @using System.Net.Http.Json +@using System.Security.Claims @using Microsoft.AspNetCore.Components.Forms @using Microsoft.AspNetCore.Components.Routing @using Microsoft.AspNetCore.Components.Web @using Microsoft.AspNetCore.Components.Web.Virtualization @using Microsoft.AspNetCore.Components.WebAssembly.Http +@using Microsoft.AspNetCore.Components.WebAssembly.Authentication +@using Microsoft.AspNetCore.Components.Authorization +@using Microsoft.AspNetCore.Authorization +@using Microsoft.Extensions.Localization +@using Microsoft.Extensions.Logging @using Microsoft.JSInterop +@using Toolbelt.Blazor.HeadElement +@using Blazored.Modal +@using Blazored.Modal.Services +@using Blazored.LocalStorage +@using Blazor.DownloadFileFast.Interfaces +@using Markdig @using decePubClient +@using decePubClient.Services @using decePubClient.Shared +@using decePubClient.Models +@using decePubClient.Models.Types +@using decePubClient.Helpers +@using decePubClient.Resources +@using decePubClient.Extensions +@using decePubClient.Components +@using decePubClient.LayerComponents diff --git a/bundleconfig.json b/bundleconfig.json index 0e0dcd2..bb2273f 100644 --- a/bundleconfig.json +++ b/bundleconfig.json @@ -1,3 +1,22 @@ -{ - -} \ No newline at end of file +[ + { + "outputFileName": "wwwroot/css/style.min.css", + "inputFiles": [ +// "wwwroot/vendor/solid.css", +// "wwwroot/vendor/fontawesome.css", + //"wwwroot/vendor/open-iconic.css", + "wwwroot/vendor/ionicons.css", + "wwwroot/vendor/toggle-dark-light-mode.css", + "wwwroot/vendor/bulma.css", + "wwwroot/css/main.css", + "wwwroot/vendor/tailwind.css", + "wwwroot/css/tailwind-override.css" + ], + "minify": { + "enabled": false, + "gzip": false, + "brotli": false + }, + "sourceMap": false + } +] diff --git a/bundleconfig.json.bindings b/bundleconfig.json.bindings deleted file mode 100644 index 2a5ef85..0000000 --- a/bundleconfig.json.bindings +++ /dev/null @@ -1 +0,0 @@ -/// \ No newline at end of file diff --git a/compilerconfig.json b/compilerconfig.json index 0e0dcd2..4728c97 100644 --- a/compilerconfig.json +++ b/compilerconfig.json @@ -1,3 +1,12 @@ -{ - -} \ No newline at end of file +[ + { + "outputFile": "wwwroot/css/main.css", + "inputFile": "SCSS/main.scss", + "minify": { + "enabled": false + }, + "options": { + "sourceMap": false + } + } +] \ No newline at end of file diff --git a/decePubClient.csproj b/decePubClient.csproj index e3b9939..3eb3ff3 100644 --- a/decePubClient.csproj +++ b/decePubClient.csproj @@ -1,19 +1,57 @@ - + net6.0 - enable + disable enable service-worker-assets.js + true - - + + + + + + + + + + + + + + + + + + + True + True + ErrorMessages.resx + + + + + + ResXFileCodeGenerator + AllStrings.Designer.cs + + + PublicResXFileCodeGenerator + ErrorMessages.Designer.cs + + + + + + + diff --git a/decePubClient.sln b/decePubClient.sln index 194c18b..bf460a4 100644 --- a/decePubClient.sln +++ b/decePubClient.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.0.32112.339 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "decePubClient", "decePubClient.csproj", "{EBE69805-3005-49C2-81E4-A314A19F68B6}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "decePubClient", "decePubClient.csproj", "{EBE69805-3005-49C2-81E4-A314A19F68B6}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/package-lock.json b/package-lock.json index 6a14b7c..acbae05 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,6 +8,7 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", + "dev": true, "requires": { "@babel/highlight": "^7.16.7" } @@ -15,12 +16,14 @@ "@babel/helper-validator-identifier": { "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", - "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==" + "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==", + "dev": true }, "@babel/highlight": { "version": "7.16.10", "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz", "integrity": "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==", + "dev": true, "requires": { "@babel/helper-validator-identifier": "^7.16.7", "chalk": "^2.0.0", @@ -31,6 +34,7 @@ "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, "requires": { "color-convert": "^1.9.0" } @@ -39,6 +43,7 @@ "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, "requires": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", @@ -49,6 +54,7 @@ "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, "requires": { "color-name": "1.1.3" } @@ -56,17 +62,20 @@ "color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true }, "has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true }, "supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, "requires": { "has-flag": "^3.0.0" } @@ -96,20 +105,55 @@ "fastq": "^1.6.0" } }, + "@tailwindcss/aspect-ratio": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/aspect-ratio/-/aspect-ratio-0.4.0.tgz", + "integrity": "sha512-WJu0I4PpqNPuutpaA9zDUq2JXR+lorZ7PbLcKNLmb6GL9/HLfC7w3CRsMhJF4BbYd/lkY6CfXOvkYpuGnZfkpQ==", + "dev": true + }, + "@tailwindcss/forms": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.4.0.tgz", + "integrity": "sha512-DeaQBx6EgEeuZPQACvC+mKneJsD8am1uiJugjgQK1+/Vt+Ai0GpFBC2T2fqnUad71WgOxyrZPE6BG1VaI6YqfQ==", + "dev": true, + "requires": { + "mini-svg-data-uri": "^1.2.3" + } + }, + "@tailwindcss/line-clamp": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@tailwindcss/line-clamp/-/line-clamp-0.3.1.tgz", + "integrity": "sha512-pNr0T8LAc3TUx/gxCfQZRe9NB2dPEo/cedPHzUGIPxqDMhgjwNm6jYxww4W5l0zAsAddxr+XfZcqttGiFDgrGg==", + "dev": true + }, + "@tailwindcss/typography": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.1.tgz", + "integrity": "sha512-AmSzZSgLhHKlILKduU+PKBTHL6c+al82syZlRid1xgmlWwXagLigO+O++B4C0scpMfzW//f/3YCRcwwEHWoU3w==", + "dev": true, + "requires": { + "lodash.castarray": "^4.4.0", + "lodash.isplainobject": "^4.0.6", + "lodash.merge": "^4.6.2" + } + }, "@types/parse-json": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", + "dev": true }, "acorn": { "version": "7.4.1", "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true }, "acorn-node": { "version": "1.8.2", "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", + "dev": true, "requires": { "acorn": "^7.0.0", "acorn-walk": "^7.0.0", @@ -119,7 +163,8 @@ "acorn-walk": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", - "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==" + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "dev": true }, "ansi-regex": { "version": "5.0.1", @@ -146,7 +191,8 @@ "arg": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.1.tgz", - "integrity": "sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==" + "integrity": "sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==", + "dev": true }, "array-union": { "version": "3.0.1", @@ -157,6 +203,7 @@ "version": "10.4.2", "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.2.tgz", "integrity": "sha512-9fOPpHKuDW1w/0EKfRmVnxTDt8166MAnLI3mgZ1JCnhNtYWxcJ6Ud5CO/AVOZi/AvFa8DY9RTy3h3+tFBlrrdQ==", + "dev": true, "requires": { "browserslist": "^4.19.1", "caniuse-lite": "^1.0.30001297", @@ -183,6 +230,7 @@ "version": "4.19.1", "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.19.1.tgz", "integrity": "sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A==", + "dev": true, "requires": { "caniuse-lite": "^1.0.30001286", "electron-to-chromium": "^1.4.17", @@ -194,22 +242,26 @@ "callsites": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true }, "camelcase-css": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", - "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==" + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true }, "caniuse-lite": { "version": "1.0.30001306", "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001306.tgz", - "integrity": "sha512-Wd1OuggRzg1rbnM5hv1wXs2VkxJH/AA+LuudlIqvZiCvivF+wJJe2mgBZC8gPMgI7D76PP5CTx8Luvaqc1V6OQ==" + "integrity": "sha512-Wd1OuggRzg1rbnM5hv1wXs2VkxJH/AA+LuudlIqvZiCvivF+wJJe2mgBZC8gPMgI7D76PP5CTx8Luvaqc1V6OQ==", + "dev": true }, "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -257,6 +309,7 @@ "version": "7.0.1", "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", + "dev": true, "requires": { "@types/parse-json": "^4.0.0", "import-fresh": "^3.2.1", @@ -268,12 +321,14 @@ "cssesc": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true }, "defined": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", - "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=" + "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=", + "dev": true }, "dependency-graph": { "version": "0.11.0", @@ -284,6 +339,7 @@ "version": "5.2.0", "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.0.tgz", "integrity": "sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==", + "dev": true, "requires": { "acorn-node": "^1.6.1", "defined": "^1.0.0", @@ -293,7 +349,8 @@ "didyoumean": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", - "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true }, "dir-glob": { "version": "3.0.1", @@ -306,12 +363,14 @@ "dlv": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", - "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true }, "electron-to-chromium": { "version": "1.4.63", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.63.tgz", - "integrity": "sha512-e0PX/LRJPFRU4kzJKLvTobxyFdnANCvcoDCe8XcyTqP58nTWIwdsHvXLIl1RkB39X5yaosLaroMASWB0oIsgCA==" + "integrity": "sha512-e0PX/LRJPFRU4kzJKLvTobxyFdnANCvcoDCe8XcyTqP58nTWIwdsHvXLIl1RkB39X5yaosLaroMASWB0oIsgCA==", + "dev": true }, "emoji-regex": { "version": "8.0.0", @@ -322,6 +381,7 @@ "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, "requires": { "is-arrayish": "^0.2.1" } @@ -334,7 +394,8 @@ "escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true }, "fast-glob": { "version": "3.2.11", @@ -367,7 +428,8 @@ "fraction.js": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.1.2.tgz", - "integrity": "sha512-o2RiJQ6DZaR/5+Si0qJUIy637QMRudSi9kU/FFzx9EZazrIdnBgpU+3sEWCxAVhH2RtxW2Oz+T4p2o8uOPVcgA==" + "integrity": "sha512-o2RiJQ6DZaR/5+Si0qJUIy637QMRudSi9kU/FFzx9EZazrIdnBgpU+3sEWCxAVhH2RtxW2Oz+T4p2o8uOPVcgA==", + "dev": true }, "fs-extra": { "version": "10.0.0", @@ -388,7 +450,8 @@ "function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true }, "get-caller-file": { "version": "2.0.5", @@ -430,6 +493,7 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, "requires": { "function-bind": "^1.1.1" } @@ -437,7 +501,8 @@ "has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true }, "ignore": { "version": "5.2.0", @@ -448,6 +513,7 @@ "version": "3.3.0", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, "requires": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" @@ -456,7 +522,8 @@ "is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true }, "is-binary-path": { "version": "2.1.0", @@ -470,6 +537,7 @@ "version": "2.8.1", "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz", "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==", + "dev": true, "requires": { "has": "^1.0.3" } @@ -500,12 +568,14 @@ "js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true }, "json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true }, "jsonfile": { "version": "6.1.0", @@ -524,7 +594,26 @@ "lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "lodash.castarray": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.castarray/-/lodash.castarray-4.4.0.tgz", + "integrity": "sha1-wCUTUV4wna3dTCTGDP3c9ZdtkRU=", + "dev": true + }, + "lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=", + "dev": true + }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true }, "merge2": { "version": "1.4.1", @@ -540,20 +629,29 @@ "picomatch": "^2.2.3" } }, + "mini-svg-data-uri": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.3.tgz", + "integrity": "sha512-gSfqpMRC8IxghvMcxzzmMnWpXAChSA+vy4cia33RgerMS8Fex95akUyQZPbxJJmeBGiGmK7n/1OpUX8ksRjIdA==", + "dev": true + }, "minimist": { "version": "1.2.5", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", + "dev": true }, "nanoid": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.2.0.tgz", - "integrity": "sha512-fmsZYa9lpn69Ad5eDn7FMcnnSR+8R34W9qJEijxYhTbfOWzr22n1QxCMzXLK+ODyW2973V3Fux959iQoUxzUIA==" + "integrity": "sha512-fmsZYa9lpn69Ad5eDn7FMcnnSR+8R34W9qJEijxYhTbfOWzr22n1QxCMzXLK+ODyW2973V3Fux959iQoUxzUIA==", + "dev": true }, "node-releases": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.1.tgz", - "integrity": "sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==" + "integrity": "sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==", + "dev": true }, "normalize-path": { "version": "3.0.0", @@ -563,17 +661,20 @@ "normalize-range": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=" + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", + "dev": true }, "object-hash": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz", - "integrity": "sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==" + "integrity": "sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==", + "dev": true }, "parent-module": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, "requires": { "callsites": "^3.0.0" } @@ -582,6 +683,7 @@ "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, "requires": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", @@ -592,7 +694,8 @@ "path-parse": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true }, "path-type": { "version": "4.0.0", @@ -618,6 +721,7 @@ "version": "8.4.6", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.6.tgz", "integrity": "sha512-OovjwIzs9Te46vlEx7+uXB0PLijpwjXGKXjVGGPIGubGpq7uh5Xgf6D6FiJ/SzJMBosHDp6a2hiXOS97iBXcaA==", + "dev": true, "requires": { "nanoid": "^3.2.0", "picocolors": "^1.0.0", @@ -643,10 +747,28 @@ "yargs": "^17.0.0" } }, + "postcss-discard-comments": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.0.2.tgz", + "integrity": "sha512-6VQ3pYTsJHEsN2Bic88Aa7J/Brn4Bv8j/rqaFQZkH+pcVkKYwxCIvoMQkykEW7fBjmofdTnQgcivt5CCBJhtrg==", + "dev": true + }, + "postcss-import": { + "version": "14.0.2", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.0.2.tgz", + "integrity": "sha512-BJ2pVK4KhUyMcqjuKs9RijV5tatNzNa73e/32aBVE/ejYPe37iH+6vAu9WvqUkB5OAYgLHzbSvzHnorybJCm9g==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + } + }, "postcss-js": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.0.tgz", "integrity": "sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==", + "dev": true, "requires": { "camelcase-css": "^2.0.1" } @@ -664,10 +786,20 @@ "version": "5.0.6", "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-5.0.6.tgz", "integrity": "sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==", + "dev": true, "requires": { "postcss-selector-parser": "^6.0.6" } }, + "postcss-nesting": { + "version": "10.1.2", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.1.2.tgz", + "integrity": "sha512-dJGmgmsvpzKoVMtDMQQG/T6FSqs6kDtUDirIfl4KnjMCiY9/ETX8jdKyCd20swSRAbUYkaBKV20pxkzxoOXLqQ==", + "dev": true, + "requires": { + "postcss-selector-parser": "^6.0.8" + } + }, "postcss-reporter": { "version": "7.0.5", "resolved": "https://registry.npmjs.org/postcss-reporter/-/postcss-reporter-7.0.5.tgz", @@ -681,6 +813,7 @@ "version": "6.0.9", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.9.tgz", "integrity": "sha512-UO3SgnZOVTwu4kyLR22UQ1xZh086RyNZppb7lLAKBFK8a32ttG5i87Y/P3+2bRSjZNyJ1B7hfFNo273tKe9YxQ==", + "dev": true, "requires": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -689,7 +822,8 @@ "postcss-value-parser": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true }, "pretty-hrtime": { "version": "1.0.3", @@ -704,7 +838,8 @@ "quick-lru": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "dev": true }, "read-cache": { "version": "1.0.0", @@ -731,6 +866,7 @@ "version": "1.22.0", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz", "integrity": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==", + "dev": true, "requires": { "is-core-module": "^2.8.1", "path-parse": "^1.0.7", @@ -740,7 +876,8 @@ "resolve-from": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true }, "reusify": { "version": "1.0.4", @@ -763,7 +900,8 @@ "source-map-js": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "dev": true }, "string-width": { "version": "4.2.3", @@ -787,6 +925,7 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, "requires": { "has-flag": "^4.0.0" } @@ -794,12 +933,14 @@ "supports-preserve-symlinks-flag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true }, "tailwindcss": { "version": "3.0.18", "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.0.18.tgz", "integrity": "sha512-ihPTpEyA5ANgZbwKlgrbfnzOp9R5vDHFWmqxB1PT8NwOGCOFVVMl+Ps1cQQ369acaqqf1BEF77roCwK0lvNmTw==", + "dev": true, "requires": { "arg": "^5.0.1", "chalk": "^4.1.2", @@ -827,6 +968,7 @@ "version": "6.0.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, "requires": { "is-glob": "^4.0.3" } @@ -854,7 +996,8 @@ "util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true }, "wrap-ansi": { "version": "7.0.0", @@ -869,7 +1012,8 @@ "xtend": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true }, "y18n": { "version": "5.0.8", diff --git a/package.json b/package.json index 43db81c..93d60dc 100644 --- a/package.json +++ b/package.json @@ -4,12 +4,27 @@ "description": "", "main": "index.js", "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" + "buildcss": "postcss wwwroot/vendor/tailwind-generator.css -o wwwroot/vendor/tailwind.css" }, "repository": { "type": "git", "url": "https://git.thepra.dev/thepra/decePubClient.git" }, "author": "", - "license": "ISC" + "license": "ISC", + "dependencies": { + "postcss-cli": "^9.1.0" + }, + "devDependencies": { + "@tailwindcss/aspect-ratio": "^0.4.0", + "@tailwindcss/forms": "^0.4.0", + "@tailwindcss/line-clamp": "^0.3.0", + "@tailwindcss/typography": "^0.5.0", + "autoprefixer": "^10.4.0", + "postcss": "^8.4.5", + "postcss-import": "^14.0.2", + "postcss-nesting": "^10.0.3", + "tailwindcss": "^3.0.18", + "postcss-discard-comments": "^5.0.2" + } } diff --git a/postcss.config.js b/postcss.config.js index e69de29..e4b44e6 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -0,0 +1,7 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + 'postcss-discard-comments': {} + } +} \ No newline at end of file diff --git a/tailwind.config.js b/tailwind.config.js index 9843c05..8caee77 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,7 +1,13 @@ +const colors = require('tailwindcss/colors'); module.exports = { - content: [], - theme: { - extend: {}, - }, - plugins: [], + content: [ + './**/*.cs', + './**/*.html', + './**/*.razor' + ], + theme: { + extend: {}, + }, + variants: {}, + plugins: [], } diff --git a/wwwroot/appsettings.json b/wwwroot/appsettings.json new file mode 100644 index 0000000..4290191 --- /dev/null +++ b/wwwroot/appsettings.json @@ -0,0 +1,13 @@ +{ + "Local": { + "Authority": "https://openidconnect.net", + "ClientId": "1234.locahost", + "RedirectUri": "", + "MetadataUrl": "", + "PostLogoutRedirectUri": "", + "ResponseType": "", + "ResponseMode": "", + "AdditionalProviderParameters": [], + "DefaultScopes": [] + } +} diff --git a/wwwroot/browserconfig.xml b/wwwroot/browserconfig.xml index be719c2..2eb237e 100644 --- a/wwwroot/browserconfig.xml +++ b/wwwroot/browserconfig.xml @@ -2,10 +2,10 @@ - - - - + + + + #fadcc7 diff --git a/wwwroot/css/main.css b/wwwroot/css/main.css index 76bc4ec..b45296d 100644 --- a/wwwroot/css/main.css +++ b/wwwroot/css/main.css @@ -1,3 +1,447 @@ +:root { + --background: #fadcc7; + --text-color: #7c3a0b; + --placeholder-text-color: rgba(124, 58, 11, 0.3); + --black: #0a0a0a; + --black-bis: #121212; + --black-ter: #242424; + --white: #fffefe; + --primary-color: #fadcc7; + --primary-color-light: white; + --primary-color-dark: #f19c5f; + --primary-gradiend-light: #fce8d9; + --primary-gradiend-dark: #f8d0b4; + --primary-gradiend-lighter: #fdf3ec; + --primary-gradiend-darker: #f7c5a1; + --secondary-color: #c7e5fa; + --secondary-color-light: white; + --secondary-color-dark: #b4dcf8; + --light-shadow: rgba(255, 255, 255, 0.5); + --dark-shadow: rgba(241, 156, 95, 0.5); + /*--fa-primary-color: hsl(25,84%,26.4%); + --fa-secondary-color: hsl(25,84%,66%);*/ + --fa-primary-color: #0b4d7c; + --fa-secondary-color: #5fb4f1; + /*--fa-primary-color: hsl(115,84%,26.4%); + --fa-secondary-color: hsl(115,84%,66%);*/ + --fa-primary-opacity: 0.80; + --fa-secondary-opacity: 0.80; + --danger-color: #fbd5d5; + --warning-color: #fbf3d5; + --info-color: #d5f1fb; + --plus-green: #71ba40; + --plus-gold: #cab021; } +:root { + --shadow-offset: 8px; + --blur-radius: 16px; + --is-inset: inherit; } -/*# sourceMappingURL=main.css.map */ +.neomorph { + box-shadow: calc(-1 * var(--shadow-offset)) calc(-1 * var(--shadow-offset)) var(--blur-radius) var(--light-shadow), var(--shadow-offset) var(--shadow-offset) var(--blur-radius) var(--dark-shadow); } + .neomorphInset { + box-shadow: inset var(--shadow-offset) var(--shadow-offset) var(--blur-radius) var(--dark-shadow), inset calc(-1 * var(--shadow-offset)) calc(-1 * var(--shadow-offset)) var(--blur-radius) var(--light-shadow); } + .neomorphInset.is-nxxsmall { + --shadow-offset: 2px; + --blur-radius: 4px; } + @media (min-width: 640px) { + .neomorphInset.is-nxxsmall-sm { + --shadow-offset: 2px; + --blur-radius: 4px; } } + @media (min-width: 768px) { + .neomorphInset.is-nxxsmall-md { + --shadow-offset: 2px; + --blur-radius: 4px; } } + @media (min-width: 1024px) { + .neomorphInset.is-nxxsmall-lg { + --shadow-offset: 2px; + --blur-radius: 4px; } } + @media (min-width: 1280px) { + .neomorphInset.is-nxxsmall-xl { + --shadow-offset: 2px; + --blur-radius: 4px; } } + .neomorphInset.is-nxsmall { + --shadow-offset: 3px; + --blur-radius: 6px; } + @media (min-width: 640px) { + .neomorphInset.is-nxsmall-sm { + --shadow-offset: 3px; + --blur-radius: 6px; } } + @media (min-width: 768px) { + .neomorphInset.is-nxsmall-md { + --shadow-offset: 3px; + --blur-radius: 6px; } } + @media (min-width: 1024px) { + .neomorphInset.is-nxsmall-lg { + --shadow-offset: 3px; + --blur-radius: 6px; } } + @media (min-width: 1280px) { + .neomorphInset.is-nxsmall-xl { + --shadow-offset: 3px; + --blur-radius: 6px; } } + .neomorphInset.is-nsmall { + --shadow-offset: 6px; + --blur-radius: 12px; } + @media (min-width: 640px) { + .neomorphInset.is-nsmall-sm { + --shadow-offset: 6px; + --blur-radius: 12px; } } + @media (min-width: 768px) { + .neomorphInset.is-nsmall-md { + --shadow-offset: 6px; + --blur-radius: 12px; } } + @media (min-width: 1024px) { + .neomorphInset.is-nsmall-lg { + --shadow-offset: 6px; + --blur-radius: 12px; } } + @media (min-width: 1280px) { + .neomorphInset.is-nsmall-xl { + --shadow-offset: 6px; + --blur-radius: 12px; } } + .neomorph.is-nxxsmall { + --shadow-offset: 2px; + --blur-radius: 4px; } + @media (min-width: 640px) { + .neomorph.is-nxxsmall-sm { + --shadow-offset: 2px; + --blur-radius: 4px; } } + @media (min-width: 768px) { + .neomorph.is-nxxsmall-md { + --shadow-offset: 2px; + --blur-radius: 4px; } } + @media (min-width: 1024px) { + .neomorph.is-nxxsmall-lg { + --shadow-offset: 2px; + --blur-radius: 4px; } } + @media (min-width: 1280px) { + .neomorph.is-nxxsmall-xl { + --shadow-offset: 2px; + --blur-radius: 4px; } } + .neomorph.is-nxsmall { + --shadow-offset: 3px; + --blur-radius: 6px; } + @media (min-width: 640px) { + .neomorph.is-nxsmall-sm { + --shadow-offset: 3px; + --blur-radius: 6px; } } + @media (min-width: 768px) { + .neomorph.is-nxsmall-md { + --shadow-offset: 3px; + --blur-radius: 6px; } } + @media (min-width: 1024px) { + .neomorph.is-nxsmall-lg { + --shadow-offset: 3px; + --blur-radius: 6px; } } + @media (min-width: 1280px) { + .neomorph.is-nxsmall-xl { + --shadow-offset: 3px; + --blur-radius: 6px; } } + .neomorph.is-nsmall { + --shadow-offset: 6px; + --blur-radius: 12px; } + @media (min-width: 640px) { + .neomorph.is-nsmall-sm { + --shadow-offset: 6px; + --blur-radius: 12px; } } + @media (min-width: 768px) { + .neomorph.is-nsmall-md { + --shadow-offset: 6px; + --blur-radius: 12px; } } + @media (min-width: 1024px) { + .neomorph.is-nsmall-lg { + --shadow-offset: 6px; + --blur-radius: 12px; } } + @media (min-width: 1280px) { + .neomorph.is-nsmall-xl { + --shadow-offset: 6px; + --blur-radius: 12px; } } + .neomorph.is-nnormal { + --shadow-offset: 8px; + --blur-radius: 16px; } + @media (min-width: 640px) { + .neomorph.is-nnormal-sm { + --shadow-offset: 8px; + --blur-radius: 16px; } } + @media (min-width: 768px) { + .neomorph.is-nnormal-md { + --shadow-offset: 8px; + --blur-radius: 16px; } } + @media (min-width: 1024px) { + .neomorph.is-nnormal-lg { + --shadow-offset: 8px; + --blur-radius: 16px; } } + @media (min-width: 1280px) { + .neomorph.is-nnormal-xl { + --shadow-offset: 8px; + --blur-radius: 16px; } } + +button.neoBtn, .neoBtn { + background-image: linear-gradient(145deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)); + box-shadow: -3px -3px 6px var(--light-shadow), 3px 3px 6px var(--dark-shadow); + border: none; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + button.neoBtn:focus, .neoBtn:focus { + background-image: linear-gradient(-45deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)); + box-shadow: -3px -3px 6px var(--light-shadow), 3px 3px 6px var(--dark-shadow); + border: none; } + button.neoBtnSmall, .neoBtnSmall { + background-image: linear-gradient(145deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)); + box-shadow: -2px -2px 4px var(--light-shadow), 2px 2px 4px var(--dark-shadow); + border: none; } + button.neoBtnSmall:focus, .neoBtnSmall:focus { + background-image: linear-gradient(-45deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)); + box-shadow: -2px -2px 4px var(--light-shadow), 2px 2px 4px var(--dark-shadow); + border: none; } + button.neoBtnSmall:focus:not(:active), .neoBtnSmall:focus:not(:active) { + background-image: linear-gradient(-45deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)); + box-shadow: -2px -2px 4px var(--light-shadow), 2px 2px 4px var(--dark-shadow); } + button.neoBtnSmall:focus input[type=file], .neoBtnSmall:focus input[type=file] { + background-image: linear-gradient(-45deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)); } + button.neoBtnSmallPlain, .neoBtnSmallPlain { + box-shadow: -3px -3px 6px var(--light-shadow), 3px 3px 6px var(--dark-shadow); + border: none; } + button.neoBtnSmallPlain:focus, .neoBtnSmallPlain:focus { + box-shadow: -3px -3px 6px var(--light-shadow), 3px 3px 6px var(--dark-shadow); + border: none; } + button.neoBtnSmallInsetPlain, .neoBtnSmallInsetPlain { + background-image: linear-gradient(145deg, var(--primary-gradiend-dark), var(--primary-gradiend-light)); + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); + border: none; } + button.neoBtnSmallInsetPlain:focus, .neoBtnSmallInsetPlain:focus { + background-image: linear-gradient(145deg, var(--primary-gradiend-darker), var(--primary-gradiend-lighter)); + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); + border: none; } + button.neoBtnSmallXInsetPlain, .neoBtnSmallXInsetPlain { + background-image: linear-gradient(145deg, var(--primary-gradiend-dark), var(--primary-gradiend-light)); + box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow); + border: none; } + button.neoBtnSmallXInsetPlain:focus, .neoBtnSmallXInsetPlain:focus { + background-image: linear-gradient(145deg, var(--primary-gradiend-darker), var(--primary-gradiend-lighter)); + box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow); + border: none; } + button.neoBtnInsetPlain, .neoBtnInsetPlain { + background-image: linear-gradient(145deg, var(--primary-gradiend-dark), var(--primary-gradiend-light)); + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); + border: none; } + button.neoBtnInsetPlain:focus, .neoBtnInsetPlain:focus { + background-image: linear-gradient(145deg, var(--primary-gradiend-darker), var(--primary-gradiend-lighter)); + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); + border: none; } + button.neoBtnInsetPlain:focus:not(:active), .neoBtnInsetPlain:focus:not(:active) { + background-image: linear-gradient(145deg, var(--primary-gradiend-darker), var(--primary-gradiend-lighter)); + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); } + +button.neoFile, .neoFile { + box-shadow: 0px 0px 0px var(--light-shadow), 0px 0px 0px var(--dark-shadow); + transition: all .2s linear; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + button.neoFile:hover, .neoFile:hover { + box-shadow: -3px -3px 6px var(--light-shadow), 3px 3px 6px var(--dark-shadow); } + button.neoFile:focus-visible, .neoFile:focus-visible { + background: linear-gradient(-45deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)); + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); + outline: none; } + button.neoFile.isSelected, .neoFile.isSelected { + background: linear-gradient(145deg, var(--primary-gradiend-dark), var(--primary-gradiend-light)); + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); } + button.neoFile.isSelected:focus-visible, .neoFile.isSelected:focus-visible { + background: linear-gradient(-45deg, var(--primary-gradiend-lighter), var(--primary-gradiend-darker)); + outline: none; } + button.neoFile.is-active, button.neoFile.active, .neoFile.is-active, .neoFile.active { + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); + color: var(--black); } + +button.neoInput, .neoInput { + box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow); + background: linear-gradient(145deg, var(--primary-gradiend-dark), var(--primary-gradiend-light)); + border: none; } + button.neoInput:focus, .neoInput:focus { + background: linear-gradient(145deg, var(--primary-gradiend-darker), var(--primary-gradiend-lighter)); + border: none; } + +button.neoSelect > select, .neoSelect > select { + box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow); + background: linear-gradient(145deg, var(--primary-gradiend-dark), var(--primary-gradiend-light)); + border: none; } + button.neoSelect > select:focus, .neoSelect > select:focus { + background: linear-gradient(145deg, var(--primary-gradiend-darker), var(--primary-gradiend-lighter)); + border: none; } + +.neoCheckbox { + opacity: 0; + width: 0; } + .neoCheckbox:focus + label:before { + background: linear-gradient(145deg, var(--primary-gradiend-darker), var(--primary-gradiend-lighter)) !important; } + .neoCheckboxContainer { + position: relative; } + .neoCheckbox + label { + padding: .15rem .15rem .15rem 2rem; + cursor: pointer; + font-size: 1rem; + line-height: 1.5; } + .neoCheckbox + label:before { + animation-name: none; + width: 1.5rem; + height: 1.5rem; + border-radius: 100px; + position: absolute; + left: 0; + top: 0rem; + content: ''; + border: none; + box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow); + background: linear-gradient(145deg, var(--primary-gradiend-dark), var(--primary-gradiend-light)) !important; } + .neoCheckbox:checked.is-checked-bold + label { + font-weight: bold; } + .neoCheckbox:checked + label:after { + display: inline-block; + width: .375rem; + height: .6rem; + top: .35rem; + left: .55rem; + transform: translateY(0rem) rotate(45deg); + border-width: .1rem; + border-top-width: 0.1rem; + border-left-width: 0.1rem; + border-style: solid; + border-top-style: solid; + border-left-style: solid; + border-color: var(--text-color); + border-top: 0; + border-left: 0; + position: absolute; + content: ''; } + +hr.neoSeparatorFlat { + height: 10px; + border: none; + border-radius: 20px; + box-shadow: -2px -2px 4px var(--light-shadow), 2px 2px 4px var(--dark-shadow); + background: var(--background); } + +hr.neoSeparatorPressed { + height: 10px; + border: none; + border-radius: 20px; + box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow); + background: linear-gradient(145deg, var(--primary-gradiend-dark), var(--primary-gradiend-light)); } + +input.neoRange[type=range] { + height: 30px; + -webkit-appearance: none; + width: 100%; + background: transparent; } + input.neoRange[type=range]:focus { + outline: none; } + input.neoRange[type=range]::-webkit-slider-runnable-track { + width: 100%; + height: 20px; + cursor: pointer; + animate: 0.2s; + border-radius: 20px; + box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow); + background: linear-gradient(90deg, #fa9e9e, #faad9e, #fabd9e, #facc9e, #fadb9e, #faeb9e, #fafa9e, #ebfa9e, #dbfa9e, #ccfa9e, #bdfa9e, #adfa9e, #9efa9e, #9efaad, #9efabd, #9efacc, #9efadb, #9efaeb, #9efafa, #9eebfa, #9edbfa, #9eccfa, #9ebdfa, #9eadfa, #9e9efa, #ad9efa, #bd9efa, #cc9efa, #db9efa, #eb9efa, #fa9efa, #fa9eeb, #fa9edb, #fa9ecc, #fa9ebd, #fa9ead, #fa9ea0) !important; } + input.neoRange[type=range]::-webkit-slider-thumb { + border: none; + height: 26px; + width: 26px; + border-radius: 20px; + box-shadow: 2px 2px 4px var(--dark-shadow), -2px -2px 4px var(--light-shadow); + background: linear-gradient(145deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)) !important; + cursor: pointer; + -webkit-appearance: none; + margin-top: -3px; } + input.neoRange[type=range]:focus::-webkit-slider-runnable-track { + background: linear-gradient(90deg, #fa9e9e, #faad9e, #fabd9e, #facc9e, #fadb9e, #faeb9e, #fafa9e, #ebfa9e, #dbfa9e, #ccfa9e, #bdfa9e, #adfa9e, #9efa9e, #9efaad, #9efabd, #9efacc, #9efadb, #9efaeb, #9efafa, #9eebfa, #9edbfa, #9eccfa, #9ebdfa, #9eadfa, #9e9efa, #ad9efa, #bd9efa, #cc9efa, #db9efa, #eb9efa, #fa9efa, #fa9eeb, #fa9edb, #fa9ecc, #fa9ebd, #fa9ead, #fa9ea0) !important; } + input.neoRange[type=range]::-moz-range-track { + width: 100%; + height: 20px; + cursor: pointer; + border-radius: 20px; + box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow); + background: linear-gradient(90deg, #fa9e9e, #faad9e, #fabd9e, #facc9e, #fadb9e, #faeb9e, #fafa9e, #ebfa9e, #dbfa9e, #ccfa9e, #bdfa9e, #adfa9e, #9efa9e, #9efaad, #9efabd, #9efacc, #9efadb, #9efaeb, #9efafa, #9eebfa, #9edbfa, #9eccfa, #9ebdfa, #9eadfa, #9e9efa, #ad9efa, #bd9efa, #cc9efa, #db9efa, #eb9efa, #fa9efa, #fa9eeb, #fa9edb, #fa9ecc, #fa9ebd, #fa9ead, #fa9ea0) !important; + border: none; } + input.neoRange[type=range]::-moz-range-thumb { + border: none; + height: 26px; + width: 26px; + border-radius: 20px; + box-shadow: 2px 2px 4px var(--dark-shadow), -2px -2px 4px var(--light-shadow); + background: linear-gradient(145deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)) !important; + cursor: pointer; } + +body { + color: var(--text-color); + background-color: var(--background); } + +.background { + background-color: var(--background); } + +details > summary::-webkit-details-marker { + color: var(--text-color); } + +:focus-visible { + outline: none; } + +*, ::after, ::before { + scrollbar-color: inherit; + scrollbar-width: inherit; } + +::-webkit-scrollbar { + width: 8px; } + +::-webkit-scrollbar-button { + width: 8px; + height: 5px; } + +::-webkit-scrollbar-track { + background: transparent; + border: thin solid transparent; + box-shadow: none; + border-radius: 10px; } + +::-webkit-scrollbar-thumb { + background: var(--primary-color-dark); + border: thin solid transparent; + border-radius: 10px; } + +::-webkit-scrollbar-thumb:hover { + background: var(--primary-color-dark); } + +::-moz-selection { + /* Code for Firefox */ + color: var(--primary-color); + background: var(--primary-color-dark); } + +::selection { + color: var(--primary-color); + background: var(--primary-color-dark); } + +.flex.flex-col-reverse > div:first-child { + margin-top: 1rem; } + +.loadAnimation span { + animation-name: blink; + animation-duration: 1.4s; + animation-iteration-count: infinite; + animation-fill-mode: both; } + +.loadAnimation span:nth-child(1) { + animation-delay: .4s; } + +.loadAnimation span:nth-child(2) { + animation-delay: .3s; } + +.loadAnimation span:nth-child(3) { + animation-delay: .2s; } + +.loadAnimation span:nth-child(4) { + animation-delay: .2s; } + +.loadAnimation span:nth-child(5) { + animation-delay: .3s; } + +.loadAnimation span:nth-child(6) { + animation-delay: .4s; } diff --git a/wwwroot/css/style.min.css b/wwwroot/css/style.min.css index 99f8b1c..d8413b0 100644 --- a/wwwroot/css/style.min.css +++ b/wwwroot/css/style.min.css @@ -1 +1,8843 @@ -@font-face{font-family:'Font Awesome 5 Free';font-style:normal;font-weight:900;font-display:block;src:url("../webfonts/fa-solid-900.eot?");src:url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"),url("../webfonts/fa-solid-900.woff2") format("woff2"),url("../webfonts/fa-solid-900.woff") format("woff"),url("../webfonts/fa-solid-900.ttf") format("truetype")}.fa,.fas{font-family:'Font Awesome 5 Free';font-weight:900}.fa,.fas,.far,.fal,.fad,.fab{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:solid .08em #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fas.fa-pull-left,.far.fa-pull-left,.fal.fa-pull-left,.fab.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fas.fa-pull-right,.far.fa-pull-right,.fal.fa-pull-right,.fab.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1,-1);transform:scale(1,-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(-1,-1);transform:scale(-1,-1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-flip-both{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:""}.fa-accessible-icon:before{content:""}.fa-accusoft:before{content:""}.fa-acquisitions-incorporated:before{content:""}.fa-ad:before{content:""}.fa-address-book:before{content:""}.fa-address-card:before{content:""}.fa-adjust:before{content:""}.fa-adn:before{content:""}.fa-adversal:before{content:""}.fa-affiliatetheme:before{content:""}.fa-air-freshener:before{content:""}.fa-airbnb:before{content:""}.fa-algolia:before{content:""}.fa-align-center:before{content:""}.fa-align-justify:before{content:""}.fa-align-left:before{content:""}.fa-align-right:before{content:""}.fa-alipay:before{content:""}.fa-allergies:before{content:""}.fa-amazon:before{content:""}.fa-amazon-pay:before{content:""}.fa-ambulance:before{content:""}.fa-american-sign-language-interpreting:before{content:""}.fa-amilia:before{content:""}.fa-anchor:before{content:""}.fa-android:before{content:""}.fa-angellist:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angry:before{content:""}.fa-angrycreative:before{content:""}.fa-angular:before{content:""}.fa-ankh:before{content:""}.fa-app-store:before{content:""}.fa-app-store-ios:before{content:""}.fa-apper:before{content:""}.fa-apple:before{content:""}.fa-apple-alt:before{content:""}.fa-apple-pay:before{content:""}.fa-archive:before{content:""}.fa-archway:before{content:""}.fa-arrow-alt-circle-down:before{content:""}.fa-arrow-alt-circle-left:before{content:""}.fa-arrow-alt-circle-right:before{content:""}.fa-arrow-alt-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-down:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrows-alt:before{content:""}.fa-arrows-alt-h:before{content:""}.fa-arrows-alt-v:before{content:""}.fa-artstation:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-asterisk:before{content:""}.fa-asymmetrik:before{content:""}.fa-at:before{content:""}.fa-atlas:before{content:""}.fa-atlassian:before{content:""}.fa-atom:before{content:""}.fa-audible:before{content:""}.fa-audio-description:before{content:""}.fa-autoprefixer:before{content:""}.fa-avianex:before{content:""}.fa-aviato:before{content:""}.fa-award:before{content:""}.fa-aws:before{content:""}.fa-baby:before{content:""}.fa-baby-carriage:before{content:""}.fa-backspace:before{content:""}.fa-backward:before{content:""}.fa-bacon:before{content:""}.fa-bacteria:before{content:""}.fa-bacterium:before{content:""}.fa-bahai:before{content:""}.fa-balance-scale:before{content:""}.fa-balance-scale-left:before{content:""}.fa-balance-scale-right:before{content:""}.fa-ban:before{content:""}.fa-band-aid:before{content:""}.fa-bandcamp:before{content:""}.fa-barcode:before{content:""}.fa-bars:before{content:""}.fa-baseball-ball:before{content:""}.fa-basketball-ball:before{content:""}.fa-bath:before{content:""}.fa-battery-empty:before{content:""}.fa-battery-full:before{content:""}.fa-battery-half:before{content:""}.fa-battery-quarter:before{content:""}.fa-battery-three-quarters:before{content:""}.fa-battle-net:before{content:""}.fa-bed:before{content:""}.fa-beer:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-bell:before{content:""}.fa-bell-slash:before{content:""}.fa-bezier-curve:before{content:""}.fa-bible:before{content:""}.fa-bicycle:before{content:""}.fa-biking:before{content:""}.fa-bimobject:before{content:""}.fa-binoculars:before{content:""}.fa-biohazard:before{content:""}.fa-birthday-cake:before{content:""}.fa-bitbucket:before{content:""}.fa-bitcoin:before{content:""}.fa-bity:before{content:""}.fa-black-tie:before{content:""}.fa-blackberry:before{content:""}.fa-blender:before{content:""}.fa-blender-phone:before{content:""}.fa-blind:before{content:""}.fa-blog:before{content:""}.fa-blogger:before{content:""}.fa-blogger-b:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-bold:before{content:""}.fa-bolt:before{content:""}.fa-bomb:before{content:""}.fa-bone:before{content:""}.fa-bong:before{content:""}.fa-book:before{content:""}.fa-book-dead:before{content:""}.fa-book-medical:before{content:""}.fa-book-open:before{content:""}.fa-book-reader:before{content:""}.fa-bookmark:before{content:""}.fa-bootstrap:before{content:""}.fa-border-all:before{content:""}.fa-border-none:before{content:""}.fa-border-style:before{content:""}.fa-bowling-ball:before{content:""}.fa-box:before{content:""}.fa-box-open:before{content:""}.fa-box-tissue:before{content:""}.fa-boxes:before{content:""}.fa-braille:before{content:""}.fa-brain:before{content:""}.fa-bread-slice:before{content:""}.fa-briefcase:before{content:""}.fa-briefcase-medical:before{content:""}.fa-broadcast-tower:before{content:""}.fa-broom:before{content:""}.fa-brush:before{content:""}.fa-btc:before{content:""}.fa-buffer:before{content:""}.fa-bug:before{content:""}.fa-building:before{content:""}.fa-bullhorn:before{content:""}.fa-bullseye:before{content:""}.fa-burn:before{content:""}.fa-buromobelexperte:before{content:""}.fa-bus:before{content:""}.fa-bus-alt:before{content:""}.fa-business-time:before{content:""}.fa-buy-n-large:before{content:""}.fa-buysellads:before{content:""}.fa-calculator:before{content:""}.fa-calendar:before{content:""}.fa-calendar-alt:before{content:""}.fa-calendar-check:before{content:""}.fa-calendar-day:before{content:""}.fa-calendar-minus:before{content:""}.fa-calendar-plus:before{content:""}.fa-calendar-times:before{content:""}.fa-calendar-week:before{content:""}.fa-camera:before{content:""}.fa-camera-retro:before{content:""}.fa-campground:before{content:""}.fa-canadian-maple-leaf:before{content:""}.fa-candy-cane:before{content:""}.fa-cannabis:before{content:""}.fa-capsules:before{content:""}.fa-car:before{content:""}.fa-car-alt:before{content:""}.fa-car-battery:before{content:""}.fa-car-crash:before{content:""}.fa-car-side:before{content:""}.fa-caravan:before{content:""}.fa-caret-down:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-caret-square-down:before{content:""}.fa-caret-square-left:before{content:""}.fa-caret-square-right:before{content:""}.fa-caret-square-up:before{content:""}.fa-caret-up:before{content:""}.fa-carrot:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-cart-plus:before{content:""}.fa-cash-register:before{content:""}.fa-cat:before{content:""}.fa-cc-amazon-pay:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-apple-pay:before{content:""}.fa-cc-diners-club:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-cc-visa:before{content:""}.fa-centercode:before{content:""}.fa-centos:before{content:""}.fa-certificate:before{content:""}.fa-chair:before{content:""}.fa-chalkboard:before{content:""}.fa-chalkboard-teacher:before{content:""}.fa-charging-station:before{content:""}.fa-chart-area:before{content:""}.fa-chart-bar:before{content:""}.fa-chart-line:before{content:""}.fa-chart-pie:before{content:""}.fa-check:before{content:""}.fa-check-circle:before{content:""}.fa-check-double:before{content:""}.fa-check-square:before{content:""}.fa-cheese:before{content:""}.fa-chess:before{content:""}.fa-chess-bishop:before{content:""}.fa-chess-board:before{content:""}.fa-chess-king:before{content:""}.fa-chess-knight:before{content:""}.fa-chess-pawn:before{content:""}.fa-chess-queen:before{content:""}.fa-chess-rook:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-down:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-chevron-up:before{content:""}.fa-child:before{content:""}.fa-chrome:before{content:""}.fa-chromecast:before{content:""}.fa-church:before{content:""}.fa-circle:before{content:""}.fa-circle-notch:before{content:""}.fa-city:before{content:""}.fa-clinic-medical:before{content:""}.fa-clipboard:before{content:""}.fa-clipboard-check:before{content:""}.fa-clipboard-list:before{content:""}.fa-clock:before{content:""}.fa-clone:before{content:""}.fa-closed-captioning:before{content:""}.fa-cloud:before{content:""}.fa-cloud-download-alt:before{content:""}.fa-cloud-meatball:before{content:""}.fa-cloud-moon:before{content:""}.fa-cloud-moon-rain:before{content:""}.fa-cloud-rain:before{content:""}.fa-cloud-showers-heavy:before{content:""}.fa-cloud-sun:before{content:""}.fa-cloud-sun-rain:before{content:""}.fa-cloud-upload-alt:before{content:""}.fa-cloudflare:before{content:""}.fa-cloudscale:before{content:""}.fa-cloudsmith:before{content:""}.fa-cloudversify:before{content:""}.fa-cocktail:before{content:""}.fa-code:before{content:""}.fa-code-branch:before{content:""}.fa-codepen:before{content:""}.fa-codiepie:before{content:""}.fa-coffee:before{content:""}.fa-cog:before{content:""}.fa-cogs:before{content:""}.fa-coins:before{content:""}.fa-columns:before{content:""}.fa-comment:before{content:""}.fa-comment-alt:before{content:""}.fa-comment-dollar:before{content:""}.fa-comment-dots:before{content:""}.fa-comment-medical:before{content:""}.fa-comment-slash:before{content:""}.fa-comments:before{content:""}.fa-comments-dollar:before{content:""}.fa-compact-disc:before{content:""}.fa-compass:before{content:""}.fa-compress:before{content:""}.fa-compress-alt:before{content:""}.fa-compress-arrows-alt:before{content:""}.fa-concierge-bell:before{content:""}.fa-confluence:before{content:""}.fa-connectdevelop:before{content:""}.fa-contao:before{content:""}.fa-cookie:before{content:""}.fa-cookie-bite:before{content:""}.fa-copy:before{content:""}.fa-copyright:before{content:""}.fa-cotton-bureau:before{content:""}.fa-couch:before{content:""}.fa-cpanel:before{content:""}.fa-creative-commons:before{content:""}.fa-creative-commons-by:before{content:""}.fa-creative-commons-nc:before{content:""}.fa-creative-commons-nc-eu:before{content:""}.fa-creative-commons-nc-jp:before{content:""}.fa-creative-commons-nd:before{content:""}.fa-creative-commons-pd:before{content:""}.fa-creative-commons-pd-alt:before{content:""}.fa-creative-commons-remix:before{content:""}.fa-creative-commons-sa:before{content:""}.fa-creative-commons-sampling:before{content:""}.fa-creative-commons-sampling-plus:before{content:""}.fa-creative-commons-share:before{content:""}.fa-creative-commons-zero:before{content:""}.fa-credit-card:before{content:""}.fa-critical-role:before{content:""}.fa-crop:before{content:""}.fa-crop-alt:before{content:""}.fa-cross:before{content:""}.fa-crosshairs:before{content:""}.fa-crow:before{content:""}.fa-crown:before{content:""}.fa-crutch:before{content:""}.fa-css3:before{content:""}.fa-css3-alt:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-cut:before{content:""}.fa-cuttlefish:before{content:""}.fa-d-and-d:before{content:""}.fa-d-and-d-beyond:before{content:""}.fa-dailymotion:before{content:""}.fa-dashcube:before{content:""}.fa-database:before{content:""}.fa-deaf:before{content:""}.fa-deezer:before{content:""}.fa-delicious:before{content:""}.fa-democrat:before{content:""}.fa-deploydog:before{content:""}.fa-deskpro:before{content:""}.fa-desktop:before{content:""}.fa-dev:before{content:""}.fa-deviantart:before{content:""}.fa-dharmachakra:before{content:""}.fa-dhl:before{content:""}.fa-diagnoses:before{content:""}.fa-diaspora:before{content:""}.fa-dice:before{content:""}.fa-dice-d20:before{content:""}.fa-dice-d6:before{content:""}.fa-dice-five:before{content:""}.fa-dice-four:before{content:""}.fa-dice-one:before{content:""}.fa-dice-six:before{content:""}.fa-dice-three:before{content:""}.fa-dice-two:before{content:""}.fa-digg:before{content:""}.fa-digital-ocean:before{content:""}.fa-digital-tachograph:before{content:""}.fa-directions:before{content:""}.fa-discord:before{content:""}.fa-discourse:before{content:""}.fa-disease:before{content:""}.fa-divide:before{content:""}.fa-dizzy:before{content:""}.fa-dna:before{content:""}.fa-dochub:before{content:""}.fa-docker:before{content:""}.fa-dog:before{content:""}.fa-dollar-sign:before{content:""}.fa-dolly:before{content:""}.fa-dolly-flatbed:before{content:""}.fa-donate:before{content:""}.fa-door-closed:before{content:""}.fa-door-open:before{content:""}.fa-dot-circle:before{content:""}.fa-dove:before{content:""}.fa-download:before{content:""}.fa-draft2digital:before{content:""}.fa-drafting-compass:before{content:""}.fa-dragon:before{content:""}.fa-draw-polygon:before{content:""}.fa-dribbble:before{content:""}.fa-dribbble-square:before{content:""}.fa-dropbox:before{content:""}.fa-drum:before{content:""}.fa-drum-steelpan:before{content:""}.fa-drumstick-bite:before{content:""}.fa-drupal:before{content:""}.fa-dumbbell:before{content:""}.fa-dumpster:before{content:""}.fa-dumpster-fire:before{content:""}.fa-dungeon:before{content:""}.fa-dyalog:before{content:""}.fa-earlybirds:before{content:""}.fa-ebay:before{content:""}.fa-edge:before{content:""}.fa-edge-legacy:before{content:""}.fa-edit:before{content:""}.fa-egg:before{content:""}.fa-eject:before{content:""}.fa-elementor:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-ello:before{content:""}.fa-ember:before{content:""}.fa-empire:before{content:""}.fa-envelope:before{content:""}.fa-envelope-open:before{content:""}.fa-envelope-open-text:before{content:""}.fa-envelope-square:before{content:""}.fa-envira:before{content:""}.fa-equals:before{content:""}.fa-eraser:before{content:""}.fa-erlang:before{content:""}.fa-ethereum:before{content:""}.fa-ethernet:before{content:""}.fa-etsy:before{content:""}.fa-euro-sign:before{content:""}.fa-evernote:before{content:""}.fa-exchange-alt:before{content:""}.fa-exclamation:before{content:""}.fa-exclamation-circle:before{content:""}.fa-exclamation-triangle:before{content:""}.fa-expand:before{content:""}.fa-expand-alt:before{content:""}.fa-expand-arrows-alt:before{content:""}.fa-expeditedssl:before{content:""}.fa-external-link-alt:before{content:""}.fa-external-link-square-alt:before{content:""}.fa-eye:before{content:""}.fa-eye-dropper:before{content:""}.fa-eye-slash:before{content:""}.fa-facebook:before{content:""}.fa-facebook-f:before{content:""}.fa-facebook-messenger:before{content:""}.fa-facebook-square:before{content:""}.fa-fan:before{content:""}.fa-fantasy-flight-games:before{content:""}.fa-fast-backward:before{content:""}.fa-fast-forward:before{content:""}.fa-faucet:before{content:""}.fa-fax:before{content:""}.fa-feather:before{content:""}.fa-feather-alt:before{content:""}.fa-fedex:before{content:""}.fa-fedora:before{content:""}.fa-female:before{content:""}.fa-fighter-jet:before{content:""}.fa-figma:before{content:""}.fa-file:before{content:""}.fa-file-alt:before{content:""}.fa-file-archive:before{content:""}.fa-file-audio:before{content:""}.fa-file-code:before{content:""}.fa-file-contract:before{content:""}.fa-file-csv:before{content:""}.fa-file-download:before{content:""}.fa-file-excel:before{content:""}.fa-file-export:before{content:""}.fa-file-image:before{content:""}.fa-file-import:before{content:""}.fa-file-invoice:before{content:""}.fa-file-invoice-dollar:before{content:""}.fa-file-medical:before{content:""}.fa-file-medical-alt:before{content:""}.fa-file-pdf:before{content:""}.fa-file-powerpoint:before{content:""}.fa-file-prescription:before{content:""}.fa-file-signature:before{content:""}.fa-file-upload:before{content:""}.fa-file-video:before{content:""}.fa-file-word:before{content:""}.fa-fill:before{content:""}.fa-fill-drip:before{content:""}.fa-film:before{content:""}.fa-filter:before{content:""}.fa-fingerprint:before{content:""}.fa-fire:before{content:""}.fa-fire-alt:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-firefox:before{content:""}.fa-firefox-browser:before{content:""}.fa-first-aid:before{content:""}.fa-first-order:before{content:""}.fa-first-order-alt:before{content:""}.fa-firstdraft:before{content:""}.fa-fish:before{content:""}.fa-fist-raised:before{content:""}.fa-flag:before{content:""}.fa-flag-checkered:before{content:""}.fa-flag-usa:before{content:""}.fa-flask:before{content:""}.fa-flickr:before{content:""}.fa-flipboard:before{content:""}.fa-flushed:before{content:""}.fa-fly:before{content:""}.fa-folder:before{content:""}.fa-folder-minus:before{content:""}.fa-folder-open:before{content:""}.fa-folder-plus:before{content:""}.fa-font:before{content:""}.fa-font-awesome:before{content:""}.fa-font-awesome-alt:before{content:""}.fa-font-awesome-flag:before{content:""}.fa-font-awesome-logo-full:before{content:""}.fa-fonticons:before{content:""}.fa-fonticons-fi:before{content:""}.fa-football-ball:before{content:""}.fa-fort-awesome:before{content:""}.fa-fort-awesome-alt:before{content:""}.fa-forumbee:before{content:""}.fa-forward:before{content:""}.fa-foursquare:before{content:""}.fa-free-code-camp:before{content:""}.fa-freebsd:before{content:""}.fa-frog:before{content:""}.fa-frown:before{content:""}.fa-frown-open:before{content:""}.fa-fulcrum:before{content:""}.fa-funnel-dollar:before{content:""}.fa-futbol:before{content:""}.fa-galactic-republic:before{content:""}.fa-galactic-senate:before{content:""}.fa-gamepad:before{content:""}.fa-gas-pump:before{content:""}.fa-gavel:before{content:""}.fa-gem:before{content:""}.fa-genderless:before{content:""}.fa-get-pocket:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-ghost:before{content:""}.fa-gift:before{content:""}.fa-gifts:before{content:""}.fa-git:before{content:""}.fa-git-alt:before{content:""}.fa-git-square:before{content:""}.fa-github:before{content:""}.fa-github-alt:before{content:""}.fa-github-square:before{content:""}.fa-gitkraken:before{content:""}.fa-gitlab:before{content:""}.fa-gitter:before{content:""}.fa-glass-cheers:before{content:""}.fa-glass-martini:before{content:""}.fa-glass-martini-alt:before{content:""}.fa-glass-whiskey:before{content:""}.fa-glasses:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-globe:before{content:""}.fa-globe-africa:before{content:""}.fa-globe-americas:before{content:""}.fa-globe-asia:before{content:""}.fa-globe-europe:before{content:""}.fa-gofore:before{content:""}.fa-golf-ball:before{content:""}.fa-goodreads:before{content:""}.fa-goodreads-g:before{content:""}.fa-google:before{content:""}.fa-google-drive:before{content:""}.fa-google-pay:before{content:""}.fa-google-play:before{content:""}.fa-google-plus:before{content:""}.fa-google-plus-g:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-wallet:before{content:""}.fa-gopuram:before{content:""}.fa-graduation-cap:before{content:""}.fa-gratipay:before{content:""}.fa-grav:before{content:""}.fa-greater-than:before{content:""}.fa-greater-than-equal:before{content:""}.fa-grimace:before{content:""}.fa-grin:before{content:""}.fa-grin-alt:before{content:""}.fa-grin-beam:before{content:""}.fa-grin-beam-sweat:before{content:""}.fa-grin-hearts:before{content:""}.fa-grin-squint:before{content:""}.fa-grin-squint-tears:before{content:""}.fa-grin-stars:before{content:""}.fa-grin-tears:before{content:""}.fa-grin-tongue:before{content:""}.fa-grin-tongue-squint:before{content:""}.fa-grin-tongue-wink:before{content:""}.fa-grin-wink:before{content:""}.fa-grip-horizontal:before{content:""}.fa-grip-lines:before{content:""}.fa-grip-lines-vertical:before{content:""}.fa-grip-vertical:before{content:""}.fa-gripfire:before{content:""}.fa-grunt:before{content:""}.fa-guilded:before{content:""}.fa-guitar:before{content:""}.fa-gulp:before{content:""}.fa-h-square:before{content:""}.fa-hacker-news:before{content:""}.fa-hacker-news-square:before{content:""}.fa-hackerrank:before{content:""}.fa-hamburger:before{content:""}.fa-hammer:before{content:""}.fa-hamsa:before{content:""}.fa-hand-holding:before{content:""}.fa-hand-holding-heart:before{content:""}.fa-hand-holding-medical:before{content:""}.fa-hand-holding-usd:before{content:""}.fa-hand-holding-water:before{content:""}.fa-hand-lizard:before{content:""}.fa-hand-middle-finger:before{content:""}.fa-hand-paper:before{content:""}.fa-hand-peace:before{content:""}.fa-hand-point-down:before{content:""}.fa-hand-point-left:before{content:""}.fa-hand-point-right:before{content:""}.fa-hand-point-up:before{content:""}.fa-hand-pointer:before{content:""}.fa-hand-rock:before{content:""}.fa-hand-scissors:before{content:""}.fa-hand-sparkles:before{content:""}.fa-hand-spock:before{content:""}.fa-hands:before{content:""}.fa-hands-helping:before{content:""}.fa-hands-wash:before{content:""}.fa-handshake:before{content:""}.fa-handshake-alt-slash:before{content:""}.fa-handshake-slash:before{content:""}.fa-hanukiah:before{content:""}.fa-hard-hat:before{content:""}.fa-hashtag:before{content:""}.fa-hat-cowboy:before{content:""}.fa-hat-cowboy-side:before{content:""}.fa-hat-wizard:before{content:""}.fa-hdd:before{content:""}.fa-head-side-cough:before{content:""}.fa-head-side-cough-slash:before{content:""}.fa-head-side-mask:before{content:""}.fa-head-side-virus:before{content:""}.fa-heading:before{content:""}.fa-headphones:before{content:""}.fa-headphones-alt:before{content:""}.fa-headset:before{content:""}.fa-heart:before{content:""}.fa-heart-broken:before{content:""}.fa-heartbeat:before{content:""}.fa-helicopter:before{content:""}.fa-highlighter:before{content:""}.fa-hiking:before{content:""}.fa-hippo:before{content:""}.fa-hips:before{content:""}.fa-hire-a-helper:before{content:""}.fa-history:before{content:""}.fa-hive:before{content:""}.fa-hockey-puck:before{content:""}.fa-holly-berry:before{content:""}.fa-home:before{content:""}.fa-hooli:before{content:""}.fa-hornbill:before{content:""}.fa-horse:before{content:""}.fa-horse-head:before{content:""}.fa-hospital:before{content:""}.fa-hospital-alt:before{content:""}.fa-hospital-symbol:before{content:""}.fa-hospital-user:before{content:""}.fa-hot-tub:before{content:""}.fa-hotdog:before{content:""}.fa-hotel:before{content:""}.fa-hotjar:before{content:""}.fa-hourglass:before{content:""}.fa-hourglass-end:before{content:""}.fa-hourglass-half:before{content:""}.fa-hourglass-start:before{content:""}.fa-house-damage:before{content:""}.fa-house-user:before{content:""}.fa-houzz:before{content:""}.fa-hryvnia:before{content:""}.fa-html5:before{content:""}.fa-hubspot:before{content:""}.fa-i-cursor:before{content:""}.fa-ice-cream:before{content:""}.fa-icicles:before{content:""}.fa-icons:before{content:""}.fa-id-badge:before{content:""}.fa-id-card:before{content:""}.fa-id-card-alt:before{content:""}.fa-ideal:before{content:""}.fa-igloo:before{content:""}.fa-image:before{content:""}.fa-images:before{content:""}.fa-imdb:before{content:""}.fa-inbox:before{content:""}.fa-indent:before{content:""}.fa-industry:before{content:""}.fa-infinity:before{content:""}.fa-info:before{content:""}.fa-info-circle:before{content:""}.fa-innosoft:before{content:""}.fa-instagram:before{content:""}.fa-instagram-square:before{content:""}.fa-instalod:before{content:""}.fa-intercom:before{content:""}.fa-internet-explorer:before{content:""}.fa-invision:before{content:""}.fa-ioxhost:before{content:""}.fa-italic:before{content:""}.fa-itch-io:before{content:""}.fa-itunes:before{content:""}.fa-itunes-note:before{content:""}.fa-java:before{content:""}.fa-jedi:before{content:""}.fa-jedi-order:before{content:""}.fa-jenkins:before{content:""}.fa-jira:before{content:""}.fa-joget:before{content:""}.fa-joint:before{content:""}.fa-joomla:before{content:""}.fa-journal-whills:before{content:""}.fa-js:before{content:""}.fa-js-square:before{content:""}.fa-jsfiddle:before{content:""}.fa-kaaba:before{content:""}.fa-kaggle:before{content:""}.fa-key:before{content:""}.fa-keybase:before{content:""}.fa-keyboard:before{content:""}.fa-keycdn:before{content:""}.fa-khanda:before{content:""}.fa-kickstarter:before{content:""}.fa-kickstarter-k:before{content:""}.fa-kiss:before{content:""}.fa-kiss-beam:before{content:""}.fa-kiss-wink-heart:before{content:""}.fa-kiwi-bird:before{content:""}.fa-korvue:before{content:""}.fa-landmark:before{content:""}.fa-language:before{content:""}.fa-laptop:before{content:""}.fa-laptop-code:before{content:""}.fa-laptop-house:before{content:""}.fa-laptop-medical:before{content:""}.fa-laravel:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-laugh:before{content:""}.fa-laugh-beam:before{content:""}.fa-laugh-squint:before{content:""}.fa-laugh-wink:before{content:""}.fa-layer-group:before{content:""}.fa-leaf:before{content:""}.fa-leanpub:before{content:""}.fa-lemon:before{content:""}.fa-less:before{content:""}.fa-less-than:before{content:""}.fa-less-than-equal:before{content:""}.fa-level-down-alt:before{content:""}.fa-level-up-alt:before{content:""}.fa-life-ring:before{content:""}.fa-lightbulb:before{content:""}.fa-line:before{content:""}.fa-link:before{content:""}.fa-linkedin:before{content:""}.fa-linkedin-in:before{content:""}.fa-linode:before{content:""}.fa-linux:before{content:""}.fa-lira-sign:before{content:""}.fa-list:before{content:""}.fa-list-alt:before{content:""}.fa-list-ol:before{content:""}.fa-list-ul:before{content:""}.fa-location-arrow:before{content:""}.fa-lock:before{content:""}.fa-lock-open:before{content:""}.fa-long-arrow-alt-down:before{content:""}.fa-long-arrow-alt-left:before{content:""}.fa-long-arrow-alt-right:before{content:""}.fa-long-arrow-alt-up:before{content:""}.fa-low-vision:before{content:""}.fa-luggage-cart:before{content:""}.fa-lungs:before{content:""}.fa-lungs-virus:before{content:""}.fa-lyft:before{content:""}.fa-magento:before{content:""}.fa-magic:before{content:""}.fa-magnet:before{content:""}.fa-mail-bulk:before{content:""}.fa-mailchimp:before{content:""}.fa-male:before{content:""}.fa-mandalorian:before{content:""}.fa-map:before{content:""}.fa-map-marked:before{content:""}.fa-map-marked-alt:before{content:""}.fa-map-marker:before{content:""}.fa-map-marker-alt:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-markdown:before{content:""}.fa-marker:before{content:""}.fa-mars:before{content:""}.fa-mars-double:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mask:before{content:""}.fa-mastodon:before{content:""}.fa-maxcdn:before{content:""}.fa-mdb:before{content:""}.fa-medal:before{content:""}.fa-medapps:before{content:""}.fa-medium:before{content:""}.fa-medium-m:before{content:""}.fa-medkit:before{content:""}.fa-medrt:before{content:""}.fa-meetup:before{content:""}.fa-megaport:before{content:""}.fa-meh:before{content:""}.fa-meh-blank:before{content:""}.fa-meh-rolling-eyes:before{content:""}.fa-memory:before{content:""}.fa-mendeley:before{content:""}.fa-menorah:before{content:""}.fa-mercury:before{content:""}.fa-meteor:before{content:""}.fa-microblog:before{content:""}.fa-microchip:before{content:""}.fa-microphone:before{content:""}.fa-microphone-alt:before{content:""}.fa-microphone-alt-slash:before{content:""}.fa-microphone-slash:before{content:""}.fa-microscope:before{content:""}.fa-microsoft:before{content:""}.fa-minus:before{content:""}.fa-minus-circle:before{content:""}.fa-minus-square:before{content:""}.fa-mitten:before{content:""}.fa-mix:before{content:""}.fa-mixcloud:before{content:""}.fa-mixer:before{content:""}.fa-mizuni:before{content:""}.fa-mobile:before{content:""}.fa-mobile-alt:before{content:""}.fa-modx:before{content:""}.fa-monero:before{content:""}.fa-money-bill:before{content:""}.fa-money-bill-alt:before{content:""}.fa-money-bill-wave:before{content:""}.fa-money-bill-wave-alt:before{content:""}.fa-money-check:before{content:""}.fa-money-check-alt:before{content:""}.fa-monument:before{content:""}.fa-moon:before{content:""}.fa-mortar-pestle:before{content:""}.fa-mosque:before{content:""}.fa-motorcycle:before{content:""}.fa-mountain:before{content:""}.fa-mouse:before{content:""}.fa-mouse-pointer:before{content:""}.fa-mug-hot:before{content:""}.fa-music:before{content:""}.fa-napster:before{content:""}.fa-neos:before{content:""}.fa-network-wired:before{content:""}.fa-neuter:before{content:""}.fa-newspaper:before{content:""}.fa-nimblr:before{content:""}.fa-node:before{content:""}.fa-node-js:before{content:""}.fa-not-equal:before{content:""}.fa-notes-medical:before{content:""}.fa-npm:before{content:""}.fa-ns8:before{content:""}.fa-nutritionix:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-octopus-deploy:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-oil-can:before{content:""}.fa-old-republic:before{content:""}.fa-om:before{content:""}.fa-opencart:before{content:""}.fa-openid:before{content:""}.fa-opera:before{content:""}.fa-optin-monster:before{content:""}.fa-orcid:before{content:""}.fa-osi:before{content:""}.fa-otter:before{content:""}.fa-outdent:before{content:""}.fa-page4:before{content:""}.fa-pagelines:before{content:""}.fa-pager:before{content:""}.fa-paint-brush:before{content:""}.fa-paint-roller:before{content:""}.fa-palette:before{content:""}.fa-palfed:before{content:""}.fa-pallet:before{content:""}.fa-paper-plane:before{content:""}.fa-paperclip:before{content:""}.fa-parachute-box:before{content:""}.fa-paragraph:before{content:""}.fa-parking:before{content:""}.fa-passport:before{content:""}.fa-pastafarianism:before{content:""}.fa-paste:before{content:""}.fa-patreon:before{content:""}.fa-pause:before{content:""}.fa-pause-circle:before{content:""}.fa-paw:before{content:""}.fa-paypal:before{content:""}.fa-peace:before{content:""}.fa-pen:before{content:""}.fa-pen-alt:before{content:""}.fa-pen-fancy:before{content:""}.fa-pen-nib:before{content:""}.fa-pen-square:before{content:""}.fa-pencil-alt:before{content:""}.fa-pencil-ruler:before{content:""}.fa-penny-arcade:before{content:""}.fa-people-arrows:before{content:""}.fa-people-carry:before{content:""}.fa-pepper-hot:before{content:""}.fa-perbyte:before{content:""}.fa-percent:before{content:""}.fa-percentage:before{content:""}.fa-periscope:before{content:""}.fa-person-booth:before{content:""}.fa-phabricator:before{content:""}.fa-phoenix-framework:before{content:""}.fa-phoenix-squadron:before{content:""}.fa-phone:before{content:""}.fa-phone-alt:before{content:""}.fa-phone-slash:before{content:""}.fa-phone-square:before{content:""}.fa-phone-square-alt:before{content:""}.fa-phone-volume:before{content:""}.fa-photo-video:before{content:""}.fa-php:before{content:""}.fa-pied-piper:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-pied-piper-hat:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-square:before{content:""}.fa-piggy-bank:before{content:""}.fa-pills:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-p:before{content:""}.fa-pinterest-square:before{content:""}.fa-pizza-slice:before{content:""}.fa-place-of-worship:before{content:""}.fa-plane:before{content:""}.fa-plane-arrival:before{content:""}.fa-plane-departure:before{content:""}.fa-plane-slash:before{content:""}.fa-play:before{content:""}.fa-play-circle:before{content:""}.fa-playstation:before{content:""}.fa-plug:before{content:""}.fa-plus:before{content:""}.fa-plus-circle:before{content:""}.fa-plus-square:before{content:""}.fa-podcast:before{content:""}.fa-poll:before{content:""}.fa-poll-h:before{content:""}.fa-poo:before{content:""}.fa-poo-storm:before{content:""}.fa-poop:before{content:""}.fa-portrait:before{content:""}.fa-pound-sign:before{content:""}.fa-power-off:before{content:""}.fa-pray:before{content:""}.fa-praying-hands:before{content:""}.fa-prescription:before{content:""}.fa-prescription-bottle:before{content:""}.fa-prescription-bottle-alt:before{content:""}.fa-print:before{content:""}.fa-procedures:before{content:""}.fa-product-hunt:before{content:""}.fa-project-diagram:before{content:""}.fa-pump-medical:before{content:""}.fa-pump-soap:before{content:""}.fa-pushed:before{content:""}.fa-puzzle-piece:before{content:""}.fa-python:before{content:""}.fa-qq:before{content:""}.fa-qrcode:before{content:""}.fa-question:before{content:""}.fa-question-circle:before{content:""}.fa-quidditch:before{content:""}.fa-quinscape:before{content:""}.fa-quora:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-quran:before{content:""}.fa-r-project:before{content:""}.fa-radiation:before{content:""}.fa-radiation-alt:before{content:""}.fa-rainbow:before{content:""}.fa-random:before{content:""}.fa-raspberry-pi:before{content:""}.fa-ravelry:before{content:""}.fa-react:before{content:""}.fa-reacteurope:before{content:""}.fa-readme:before{content:""}.fa-rebel:before{content:""}.fa-receipt:before{content:""}.fa-record-vinyl:before{content:""}.fa-recycle:before{content:""}.fa-red-river:before{content:""}.fa-reddit:before{content:""}.fa-reddit-alien:before{content:""}.fa-reddit-square:before{content:""}.fa-redhat:before{content:""}.fa-redo:before{content:""}.fa-redo-alt:before{content:""}.fa-registered:before{content:""}.fa-remove-format:before{content:""}.fa-renren:before{content:""}.fa-reply:before{content:""}.fa-reply-all:before{content:""}.fa-replyd:before{content:""}.fa-republican:before{content:""}.fa-researchgate:before{content:""}.fa-resolving:before{content:""}.fa-restroom:before{content:""}.fa-retweet:before{content:""}.fa-rev:before{content:""}.fa-ribbon:before{content:""}.fa-ring:before{content:""}.fa-road:before{content:""}.fa-robot:before{content:""}.fa-rocket:before{content:""}.fa-rocketchat:before{content:""}.fa-rockrms:before{content:""}.fa-route:before{content:""}.fa-rss:before{content:""}.fa-rss-square:before{content:""}.fa-ruble-sign:before{content:""}.fa-ruler:before{content:""}.fa-ruler-combined:before{content:""}.fa-ruler-horizontal:before{content:""}.fa-ruler-vertical:before{content:""}.fa-running:before{content:""}.fa-rupee-sign:before{content:""}.fa-rust:before{content:""}.fa-sad-cry:before{content:""}.fa-sad-tear:before{content:""}.fa-safari:before{content:""}.fa-salesforce:before{content:""}.fa-sass:before{content:""}.fa-satellite:before{content:""}.fa-satellite-dish:before{content:""}.fa-save:before{content:""}.fa-schlix:before{content:""}.fa-school:before{content:""}.fa-screwdriver:before{content:""}.fa-scribd:before{content:""}.fa-scroll:before{content:""}.fa-sd-card:before{content:""}.fa-search:before{content:""}.fa-search-dollar:before{content:""}.fa-search-location:before{content:""}.fa-search-minus:before{content:""}.fa-search-plus:before{content:""}.fa-searchengin:before{content:""}.fa-seedling:before{content:""}.fa-sellcast:before{content:""}.fa-sellsy:before{content:""}.fa-server:before{content:""}.fa-servicestack:before{content:""}.fa-shapes:before{content:""}.fa-share:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-share-square:before{content:""}.fa-shekel-sign:before{content:""}.fa-shield-alt:before{content:""}.fa-shield-virus:before{content:""}.fa-ship:before{content:""}.fa-shipping-fast:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-shoe-prints:before{content:""}.fa-shopify:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-shopping-cart:before{content:""}.fa-shopware:before{content:""}.fa-shower:before{content:""}.fa-shuttle-van:before{content:""}.fa-sign:before{content:""}.fa-sign-in-alt:before{content:""}.fa-sign-language:before{content:""}.fa-sign-out-alt:before{content:""}.fa-signal:before{content:""}.fa-signature:before{content:""}.fa-sim-card:before{content:""}.fa-simplybuilt:before{content:""}.fa-sink:before{content:""}.fa-sistrix:before{content:""}.fa-sitemap:before{content:""}.fa-sith:before{content:""}.fa-skating:before{content:""}.fa-sketch:before{content:""}.fa-skiing:before{content:""}.fa-skiing-nordic:before{content:""}.fa-skull:before{content:""}.fa-skull-crossbones:before{content:""}.fa-skyatlas:before{content:""}.fa-skype:before{content:""}.fa-slack:before{content:""}.fa-slack-hash:before{content:""}.fa-slash:before{content:""}.fa-sleigh:before{content:""}.fa-sliders-h:before{content:""}.fa-slideshare:before{content:""}.fa-smile:before{content:""}.fa-smile-beam:before{content:""}.fa-smile-wink:before{content:""}.fa-smog:before{content:""}.fa-smoking:before{content:""}.fa-smoking-ban:before{content:""}.fa-sms:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-snowboarding:before{content:""}.fa-snowflake:before{content:""}.fa-snowman:before{content:""}.fa-snowplow:before{content:""}.fa-soap:before{content:""}.fa-socks:before{content:""}.fa-solar-panel:before{content:""}.fa-sort:before{content:""}.fa-sort-alpha-down:before{content:""}.fa-sort-alpha-down-alt:before{content:""}.fa-sort-alpha-up:before{content:""}.fa-sort-alpha-up-alt:before{content:""}.fa-sort-amount-down:before{content:""}.fa-sort-amount-down-alt:before{content:""}.fa-sort-amount-up:before{content:""}.fa-sort-amount-up-alt:before{content:""}.fa-sort-down:before{content:""}.fa-sort-numeric-down:before{content:""}.fa-sort-numeric-down-alt:before{content:""}.fa-sort-numeric-up:before{content:""}.fa-sort-numeric-up-alt:before{content:""}.fa-sort-up:before{content:""}.fa-soundcloud:before{content:""}.fa-sourcetree:before{content:""}.fa-spa:before{content:""}.fa-space-shuttle:before{content:""}.fa-speakap:before{content:""}.fa-speaker-deck:before{content:""}.fa-spell-check:before{content:""}.fa-spider:before{content:""}.fa-spinner:before{content:""}.fa-splotch:before{content:""}.fa-spotify:before{content:""}.fa-spray-can:before{content:""}.fa-square:before{content:""}.fa-square-full:before{content:""}.fa-square-root-alt:before{content:""}.fa-squarespace:before{content:""}.fa-stack-exchange:before{content:""}.fa-stack-overflow:before{content:""}.fa-stackpath:before{content:""}.fa-stamp:before{content:""}.fa-star:before{content:""}.fa-star-and-crescent:before{content:""}.fa-star-half:before{content:""}.fa-star-half-alt:before{content:""}.fa-star-of-david:before{content:""}.fa-star-of-life:before{content:""}.fa-staylinked:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-steam-symbol:before{content:""}.fa-step-backward:before{content:""}.fa-step-forward:before{content:""}.fa-stethoscope:before{content:""}.fa-sticker-mule:before{content:""}.fa-sticky-note:before{content:""}.fa-stop:before{content:""}.fa-stop-circle:before{content:""}.fa-stopwatch:before{content:""}.fa-stopwatch-20:before{content:""}.fa-store:before{content:""}.fa-store-alt:before{content:""}.fa-store-alt-slash:before{content:""}.fa-store-slash:before{content:""}.fa-strava:before{content:""}.fa-stream:before{content:""}.fa-street-view:before{content:""}.fa-strikethrough:before{content:""}.fa-stripe:before{content:""}.fa-stripe-s:before{content:""}.fa-stroopwafel:before{content:""}.fa-studiovinari:before{content:""}.fa-stumbleupon:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-subscript:before{content:""}.fa-subway:before{content:""}.fa-suitcase:before{content:""}.fa-suitcase-rolling:before{content:""}.fa-sun:before{content:""}.fa-superpowers:before{content:""}.fa-superscript:before{content:""}.fa-supple:before{content:""}.fa-surprise:before{content:""}.fa-suse:before{content:""}.fa-swatchbook:before{content:""}.fa-swift:before{content:""}.fa-swimmer:before{content:""}.fa-swimming-pool:before{content:""}.fa-symfony:before{content:""}.fa-synagogue:before{content:""}.fa-sync:before{content:""}.fa-sync-alt:before{content:""}.fa-syringe:before{content:""}.fa-table:before{content:""}.fa-table-tennis:before{content:""}.fa-tablet:before{content:""}.fa-tablet-alt:before{content:""}.fa-tablets:before{content:""}.fa-tachometer-alt:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-tape:before{content:""}.fa-tasks:before{content:""}.fa-taxi:before{content:""}.fa-teamspeak:before{content:""}.fa-teeth:before{content:""}.fa-teeth-open:before{content:""}.fa-telegram:before{content:""}.fa-telegram-plane:before{content:""}.fa-temperature-high:before{content:""}.fa-temperature-low:before{content:""}.fa-tencent-weibo:before{content:""}.fa-tenge:before{content:""}.fa-terminal:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-th:before{content:""}.fa-th-large:before{content:""}.fa-th-list:before{content:""}.fa-the-red-yeti:before{content:""}.fa-theater-masks:before{content:""}.fa-themeco:before{content:""}.fa-themeisle:before{content:""}.fa-thermometer:before{content:""}.fa-thermometer-empty:before{content:""}.fa-thermometer-full:before{content:""}.fa-thermometer-half:before{content:""}.fa-thermometer-quarter:before{content:""}.fa-thermometer-three-quarters:before{content:""}.fa-think-peaks:before{content:""}.fa-thumbs-down:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbtack:before{content:""}.fa-ticket-alt:before{content:""}.fa-tiktok:before{content:""}.fa-times:before{content:""}.fa-times-circle:before{content:""}.fa-tint:before{content:""}.fa-tint-slash:before{content:""}.fa-tired:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-toilet:before{content:""}.fa-toilet-paper:before{content:""}.fa-toilet-paper-slash:before{content:""}.fa-toolbox:before{content:""}.fa-tools:before{content:""}.fa-tooth:before{content:""}.fa-torah:before{content:""}.fa-torii-gate:before{content:""}.fa-tractor:before{content:""}.fa-trade-federation:before{content:""}.fa-trademark:before{content:""}.fa-traffic-light:before{content:""}.fa-trailer:before{content:""}.fa-train:before{content:""}.fa-tram:before{content:""}.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-trash:before{content:""}.fa-trash-alt:before{content:""}.fa-trash-restore:before{content:""}.fa-trash-restore-alt:before{content:""}.fa-tree:before{content:""}.fa-trello:before{content:""}.fa-trophy:before{content:""}.fa-truck:before{content:""}.fa-truck-loading:before{content:""}.fa-truck-monster:before{content:""}.fa-truck-moving:before{content:""}.fa-truck-pickup:before{content:""}.fa-tshirt:before{content:""}.fa-tty:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-tv:before{content:""}.fa-twitch:before{content:""}.fa-twitter:before{content:""}.fa-twitter-square:before{content:""}.fa-typo3:before{content:""}.fa-uber:before{content:""}.fa-ubuntu:before{content:""}.fa-uikit:before{content:""}.fa-umbraco:before{content:""}.fa-umbrella:before{content:""}.fa-umbrella-beach:before{content:""}.fa-uncharted:before{content:""}.fa-underline:before{content:""}.fa-undo:before{content:""}.fa-undo-alt:before{content:""}.fa-uniregistry:before{content:""}.fa-unity:before{content:""}.fa-universal-access:before{content:""}.fa-university:before{content:""}.fa-unlink:before{content:""}.fa-unlock:before{content:""}.fa-unlock-alt:before{content:""}.fa-unsplash:before{content:""}.fa-untappd:before{content:""}.fa-upload:before{content:""}.fa-ups:before{content:""}.fa-usb:before{content:""}.fa-user:before{content:""}.fa-user-alt:before{content:""}.fa-user-alt-slash:before{content:""}.fa-user-astronaut:before{content:""}.fa-user-check:before{content:""}.fa-user-circle:before{content:""}.fa-user-clock:before{content:""}.fa-user-cog:before{content:""}.fa-user-edit:before{content:""}.fa-user-friends:before{content:""}.fa-user-graduate:before{content:""}.fa-user-injured:before{content:""}.fa-user-lock:before{content:""}.fa-user-md:before{content:""}.fa-user-minus:before{content:""}.fa-user-ninja:before{content:""}.fa-user-nurse:before{content:""}.fa-user-plus:before{content:""}.fa-user-secret:before{content:""}.fa-user-shield:before{content:""}.fa-user-slash:before{content:""}.fa-user-tag:before{content:""}.fa-user-tie:before{content:""}.fa-user-times:before{content:""}.fa-users:before{content:""}.fa-users-cog:before{content:""}.fa-users-slash:before{content:""}.fa-usps:before{content:""}.fa-ussunnah:before{content:""}.fa-utensil-spoon:before{content:""}.fa-utensils:before{content:""}.fa-vaadin:before{content:""}.fa-vector-square:before{content:""}.fa-venus:before{content:""}.fa-venus-double:before{content:""}.fa-venus-mars:before{content:""}.fa-vest:before{content:""}.fa-vest-patches:before{content:""}.fa-viacoin:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-vial:before{content:""}.fa-vials:before{content:""}.fa-viber:before{content:""}.fa-video:before{content:""}.fa-video-slash:before{content:""}.fa-vihara:before{content:""}.fa-vimeo:before{content:""}.fa-vimeo-square:before{content:""}.fa-vimeo-v:before{content:""}.fa-vine:before{content:""}.fa-virus:before{content:""}.fa-virus-slash:before{content:""}.fa-viruses:before{content:""}.fa-vk:before{content:""}.fa-vnv:before{content:""}.fa-voicemail:before{content:""}.fa-volleyball-ball:before{content:""}.fa-volume-down:before{content:""}.fa-volume-mute:before{content:""}.fa-volume-off:before{content:""}.fa-volume-up:before{content:""}.fa-vote-yea:before{content:""}.fa-vr-cardboard:before{content:""}.fa-vuejs:before{content:""}.fa-walking:before{content:""}.fa-wallet:before{content:""}.fa-warehouse:before{content:""}.fa-watchman-monitoring:before{content:""}.fa-water:before{content:""}.fa-wave-square:before{content:""}.fa-waze:before{content:""}.fa-weebly:before{content:""}.fa-weibo:before{content:""}.fa-weight:before{content:""}.fa-weight-hanging:before{content:""}.fa-weixin:before{content:""}.fa-whatsapp:before{content:""}.fa-whatsapp-square:before{content:""}.fa-wheelchair:before{content:""}.fa-whmcs:before{content:""}.fa-wifi:before{content:""}.fa-wikipedia-w:before{content:""}.fa-wind:before{content:""}.fa-window-close:before{content:""}.fa-window-maximize:before{content:""}.fa-window-minimize:before{content:""}.fa-window-restore:before{content:""}.fa-windows:before{content:""}.fa-wine-bottle:before{content:""}.fa-wine-glass:before{content:""}.fa-wine-glass-alt:before{content:""}.fa-wix:before{content:""}.fa-wizards-of-the-coast:before{content:""}.fa-wodu:before{content:""}.fa-wolf-pack-battalion:before{content:""}.fa-won-sign:before{content:""}.fa-wordpress:before{content:""}.fa-wordpress-simple:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpexplorer:before{content:""}.fa-wpforms:before{content:""}.fa-wpressr:before{content:""}.fa-wrench:before{content:""}.fa-x-ray:before{content:""}.fa-xbox:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-y-combinator:before{content:""}.fa-yahoo:before{content:""}.fa-yammer:before{content:""}.fa-yandex:before{content:""}.fa-yandex-international:before{content:""}.fa-yarn:before{content:""}.fa-yelp:before{content:""}.fa-yen-sign:before{content:""}.fa-yin-yang:before{content:""}.fa-yoast:before{content:""}.fa-youtube:before{content:""}.fa-youtube-square:before{content:""}.fa-zhihu:before{content:""}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:'Font Awesome 5 Brands';font-style:normal;font-weight:400;font-display:block;src:url("../webfonts/fa-brands-400.eot?");src:url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"),url("../webfonts/fa-brands-400.woff2") format("woff2"),url("../webfonts/fa-brands-400.woff") format("woff"),url("../webfonts/fa-brands-400.ttf") format("truetype"),url("../webfonts/fa-brands-400.svg#fontawesome") format("svg")}.fab{font-family:'Font Awesome 5 Brands';font-weight:400}@font-face{font-family:'Font Awesome 5 Free';font-style:normal;font-weight:400;font-display:block;src:url("../webfonts/fa-regular-400.eot?");src:url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"),url("../webfonts/fa-regular-400.woff2") format("woff2"),url("../webfonts/fa-regular-400.woff") format("woff"),url("../webfonts/fa-regular-400.ttf") format("truetype"),url("../webfonts/fa-regular-400.svg#fontawesome") format("svg")}.far{font-family:'Font Awesome 5 Free';font-weight:400}@font-face{font-family:'Font Awesome 5 Free';font-style:normal;font-weight:900;font-display:block;src:url("../webfonts/fa-solid-900.eot?");src:url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"),url("../webfonts/fa-solid-900.woff2") format("woff2"),url("../webfonts/fa-solid-900.woff") format("woff"),url("../webfonts/fa-solid-900.ttf") format("truetype"),url("../webfonts/fa-solid-900.svg#fontawesome") format("svg")}.fa,.fas{font-family:'Font Awesome 5 Free';font-weight:900}.button,.input,.textarea,.select select,.file-cta,.file-name,.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis{-moz-appearance:none;-webkit-appearance:none;align-items:center;border:1px solid transparent;border-radius:4px;box-shadow:none;display:inline-flex;font-size:1rem;height:2.5em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(.5em - 1px);padding-left:calc(.75em - 1px);padding-right:calc(.75em - 1px);padding-top:calc(.5em - 1px);position:relative;vertical-align:top}.button:focus,.input:focus,.textarea:focus,.select select:focus,.file-cta:focus,.file-name:focus,.pagination-previous:focus,.pagination-next:focus,.pagination-link:focus,.pagination-ellipsis:focus,.is-focused.button,.is-focused.input,.is-focused.textarea,.select select.is-focused,.is-focused.file-cta,.is-focused.file-name,.is-focused.pagination-previous,.is-focused.pagination-next,.is-focused.pagination-link,.is-focused.pagination-ellipsis,.button:active,.input:active,.textarea:active,.select select:active,.file-cta:active,.file-name:active,.pagination-previous:active,.pagination-next:active,.pagination-link:active,.pagination-ellipsis:active,.is-active.button,.is-active.input,.is-active.textarea,.select select.is-active,.is-active.file-cta,.is-active.file-name,.is-active.pagination-previous,.is-active.pagination-next,.is-active.pagination-link,.is-active.pagination-ellipsis{outline:none}.button[disabled],.input[disabled],.textarea[disabled],.select select[disabled],.file-cta[disabled],.file-name[disabled],.pagination-previous[disabled],.pagination-next[disabled],.pagination-link[disabled],.pagination-ellipsis[disabled],fieldset[disabled] .button,fieldset[disabled] .input,fieldset[disabled] .textarea,fieldset[disabled] .select select,.select fieldset[disabled] select,fieldset[disabled] .file-cta,fieldset[disabled] .file-name,fieldset[disabled] .pagination-previous,fieldset[disabled] .pagination-next,fieldset[disabled] .pagination-link,fieldset[disabled] .pagination-ellipsis{cursor:not-allowed}.button,.file,.breadcrumb,.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis,.tabs,.is-unselectable{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.select:not(.is-multiple):not(.is-loading)::after,.navbar-link:not(.is-arrowless)::after{border:3px solid transparent;border-radius:2px;border-right:0;border-top:0;content:" ";display:block;height:.625em;margin-top:-.4375em;pointer-events:none;position:absolute;top:50%;transform:rotate(-45deg);transform-origin:center;width:.625em}.box:not(:last-child),.content:not(:last-child),.notification:not(:last-child),.progress:not(:last-child),.table:not(:last-child),.table-container:not(:last-child),.title:not(:last-child),.subtitle:not(:last-child),.block:not(:last-child),.breadcrumb:not(:last-child),.level:not(:last-child),.message:not(:last-child),.pagination:not(:last-child),.tabs:not(:last-child){margin-bottom:1.5rem}.delete,.modal-close{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-moz-appearance:none;-webkit-appearance:none;background-color:rgba(10,10,10,.2);border:none;border-radius:9999px;cursor:pointer;pointer-events:auto;display:inline-block;flex-grow:0;flex-shrink:0;font-size:0;height:20px;max-height:20px;max-width:20px;min-height:20px;min-width:20px;outline:none;position:relative;vertical-align:top;width:20px}.delete::before,.modal-close::before,.delete::after,.modal-close::after{background-color:#fff;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}.delete::before,.modal-close::before{height:2px;width:50%}.delete::after,.modal-close::after{height:50%;width:2px}.delete:hover,.modal-close:hover,.delete:focus,.modal-close:focus{background-color:rgba(10,10,10,.3)}.delete:active,.modal-close:active{background-color:rgba(10,10,10,.4)}.is-small.delete,.is-small.modal-close{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}.is-medium.delete,.is-medium.modal-close{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}.button.is-loading::after,.loader,.select.is-loading::after,.control.is-loading::after{-webkit-animation:spinAround 500ms infinite linear;animation:spinAround 500ms infinite linear;border:2px solid #dbdbdb;border-radius:9999px;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1em;position:relative;width:1em}@-webkit-keyframes spinAround{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}@keyframes spinAround{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}.button{background-color:#fff;border-color:#dbdbdb;border-width:1px;color:#363636;cursor:pointer;justify-content:center;padding-bottom:calc(.5em - 1px);padding-left:1em;padding-right:1em;padding-top:calc(.5em - 1px);text-align:center;white-space:nowrap}.button strong{color:inherit}.button .icon,.button .icon.is-small,.button .icon.is-medium,.button .icon.is-large{height:1.5em;width:1.5em}.button .icon:first-child:not(:last-child){margin-left:calc(-.5em - 1px);margin-right:.25em}.button .icon:last-child:not(:first-child){margin-left:.25em;margin-right:calc(-.5em - 1px)}.button .icon:first-child:last-child{margin-left:calc(-.5em - 1px);margin-right:calc(-.5em - 1px)}.button:hover,.button.is-hovered{border-color:#b5b5b5;color:#363636}.button:focus,.button.is-focused{border-color:#485fc7;color:#363636}.button:focus:not(:active),.button.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(72,95,199,.25)}.button:active,.button.is-active{border-color:#4a4a4a;color:#363636}.button.is-text{background-color:transparent;border-color:transparent;color:#4a4a4a;text-decoration:underline}.button.is-text:hover,.button.is-text.is-hovered,.button.is-text:focus,.button.is-text.is-focused{background-color:#f5f5f5;color:#363636}.button.is-text:active,.button.is-text.is-active{background-color:#e8e8e8;color:#363636}.button.is-text[disabled],fieldset[disabled] .button.is-text{background-color:transparent;border-color:transparent;box-shadow:none}.button.is-ghost{background:none;border-color:transparent;color:#485fc7;text-decoration:none}.button.is-ghost:hover,.button.is-ghost.is-hovered{color:#485fc7;text-decoration:underline}.button.is-white{background-color:#fff;border-color:transparent;color:#0a0a0a}.button.is-white:hover,.button.is-white.is-hovered{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}.button.is-white:focus,.button.is-white.is-focused{border-color:transparent;color:#0a0a0a}.button.is-white:focus:not(:active),.button.is-white.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(255,255,255,.25)}.button.is-white:active,.button.is-white.is-active{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}.button.is-white[disabled],fieldset[disabled] .button.is-white{background-color:#fff;border-color:transparent;box-shadow:none}.button.is-white.is-inverted{background-color:#0a0a0a;color:#fff}.button.is-white.is-inverted:hover,.button.is-white.is-inverted.is-hovered{background-color:#000}.button.is-white.is-inverted[disabled],fieldset[disabled] .button.is-white.is-inverted{background-color:#0a0a0a;border-color:transparent;box-shadow:none;color:#fff}.button.is-white.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}.button.is-white.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-white.is-outlined:hover,.button.is-white.is-outlined.is-hovered,.button.is-white.is-outlined:focus,.button.is-white.is-outlined.is-focused{background-color:#fff;border-color:#fff;color:#0a0a0a}.button.is-white.is-outlined.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-white.is-outlined.is-loading:hover::after,.button.is-white.is-outlined.is-loading.is-hovered::after,.button.is-white.is-outlined.is-loading:focus::after,.button.is-white.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}.button.is-white.is-outlined[disabled],fieldset[disabled] .button.is-white.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}.button.is-white.is-inverted.is-outlined:hover,.button.is-white.is-inverted.is-outlined.is-hovered,.button.is-white.is-inverted.is-outlined:focus,.button.is-white.is-inverted.is-outlined.is-focused{background-color:#0a0a0a;color:#fff}.button.is-white.is-inverted.is-outlined.is-loading:hover::after,.button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-white.is-inverted.is-outlined.is-loading:focus::after,.button.is-white.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-white.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}.button.is-black{background-color:#0a0a0a;border-color:transparent;color:#fff}.button.is-black:hover,.button.is-black.is-hovered{background-color:#040404;border-color:transparent;color:#fff}.button.is-black:focus,.button.is-black.is-focused{border-color:transparent;color:#fff}.button.is-black:focus:not(:active),.button.is-black.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.button.is-black:active,.button.is-black.is-active{background-color:#000;border-color:transparent;color:#fff}.button.is-black[disabled],fieldset[disabled] .button.is-black{background-color:#0a0a0a;border-color:transparent;box-shadow:none}.button.is-black.is-inverted{background-color:#fff;color:#0a0a0a}.button.is-black.is-inverted:hover,.button.is-black.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-black.is-inverted[disabled],fieldset[disabled] .button.is-black.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#0a0a0a}.button.is-black.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}.button.is-black.is-outlined:hover,.button.is-black.is-outlined.is-hovered,.button.is-black.is-outlined:focus,.button.is-black.is-outlined.is-focused{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.button.is-black.is-outlined.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}.button.is-black.is-outlined.is-loading:hover::after,.button.is-black.is-outlined.is-loading.is-hovered::after,.button.is-black.is-outlined.is-loading:focus::after,.button.is-black.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-black.is-outlined[disabled],fieldset[disabled] .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}.button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-black.is-inverted.is-outlined:hover,.button.is-black.is-inverted.is-outlined.is-hovered,.button.is-black.is-inverted.is-outlined:focus,.button.is-black.is-inverted.is-outlined.is-focused{background-color:#fff;color:#0a0a0a}.button.is-black.is-inverted.is-outlined.is-loading:hover::after,.button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-black.is-inverted.is-outlined.is-loading:focus::after,.button.is-black.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}.button.is-black.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-light{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light:hover,.button.is-light.is-hovered{background-color:#eee;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light:focus,.button.is-light.is-focused{border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light:focus:not(:active),.button.is-light.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(245,245,245,.25)}.button.is-light:active,.button.is-light.is-active{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-light[disabled],fieldset[disabled] .button.is-light{background-color:#f5f5f5;border-color:transparent;box-shadow:none}.button.is-light.is-inverted{background-color:rgba(0,0,0,.7);color:#f5f5f5}.button.is-light.is-inverted:hover,.button.is-light.is-inverted.is-hovered{background-color:rgba(0,0,0,.7)}.button.is-light.is-inverted[disabled],fieldset[disabled] .button.is-light.is-inverted{background-color:rgba(0,0,0,.7);border-color:transparent;box-shadow:none;color:#f5f5f5}.button.is-light.is-loading::after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7) !important}.button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;color:#f5f5f5}.button.is-light.is-outlined:hover,.button.is-light.is-outlined.is-hovered,.button.is-light.is-outlined:focus,.button.is-light.is-outlined.is-focused{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,.7)}.button.is-light.is-outlined.is-loading::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}.button.is-light.is-outlined.is-loading:hover::after,.button.is-light.is-outlined.is-loading.is-hovered::after,.button.is-light.is-outlined.is-loading:focus::after,.button.is-light.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7) !important}.button.is-light.is-outlined[disabled],fieldset[disabled] .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;box-shadow:none;color:#f5f5f5}.button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);color:rgba(0,0,0,.7)}.button.is-light.is-inverted.is-outlined:hover,.button.is-light.is-inverted.is-outlined.is-hovered,.button.is-light.is-inverted.is-outlined:focus,.button.is-light.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,.7);color:#f5f5f5}.button.is-light.is-inverted.is-outlined.is-loading:hover::after,.button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-light.is-inverted.is-outlined.is-loading:focus::after,.button.is-light.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}.button.is-light.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);box-shadow:none;color:rgba(0,0,0,.7)}.button.is-dark{background-color:#363636;border-color:transparent;color:#fff}.button.is-dark:hover,.button.is-dark.is-hovered{background-color:#2f2f2f;border-color:transparent;color:#fff}.button.is-dark:focus,.button.is-dark.is-focused{border-color:transparent;color:#fff}.button.is-dark:focus:not(:active),.button.is-dark.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.button.is-dark:active,.button.is-dark.is-active{background-color:#292929;border-color:transparent;color:#fff}.button.is-dark[disabled],fieldset[disabled] .button.is-dark{background-color:#363636;border-color:transparent;box-shadow:none}.button.is-dark.is-inverted{background-color:#fff;color:#363636}.button.is-dark.is-inverted:hover,.button.is-dark.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-dark.is-inverted[disabled],fieldset[disabled] .button.is-dark.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#363636}.button.is-dark.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-dark.is-outlined{background-color:transparent;border-color:#363636;color:#363636}.button.is-dark.is-outlined:hover,.button.is-dark.is-outlined.is-hovered,.button.is-dark.is-outlined:focus,.button.is-dark.is-outlined.is-focused{background-color:#363636;border-color:#363636;color:#fff}.button.is-dark.is-outlined.is-loading::after{border-color:transparent transparent #363636 #363636 !important}.button.is-dark.is-outlined.is-loading:hover::after,.button.is-dark.is-outlined.is-loading.is-hovered::after,.button.is-dark.is-outlined.is-loading:focus::after,.button.is-dark.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-dark.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-outlined{background-color:transparent;border-color:#363636;box-shadow:none;color:#363636}.button.is-dark.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-dark.is-inverted.is-outlined:hover,.button.is-dark.is-inverted.is-outlined.is-hovered,.button.is-dark.is-inverted.is-outlined:focus,.button.is-dark.is-inverted.is-outlined.is-focused{background-color:#fff;color:#363636}.button.is-dark.is-inverted.is-outlined.is-loading:hover::after,.button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-dark.is-inverted.is-outlined.is-loading:focus::after,.button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #363636 #363636 !important}.button.is-dark.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary{background-color:#00d1b2;border-color:transparent;color:#fff}.button.is-primary:hover,.button.is-primary.is-hovered{background-color:#00c4a7;border-color:transparent;color:#fff}.button.is-primary:focus,.button.is-primary.is-focused{border-color:transparent;color:#fff}.button.is-primary:focus:not(:active),.button.is-primary.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.button.is-primary:active,.button.is-primary.is-active{background-color:#00b89c;border-color:transparent;color:#fff}.button.is-primary[disabled],fieldset[disabled] .button.is-primary{background-color:#00d1b2;border-color:transparent;box-shadow:none}.button.is-primary.is-inverted{background-color:#fff;color:#00d1b2}.button.is-primary.is-inverted:hover,.button.is-primary.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-primary.is-inverted[disabled],fieldset[disabled] .button.is-primary.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#00d1b2}.button.is-primary.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-primary.is-outlined{background-color:transparent;border-color:#00d1b2;color:#00d1b2}.button.is-primary.is-outlined:hover,.button.is-primary.is-outlined.is-hovered,.button.is-primary.is-outlined:focus,.button.is-primary.is-outlined.is-focused{background-color:#00d1b2;border-color:#00d1b2;color:#fff}.button.is-primary.is-outlined.is-loading::after{border-color:transparent transparent #00d1b2 #00d1b2 !important}.button.is-primary.is-outlined.is-loading:hover::after,.button.is-primary.is-outlined.is-loading.is-hovered::after,.button.is-primary.is-outlined.is-loading:focus::after,.button.is-primary.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-primary.is-outlined[disabled],fieldset[disabled] .button.is-primary.is-outlined{background-color:transparent;border-color:#00d1b2;box-shadow:none;color:#00d1b2}.button.is-primary.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-primary.is-inverted.is-outlined:hover,.button.is-primary.is-inverted.is-outlined.is-hovered,.button.is-primary.is-inverted.is-outlined:focus,.button.is-primary.is-inverted.is-outlined.is-focused{background-color:#fff;color:#00d1b2}.button.is-primary.is-inverted.is-outlined.is-loading:hover::after,.button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-primary.is-inverted.is-outlined.is-loading:focus::after,.button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #00d1b2 #00d1b2 !important}.button.is-primary.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-primary.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary.is-light{background-color:#ebfffc;color:#00947e}.button.is-primary.is-light:hover,.button.is-primary.is-light.is-hovered{background-color:#defffa;border-color:transparent;color:#00947e}.button.is-primary.is-light:active,.button.is-primary.is-light.is-active{background-color:#d1fff8;border-color:transparent;color:#00947e}.button.is-link{background-color:#485fc7;border-color:transparent;color:#fff}.button.is-link:hover,.button.is-link.is-hovered{background-color:#3e56c4;border-color:transparent;color:#fff}.button.is-link:focus,.button.is-link.is-focused{border-color:transparent;color:#fff}.button.is-link:focus:not(:active),.button.is-link.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(72,95,199,.25)}.button.is-link:active,.button.is-link.is-active{background-color:#3a51bb;border-color:transparent;color:#fff}.button.is-link[disabled],fieldset[disabled] .button.is-link{background-color:#485fc7;border-color:transparent;box-shadow:none}.button.is-link.is-inverted{background-color:#fff;color:#485fc7}.button.is-link.is-inverted:hover,.button.is-link.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-link.is-inverted[disabled],fieldset[disabled] .button.is-link.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#485fc7}.button.is-link.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-link.is-outlined{background-color:transparent;border-color:#485fc7;color:#485fc7}.button.is-link.is-outlined:hover,.button.is-link.is-outlined.is-hovered,.button.is-link.is-outlined:focus,.button.is-link.is-outlined.is-focused{background-color:#485fc7;border-color:#485fc7;color:#fff}.button.is-link.is-outlined.is-loading::after{border-color:transparent transparent #485fc7 #485fc7 !important}.button.is-link.is-outlined.is-loading:hover::after,.button.is-link.is-outlined.is-loading.is-hovered::after,.button.is-link.is-outlined.is-loading:focus::after,.button.is-link.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-link.is-outlined[disabled],fieldset[disabled] .button.is-link.is-outlined{background-color:transparent;border-color:#485fc7;box-shadow:none;color:#485fc7}.button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-link.is-inverted.is-outlined:hover,.button.is-link.is-inverted.is-outlined.is-hovered,.button.is-link.is-inverted.is-outlined:focus,.button.is-link.is-inverted.is-outlined.is-focused{background-color:#fff;color:#485fc7}.button.is-link.is-inverted.is-outlined.is-loading:hover::after,.button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-link.is-inverted.is-outlined.is-loading:focus::after,.button.is-link.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #485fc7 #485fc7 !important}.button.is-link.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-link.is-light{background-color:#eff1fa;color:#3850b7}.button.is-link.is-light:hover,.button.is-link.is-light.is-hovered{background-color:#e6e9f7;border-color:transparent;color:#3850b7}.button.is-link.is-light:active,.button.is-link.is-light.is-active{background-color:#dce0f4;border-color:transparent;color:#3850b7}.button.is-info{background-color:#3e8ed0;border-color:transparent;color:#fff}.button.is-info:hover,.button.is-info.is-hovered{background-color:#3488ce;border-color:transparent;color:#fff}.button.is-info:focus,.button.is-info.is-focused{border-color:transparent;color:#fff}.button.is-info:focus:not(:active),.button.is-info.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(62,142,208,.25)}.button.is-info:active,.button.is-info.is-active{background-color:#3082c5;border-color:transparent;color:#fff}.button.is-info[disabled],fieldset[disabled] .button.is-info{background-color:#3e8ed0;border-color:transparent;box-shadow:none}.button.is-info.is-inverted{background-color:#fff;color:#3e8ed0}.button.is-info.is-inverted:hover,.button.is-info.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-info.is-inverted[disabled],fieldset[disabled] .button.is-info.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#3e8ed0}.button.is-info.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-info.is-outlined{background-color:transparent;border-color:#3e8ed0;color:#3e8ed0}.button.is-info.is-outlined:hover,.button.is-info.is-outlined.is-hovered,.button.is-info.is-outlined:focus,.button.is-info.is-outlined.is-focused{background-color:#3e8ed0;border-color:#3e8ed0;color:#fff}.button.is-info.is-outlined.is-loading::after{border-color:transparent transparent #3e8ed0 #3e8ed0 !important}.button.is-info.is-outlined.is-loading:hover::after,.button.is-info.is-outlined.is-loading.is-hovered::after,.button.is-info.is-outlined.is-loading:focus::after,.button.is-info.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-info.is-outlined[disabled],fieldset[disabled] .button.is-info.is-outlined{background-color:transparent;border-color:#3e8ed0;box-shadow:none;color:#3e8ed0}.button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-info.is-inverted.is-outlined:hover,.button.is-info.is-inverted.is-outlined.is-hovered,.button.is-info.is-inverted.is-outlined:focus,.button.is-info.is-inverted.is-outlined.is-focused{background-color:#fff;color:#3e8ed0}.button.is-info.is-inverted.is-outlined.is-loading:hover::after,.button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-info.is-inverted.is-outlined.is-loading:focus::after,.button.is-info.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #3e8ed0 #3e8ed0 !important}.button.is-info.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-info.is-light{background-color:#eff5fb;color:#296fa8}.button.is-info.is-light:hover,.button.is-info.is-light.is-hovered{background-color:#e4eff9;border-color:transparent;color:#296fa8}.button.is-info.is-light:active,.button.is-info.is-light.is-active{background-color:#dae9f6;border-color:transparent;color:#296fa8}.button.is-success{background-color:#48c78e;border-color:transparent;color:#fff}.button.is-success:hover,.button.is-success.is-hovered{background-color:#3ec487;border-color:transparent;color:#fff}.button.is-success:focus,.button.is-success.is-focused{border-color:transparent;color:#fff}.button.is-success:focus:not(:active),.button.is-success.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(72,199,142,.25)}.button.is-success:active,.button.is-success.is-active{background-color:#3abb81;border-color:transparent;color:#fff}.button.is-success[disabled],fieldset[disabled] .button.is-success{background-color:#48c78e;border-color:transparent;box-shadow:none}.button.is-success.is-inverted{background-color:#fff;color:#48c78e}.button.is-success.is-inverted:hover,.button.is-success.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-success.is-inverted[disabled],fieldset[disabled] .button.is-success.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#48c78e}.button.is-success.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-success.is-outlined{background-color:transparent;border-color:#48c78e;color:#48c78e}.button.is-success.is-outlined:hover,.button.is-success.is-outlined.is-hovered,.button.is-success.is-outlined:focus,.button.is-success.is-outlined.is-focused{background-color:#48c78e;border-color:#48c78e;color:#fff}.button.is-success.is-outlined.is-loading::after{border-color:transparent transparent #48c78e #48c78e !important}.button.is-success.is-outlined.is-loading:hover::after,.button.is-success.is-outlined.is-loading.is-hovered::after,.button.is-success.is-outlined.is-loading:focus::after,.button.is-success.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-success.is-outlined[disabled],fieldset[disabled] .button.is-success.is-outlined{background-color:transparent;border-color:#48c78e;box-shadow:none;color:#48c78e}.button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-success.is-inverted.is-outlined:hover,.button.is-success.is-inverted.is-outlined.is-hovered,.button.is-success.is-inverted.is-outlined:focus,.button.is-success.is-inverted.is-outlined.is-focused{background-color:#fff;color:#48c78e}.button.is-success.is-inverted.is-outlined.is-loading:hover::after,.button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-success.is-inverted.is-outlined.is-loading:focus::after,.button.is-success.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #48c78e #48c78e !important}.button.is-success.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-success.is-light{background-color:#effaf5;color:#257953}.button.is-success.is-light:hover,.button.is-success.is-light.is-hovered{background-color:#e6f7ef;border-color:transparent;color:#257953}.button.is-success.is-light:active,.button.is-success.is-light.is-active{background-color:#dcf4e9;border-color:transparent;color:#257953}.button.is-warning{background-color:#ffe08a;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning:hover,.button.is-warning.is-hovered{background-color:#ffdc7d;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning:focus,.button.is-warning.is-focused{border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning:focus:not(:active),.button.is-warning.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(255,224,138,.25)}.button.is-warning:active,.button.is-warning.is-active{background-color:#ffd970;border-color:transparent;color:rgba(0,0,0,.7)}.button.is-warning[disabled],fieldset[disabled] .button.is-warning{background-color:#ffe08a;border-color:transparent;box-shadow:none}.button.is-warning.is-inverted{background-color:rgba(0,0,0,.7);color:#ffe08a}.button.is-warning.is-inverted:hover,.button.is-warning.is-inverted.is-hovered{background-color:rgba(0,0,0,.7)}.button.is-warning.is-inverted[disabled],fieldset[disabled] .button.is-warning.is-inverted{background-color:rgba(0,0,0,.7);border-color:transparent;box-shadow:none;color:#ffe08a}.button.is-warning.is-loading::after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7) !important}.button.is-warning.is-outlined{background-color:transparent;border-color:#ffe08a;color:#ffe08a}.button.is-warning.is-outlined:hover,.button.is-warning.is-outlined.is-hovered,.button.is-warning.is-outlined:focus,.button.is-warning.is-outlined.is-focused{background-color:#ffe08a;border-color:#ffe08a;color:rgba(0,0,0,.7)}.button.is-warning.is-outlined.is-loading::after{border-color:transparent transparent #ffe08a #ffe08a !important}.button.is-warning.is-outlined.is-loading:hover::after,.button.is-warning.is-outlined.is-loading.is-hovered::after,.button.is-warning.is-outlined.is-loading:focus::after,.button.is-warning.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7) !important}.button.is-warning.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-outlined{background-color:transparent;border-color:#ffe08a;box-shadow:none;color:#ffe08a}.button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);color:rgba(0,0,0,.7)}.button.is-warning.is-inverted.is-outlined:hover,.button.is-warning.is-inverted.is-outlined.is-hovered,.button.is-warning.is-inverted.is-outlined:focus,.button.is-warning.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,.7);color:#ffe08a}.button.is-warning.is-inverted.is-outlined.is-loading:hover::after,.button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-warning.is-inverted.is-outlined.is-loading:focus::after,.button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #ffe08a #ffe08a !important}.button.is-warning.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,.7);box-shadow:none;color:rgba(0,0,0,.7)}.button.is-warning.is-light{background-color:#fffaeb;color:#946c00}.button.is-warning.is-light:hover,.button.is-warning.is-light.is-hovered{background-color:#fff6de;border-color:transparent;color:#946c00}.button.is-warning.is-light:active,.button.is-warning.is-light.is-active{background-color:#fff3d1;border-color:transparent;color:#946c00}.button.is-danger{background-color:#f14668;border-color:transparent;color:#fff}.button.is-danger:hover,.button.is-danger.is-hovered{background-color:#f03a5f;border-color:transparent;color:#fff}.button.is-danger:focus,.button.is-danger.is-focused{border-color:transparent;color:#fff}.button.is-danger:focus:not(:active),.button.is-danger.is-focused:not(:active){box-shadow:0 0 0 .125em rgba(241,70,104,.25)}.button.is-danger:active,.button.is-danger.is-active{background-color:#ef2e55;border-color:transparent;color:#fff}.button.is-danger[disabled],fieldset[disabled] .button.is-danger{background-color:#f14668;border-color:transparent;box-shadow:none}.button.is-danger.is-inverted{background-color:#fff;color:#f14668}.button.is-danger.is-inverted:hover,.button.is-danger.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-danger.is-inverted[disabled],fieldset[disabled] .button.is-danger.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#f14668}.button.is-danger.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-danger.is-outlined{background-color:transparent;border-color:#f14668;color:#f14668}.button.is-danger.is-outlined:hover,.button.is-danger.is-outlined.is-hovered,.button.is-danger.is-outlined:focus,.button.is-danger.is-outlined.is-focused{background-color:#f14668;border-color:#f14668;color:#fff}.button.is-danger.is-outlined.is-loading::after{border-color:transparent transparent #f14668 #f14668 !important}.button.is-danger.is-outlined.is-loading:hover::after,.button.is-danger.is-outlined.is-loading.is-hovered::after,.button.is-danger.is-outlined.is-loading:focus::after,.button.is-danger.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-danger.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-outlined{background-color:transparent;border-color:#f14668;box-shadow:none;color:#f14668}.button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-danger.is-inverted.is-outlined:hover,.button.is-danger.is-inverted.is-outlined.is-hovered,.button.is-danger.is-inverted.is-outlined:focus,.button.is-danger.is-inverted.is-outlined.is-focused{background-color:#fff;color:#f14668}.button.is-danger.is-inverted.is-outlined.is-loading:hover::after,.button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-danger.is-inverted.is-outlined.is-loading:focus::after,.button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #f14668 #f14668 !important}.button.is-danger.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-danger.is-light{background-color:#feecf0;color:#cc0f35}.button.is-danger.is-light:hover,.button.is-danger.is-light.is-hovered{background-color:#fde0e6;border-color:transparent;color:#cc0f35}.button.is-danger.is-light:active,.button.is-danger.is-light.is-active{background-color:#fcd4dc;border-color:transparent;color:#cc0f35}.button.is-small{font-size:.75rem}.button.is-small:not(.is-rounded){border-radius:2px}.button.is-normal{font-size:1rem}.button.is-medium{font-size:1.25rem}.button.is-large{font-size:1.5rem}.button[disabled],fieldset[disabled] .button{background-color:#fff;border-color:#dbdbdb;box-shadow:none;opacity:.5}.button.is-fullwidth{display:flex;width:100%}.button.is-loading{color:transparent !important;pointer-events:none}.button.is-loading::after{position:absolute;left:calc(50% - (1em*.5));top:calc(50% - (1em*.5));position:absolute !important}.button.is-static{background-color:#f5f5f5;border-color:#dbdbdb;color:#7a7a7a;box-shadow:none;pointer-events:none}.button.is-rounded{border-radius:9999px;padding-left:calc(1em + .25em);padding-right:calc(1em + .25em)}.icon{align-items:center;display:inline-flex;justify-content:center;height:1.5rem;width:1.5rem}.icon.is-small{height:1rem;width:1rem}.icon.is-medium{height:2rem;width:2rem}.icon.is-large{height:3rem;width:3rem}.icon-text{align-items:flex-start;color:inherit;display:inline-flex;flex-wrap:wrap;line-height:1.5rem;vertical-align:top}.icon-text .icon{flex-grow:0;flex-shrink:0}.icon-text .icon:not(:last-child){margin-right:.25em}.icon-text .icon:not(:first-child){margin-left:.25em}div.icon-text{display:flex}.progress{-moz-appearance:none;-webkit-appearance:none;border:none;border-radius:9999px;display:block;height:1rem;overflow:hidden;padding:0;width:100%}.progress::-webkit-progress-bar{background-color:#ededed}.progress::-webkit-progress-value{background-color:#4a4a4a}.progress::-moz-progress-bar{background-color:#4a4a4a}.progress::-ms-fill{background-color:#4a4a4a;border:none}.progress.is-white::-webkit-progress-value{background-color:#fff}.progress.is-white::-moz-progress-bar{background-color:#fff}.progress.is-white::-ms-fill{background-color:#fff}.progress.is-white:indeterminate{background-image:linear-gradient(to right,white 30%,#ededed 30%)}.progress.is-black::-webkit-progress-value{background-color:#0a0a0a}.progress.is-black::-moz-progress-bar{background-color:#0a0a0a}.progress.is-black::-ms-fill{background-color:#0a0a0a}.progress.is-black:indeterminate{background-image:linear-gradient(to right,#0a0a0a 30%,#ededed 30%)}.progress.is-light::-webkit-progress-value{background-color:#f5f5f5}.progress.is-light::-moz-progress-bar{background-color:#f5f5f5}.progress.is-light::-ms-fill{background-color:#f5f5f5}.progress.is-light:indeterminate{background-image:linear-gradient(to right,whitesmoke 30%,#ededed 30%)}.progress.is-dark::-webkit-progress-value{background-color:#363636}.progress.is-dark::-moz-progress-bar{background-color:#363636}.progress.is-dark::-ms-fill{background-color:#363636}.progress.is-dark:indeterminate{background-image:linear-gradient(to right,#363636 30%,#ededed 30%)}.progress.is-primary::-webkit-progress-value{background-color:#00d1b2}.progress.is-primary::-moz-progress-bar{background-color:#00d1b2}.progress.is-primary::-ms-fill{background-color:#00d1b2}.progress.is-primary:indeterminate{background-image:linear-gradient(to right,#00d1b2 30%,#ededed 30%)}.progress.is-link::-webkit-progress-value{background-color:#485fc7}.progress.is-link::-moz-progress-bar{background-color:#485fc7}.progress.is-link::-ms-fill{background-color:#485fc7}.progress.is-link:indeterminate{background-image:linear-gradient(to right,#485fc7 30%,#ededed 30%)}.progress.is-info::-webkit-progress-value{background-color:#3e8ed0}.progress.is-info::-moz-progress-bar{background-color:#3e8ed0}.progress.is-info::-ms-fill{background-color:#3e8ed0}.progress.is-info:indeterminate{background-image:linear-gradient(to right,#3e8ed0 30%,#ededed 30%)}.progress.is-success::-webkit-progress-value{background-color:#48c78e}.progress.is-success::-moz-progress-bar{background-color:#48c78e}.progress.is-success::-ms-fill{background-color:#48c78e}.progress.is-success:indeterminate{background-image:linear-gradient(to right,#48c78e 30%,#ededed 30%)}.progress.is-warning::-webkit-progress-value{background-color:#ffe08a}.progress.is-warning::-moz-progress-bar{background-color:#ffe08a}.progress.is-warning::-ms-fill{background-color:#ffe08a}.progress.is-warning:indeterminate{background-image:linear-gradient(to right,#ffe08a 30%,#ededed 30%)}.progress.is-danger::-webkit-progress-value{background-color:#f14668}.progress.is-danger::-moz-progress-bar{background-color:#f14668}.progress.is-danger::-ms-fill{background-color:#f14668}.progress.is-danger:indeterminate{background-image:linear-gradient(to right,#f14668 30%,#ededed 30%)}.progress:indeterminate{-webkit-animation-duration:1.5s;animation-duration:1.5s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-name:moveIndeterminate;animation-name:moveIndeterminate;-webkit-animation-timing-function:linear;animation-timing-function:linear;background-color:#ededed;background-image:linear-gradient(to right,#4a4a4a 30%,#ededed 30%);background-position:top left;background-repeat:no-repeat;background-size:150% 150%}.progress:indeterminate::-webkit-progress-bar{background-color:transparent}.progress:indeterminate::-moz-progress-bar{background-color:transparent}.progress:indeterminate::-ms-fill{animation-name:none}.progress.is-small{height:.75rem}.progress.is-medium{height:1.25rem}.progress.is-large{height:1.5rem}@-webkit-keyframes moveIndeterminate{from{background-position:200% 0}to{background-position:-200% 0}}@keyframes moveIndeterminate{from{background-position:200% 0}to{background-position:-200% 0}}.tags{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.tags .tag{margin-bottom:.5rem}.tags .tag:not(:last-child){margin-right:.5rem}.tags:last-child{margin-bottom:-.5rem}.tags:not(:last-child){margin-bottom:1rem}.tags.are-medium .tag:not(.is-normal):not(.is-large){font-size:1rem}.tags.are-large .tag:not(.is-normal):not(.is-medium){font-size:1.25rem}.tags.is-centered{justify-content:center}.tags.is-centered .tag{margin-right:.25rem;margin-left:.25rem}.tags.is-right{justify-content:flex-end}.tags.is-right .tag:not(:first-child){margin-left:.5rem}.tags.is-right .tag:not(:last-child){margin-right:0}.tags.has-addons .tag{margin-right:0}.tags.has-addons .tag:not(:first-child){margin-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.tags.has-addons .tag:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.tag:not(body){align-items:center;background-color:#f5f5f5;border-radius:4px;color:#4a4a4a;display:inline-flex;font-size:.75rem;height:2em;justify-content:center;line-height:1.5;padding-left:.75em;padding-right:.75em;white-space:nowrap}.tag:not(body) .delete{margin-left:.25rem;margin-right:-.375rem}.tag:not(body).is-white{background-color:#fff;color:#0a0a0a}.tag:not(body).is-black{background-color:#0a0a0a;color:#fff}.tag:not(body).is-light{background-color:#f5f5f5;color:rgba(0,0,0,.7)}.tag:not(body).is-dark{background-color:#363636;color:#fff}.tag:not(body).is-primary{background-color:#00d1b2;color:#fff}.tag:not(body).is-primary.is-light{background-color:#ebfffc;color:#00947e}.tag:not(body).is-link{background-color:#485fc7;color:#fff}.tag:not(body).is-link.is-light{background-color:#eff1fa;color:#3850b7}.tag:not(body).is-info{background-color:#3e8ed0;color:#fff}.tag:not(body).is-info.is-light{background-color:#eff5fb;color:#296fa8}.tag:not(body).is-success{background-color:#48c78e;color:#fff}.tag:not(body).is-success.is-light{background-color:#effaf5;color:#257953}.tag:not(body).is-warning{background-color:#ffe08a;color:rgba(0,0,0,.7)}.tag:not(body).is-warning.is-light{background-color:#fffaeb;color:#946c00}.tag:not(body).is-danger{background-color:#f14668;color:#fff}.tag:not(body).is-danger.is-light{background-color:#feecf0;color:#cc0f35}.tag:not(body).is-normal{font-size:.75rem}.tag:not(body).is-medium{font-size:1rem}.tag:not(body).is-large{font-size:1.25rem}.tag:not(body) .icon:first-child:not(:last-child){margin-left:-.375em;margin-right:.1875em}.tag:not(body) .icon:last-child:not(:first-child){margin-left:.1875em;margin-right:-.375em}.tag:not(body) .icon:first-child:last-child{margin-left:-.375em;margin-right:-.375em}.tag:not(body).is-delete{margin-left:1px;padding:0;position:relative;width:2em}.tag:not(body).is-delete::before,.tag:not(body).is-delete::after{background-color:currentColor;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}.tag:not(body).is-delete::before{height:1px;width:50%}.tag:not(body).is-delete::after{height:50%;width:1px}.tag:not(body).is-delete:hover,.tag:not(body).is-delete:focus{background-color:#e8e8e8}.tag:not(body).is-delete:active{background-color:#dbdbdb}.tag:not(body).is-rounded{border-radius:9999px}a.tag:hover{text-decoration:underline}.number{align-items:center;background-color:#f5f5f5;border-radius:9999px;display:inline-flex;font-size:1.25rem;height:2em;justify-content:center;margin-right:1.5rem;min-width:2.5em;padding:.25rem .5rem;text-align:center;vertical-align:top}.input,.textarea,.select select{background-color:#fff;border-color:#dbdbdb;border-radius:4px;color:#363636}.input::-moz-placeholder,.textarea::-moz-placeholder,.select select::-moz-placeholder{color:rgba(54,54,54,.3)}.input::-webkit-input-placeholder,.textarea::-webkit-input-placeholder,.select select::-webkit-input-placeholder{color:rgba(54,54,54,.3)}.input:-moz-placeholder,.textarea:-moz-placeholder,.select select:-moz-placeholder{color:rgba(54,54,54,.3)}.input:-ms-input-placeholder,.textarea:-ms-input-placeholder,.select select:-ms-input-placeholder{color:rgba(54,54,54,.3)}.input:hover,.textarea:hover,.select select:hover,.is-hovered.input,.is-hovered.textarea,.select select.is-hovered{border-color:#b5b5b5}.input:focus,.textarea:focus,.select select:focus,.is-focused.input,.is-focused.textarea,.select select.is-focused,.input:active,.textarea:active,.select select:active,.is-active.input,.is-active.textarea,.select select.is-active{border-color:#485fc7;box-shadow:0 0 0 .125em rgba(72,95,199,.25)}.input[disabled],.textarea[disabled],.select select[disabled],fieldset[disabled] .input,fieldset[disabled] .textarea,fieldset[disabled] .select select,.select fieldset[disabled] select{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none;color:#7a7a7a}.input[disabled]::-moz-placeholder,.textarea[disabled]::-moz-placeholder,.select select[disabled]::-moz-placeholder,fieldset[disabled] .input::-moz-placeholder,fieldset[disabled] .textarea::-moz-placeholder,fieldset[disabled] .select select::-moz-placeholder,.select fieldset[disabled] select::-moz-placeholder{color:rgba(122,122,122,.3)}.input[disabled]::-webkit-input-placeholder,.textarea[disabled]::-webkit-input-placeholder,.select select[disabled]::-webkit-input-placeholder,fieldset[disabled] .input::-webkit-input-placeholder,fieldset[disabled] .textarea::-webkit-input-placeholder,fieldset[disabled] .select select::-webkit-input-placeholder,.select fieldset[disabled] select::-webkit-input-placeholder{color:rgba(122,122,122,.3)}.input[disabled]:-moz-placeholder,.textarea[disabled]:-moz-placeholder,.select select[disabled]:-moz-placeholder,fieldset[disabled] .input:-moz-placeholder,fieldset[disabled] .textarea:-moz-placeholder,fieldset[disabled] .select select:-moz-placeholder,.select fieldset[disabled] select:-moz-placeholder{color:rgba(122,122,122,.3)}.input[disabled]:-ms-input-placeholder,.textarea[disabled]:-ms-input-placeholder,.select select[disabled]:-ms-input-placeholder,fieldset[disabled] .input:-ms-input-placeholder,fieldset[disabled] .textarea:-ms-input-placeholder,fieldset[disabled] .select select:-ms-input-placeholder,.select fieldset[disabled] select:-ms-input-placeholder{color:rgba(122,122,122,.3)}.input,.textarea{box-shadow:inset 0 .0625em .125em rgba(10,10,10,.05);max-width:100%;width:100%}.input[readonly],.textarea[readonly]{box-shadow:none}.is-white.input,.is-white.textarea{border-color:#fff}.is-white.input:focus,.is-white.textarea:focus,.is-white.is-focused.input,.is-white.is-focused.textarea,.is-white.input:active,.is-white.textarea:active,.is-white.is-active.input,.is-white.is-active.textarea{box-shadow:0 0 0 .125em rgba(255,255,255,.25)}.is-black.input,.is-black.textarea{border-color:#0a0a0a}.is-black.input:focus,.is-black.textarea:focus,.is-black.is-focused.input,.is-black.is-focused.textarea,.is-black.input:active,.is-black.textarea:active,.is-black.is-active.input,.is-black.is-active.textarea{box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.is-light.input,.is-light.textarea{border-color:#f5f5f5}.is-light.input:focus,.is-light.textarea:focus,.is-light.is-focused.input,.is-light.is-focused.textarea,.is-light.input:active,.is-light.textarea:active,.is-light.is-active.input,.is-light.is-active.textarea{box-shadow:0 0 0 .125em rgba(245,245,245,.25)}.is-dark.input,.is-dark.textarea{border-color:#363636}.is-dark.input:focus,.is-dark.textarea:focus,.is-dark.is-focused.input,.is-dark.is-focused.textarea,.is-dark.input:active,.is-dark.textarea:active,.is-dark.is-active.input,.is-dark.is-active.textarea{box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.is-primary.input,.is-primary.textarea{border-color:#00d1b2}.is-primary.input:focus,.is-primary.textarea:focus,.is-primary.is-focused.input,.is-primary.is-focused.textarea,.is-primary.input:active,.is-primary.textarea:active,.is-primary.is-active.input,.is-primary.is-active.textarea{box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.is-link.input,.is-link.textarea{border-color:#485fc7}.is-link.input:focus,.is-link.textarea:focus,.is-link.is-focused.input,.is-link.is-focused.textarea,.is-link.input:active,.is-link.textarea:active,.is-link.is-active.input,.is-link.is-active.textarea{box-shadow:0 0 0 .125em rgba(72,95,199,.25)}.is-info.input,.is-info.textarea{border-color:#3e8ed0}.is-info.input:focus,.is-info.textarea:focus,.is-info.is-focused.input,.is-info.is-focused.textarea,.is-info.input:active,.is-info.textarea:active,.is-info.is-active.input,.is-info.is-active.textarea{box-shadow:0 0 0 .125em rgba(62,142,208,.25)}.is-success.input,.is-success.textarea{border-color:#48c78e}.is-success.input:focus,.is-success.textarea:focus,.is-success.is-focused.input,.is-success.is-focused.textarea,.is-success.input:active,.is-success.textarea:active,.is-success.is-active.input,.is-success.is-active.textarea{box-shadow:0 0 0 .125em rgba(72,199,142,.25)}.is-warning.input,.is-warning.textarea{border-color:#ffe08a}.is-warning.input:focus,.is-warning.textarea:focus,.is-warning.is-focused.input,.is-warning.is-focused.textarea,.is-warning.input:active,.is-warning.textarea:active,.is-warning.is-active.input,.is-warning.is-active.textarea{box-shadow:0 0 0 .125em rgba(255,224,138,.25)}.is-danger.input,.is-danger.textarea{border-color:#f14668}.is-danger.input:focus,.is-danger.textarea:focus,.is-danger.is-focused.input,.is-danger.is-focused.textarea,.is-danger.input:active,.is-danger.textarea:active,.is-danger.is-active.input,.is-danger.is-active.textarea{box-shadow:0 0 0 .125em rgba(241,70,104,.25)}.is-small.input,.is-small.textarea{border-radius:2px;font-size:.75rem}.is-medium.input,.is-medium.textarea{font-size:1.25rem}.is-large.input,.is-large.textarea{font-size:1.5rem}.is-fullwidth.input,.is-fullwidth.textarea{display:block;width:100%}.is-inline.input,.is-inline.textarea{display:inline;width:auto}.input.is-rounded{border-radius:9999px;padding-left:calc(calc(.75em - 1px) + .375em);padding-right:calc(calc(.75em - 1px) + .375em)}.input.is-static{background-color:transparent;border-color:transparent;box-shadow:none;padding-left:0;padding-right:0}.textarea{display:block;max-width:100%;min-width:100%;padding:calc(.75em - 1px);resize:vertical}.textarea:not([rows]){max-height:40em;min-height:8em}.textarea[rows]{height:initial}.textarea.has-fixed-size{resize:none}.checkbox,.radio{cursor:pointer;display:inline-block;line-height:1.25;position:relative}.checkbox input,.radio input{cursor:pointer}.checkbox:hover,.radio:hover{color:#363636}.checkbox[disabled],.radio[disabled],fieldset[disabled] .checkbox,fieldset[disabled] .radio,.checkbox input[disabled],.radio input[disabled]{color:#7a7a7a;cursor:not-allowed}.radio+.radio{margin-left:.5em}.select{display:inline-block;max-width:100%;position:relative;vertical-align:top}.select:not(.is-multiple){height:2.5em}.select:not(.is-multiple):not(.is-loading)::after{border-color:#485fc7;right:1.125em;z-index:4}.select.is-rounded select{border-radius:9999px;padding-left:1em}.select select{cursor:pointer;display:block;font-size:1em;max-width:100%;outline:none}.select select::-ms-expand{display:none}.select select[disabled]:hover,fieldset[disabled] .select select:hover{border-color:#f5f5f5}.select select:not([multiple]){padding-right:2.5em}.select select[multiple]{height:auto;padding:0}.select select[multiple] option{padding:.5em 1em}.select:not(.is-multiple):not(.is-loading):hover::after{border-color:#363636}.select.is-white:not(:hover)::after{border-color:#fff}.select.is-white select{border-color:#fff}.select.is-white select:hover,.select.is-white select.is-hovered{border-color:#f2f2f2}.select.is-white select:focus,.select.is-white select.is-focused,.select.is-white select:active,.select.is-white select.is-active{box-shadow:0 0 0 .125em rgba(255,255,255,.25)}.select.is-black:not(:hover)::after{border-color:#0a0a0a}.select.is-black select{border-color:#0a0a0a}.select.is-black select:hover,.select.is-black select.is-hovered{border-color:#000}.select.is-black select:focus,.select.is-black select.is-focused,.select.is-black select:active,.select.is-black select.is-active{box-shadow:0 0 0 .125em rgba(10,10,10,.25)}.select.is-light:not(:hover)::after{border-color:#f5f5f5}.select.is-light select{border-color:#f5f5f5}.select.is-light select:hover,.select.is-light select.is-hovered{border-color:#e8e8e8}.select.is-light select:focus,.select.is-light select.is-focused,.select.is-light select:active,.select.is-light select.is-active{box-shadow:0 0 0 .125em rgba(245,245,245,.25)}.select.is-dark:not(:hover)::after{border-color:#363636}.select.is-dark select{border-color:#363636}.select.is-dark select:hover,.select.is-dark select.is-hovered{border-color:#292929}.select.is-dark select:focus,.select.is-dark select.is-focused,.select.is-dark select:active,.select.is-dark select.is-active{box-shadow:0 0 0 .125em rgba(54,54,54,.25)}.select.is-primary:not(:hover)::after{border-color:#00d1b2}.select.is-primary select{border-color:#00d1b2}.select.is-primary select:hover,.select.is-primary select.is-hovered{border-color:#00b89c}.select.is-primary select:focus,.select.is-primary select.is-focused,.select.is-primary select:active,.select.is-primary select.is-active{box-shadow:0 0 0 .125em rgba(0,209,178,.25)}.select.is-link:not(:hover)::after{border-color:#485fc7}.select.is-link select{border-color:#485fc7}.select.is-link select:hover,.select.is-link select.is-hovered{border-color:#3a51bb}.select.is-link select:focus,.select.is-link select.is-focused,.select.is-link select:active,.select.is-link select.is-active{box-shadow:0 0 0 .125em rgba(72,95,199,.25)}.select.is-info:not(:hover)::after{border-color:#3e8ed0}.select.is-info select{border-color:#3e8ed0}.select.is-info select:hover,.select.is-info select.is-hovered{border-color:#3082c5}.select.is-info select:focus,.select.is-info select.is-focused,.select.is-info select:active,.select.is-info select.is-active{box-shadow:0 0 0 .125em rgba(62,142,208,.25)}.select.is-success:not(:hover)::after{border-color:#48c78e}.select.is-success select{border-color:#48c78e}.select.is-success select:hover,.select.is-success select.is-hovered{border-color:#3abb81}.select.is-success select:focus,.select.is-success select.is-focused,.select.is-success select:active,.select.is-success select.is-active{box-shadow:0 0 0 .125em rgba(72,199,142,.25)}.select.is-warning:not(:hover)::after{border-color:#ffe08a}.select.is-warning select{border-color:#ffe08a}.select.is-warning select:hover,.select.is-warning select.is-hovered{border-color:#ffd970}.select.is-warning select:focus,.select.is-warning select.is-focused,.select.is-warning select:active,.select.is-warning select.is-active{box-shadow:0 0 0 .125em rgba(255,224,138,.25)}.select.is-danger:not(:hover)::after{border-color:#f14668}.select.is-danger select{border-color:#f14668}.select.is-danger select:hover,.select.is-danger select.is-hovered{border-color:#ef2e55}.select.is-danger select:focus,.select.is-danger select.is-focused,.select.is-danger select:active,.select.is-danger select.is-active{box-shadow:0 0 0 .125em rgba(241,70,104,.25)}.select.is-small{border-radius:2px;font-size:.75rem}.select.is-medium{font-size:1.25rem}.select.is-large{font-size:1.5rem}.select.is-disabled::after{border-color:#7a7a7a}.select.is-fullwidth{width:100%}.select.is-fullwidth select{width:100%}.select.is-loading::after{margin-top:0;position:absolute;right:.625em;top:.625em;transform:none}.select.is-loading.is-small:after{font-size:.75rem}.select.is-loading.is-medium:after{font-size:1.25rem}.select.is-loading.is-large:after{font-size:1.5rem}.file{align-items:stretch;display:flex;justify-content:flex-start;position:relative}.file.is-white .file-cta{background-color:#fff;border-color:transparent;color:#0a0a0a}.file.is-white:hover .file-cta,.file.is-white.is-hovered .file-cta{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}.file.is-white:focus .file-cta,.file.is-white.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(255,255,255,.25);color:#0a0a0a}.file.is-white:active .file-cta,.file.is-white.is-active .file-cta{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}.file.is-black .file-cta{background-color:#0a0a0a;border-color:transparent;color:#fff}.file.is-black:hover .file-cta,.file.is-black.is-hovered .file-cta{background-color:#040404;border-color:transparent;color:#fff}.file.is-black:focus .file-cta,.file.is-black.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(10,10,10,.25);color:#fff}.file.is-black:active .file-cta,.file.is-black.is-active .file-cta{background-color:#000;border-color:transparent;color:#fff}.file.is-light .file-cta{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-light:hover .file-cta,.file.is-light.is-hovered .file-cta{background-color:#eee;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-light:focus .file-cta,.file.is-light.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(245,245,245,.25);color:rgba(0,0,0,.7)}.file.is-light:active .file-cta,.file.is-light.is-active .file-cta{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-dark .file-cta{background-color:#363636;border-color:transparent;color:#fff}.file.is-dark:hover .file-cta,.file.is-dark.is-hovered .file-cta{background-color:#2f2f2f;border-color:transparent;color:#fff}.file.is-dark:focus .file-cta,.file.is-dark.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(54,54,54,.25);color:#fff}.file.is-dark:active .file-cta,.file.is-dark.is-active .file-cta{background-color:#292929;border-color:transparent;color:#fff}.file.is-primary .file-cta{background-color:#00d1b2;border-color:transparent;color:#fff}.file.is-primary:hover .file-cta,.file.is-primary.is-hovered .file-cta{background-color:#00c4a7;border-color:transparent;color:#fff}.file.is-primary:focus .file-cta,.file.is-primary.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(0,209,178,.25);color:#fff}.file.is-primary:active .file-cta,.file.is-primary.is-active .file-cta{background-color:#00b89c;border-color:transparent;color:#fff}.file.is-link .file-cta{background-color:#485fc7;border-color:transparent;color:#fff}.file.is-link:hover .file-cta,.file.is-link.is-hovered .file-cta{background-color:#3e56c4;border-color:transparent;color:#fff}.file.is-link:focus .file-cta,.file.is-link.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(72,95,199,.25);color:#fff}.file.is-link:active .file-cta,.file.is-link.is-active .file-cta{background-color:#3a51bb;border-color:transparent;color:#fff}.file.is-info .file-cta{background-color:#3e8ed0;border-color:transparent;color:#fff}.file.is-info:hover .file-cta,.file.is-info.is-hovered .file-cta{background-color:#3488ce;border-color:transparent;color:#fff}.file.is-info:focus .file-cta,.file.is-info.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(62,142,208,.25);color:#fff}.file.is-info:active .file-cta,.file.is-info.is-active .file-cta{background-color:#3082c5;border-color:transparent;color:#fff}.file.is-success .file-cta{background-color:#48c78e;border-color:transparent;color:#fff}.file.is-success:hover .file-cta,.file.is-success.is-hovered .file-cta{background-color:#3ec487;border-color:transparent;color:#fff}.file.is-success:focus .file-cta,.file.is-success.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(72,199,142,.25);color:#fff}.file.is-success:active .file-cta,.file.is-success.is-active .file-cta{background-color:#3abb81;border-color:transparent;color:#fff}.file.is-warning .file-cta{background-color:#ffe08a;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-warning:hover .file-cta,.file.is-warning.is-hovered .file-cta{background-color:#ffdc7d;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-warning:focus .file-cta,.file.is-warning.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(255,224,138,.25);color:rgba(0,0,0,.7)}.file.is-warning:active .file-cta,.file.is-warning.is-active .file-cta{background-color:#ffd970;border-color:transparent;color:rgba(0,0,0,.7)}.file.is-danger .file-cta{background-color:#f14668;border-color:transparent;color:#fff}.file.is-danger:hover .file-cta,.file.is-danger.is-hovered .file-cta{background-color:#f03a5f;border-color:transparent;color:#fff}.file.is-danger:focus .file-cta,.file.is-danger.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em rgba(241,70,104,.25);color:#fff}.file.is-danger:active .file-cta,.file.is-danger.is-active .file-cta{background-color:#ef2e55;border-color:transparent;color:#fff}.file.is-small{font-size:.75rem}.file.is-normal{font-size:1rem}.file.is-medium{font-size:1.25rem}.file.is-medium .file-icon .fa{font-size:21px}.file.is-large{font-size:1.5rem}.file.is-large .file-icon .fa{font-size:28px}.file.has-name .file-cta{border-bottom-right-radius:0;border-top-right-radius:0}.file.has-name .file-name{border-bottom-left-radius:0;border-top-left-radius:0}.file.has-name.is-empty .file-cta{border-radius:4px}.file.has-name.is-empty .file-name{display:none}.file.is-boxed .file-label{flex-direction:column}.file.is-boxed .file-cta{flex-direction:column;height:auto;padding:1em 3em}.file.is-boxed .file-name{border-width:0 1px 1px}.file.is-boxed .file-icon{height:1.5em;width:1.5em}.file.is-boxed .file-icon .fa{font-size:21px}.file.is-boxed.is-small .file-icon .fa{font-size:14px}.file.is-boxed.is-medium .file-icon .fa{font-size:28px}.file.is-boxed.is-large .file-icon .fa{font-size:35px}.file.is-boxed.has-name .file-cta{border-radius:4px 4px 0 0}.file.is-boxed.has-name .file-name{border-radius:0 0 4px 4px;border-width:0 1px 1px}.file.is-centered{justify-content:center}.file.is-fullwidth .file-label{width:100%}.file.is-fullwidth .file-name{flex-grow:1;max-width:none}.file.is-right{justify-content:flex-end}.file.is-right .file-cta{border-radius:0 4px 4px 0}.file.is-right .file-name{border-radius:4px 0 0 4px;border-width:1px 0 1px 1px;order:-1}.file-label{align-items:stretch;display:flex;cursor:pointer;justify-content:flex-start;overflow:hidden;position:relative}.file-label:hover .file-cta{background-color:#eee;color:#363636}.file-label:hover .file-name{border-color:#d5d5d5}.file-label:active .file-cta{background-color:#e8e8e8;color:#363636}.file-label:active .file-name{border-color:#cfcfcf}.file-input{height:100%;left:0;opacity:0;outline:none;position:absolute;top:0;width:100%}.file-cta,.file-name{border-color:#dbdbdb;border-radius:4px;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}.file-cta{background-color:#f5f5f5;color:#4a4a4a}.file-name{border-color:#dbdbdb;border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:inherit;text-overflow:ellipsis}.file-icon{align-items:center;display:flex;height:1em;justify-content:center;margin-right:.5em;width:1em}.file-icon .fa{font-size:14px}.label{color:#363636;display:block;font-size:1rem;font-weight:700}.label:not(:last-child){margin-bottom:.5em}.label.is-small{font-size:.75rem}.label.is-medium{font-size:1.25rem}.label.is-large{font-size:1.5rem}.help{display:block;font-size:.75rem;margin-top:.25rem}.help.is-white{color:#fff}.help.is-black{color:#0a0a0a}.help.is-light{color:#f5f5f5}.help.is-dark{color:#363636}.help.is-primary{color:#00d1b2}.help.is-link{color:#485fc7}.help.is-info{color:#3e8ed0}.help.is-success{color:#48c78e}.help.is-warning{color:#ffe08a}.help.is-danger{color:#f14668}.field:not(:last-child){margin-bottom:.75rem}.field.has-addons{display:flex;justify-content:flex-start}.field.has-addons .control:not(:last-child){margin-right:-1px}.field.has-addons .control:not(:first-child):not(:last-child) .button,.field.has-addons .control:not(:first-child):not(:last-child) .input,.field.has-addons .control:not(:first-child):not(:last-child) .select select{border-radius:0}.field.has-addons .control:first-child:not(:only-child) .button,.field.has-addons .control:first-child:not(:only-child) .input,.field.has-addons .control:first-child:not(:only-child) .select select{border-bottom-right-radius:0;border-top-right-radius:0}.field.has-addons .control:last-child:not(:only-child) .button,.field.has-addons .control:last-child:not(:only-child) .input,.field.has-addons .control:last-child:not(:only-child) .select select{border-bottom-left-radius:0;border-top-left-radius:0}.field.has-addons .control .button:not([disabled]):hover,.field.has-addons .control .button:not([disabled]).is-hovered,.field.has-addons .control .input:not([disabled]):hover,.field.has-addons .control .input:not([disabled]).is-hovered,.field.has-addons .control .select select:not([disabled]):hover,.field.has-addons .control .select select:not([disabled]).is-hovered{z-index:2}.field.has-addons .control .button:not([disabled]):focus,.field.has-addons .control .button:not([disabled]).is-focused,.field.has-addons .control .button:not([disabled]):active,.field.has-addons .control .button:not([disabled]).is-active,.field.has-addons .control .input:not([disabled]):focus,.field.has-addons .control .input:not([disabled]).is-focused,.field.has-addons .control .input:not([disabled]):active,.field.has-addons .control .input:not([disabled]).is-active,.field.has-addons .control .select select:not([disabled]):focus,.field.has-addons .control .select select:not([disabled]).is-focused,.field.has-addons .control .select select:not([disabled]):active,.field.has-addons .control .select select:not([disabled]).is-active{z-index:3}.field.has-addons .control .button:not([disabled]):focus:hover,.field.has-addons .control .button:not([disabled]).is-focused:hover,.field.has-addons .control .button:not([disabled]):active:hover,.field.has-addons .control .button:not([disabled]).is-active:hover,.field.has-addons .control .input:not([disabled]):focus:hover,.field.has-addons .control .input:not([disabled]).is-focused:hover,.field.has-addons .control .input:not([disabled]):active:hover,.field.has-addons .control .input:not([disabled]).is-active:hover,.field.has-addons .control .select select:not([disabled]):focus:hover,.field.has-addons .control .select select:not([disabled]).is-focused:hover,.field.has-addons .control .select select:not([disabled]):active:hover,.field.has-addons .control .select select:not([disabled]).is-active:hover{z-index:4}.field.has-addons .control.is-expanded{flex-grow:1;flex-shrink:1}.field.has-addons.has-addons-centered{justify-content:center}.field.has-addons.has-addons-right{justify-content:flex-end}.field.has-addons.has-addons-fullwidth .control{flex-grow:1;flex-shrink:0}.field.is-grouped{display:flex;justify-content:flex-start}.field.is-grouped>.control{flex-shrink:0}.field.is-grouped>.control:not(:last-child){margin-bottom:0;margin-right:.75rem}.field.is-grouped>.control.is-expanded{flex-grow:1;flex-shrink:1}.field.is-grouped.is-grouped-centered{justify-content:center}.field.is-grouped.is-grouped-right{justify-content:flex-end}.field.is-grouped.is-grouped-multiline{flex-wrap:wrap}.field.is-grouped.is-grouped-multiline>.control:last-child,.field.is-grouped.is-grouped-multiline>.control:not(:last-child){margin-bottom:.75rem}.field.is-grouped.is-grouped-multiline:last-child{margin-bottom:-.75rem}.field.is-grouped.is-grouped-multiline:not(:last-child){margin-bottom:0}@media screen and (min-width:769px),print{.field.is-horizontal{display:flex}}.field-label .label{font-size:inherit}@media screen and (max-width:768px){.field-label{margin-bottom:.5rem}}@media screen and (min-width:769px),print{.field-label{flex-basis:0;flex-grow:1;flex-shrink:0;margin-right:1.5rem;text-align:right}.field-label.is-small{font-size:.75rem;padding-top:.375em}.field-label.is-normal{padding-top:.375em}.field-label.is-medium{font-size:1.25rem;padding-top:.375em}.field-label.is-large{font-size:1.5rem;padding-top:.375em}}.field-body .field .field{margin-bottom:0}@media screen and (min-width:769px),print{.field-body{display:flex;flex-basis:0;flex-grow:5;flex-shrink:1}.field-body .field{margin-bottom:0}.field-body>.field{flex-shrink:1}.field-body>.field:not(.is-narrow){flex-grow:1}.field-body>.field:not(:last-child){margin-right:.75rem}}.control{box-sizing:border-box;clear:both;font-size:1rem;position:relative;text-align:inherit}.control.has-icons-left .input:focus~.icon,.control.has-icons-left .select:focus~.icon,.control.has-icons-right .input:focus~.icon,.control.has-icons-right .select:focus~.icon{color:#4a4a4a}.control.has-icons-left .input.is-small~.icon,.control.has-icons-left .select.is-small~.icon,.control.has-icons-right .input.is-small~.icon,.control.has-icons-right .select.is-small~.icon{font-size:.75rem}.control.has-icons-left .input.is-medium~.icon,.control.has-icons-left .select.is-medium~.icon,.control.has-icons-right .input.is-medium~.icon,.control.has-icons-right .select.is-medium~.icon{font-size:1.25rem}.control.has-icons-left .input.is-large~.icon,.control.has-icons-left .select.is-large~.icon,.control.has-icons-right .input.is-large~.icon,.control.has-icons-right .select.is-large~.icon{font-size:1.5rem}.control.has-icons-left .icon,.control.has-icons-right .icon{color:#dbdbdb;height:2.5em;pointer-events:none;position:absolute;top:0;width:2.5em;z-index:4}.control.has-icons-left .input,.control.has-icons-left .select select{padding-left:2.5em}.control.has-icons-left .icon.is-left{left:0}.control.has-icons-right .input,.control.has-icons-right .select select{padding-right:2.5em}.control.has-icons-right .icon.is-right{right:0}.control.is-loading::after{position:absolute !important;right:.625em;top:.625em;z-index:4}.control.is-loading.is-small:after{font-size:.75rem}.control.is-loading.is-medium:after{font-size:1.25rem}.control.is-loading.is-large:after{font-size:1.5rem}.dropdown{display:inline-flex;position:relative;vertical-align:top}.dropdown.is-active .dropdown-menu,.dropdown.is-hoverable:hover .dropdown-menu{display:block}.dropdown.is-right .dropdown-menu{left:auto;right:0}.dropdown.is-up .dropdown-menu{bottom:100%;padding-bottom:4px;padding-top:initial;top:auto}.dropdown-menu{display:none;left:0;min-width:12rem;padding-top:4px;position:absolute;top:100%;z-index:20}.dropdown-content{background-color:#fff;border-radius:4px;box-shadow:0 .5em 1em -.125em rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.02);padding-bottom:.5rem;padding-top:.5rem}.dropdown-item{color:#4a4a4a;display:block;font-size:.875rem;line-height:1.5;padding:.375rem 1rem;position:relative}a.dropdown-item,button.dropdown-item{padding-right:3rem;text-align:inherit;white-space:nowrap;width:100%}a.dropdown-item:hover,button.dropdown-item:hover{background-color:#f5f5f5;color:#0a0a0a}a.dropdown-item.is-active,button.dropdown-item.is-active{background-color:#485fc7;color:#fff}.dropdown-divider{background-color:#ededed;border:none;display:block;height:1px;margin:.5rem 0}.modal{align-items:center;display:none;flex-direction:column;justify-content:center;overflow:hidden;position:fixed;z-index:40}.modal.is-active{display:flex}.modal-background{background-color:rgba(10,10,10,.86)}.modal-content,.modal-card{margin:0 20px;max-height:calc(100vh - 160px);overflow:auto;position:relative;width:100%}@media screen and (min-width:769px){.modal-content,.modal-card{margin:0 auto;max-height:calc(100vh - 40px);width:640px}}.modal-close{background:none;height:40px;position:fixed;right:20px;top:20px;width:40px}.modal-card{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden;-ms-overflow-y:visible}.modal-card-head,.modal-card-foot{align-items:center;background-color:#f5f5f5;display:flex;flex-shrink:0;justify-content:flex-start;padding:20px;position:relative}.modal-card-head{border-bottom:1px solid #dbdbdb;border-top-left-radius:6px;border-top-right-radius:6px}.modal-card-title{color:#363636;flex-grow:1;flex-shrink:0;font-size:1.5rem;line-height:1}.modal-card-foot{border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:1px solid #dbdbdb}.modal-card-foot .button:not(:last-child){margin-right:.5em}.modal-card-body{-webkit-overflow-scrolling:touch;background-color:#fff;flex-grow:1;flex-shrink:1;overflow:auto;padding:20px}.has-text-white{color:#fff !important}a.has-text-white:hover,a.has-text-white:focus{color:#e6e6e6 !important}.has-background-white{background-color:#fff !important}.has-text-black{color:#0a0a0a !important}a.has-text-black:hover,a.has-text-black:focus{color:#000 !important}.has-background-black{background-color:#0a0a0a !important}.has-text-light{color:#f5f5f5 !important}a.has-text-light:hover,a.has-text-light:focus{color:#dbdbdb !important}.has-background-light{background-color:#f5f5f5 !important}.has-text-dark{color:#363636 !important}a.has-text-dark:hover,a.has-text-dark:focus{color:#1c1c1c !important}.has-background-dark{background-color:#363636 !important}.has-text-primary{color:#00d1b2 !important}a.has-text-primary:hover,a.has-text-primary:focus{color:#009e86 !important}.has-background-primary{background-color:#00d1b2 !important}.has-text-primary-light{color:#ebfffc !important}a.has-text-primary-light:hover,a.has-text-primary-light:focus{color:#b8fff4 !important}.has-background-primary-light{background-color:#ebfffc !important}.has-text-primary-dark{color:#00947e !important}a.has-text-primary-dark:hover,a.has-text-primary-dark:focus{color:#00c7a9 !important}.has-background-primary-dark{background-color:#00947e !important}.has-text-link{color:#485fc7 !important}a.has-text-link:hover,a.has-text-link:focus{color:#3449a8 !important}.has-background-link{background-color:#485fc7 !important}.has-text-link-light{color:#eff1fa !important}a.has-text-link-light:hover,a.has-text-link-light:focus{color:#c8cfee !important}.has-background-link-light{background-color:#eff1fa !important}.has-text-link-dark{color:#3850b7 !important}a.has-text-link-dark:hover,a.has-text-link-dark:focus{color:#576dcb !important}.has-background-link-dark{background-color:#3850b7 !important}.has-text-info{color:#3e8ed0 !important}a.has-text-info:hover,a.has-text-info:focus{color:#2b74b1 !important}.has-background-info{background-color:#3e8ed0 !important}.has-text-info-light{color:#eff5fb !important}a.has-text-info-light:hover,a.has-text-info-light:focus{color:#c6ddf1 !important}.has-background-info-light{background-color:#eff5fb !important}.has-text-info-dark{color:#296fa8 !important}a.has-text-info-dark:hover,a.has-text-info-dark:focus{color:#368ace !important}.has-background-info-dark{background-color:#296fa8 !important}.has-text-success{color:#48c78e !important}a.has-text-success:hover,a.has-text-success:focus{color:#34a873 !important}.has-background-success{background-color:#48c78e !important}.has-text-success-light{color:#effaf5 !important}a.has-text-success-light:hover,a.has-text-success-light:focus{color:#c8eedd !important}.has-background-success-light{background-color:#effaf5 !important}.has-text-success-dark{color:#257953 !important}a.has-text-success-dark:hover,a.has-text-success-dark:focus{color:#31a06e !important}.has-background-success-dark{background-color:#257953 !important}.has-text-warning{color:#ffe08a !important}a.has-text-warning:hover,a.has-text-warning:focus{color:#ffd257 !important}.has-background-warning{background-color:#ffe08a !important}.has-text-warning-light{color:#fffaeb !important}a.has-text-warning-light:hover,a.has-text-warning-light:focus{color:#ffecb8 !important}.has-background-warning-light{background-color:#fffaeb !important}.has-text-warning-dark{color:#946c00 !important}a.has-text-warning-dark:hover,a.has-text-warning-dark:focus{color:#c79200 !important}.has-background-warning-dark{background-color:#946c00 !important}.has-text-danger{color:#f14668 !important}a.has-text-danger:hover,a.has-text-danger:focus{color:#ee1742 !important}.has-background-danger{background-color:#f14668 !important}.has-text-danger-light{color:#feecf0 !important}a.has-text-danger-light:hover,a.has-text-danger-light:focus{color:#fabdc9 !important}.has-background-danger-light{background-color:#feecf0 !important}.has-text-danger-dark{color:#cc0f35 !important}a.has-text-danger-dark:hover,a.has-text-danger-dark:focus{color:#ee2049 !important}.has-background-danger-dark{background-color:#cc0f35 !important}.has-text-black-bis{color:#121212 !important}.has-background-black-bis{background-color:#121212 !important}.has-text-black-ter{color:#242424 !important}.has-background-black-ter{background-color:#242424 !important}.has-text-grey-darker{color:#363636 !important}.has-background-grey-darker{background-color:#363636 !important}.has-text-grey-dark{color:#4a4a4a !important}.has-background-grey-dark{background-color:#4a4a4a !important}.has-text-grey{color:#7a7a7a !important}.has-background-grey{background-color:#7a7a7a !important}.has-text-grey-light{color:#b5b5b5 !important}.has-background-grey-light{background-color:#b5b5b5 !important}.has-text-grey-lighter{color:#dbdbdb !important}.has-background-grey-lighter{background-color:#dbdbdb !important}.has-text-white-ter{color:#f5f5f5 !important}.has-background-white-ter{background-color:#f5f5f5 !important}.has-text-white-bis{color:#fafafa !important}.has-background-white-bis{background-color:#fafafa !important}:root{--shadow-offset-x:8px;--shadow-offset-y:var(--shadow-offset-x);--blur-radius:16px;--is-inset:default}.neomorph{box-shadow:var(--is-inset) calc(-1*var(--shadow-offset-x)) calc(-1*var(--shadow-offset-y)) var(--blur-radius) var(--light-shadow),var(--is-inset) var(--shadow-offset-x) var(--shadow-offset-y) var(--blur-radius) var(--dark-shadow)}.neomorph.is-inset{--is-inset:inset;--shadow-offset-x:calc(-1*var(--shadow-offset-x))}.neomorph.is-small{--shadow-offset-x:6px;--blur-radius:12px}@media(min-width:640px){.neomorph.is-small-sm{--shadow-offset-x:6px;--blur-radius:12px}}@media(min-width:768px){.neomorph.is-small-md{--shadow-offset-x:6px;--blur-radius:12px}}@media(min-width:1024px){.neomorph.is-small-lg{--shadow-offset-x:6px;--blur-radius:12px}}@media(min-width:1280px){.neomorph.is-small-xl{--shadow-offset-x:6px;--blur-radius:12px}}.neomorph.is-xsmall{--shadow-offset-x:3px;--blur-radius:6px}@media(min-width:640px){.neomorph.is-xsmall-sm{--shadow-offset-x:3px;--blur-radius:6px}}@media(min-width:768px){.neomorph.is-xsmall-md{--shadow-offset-x:3px;--blur-radius:6px}}@media(min-width:1024px){.neomorph.is-xsmall-lg{--shadow-offset-x:3px;--blur-radius:6px}}@media(min-width:1280px){.neomorph.is-xsmall-xl{--shadow-offset-x:3px;--blur-radius:6px}}.neomorph.is-xxsmall{--shadow-offset-x:2px;--blur-radius:4px}@media(min-width:640px){.neomorph.is-xxsmall-sm{--shadow-offset-x:2px;--blur-radius:4px}}@media(min-width:768px){.neomorph.is-xxsmall-md{--shadow-offset-x:2px;--blur-radius:4px}}@media(min-width:1024px){.neomorph.is-xxsmall-lg{--shadow-offset-x:2px;--blur-radius:4px}}@media(min-width:1280px){.neomorph.is-xxsmall-xl{--shadow-offset-x:2px;--blur-radius:4px}}.neoBtn{background:linear-gradient(145deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:-3px -3px 6px var(--light-shadow),3px 3px 6px var(--dark-shadow);border:none !important;-webkit-backface-visibility:hidden;backface-visibility:hidden}.neoBtn:focus{background:linear-gradient(-45deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:-3px -3px 6px var(--light-shadow),3px 3px 6px var(--dark-shadow) !important;border:none !important}.neoBtnInsetPlain{background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light)) !important;box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow) !important;border:none !important}.neoBtnInsetPlain:focus{background:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter)) !important;box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow) !important;border:none !important}.neoBtnInsetPlain:focus:not(:active){box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow) !important}.neoBtnSmall{background:linear-gradient(145deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:-2px -2px 4px var(--light-shadow),2px 2px 4px var(--dark-shadow);border:none !important}.neoBtnSmall:focus{background:linear-gradient(-45deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:-2px -2px 4px var(--light-shadow),2px 2px 4px var(--dark-shadow);border:none !important}.neoBtnSmall:focus:not(:active){box-shadow:-2px -2px 4px var(--light-shadow),2px 2px 4px var(--dark-shadow)}.neoBtnSmallInsetPlain{background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light)) !important;box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow) !important;border:none !important}.neoBtnSmallInsetPlain:focus{background:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter)) !important;box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow) !important;border:none !important}.neoBtnSmallXInsetPlain{background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light));box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);border:none !important}.neoBtnSmallXInsetPlain:focus{background:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter));box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow) !important;border:none !important}.neoBtnSmallPlain{box-shadow:-3px -3px 6px var(--light-shadow),3px 3px 6px var(--dark-shadow);border:none !important}.neoBtnSmallPlain:focus{box-shadow:-3px -3px 6px var(--light-shadow),3px 3px 6px var(--dark-shadow) !important;border:none !important}.neoFile{box-shadow:0 0 0 var(--light-shadow),0 0 0 var(--dark-shadow) !important;transition:all .2s linear;-webkit-backface-visibility:hidden !important;backface-visibility:hidden !important}.neoFile:hover{box-shadow:-3px -3px 6px var(--light-shadow),3px 3px 6px var(--dark-shadow) !important}.neoFile:focus-visible{background:linear-gradient(-45deg,var(--primary-gradiend-light),var(--primary-gradiend-dark));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow) !important;outline:none}.neoFile.isSelected{background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light));box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow) !important}.neoFile.isSelected:focus-visible{background:linear-gradient(-45deg,var(--primary-gradiend-lighter),var(--primary-gradiend-darker));outline:none}.neoFile.is-active,.neoFile.active{box-shadow:inset 3px 3px 6px var(--dark-shadow),inset -3px -3px 6px var(--light-shadow) !important;color:var(--black) !important}.neoInput{box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow) !important;background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light));border:none !important}.neoInput:focus{background:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter));border:none !important}.neoSelect>select{box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow) !important;background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light)) !important;border:none !important}.neoSelect>select:focus{background:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter)) !important;border:none !important}.neoCheckbox{opacity:0;width:0}.neoCheckbox:focus+label:before{background:linear-gradient(145deg,var(--primary-gradiend-darker),var(--primary-gradiend-lighter)) !important}.neoCheckboxContainer{position:relative}.neoCheckbox+label{padding:.15rem .15rem .15rem 2rem;cursor:pointer;font-size:1rem;line-height:1.5}.neoCheckbox+label:before{animation-name:none;width:1.5rem;height:1.5rem;border-radius:100px;position:absolute;left:0;top:0;content:'';border:none;box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light)) !important}.neoCheckbox:checked.is-checked-bold+label{font-weight:bold}.neoCheckbox:checked+label:after{display:inline-block;width:.375rem;height:.6rem;top:.35rem;left:.55rem;transform:translateY(0) rotate(45deg);border-width:.1rem;border-top-width:.1rem;border-left-width:.1rem;border-style:solid;border-top-style:solid;border-left-style:solid;border-color:var(--text-color);border-top:0;border-left:0;position:absolute;content:''}hr.neoSeparatorFlat{height:10px;border:none;border-radius:20px;box-shadow:-2px -2px 4px var(--light-shadow),2px 2px 4px var(--dark-shadow);background:var(--background)}hr.neoSeparatorPressed{height:10px;border:none;border-radius:20px;box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-dark),var(--primary-gradiend-light))}input.neoRange[type=range]{height:30px;-webkit-appearance:none;width:100%;background:transparent}input.neoRange[type=range]:focus{outline:none}input.neoRange[type=range]::-webkit-slider-runnable-track{width:100%;height:20px;cursor:pointer;animate:.2s;border-radius:20px;box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(90deg,#fa9e9e,#faad9e,#fabd9e,#facc9e,#fadb9e,#faeb9e,#fafa9e,#ebfa9e,#dbfa9e,#ccfa9e,#bdfa9e,#adfa9e,#9efa9e,#9efaad,#9efabd,#9efacc,#9efadb,#9efaeb,#9efafa,#9eebfa,#9edbfa,#9eccfa,#9ebdfa,#9eadfa,#9e9efa,#ad9efa,#bd9efa,#cc9efa,#db9efa,#eb9efa,#fa9efa,#fa9eeb,#fa9edb,#fa9ecc,#fa9ebd,#fa9ead,#fa9ea0) !important}input.neoRange[type=range]::-webkit-slider-thumb{border:none;height:26px;width:26px;border-radius:20px;box-shadow:2px 2px 4px var(--dark-shadow),-2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-light),var(--primary-gradiend-dark)) !important;cursor:pointer;-webkit-appearance:none;margin-top:-3px}input.neoRange[type=range]:focus::-webkit-slider-runnable-track{background:linear-gradient(90deg,#fa9e9e,#faad9e,#fabd9e,#facc9e,#fadb9e,#faeb9e,#fafa9e,#ebfa9e,#dbfa9e,#ccfa9e,#bdfa9e,#adfa9e,#9efa9e,#9efaad,#9efabd,#9efacc,#9efadb,#9efaeb,#9efafa,#9eebfa,#9edbfa,#9eccfa,#9ebdfa,#9eadfa,#9e9efa,#ad9efa,#bd9efa,#cc9efa,#db9efa,#eb9efa,#fa9efa,#fa9eeb,#fa9edb,#fa9ecc,#fa9ebd,#fa9ead,#fa9ea0) !important}input.neoRange[type=range]::-moz-range-track{width:100%;height:20px;cursor:pointer;border-radius:20px;box-shadow:inset 2px 2px 4px var(--dark-shadow),inset -2px -2px 4px var(--light-shadow);background:linear-gradient(90deg,#fa9e9e,#faad9e,#fabd9e,#facc9e,#fadb9e,#faeb9e,#fafa9e,#ebfa9e,#dbfa9e,#ccfa9e,#bdfa9e,#adfa9e,#9efa9e,#9efaad,#9efabd,#9efacc,#9efadb,#9efaeb,#9efafa,#9eebfa,#9edbfa,#9eccfa,#9ebdfa,#9eadfa,#9e9efa,#ad9efa,#bd9efa,#cc9efa,#db9efa,#eb9efa,#fa9efa,#fa9eeb,#fa9edb,#fa9ecc,#fa9ebd,#fa9ead,#fa9ea0) !important;border:none}input.neoRange[type=range]::-moz-range-thumb{border:none;height:26px;width:26px;border-radius:20px;box-shadow:2px 2px 4px var(--dark-shadow),-2px -2px 4px var(--light-shadow);background:linear-gradient(145deg,var(--primary-gradiend-light),var(--primary-gradiend-dark)) !important;cursor:pointer} \ No newline at end of file +@charset "UTF-8"; +/*! + Ionicons, v4.6.4-1 + Created by Ben Sperry for the Ionic Framework, http://ionicons.com/ + https://twitter.com/benjsperry https://twitter.com/ionicframework + MIT License: https://github.com/driftyco/ionicons + + Android-style icons originally built by Google’s + Material Design Icons: https://github.com/google/material-design-icons + used under CC BY http://creativecommons.org/licenses/by/4.0/ + Modified icons to fit ionicon’s grid from original. +*/ +@font-face { + font-family: "Ionicons"; + src: url("../fonts/ionicons.eot?v=4.6.4-1"); + src: url("../fonts/ionicons.eot?v=4.6.4-1#iefix") format("embedded-opentype"), url("../fonts/ionicons.woff2?v=4.6.4-1") format("woff2"), url("../fonts/ionicons.woff?v=4.6.4-1") format("woff"), url("../fonts/ionicons.ttf?v=4.6.4-1") format("truetype"), url("../fonts/ionicons.svg?v=4.6.4-1#Ionicons") format("svg"); + font-weight: normal; + font-style: normal; +} +.ion, .ionicons, +.ion-ios-add:before, +.ion-ios-add-circle:before, +.ion-ios-add-circle-outline:before, +.ion-ios-airplane:before, +.ion-ios-alarm:before, +.ion-ios-albums:before, +.ion-ios-alert:before, +.ion-ios-american-football:before, +.ion-ios-analytics:before, +.ion-ios-aperture:before, +.ion-ios-apps:before, +.ion-ios-appstore:before, +.ion-ios-archive:before, +.ion-ios-arrow-back:before, +.ion-ios-arrow-down:before, +.ion-ios-arrow-dropdown:before, +.ion-ios-arrow-dropdown-circle:before, +.ion-ios-arrow-dropleft:before, +.ion-ios-arrow-dropleft-circle:before, +.ion-ios-arrow-dropright:before, +.ion-ios-arrow-dropright-circle:before, +.ion-ios-arrow-dropup:before, +.ion-ios-arrow-dropup-circle:before, +.ion-ios-arrow-forward:before, +.ion-ios-arrow-round-back:before, +.ion-ios-arrow-round-down:before, +.ion-ios-arrow-round-forward:before, +.ion-ios-arrow-round-up:before, +.ion-ios-arrow-up:before, +.ion-ios-at:before, +.ion-ios-attach:before, +.ion-ios-backspace:before, +.ion-ios-barcode:before, +.ion-ios-baseball:before, +.ion-ios-basket:before, +.ion-ios-basketball:before, +.ion-ios-battery-charging:before, +.ion-ios-battery-dead:before, +.ion-ios-battery-full:before, +.ion-ios-beaker:before, +.ion-ios-bed:before, +.ion-ios-beer:before, +.ion-ios-bicycle:before, +.ion-ios-bluetooth:before, +.ion-ios-boat:before, +.ion-ios-body:before, +.ion-ios-bonfire:before, +.ion-ios-book:before, +.ion-ios-bookmark:before, +.ion-ios-bookmarks:before, +.ion-ios-bowtie:before, +.ion-ios-briefcase:before, +.ion-ios-browsers:before, +.ion-ios-brush:before, +.ion-ios-bug:before, +.ion-ios-build:before, +.ion-ios-bulb:before, +.ion-ios-bus:before, +.ion-ios-business:before, +.ion-ios-cafe:before, +.ion-ios-calculator:before, +.ion-ios-calendar:before, +.ion-ios-call:before, +.ion-ios-camera:before, +.ion-ios-car:before, +.ion-ios-card:before, +.ion-ios-cart:before, +.ion-ios-cash:before, +.ion-ios-cellular:before, +.ion-ios-chatboxes:before, +.ion-ios-chatbubbles:before, +.ion-ios-checkbox:before, +.ion-ios-checkbox-outline:before, +.ion-ios-checkmark:before, +.ion-ios-checkmark-circle:before, +.ion-ios-checkmark-circle-outline:before, +.ion-ios-clipboard:before, +.ion-ios-clock:before, +.ion-ios-close:before, +.ion-ios-close-circle:before, +.ion-ios-close-circle-outline:before, +.ion-ios-cloud:before, +.ion-ios-cloud-circle:before, +.ion-ios-cloud-done:before, +.ion-ios-cloud-download:before, +.ion-ios-cloud-outline:before, +.ion-ios-cloud-upload:before, +.ion-ios-cloudy:before, +.ion-ios-cloudy-night:before, +.ion-ios-code:before, +.ion-ios-code-download:before, +.ion-ios-code-working:before, +.ion-ios-cog:before, +.ion-ios-color-fill:before, +.ion-ios-color-filter:before, +.ion-ios-color-palette:before, +.ion-ios-color-wand:before, +.ion-ios-compass:before, +.ion-ios-construct:before, +.ion-ios-contact:before, +.ion-ios-contacts:before, +.ion-ios-contract:before, +.ion-ios-contrast:before, +.ion-ios-copy:before, +.ion-ios-create:before, +.ion-ios-crop:before, +.ion-ios-cube:before, +.ion-ios-cut:before, +.ion-ios-desktop:before, +.ion-ios-disc:before, +.ion-ios-document:before, +.ion-ios-done-all:before, +.ion-ios-download:before, +.ion-ios-easel:before, +.ion-ios-egg:before, +.ion-ios-exit:before, +.ion-ios-expand:before, +.ion-ios-eye:before, +.ion-ios-eye-off:before, +.ion-ios-fastforward:before, +.ion-ios-female:before, +.ion-ios-filing:before, +.ion-ios-film:before, +.ion-ios-finger-print:before, +.ion-ios-fitness:before, +.ion-ios-flag:before, +.ion-ios-flame:before, +.ion-ios-flash:before, +.ion-ios-flash-off:before, +.ion-ios-flashlight:before, +.ion-ios-flask:before, +.ion-ios-flower:before, +.ion-ios-folder:before, +.ion-ios-folder-open:before, +.ion-ios-football:before, +.ion-ios-funnel:before, +.ion-ios-gift:before, +.ion-ios-git-branch:before, +.ion-ios-git-commit:before, +.ion-ios-git-compare:before, +.ion-ios-git-merge:before, +.ion-ios-git-network:before, +.ion-ios-git-pull-request:before, +.ion-ios-glasses:before, +.ion-ios-globe:before, +.ion-ios-grid:before, +.ion-ios-hammer:before, +.ion-ios-hand:before, +.ion-ios-happy:before, +.ion-ios-headset:before, +.ion-ios-heart:before, +.ion-ios-heart-dislike:before, +.ion-ios-heart-empty:before, +.ion-ios-heart-half:before, +.ion-ios-help:before, +.ion-ios-help-buoy:before, +.ion-ios-help-circle:before, +.ion-ios-help-circle-outline:before, +.ion-ios-home:before, +.ion-ios-hourglass:before, +.ion-ios-ice-cream:before, +.ion-ios-image:before, +.ion-ios-images:before, +.ion-ios-infinite:before, +.ion-ios-information:before, +.ion-ios-information-circle:before, +.ion-ios-information-circle-outline:before, +.ion-ios-jet:before, +.ion-ios-journal:before, +.ion-ios-key:before, +.ion-ios-keypad:before, +.ion-ios-laptop:before, +.ion-ios-leaf:before, +.ion-ios-link:before, +.ion-ios-list:before, +.ion-ios-list-box:before, +.ion-ios-locate:before, +.ion-ios-lock:before, +.ion-ios-log-in:before, +.ion-ios-log-out:before, +.ion-ios-magnet:before, +.ion-ios-mail:before, +.ion-ios-mail-open:before, +.ion-ios-mail-unread:before, +.ion-ios-male:before, +.ion-ios-man:before, +.ion-ios-map:before, +.ion-ios-medal:before, +.ion-ios-medical:before, +.ion-ios-medkit:before, +.ion-ios-megaphone:before, +.ion-ios-menu:before, +.ion-ios-mic:before, +.ion-ios-mic-off:before, +.ion-ios-microphone:before, +.ion-ios-moon:before, +.ion-ios-more:before, +.ion-ios-move:before, +.ion-ios-musical-note:before, +.ion-ios-musical-notes:before, +.ion-ios-navigate:before, +.ion-ios-notifications:before, +.ion-ios-notifications-off:before, +.ion-ios-notifications-outline:before, +.ion-ios-nuclear:before, +.ion-ios-nutrition:before, +.ion-ios-open:before, +.ion-ios-options:before, +.ion-ios-outlet:before, +.ion-ios-paper:before, +.ion-ios-paper-plane:before, +.ion-ios-partly-sunny:before, +.ion-ios-pause:before, +.ion-ios-paw:before, +.ion-ios-people:before, +.ion-ios-person:before, +.ion-ios-person-add:before, +.ion-ios-phone-landscape:before, +.ion-ios-phone-portrait:before, +.ion-ios-photos:before, +.ion-ios-pie:before, +.ion-ios-pin:before, +.ion-ios-pint:before, +.ion-ios-pizza:before, +.ion-ios-planet:before, +.ion-ios-play:before, +.ion-ios-play-circle:before, +.ion-ios-podium:before, +.ion-ios-power:before, +.ion-ios-pricetag:before, +.ion-ios-pricetags:before, +.ion-ios-print:before, +.ion-ios-pulse:before, +.ion-ios-qr-scanner:before, +.ion-ios-quote:before, +.ion-ios-radio:before, +.ion-ios-radio-button-off:before, +.ion-ios-radio-button-on:before, +.ion-ios-rainy:before, +.ion-ios-recording:before, +.ion-ios-redo:before, +.ion-ios-refresh:before, +.ion-ios-refresh-circle:before, +.ion-ios-remove:before, +.ion-ios-remove-circle:before, +.ion-ios-remove-circle-outline:before, +.ion-ios-reorder:before, +.ion-ios-repeat:before, +.ion-ios-resize:before, +.ion-ios-restaurant:before, +.ion-ios-return-left:before, +.ion-ios-return-right:before, +.ion-ios-reverse-camera:before, +.ion-ios-rewind:before, +.ion-ios-ribbon:before, +.ion-ios-rocket:before, +.ion-ios-rose:before, +.ion-ios-sad:before, +.ion-ios-save:before, +.ion-ios-school:before, +.ion-ios-search:before, +.ion-ios-send:before, +.ion-ios-settings:before, +.ion-ios-share:before, +.ion-ios-share-alt:before, +.ion-ios-shirt:before, +.ion-ios-shuffle:before, +.ion-ios-skip-backward:before, +.ion-ios-skip-forward:before, +.ion-ios-snow:before, +.ion-ios-speedometer:before, +.ion-ios-square:before, +.ion-ios-square-outline:before, +.ion-ios-star:before, +.ion-ios-star-half:before, +.ion-ios-star-outline:before, +.ion-ios-stats:before, +.ion-ios-stopwatch:before, +.ion-ios-subway:before, +.ion-ios-sunny:before, +.ion-ios-swap:before, +.ion-ios-switch:before, +.ion-ios-sync:before, +.ion-ios-tablet-landscape:before, +.ion-ios-tablet-portrait:before, +.ion-ios-tennisball:before, +.ion-ios-text:before, +.ion-ios-thermometer:before, +.ion-ios-thumbs-down:before, +.ion-ios-thumbs-up:before, +.ion-ios-thunderstorm:before, +.ion-ios-time:before, +.ion-ios-timer:before, +.ion-ios-today:before, +.ion-ios-train:before, +.ion-ios-transgender:before, +.ion-ios-trash:before, +.ion-ios-trending-down:before, +.ion-ios-trending-up:before, +.ion-ios-trophy:before, +.ion-ios-tv:before, +.ion-ios-umbrella:before, +.ion-ios-undo:before, +.ion-ios-unlock:before, +.ion-ios-videocam:before, +.ion-ios-volume-high:before, +.ion-ios-volume-low:before, +.ion-ios-volume-mute:before, +.ion-ios-volume-off:before, +.ion-ios-walk:before, +.ion-ios-wallet:before, +.ion-ios-warning:before, +.ion-ios-watch:before, +.ion-ios-water:before, +.ion-ios-wifi:before, +.ion-ios-wine:before, +.ion-ios-woman:before, +.ion-logo-android:before, +.ion-logo-angular:before, +.ion-logo-apple:before, +.ion-logo-bitbucket:before, +.ion-logo-bitcoin:before, +.ion-logo-buffer:before, +.ion-logo-chrome:before, +.ion-logo-closed-captioning:before, +.ion-logo-codepen:before, +.ion-logo-css3:before, +.ion-logo-designernews:before, +.ion-logo-dribbble:before, +.ion-logo-dropbox:before, +.ion-logo-euro:before, +.ion-logo-facebook:before, +.ion-logo-flickr:before, +.ion-logo-foursquare:before, +.ion-logo-freebsd-devil:before, +.ion-logo-game-controller-a:before, +.ion-logo-game-controller-b:before, +.ion-logo-github:before, +.ion-logo-google:before, +.ion-logo-googleplus:before, +.ion-logo-hackernews:before, +.ion-logo-html5:before, +.ion-logo-instagram:before, +.ion-logo-ionic:before, +.ion-logo-ionitron:before, +.ion-logo-javascript:before, +.ion-logo-linkedin:before, +.ion-logo-markdown:before, +.ion-logo-model-s:before, +.ion-logo-no-smoking:before, +.ion-logo-nodejs:before, +.ion-logo-npm:before, +.ion-logo-octocat:before, +.ion-logo-pinterest:before, +.ion-logo-playstation:before, +.ion-logo-polymer:before, +.ion-logo-python:before, +.ion-logo-reddit:before, +.ion-logo-rss:before, +.ion-logo-sass:before, +.ion-logo-skype:before, +.ion-logo-slack:before, +.ion-logo-snapchat:before, +.ion-logo-steam:before, +.ion-logo-tumblr:before, +.ion-logo-tux:before, +.ion-logo-twitch:before, +.ion-logo-twitter:before, +.ion-logo-usd:before, +.ion-logo-vimeo:before, +.ion-logo-vk:before, +.ion-logo-whatsapp:before, +.ion-logo-windows:before, +.ion-logo-wordpress:before, +.ion-logo-xbox:before, +.ion-logo-xing:before, +.ion-logo-yahoo:before, +.ion-logo-yen:before, +.ion-logo-youtube:before, +.ion-md-add:before, +.ion-md-add-circle:before, +.ion-md-add-circle-outline:before, +.ion-md-airplane:before, +.ion-md-alarm:before, +.ion-md-albums:before, +.ion-md-alert:before, +.ion-md-american-football:before, +.ion-md-analytics:before, +.ion-md-aperture:before, +.ion-md-apps:before, +.ion-md-appstore:before, +.ion-md-archive:before, +.ion-md-arrow-back:before, +.ion-md-arrow-down:before, +.ion-md-arrow-dropdown:before, +.ion-md-arrow-dropdown-circle:before, +.ion-md-arrow-dropleft:before, +.ion-md-arrow-dropleft-circle:before, +.ion-md-arrow-dropright:before, +.ion-md-arrow-dropright-circle:before, +.ion-md-arrow-dropup:before, +.ion-md-arrow-dropup-circle:before, +.ion-md-arrow-forward:before, +.ion-md-arrow-round-back:before, +.ion-md-arrow-round-down:before, +.ion-md-arrow-round-forward:before, +.ion-md-arrow-round-up:before, +.ion-md-arrow-up:before, +.ion-md-at:before, +.ion-md-attach:before, +.ion-md-backspace:before, +.ion-md-barcode:before, +.ion-md-baseball:before, +.ion-md-basket:before, +.ion-md-basketball:before, +.ion-md-battery-charging:before, +.ion-md-battery-dead:before, +.ion-md-battery-full:before, +.ion-md-beaker:before, +.ion-md-bed:before, +.ion-md-beer:before, +.ion-md-bicycle:before, +.ion-md-bluetooth:before, +.ion-md-boat:before, +.ion-md-body:before, +.ion-md-bonfire:before, +.ion-md-book:before, +.ion-md-bookmark:before, +.ion-md-bookmarks:before, +.ion-md-bowtie:before, +.ion-md-briefcase:before, +.ion-md-browsers:before, +.ion-md-brush:before, +.ion-md-bug:before, +.ion-md-build:before, +.ion-md-bulb:before, +.ion-md-bus:before, +.ion-md-business:before, +.ion-md-cafe:before, +.ion-md-calculator:before, +.ion-md-calendar:before, +.ion-md-call:before, +.ion-md-camera:before, +.ion-md-car:before, +.ion-md-card:before, +.ion-md-cart:before, +.ion-md-cash:before, +.ion-md-cellular:before, +.ion-md-chatboxes:before, +.ion-md-chatbubbles:before, +.ion-md-checkbox:before, +.ion-md-checkbox-outline:before, +.ion-md-checkmark:before, +.ion-md-checkmark-circle:before, +.ion-md-checkmark-circle-outline:before, +.ion-md-clipboard:before, +.ion-md-clock:before, +.ion-md-close:before, +.ion-md-close-circle:before, +.ion-md-close-circle-outline:before, +.ion-md-cloud:before, +.ion-md-cloud-circle:before, +.ion-md-cloud-done:before, +.ion-md-cloud-download:before, +.ion-md-cloud-outline:before, +.ion-md-cloud-upload:before, +.ion-md-cloudy:before, +.ion-md-cloudy-night:before, +.ion-md-code:before, +.ion-md-code-download:before, +.ion-md-code-working:before, +.ion-md-cog:before, +.ion-md-color-fill:before, +.ion-md-color-filter:before, +.ion-md-color-palette:before, +.ion-md-color-wand:before, +.ion-md-compass:before, +.ion-md-construct:before, +.ion-md-contact:before, +.ion-md-contacts:before, +.ion-md-contract:before, +.ion-md-contrast:before, +.ion-md-copy:before, +.ion-md-create:before, +.ion-md-crop:before, +.ion-md-cube:before, +.ion-md-cut:before, +.ion-md-desktop:before, +.ion-md-disc:before, +.ion-md-document:before, +.ion-md-done-all:before, +.ion-md-download:before, +.ion-md-easel:before, +.ion-md-egg:before, +.ion-md-exit:before, +.ion-md-expand:before, +.ion-md-eye:before, +.ion-md-eye-off:before, +.ion-md-fastforward:before, +.ion-md-female:before, +.ion-md-filing:before, +.ion-md-film:before, +.ion-md-finger-print:before, +.ion-md-fitness:before, +.ion-md-flag:before, +.ion-md-flame:before, +.ion-md-flash:before, +.ion-md-flash-off:before, +.ion-md-flashlight:before, +.ion-md-flask:before, +.ion-md-flower:before, +.ion-md-folder:before, +.ion-md-folder-open:before, +.ion-md-football:before, +.ion-md-funnel:before, +.ion-md-gift:before, +.ion-md-git-branch:before, +.ion-md-git-commit:before, +.ion-md-git-compare:before, +.ion-md-git-merge:before, +.ion-md-git-network:before, +.ion-md-git-pull-request:before, +.ion-md-glasses:before, +.ion-md-globe:before, +.ion-md-grid:before, +.ion-md-hammer:before, +.ion-md-hand:before, +.ion-md-happy:before, +.ion-md-headset:before, +.ion-md-heart:before, +.ion-md-heart-dislike:before, +.ion-md-heart-empty:before, +.ion-md-heart-half:before, +.ion-md-help:before, +.ion-md-help-buoy:before, +.ion-md-help-circle:before, +.ion-md-help-circle-outline:before, +.ion-md-home:before, +.ion-md-hourglass:before, +.ion-md-ice-cream:before, +.ion-md-image:before, +.ion-md-images:before, +.ion-md-infinite:before, +.ion-md-information:before, +.ion-md-information-circle:before, +.ion-md-information-circle-outline:before, +.ion-md-jet:before, +.ion-md-journal:before, +.ion-md-key:before, +.ion-md-keypad:before, +.ion-md-laptop:before, +.ion-md-leaf:before, +.ion-md-link:before, +.ion-md-list:before, +.ion-md-list-box:before, +.ion-md-locate:before, +.ion-md-lock:before, +.ion-md-log-in:before, +.ion-md-log-out:before, +.ion-md-magnet:before, +.ion-md-mail:before, +.ion-md-mail-open:before, +.ion-md-mail-unread:before, +.ion-md-male:before, +.ion-md-man:before, +.ion-md-map:before, +.ion-md-medal:before, +.ion-md-medical:before, +.ion-md-medkit:before, +.ion-md-megaphone:before, +.ion-md-menu:before, +.ion-md-mic:before, +.ion-md-mic-off:before, +.ion-md-microphone:before, +.ion-md-moon:before, +.ion-md-more:before, +.ion-md-move:before, +.ion-md-musical-note:before, +.ion-md-musical-notes:before, +.ion-md-navigate:before, +.ion-md-notifications:before, +.ion-md-notifications-off:before, +.ion-md-notifications-outline:before, +.ion-md-nuclear:before, +.ion-md-nutrition:before, +.ion-md-open:before, +.ion-md-options:before, +.ion-md-outlet:before, +.ion-md-paper:before, +.ion-md-paper-plane:before, +.ion-md-partly-sunny:before, +.ion-md-pause:before, +.ion-md-paw:before, +.ion-md-people:before, +.ion-md-person:before, +.ion-md-person-add:before, +.ion-md-phone-landscape:before, +.ion-md-phone-portrait:before, +.ion-md-photos:before, +.ion-md-pie:before, +.ion-md-pin:before, +.ion-md-pint:before, +.ion-md-pizza:before, +.ion-md-planet:before, +.ion-md-play:before, +.ion-md-play-circle:before, +.ion-md-podium:before, +.ion-md-power:before, +.ion-md-pricetag:before, +.ion-md-pricetags:before, +.ion-md-print:before, +.ion-md-pulse:before, +.ion-md-qr-scanner:before, +.ion-md-quote:before, +.ion-md-radio:before, +.ion-md-radio-button-off:before, +.ion-md-radio-button-on:before, +.ion-md-rainy:before, +.ion-md-recording:before, +.ion-md-redo:before, +.ion-md-refresh:before, +.ion-md-refresh-circle:before, +.ion-md-remove:before, +.ion-md-remove-circle:before, +.ion-md-remove-circle-outline:before, +.ion-md-reorder:before, +.ion-md-repeat:before, +.ion-md-resize:before, +.ion-md-restaurant:before, +.ion-md-return-left:before, +.ion-md-return-right:before, +.ion-md-reverse-camera:before, +.ion-md-rewind:before, +.ion-md-ribbon:before, +.ion-md-rocket:before, +.ion-md-rose:before, +.ion-md-sad:before, +.ion-md-save:before, +.ion-md-school:before, +.ion-md-search:before, +.ion-md-send:before, +.ion-md-settings:before, +.ion-md-share:before, +.ion-md-share-alt:before, +.ion-md-shirt:before, +.ion-md-shuffle:before, +.ion-md-skip-backward:before, +.ion-md-skip-forward:before, +.ion-md-snow:before, +.ion-md-speedometer:before, +.ion-md-square:before, +.ion-md-square-outline:before, +.ion-md-star:before, +.ion-md-star-half:before, +.ion-md-star-outline:before, +.ion-md-stats:before, +.ion-md-stopwatch:before, +.ion-md-subway:before, +.ion-md-sunny:before, +.ion-md-swap:before, +.ion-md-switch:before, +.ion-md-sync:before, +.ion-md-tablet-landscape:before, +.ion-md-tablet-portrait:before, +.ion-md-tennisball:before, +.ion-md-text:before, +.ion-md-thermometer:before, +.ion-md-thumbs-down:before, +.ion-md-thumbs-up:before, +.ion-md-thunderstorm:before, +.ion-md-time:before, +.ion-md-timer:before, +.ion-md-today:before, +.ion-md-train:before, +.ion-md-transgender:before, +.ion-md-trash:before, +.ion-md-trending-down:before, +.ion-md-trending-up:before, +.ion-md-trophy:before, +.ion-md-tv:before, +.ion-md-umbrella:before, +.ion-md-undo:before, +.ion-md-unlock:before, +.ion-md-videocam:before, +.ion-md-volume-high:before, +.ion-md-volume-low:before, +.ion-md-volume-mute:before, +.ion-md-volume-off:before, +.ion-md-walk:before, +.ion-md-wallet:before, +.ion-md-warning:before, +.ion-md-watch:before, +.ion-md-water:before, +.ion-md-wifi:before, +.ion-md-wine:before, +.ion-md-woman:before { + display: inline-block; + font-family: "Ionicons"; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + text-rendering: auto; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.ion-ios-add:before { + content: ""; +} + +.ion-ios-add-circle:before { + content: ""; +} + +.ion-ios-add-circle-outline:before { + content: ""; +} + +.ion-ios-airplane:before { + content: ""; +} + +.ion-ios-alarm:before { + content: ""; +} + +.ion-ios-albums:before { + content: ""; +} + +.ion-ios-alert:before { + content: ""; +} + +.ion-ios-american-football:before { + content: ""; +} + +.ion-ios-analytics:before { + content: ""; +} + +.ion-ios-aperture:before { + content: ""; +} + +.ion-ios-apps:before { + content: ""; +} + +.ion-ios-appstore:before { + content: ""; +} + +.ion-ios-archive:before { + content: ""; +} + +.ion-ios-arrow-back:before { + content: ""; +} + +.ion-ios-arrow-down:before { + content: ""; +} + +.ion-ios-arrow-dropdown:before { + content: ""; +} + +.ion-ios-arrow-dropdown-circle:before { + content: ""; +} + +.ion-ios-arrow-dropleft:before { + content: ""; +} + +.ion-ios-arrow-dropleft-circle:before { + content: ""; +} + +.ion-ios-arrow-dropright:before { + content: ""; +} + +.ion-ios-arrow-dropright-circle:before { + content: ""; +} + +.ion-ios-arrow-dropup:before { + content: ""; +} + +.ion-ios-arrow-dropup-circle:before { + content: ""; +} + +.ion-ios-arrow-forward:before { + content: ""; +} + +.ion-ios-arrow-round-back:before { + content: ""; +} + +.ion-ios-arrow-round-down:before { + content: ""; +} + +.ion-ios-arrow-round-forward:before { + content: ""; +} + +.ion-ios-arrow-round-up:before { + content: ""; +} + +.ion-ios-arrow-up:before { + content: ""; +} + +.ion-ios-at:before { + content: ""; +} + +.ion-ios-attach:before { + content: ""; +} + +.ion-ios-backspace:before { + content: ""; +} + +.ion-ios-barcode:before { + content: ""; +} + +.ion-ios-baseball:before { + content: ""; +} + +.ion-ios-basket:before { + content: ""; +} + +.ion-ios-basketball:before { + content: ""; +} + +.ion-ios-battery-charging:before { + content: ""; +} + +.ion-ios-battery-dead:before { + content: ""; +} + +.ion-ios-battery-full:before { + content: ""; +} + +.ion-ios-beaker:before { + content: ""; +} + +.ion-ios-bed:before { + content: ""; +} + +.ion-ios-beer:before { + content: ""; +} + +.ion-ios-bicycle:before { + content: ""; +} + +.ion-ios-bluetooth:before { + content: ""; +} + +.ion-ios-boat:before { + content: ""; +} + +.ion-ios-body:before { + content: ""; +} + +.ion-ios-bonfire:before { + content: ""; +} + +.ion-ios-book:before { + content: ""; +} + +.ion-ios-bookmark:before { + content: ""; +} + +.ion-ios-bookmarks:before { + content: ""; +} + +.ion-ios-bowtie:before { + content: ""; +} + +.ion-ios-briefcase:before { + content: ""; +} + +.ion-ios-browsers:before { + content: ""; +} + +.ion-ios-brush:before { + content: ""; +} + +.ion-ios-bug:before { + content: ""; +} + +.ion-ios-build:before { + content: ""; +} + +.ion-ios-bulb:before { + content: ""; +} + +.ion-ios-bus:before { + content: ""; +} + +.ion-ios-business:before { + content: ""; +} + +.ion-ios-cafe:before { + content: ""; +} + +.ion-ios-calculator:before { + content: ""; +} + +.ion-ios-calendar:before { + content: ""; +} + +.ion-ios-call:before { + content: ""; +} + +.ion-ios-camera:before { + content: ""; +} + +.ion-ios-car:before { + content: ""; +} + +.ion-ios-card:before { + content: ""; +} + +.ion-ios-cart:before { + content: ""; +} + +.ion-ios-cash:before { + content: ""; +} + +.ion-ios-cellular:before { + content: ""; +} + +.ion-ios-chatboxes:before { + content: ""; +} + +.ion-ios-chatbubbles:before { + content: ""; +} + +.ion-ios-checkbox:before { + content: ""; +} + +.ion-ios-checkbox-outline:before { + content: ""; +} + +.ion-ios-checkmark:before { + content: ""; +} + +.ion-ios-checkmark-circle:before { + content: ""; +} + +.ion-ios-checkmark-circle-outline:before { + content: ""; +} + +.ion-ios-clipboard:before { + content: ""; +} + +.ion-ios-clock:before { + content: ""; +} + +.ion-ios-close:before { + content: ""; +} + +.ion-ios-close-circle:before { + content: ""; +} + +.ion-ios-close-circle-outline:before { + content: ""; +} + +.ion-ios-cloud:before { + content: ""; +} + +.ion-ios-cloud-circle:before { + content: ""; +} + +.ion-ios-cloud-done:before { + content: ""; +} + +.ion-ios-cloud-download:before { + content: ""; +} + +.ion-ios-cloud-outline:before { + content: ""; +} + +.ion-ios-cloud-upload:before { + content: ""; +} + +.ion-ios-cloudy:before { + content: ""; +} + +.ion-ios-cloudy-night:before { + content: ""; +} + +.ion-ios-code:before { + content: ""; +} + +.ion-ios-code-download:before { + content: ""; +} + +.ion-ios-code-working:before { + content: ""; +} + +.ion-ios-cog:before { + content: ""; +} + +.ion-ios-color-fill:before { + content: ""; +} + +.ion-ios-color-filter:before { + content: ""; +} + +.ion-ios-color-palette:before { + content: ""; +} + +.ion-ios-color-wand:before { + content: ""; +} + +.ion-ios-compass:before { + content: ""; +} + +.ion-ios-construct:before { + content: ""; +} + +.ion-ios-contact:before { + content: ""; +} + +.ion-ios-contacts:before { + content: ""; +} + +.ion-ios-contract:before { + content: ""; +} + +.ion-ios-contrast:before { + content: ""; +} + +.ion-ios-copy:before { + content: ""; +} + +.ion-ios-create:before { + content: ""; +} + +.ion-ios-crop:before { + content: ""; +} + +.ion-ios-cube:before { + content: ""; +} + +.ion-ios-cut:before { + content: ""; +} + +.ion-ios-desktop:before { + content: ""; +} + +.ion-ios-disc:before { + content: ""; +} + +.ion-ios-document:before { + content: ""; +} + +.ion-ios-done-all:before { + content: ""; +} + +.ion-ios-download:before { + content: ""; +} + +.ion-ios-easel:before { + content: ""; +} + +.ion-ios-egg:before { + content: ""; +} + +.ion-ios-exit:before { + content: ""; +} + +.ion-ios-expand:before { + content: ""; +} + +.ion-ios-eye:before { + content: ""; +} + +.ion-ios-eye-off:before { + content: ""; +} + +.ion-ios-fastforward:before { + content: ""; +} + +.ion-ios-female:before { + content: ""; +} + +.ion-ios-filing:before { + content: ""; +} + +.ion-ios-film:before { + content: ""; +} + +.ion-ios-finger-print:before { + content: ""; +} + +.ion-ios-fitness:before { + content: ""; +} + +.ion-ios-flag:before { + content: ""; +} + +.ion-ios-flame:before { + content: ""; +} + +.ion-ios-flash:before { + content: ""; +} + +.ion-ios-flash-off:before { + content: ""; +} + +.ion-ios-flashlight:before { + content: ""; +} + +.ion-ios-flask:before { + content: ""; +} + +.ion-ios-flower:before { + content: ""; +} + +.ion-ios-folder:before { + content: ""; +} + +.ion-ios-folder-open:before { + content: ""; +} + +.ion-ios-football:before { + content: ""; +} + +.ion-ios-funnel:before { + content: ""; +} + +.ion-ios-gift:before { + content: ""; +} + +.ion-ios-git-branch:before { + content: ""; +} + +.ion-ios-git-commit:before { + content: ""; +} + +.ion-ios-git-compare:before { + content: ""; +} + +.ion-ios-git-merge:before { + content: ""; +} + +.ion-ios-git-network:before { + content: ""; +} + +.ion-ios-git-pull-request:before { + content: ""; +} + +.ion-ios-glasses:before { + content: ""; +} + +.ion-ios-globe:before { + content: ""; +} + +.ion-ios-grid:before { + content: ""; +} + +.ion-ios-hammer:before { + content: ""; +} + +.ion-ios-hand:before { + content: ""; +} + +.ion-ios-happy:before { + content: ""; +} + +.ion-ios-headset:before { + content: ""; +} + +.ion-ios-heart:before { + content: ""; +} + +.ion-ios-heart-dislike:before { + content: ""; +} + +.ion-ios-heart-empty:before { + content: ""; +} + +.ion-ios-heart-half:before { + content: ""; +} + +.ion-ios-help:before { + content: ""; +} + +.ion-ios-help-buoy:before { + content: ""; +} + +.ion-ios-help-circle:before { + content: ""; +} + +.ion-ios-help-circle-outline:before { + content: ""; +} + +.ion-ios-home:before { + content: ""; +} + +.ion-ios-hourglass:before { + content: ""; +} + +.ion-ios-ice-cream:before { + content: ""; +} + +.ion-ios-image:before { + content: ""; +} + +.ion-ios-images:before { + content: ""; +} + +.ion-ios-infinite:before { + content: ""; +} + +.ion-ios-information:before { + content: ""; +} + +.ion-ios-information-circle:before { + content: ""; +} + +.ion-ios-information-circle-outline:before { + content: ""; +} + +.ion-ios-jet:before { + content: ""; +} + +.ion-ios-journal:before { + content: ""; +} + +.ion-ios-key:before { + content: ""; +} + +.ion-ios-keypad:before { + content: ""; +} + +.ion-ios-laptop:before { + content: ""; +} + +.ion-ios-leaf:before { + content: ""; +} + +.ion-ios-link:before { + content: ""; +} + +.ion-ios-list:before { + content: ""; +} + +.ion-ios-list-box:before { + content: ""; +} + +.ion-ios-locate:before { + content: ""; +} + +.ion-ios-lock:before { + content: ""; +} + +.ion-ios-log-in:before { + content: ""; +} + +.ion-ios-log-out:before { + content: ""; +} + +.ion-ios-magnet:before { + content: ""; +} + +.ion-ios-mail:before { + content: ""; +} + +.ion-ios-mail-open:before { + content: ""; +} + +.ion-ios-mail-unread:before { + content: ""; +} + +.ion-ios-male:before { + content: ""; +} + +.ion-ios-man:before { + content: ""; +} + +.ion-ios-map:before { + content: ""; +} + +.ion-ios-medal:before { + content: ""; +} + +.ion-ios-medical:before { + content: ""; +} + +.ion-ios-medkit:before { + content: ""; +} + +.ion-ios-megaphone:before { + content: ""; +} + +.ion-ios-menu:before { + content: ""; +} + +.ion-ios-mic:before { + content: ""; +} + +.ion-ios-mic-off:before { + content: ""; +} + +.ion-ios-microphone:before { + content: ""; +} + +.ion-ios-moon:before { + content: ""; +} + +.ion-ios-more:before { + content: ""; +} + +.ion-ios-move:before { + content: ""; +} + +.ion-ios-musical-note:before { + content: ""; +} + +.ion-ios-musical-notes:before { + content: ""; +} + +.ion-ios-navigate:before { + content: ""; +} + +.ion-ios-notifications:before { + content: ""; +} + +.ion-ios-notifications-off:before { + content: ""; +} + +.ion-ios-notifications-outline:before { + content: ""; +} + +.ion-ios-nuclear:before { + content: ""; +} + +.ion-ios-nutrition:before { + content: ""; +} + +.ion-ios-open:before { + content: ""; +} + +.ion-ios-options:before { + content: ""; +} + +.ion-ios-outlet:before { + content: ""; +} + +.ion-ios-paper:before { + content: ""; +} + +.ion-ios-paper-plane:before { + content: ""; +} + +.ion-ios-partly-sunny:before { + content: ""; +} + +.ion-ios-pause:before { + content: ""; +} + +.ion-ios-paw:before { + content: ""; +} + +.ion-ios-people:before { + content: ""; +} + +.ion-ios-person:before { + content: ""; +} + +.ion-ios-person-add:before { + content: ""; +} + +.ion-ios-phone-landscape:before { + content: ""; +} + +.ion-ios-phone-portrait:before { + content: ""; +} + +.ion-ios-photos:before { + content: ""; +} + +.ion-ios-pie:before { + content: ""; +} + +.ion-ios-pin:before { + content: ""; +} + +.ion-ios-pint:before { + content: ""; +} + +.ion-ios-pizza:before { + content: ""; +} + +.ion-ios-planet:before { + content: ""; +} + +.ion-ios-play:before { + content: ""; +} + +.ion-ios-play-circle:before { + content: ""; +} + +.ion-ios-podium:before { + content: ""; +} + +.ion-ios-power:before { + content: ""; +} + +.ion-ios-pricetag:before { + content: ""; +} + +.ion-ios-pricetags:before { + content: ""; +} + +.ion-ios-print:before { + content: ""; +} + +.ion-ios-pulse:before { + content: ""; +} + +.ion-ios-qr-scanner:before { + content: ""; +} + +.ion-ios-quote:before { + content: ""; +} + +.ion-ios-radio:before { + content: ""; +} + +.ion-ios-radio-button-off:before { + content: ""; +} + +.ion-ios-radio-button-on:before { + content: ""; +} + +.ion-ios-rainy:before { + content: ""; +} + +.ion-ios-recording:before { + content: ""; +} + +.ion-ios-redo:before { + content: ""; +} + +.ion-ios-refresh:before { + content: ""; +} + +.ion-ios-refresh-circle:before { + content: ""; +} + +.ion-ios-remove:before { + content: ""; +} + +.ion-ios-remove-circle:before { + content: ""; +} + +.ion-ios-remove-circle-outline:before { + content: ""; +} + +.ion-ios-reorder:before { + content: ""; +} + +.ion-ios-repeat:before { + content: ""; +} + +.ion-ios-resize:before { + content: ""; +} + +.ion-ios-restaurant:before { + content: ""; +} + +.ion-ios-return-left:before { + content: ""; +} + +.ion-ios-return-right:before { + content: ""; +} + +.ion-ios-reverse-camera:before { + content: ""; +} + +.ion-ios-rewind:before { + content: ""; +} + +.ion-ios-ribbon:before { + content: ""; +} + +.ion-ios-rocket:before { + content: ""; +} + +.ion-ios-rose:before { + content: ""; +} + +.ion-ios-sad:before { + content: ""; +} + +.ion-ios-save:before { + content: ""; +} + +.ion-ios-school:before { + content: ""; +} + +.ion-ios-search:before { + content: ""; +} + +.ion-ios-send:before { + content: ""; +} + +.ion-ios-settings:before { + content: ""; +} + +.ion-ios-share:before { + content: ""; +} + +.ion-ios-share-alt:before { + content: ""; +} + +.ion-ios-shirt:before { + content: ""; +} + +.ion-ios-shuffle:before { + content: ""; +} + +.ion-ios-skip-backward:before { + content: ""; +} + +.ion-ios-skip-forward:before { + content: ""; +} + +.ion-ios-snow:before { + content: ""; +} + +.ion-ios-speedometer:before { + content: ""; +} + +.ion-ios-square:before { + content: ""; +} + +.ion-ios-square-outline:before { + content: ""; +} + +.ion-ios-star:before { + content: ""; +} + +.ion-ios-star-half:before { + content: ""; +} + +.ion-ios-star-outline:before { + content: ""; +} + +.ion-ios-stats:before { + content: ""; +} + +.ion-ios-stopwatch:before { + content: ""; +} + +.ion-ios-subway:before { + content: ""; +} + +.ion-ios-sunny:before { + content: ""; +} + +.ion-ios-swap:before { + content: ""; +} + +.ion-ios-switch:before { + content: ""; +} + +.ion-ios-sync:before { + content: ""; +} + +.ion-ios-tablet-landscape:before { + content: ""; +} + +.ion-ios-tablet-portrait:before { + content: ""; +} + +.ion-ios-tennisball:before { + content: ""; +} + +.ion-ios-text:before { + content: ""; +} + +.ion-ios-thermometer:before { + content: ""; +} + +.ion-ios-thumbs-down:before { + content: ""; +} + +.ion-ios-thumbs-up:before { + content: ""; +} + +.ion-ios-thunderstorm:before { + content: ""; +} + +.ion-ios-time:before { + content: ""; +} + +.ion-ios-timer:before { + content: ""; +} + +.ion-ios-today:before { + content: ""; +} + +.ion-ios-train:before { + content: ""; +} + +.ion-ios-transgender:before { + content: ""; +} + +.ion-ios-trash:before { + content: ""; +} + +.ion-ios-trending-down:before { + content: ""; +} + +.ion-ios-trending-up:before { + content: ""; +} + +.ion-ios-trophy:before { + content: ""; +} + +.ion-ios-tv:before { + content: ""; +} + +.ion-ios-umbrella:before { + content: ""; +} + +.ion-ios-undo:before { + content: ""; +} + +.ion-ios-unlock:before { + content: ""; +} + +.ion-ios-videocam:before { + content: ""; +} + +.ion-ios-volume-high:before { + content: ""; +} + +.ion-ios-volume-low:before { + content: ""; +} + +.ion-ios-volume-mute:before { + content: ""; +} + +.ion-ios-volume-off:before { + content: ""; +} + +.ion-ios-walk:before { + content: ""; +} + +.ion-ios-wallet:before { + content: ""; +} + +.ion-ios-warning:before { + content: ""; +} + +.ion-ios-watch:before { + content: ""; +} + +.ion-ios-water:before { + content: ""; +} + +.ion-ios-wifi:before { + content: ""; +} + +.ion-ios-wine:before { + content: ""; +} + +.ion-ios-woman:before { + content: ""; +} + +.ion-logo-android:before { + content: ""; +} + +.ion-logo-angular:before { + content: ""; +} + +.ion-logo-apple:before { + content: ""; +} + +.ion-logo-bitbucket:before { + content: ""; +} + +.ion-logo-bitcoin:before { + content: ""; +} + +.ion-logo-buffer:before { + content: ""; +} + +.ion-logo-chrome:before { + content: ""; +} + +.ion-logo-closed-captioning:before { + content: ""; +} + +.ion-logo-codepen:before { + content: ""; +} + +.ion-logo-css3:before { + content: ""; +} + +.ion-logo-designernews:before { + content: ""; +} + +.ion-logo-dribbble:before { + content: ""; +} + +.ion-logo-dropbox:before { + content: ""; +} + +.ion-logo-euro:before { + content: ""; +} + +.ion-logo-facebook:before { + content: ""; +} + +.ion-logo-flickr:before { + content: ""; +} + +.ion-logo-foursquare:before { + content: ""; +} + +.ion-logo-freebsd-devil:before { + content: ""; +} + +.ion-logo-game-controller-a:before { + content: ""; +} + +.ion-logo-game-controller-b:before { + content: ""; +} + +.ion-logo-github:before { + content: ""; +} + +.ion-logo-google:before { + content: ""; +} + +.ion-logo-googleplus:before { + content: ""; +} + +.ion-logo-hackernews:before { + content: ""; +} + +.ion-logo-html5:before { + content: ""; +} + +.ion-logo-instagram:before { + content: ""; +} + +.ion-logo-ionic:before { + content: ""; +} + +.ion-logo-ionitron:before { + content: ""; +} + +.ion-logo-javascript:before { + content: ""; +} + +.ion-logo-linkedin:before { + content: ""; +} + +.ion-logo-markdown:before { + content: ""; +} + +.ion-logo-model-s:before { + content: ""; +} + +.ion-logo-no-smoking:before { + content: ""; +} + +.ion-logo-nodejs:before { + content: ""; +} + +.ion-logo-npm:before { + content: ""; +} + +.ion-logo-octocat:before { + content: ""; +} + +.ion-logo-pinterest:before { + content: ""; +} + +.ion-logo-playstation:before { + content: ""; +} + +.ion-logo-polymer:before { + content: ""; +} + +.ion-logo-python:before { + content: ""; +} + +.ion-logo-reddit:before { + content: ""; +} + +.ion-logo-rss:before { + content: ""; +} + +.ion-logo-sass:before { + content: ""; +} + +.ion-logo-skype:before { + content: ""; +} + +.ion-logo-slack:before { + content: ""; +} + +.ion-logo-snapchat:before { + content: ""; +} + +.ion-logo-steam:before { + content: ""; +} + +.ion-logo-tumblr:before { + content: ""; +} + +.ion-logo-tux:before { + content: ""; +} + +.ion-logo-twitch:before { + content: ""; +} + +.ion-logo-twitter:before { + content: ""; +} + +.ion-logo-usd:before { + content: ""; +} + +.ion-logo-vimeo:before { + content: ""; +} + +.ion-logo-vk:before { + content: ""; +} + +.ion-logo-whatsapp:before { + content: ""; +} + +.ion-logo-windows:before { + content: ""; +} + +.ion-logo-wordpress:before { + content: ""; +} + +.ion-logo-xbox:before { + content: ""; +} + +.ion-logo-xing:before { + content: ""; +} + +.ion-logo-yahoo:before { + content: ""; +} + +.ion-logo-yen:before { + content: ""; +} + +.ion-logo-youtube:before { + content: ""; +} + +.ion-md-add:before { + content: ""; +} + +.ion-md-add-circle:before { + content: ""; +} + +.ion-md-add-circle-outline:before { + content: ""; +} + +.ion-md-airplane:before { + content: ""; +} + +.ion-md-alarm:before { + content: ""; +} + +.ion-md-albums:before { + content: ""; +} + +.ion-md-alert:before { + content: ""; +} + +.ion-md-american-football:before { + content: ""; +} + +.ion-md-analytics:before { + content: ""; +} + +.ion-md-aperture:before { + content: ""; +} + +.ion-md-apps:before { + content: ""; +} + +.ion-md-appstore:before { + content: ""; +} + +.ion-md-archive:before { + content: ""; +} + +.ion-md-arrow-back:before { + content: ""; +} + +.ion-md-arrow-down:before { + content: ""; +} + +.ion-md-arrow-dropdown:before { + content: ""; +} + +.ion-md-arrow-dropdown-circle:before { + content: ""; +} + +.ion-md-arrow-dropleft:before { + content: ""; +} + +.ion-md-arrow-dropleft-circle:before { + content: ""; +} + +.ion-md-arrow-dropright:before { + content: ""; +} + +.ion-md-arrow-dropright-circle:before { + content: ""; +} + +.ion-md-arrow-dropup:before { + content: ""; +} + +.ion-md-arrow-dropup-circle:before { + content: ""; +} + +.ion-md-arrow-forward:before { + content: ""; +} + +.ion-md-arrow-round-back:before { + content: ""; +} + +.ion-md-arrow-round-down:before { + content: ""; +} + +.ion-md-arrow-round-forward:before { + content: ""; +} + +.ion-md-arrow-round-up:before { + content: ""; +} + +.ion-md-arrow-up:before { + content: ""; +} + +.ion-md-at:before { + content: ""; +} + +.ion-md-attach:before { + content: ""; +} + +.ion-md-backspace:before { + content: ""; +} + +.ion-md-barcode:before { + content: ""; +} + +.ion-md-baseball:before { + content: ""; +} + +.ion-md-basket:before { + content: ""; +} + +.ion-md-basketball:before { + content: ""; +} + +.ion-md-battery-charging:before { + content: ""; +} + +.ion-md-battery-dead:before { + content: ""; +} + +.ion-md-battery-full:before { + content: ""; +} + +.ion-md-beaker:before { + content: ""; +} + +.ion-md-bed:before { + content: ""; +} + +.ion-md-beer:before { + content: ""; +} + +.ion-md-bicycle:before { + content: ""; +} + +.ion-md-bluetooth:before { + content: ""; +} + +.ion-md-boat:before { + content: ""; +} + +.ion-md-body:before { + content: ""; +} + +.ion-md-bonfire:before { + content: ""; +} + +.ion-md-book:before { + content: ""; +} + +.ion-md-bookmark:before { + content: ""; +} + +.ion-md-bookmarks:before { + content: ""; +} + +.ion-md-bowtie:before { + content: ""; +} + +.ion-md-briefcase:before { + content: ""; +} + +.ion-md-browsers:before { + content: ""; +} + +.ion-md-brush:before { + content: ""; +} + +.ion-md-bug:before { + content: ""; +} + +.ion-md-build:before { + content: ""; +} + +.ion-md-bulb:before { + content: ""; +} + +.ion-md-bus:before { + content: ""; +} + +.ion-md-business:before { + content: ""; +} + +.ion-md-cafe:before { + content: ""; +} + +.ion-md-calculator:before { + content: ""; +} + +.ion-md-calendar:before { + content: ""; +} + +.ion-md-call:before { + content: ""; +} + +.ion-md-camera:before { + content: ""; +} + +.ion-md-car:before { + content: ""; +} + +.ion-md-card:before { + content: ""; +} + +.ion-md-cart:before { + content: ""; +} + +.ion-md-cash:before { + content: ""; +} + +.ion-md-cellular:before { + content: ""; +} + +.ion-md-chatboxes:before { + content: ""; +} + +.ion-md-chatbubbles:before { + content: ""; +} + +.ion-md-checkbox:before { + content: ""; +} + +.ion-md-checkbox-outline:before { + content: ""; +} + +.ion-md-checkmark:before { + content: ""; +} + +.ion-md-checkmark-circle:before { + content: ""; +} + +.ion-md-checkmark-circle-outline:before { + content: ""; +} + +.ion-md-clipboard:before { + content: ""; +} + +.ion-md-clock:before { + content: ""; +} + +.ion-md-close:before { + content: ""; +} + +.ion-md-close-circle:before { + content: ""; +} + +.ion-md-close-circle-outline:before { + content: ""; +} + +.ion-md-cloud:before { + content: ""; +} + +.ion-md-cloud-circle:before { + content: ""; +} + +.ion-md-cloud-done:before { + content: ""; +} + +.ion-md-cloud-download:before { + content: ""; +} + +.ion-md-cloud-outline:before { + content: ""; +} + +.ion-md-cloud-upload:before { + content: ""; +} + +.ion-md-cloudy:before { + content: ""; +} + +.ion-md-cloudy-night:before { + content: ""; +} + +.ion-md-code:before { + content: ""; +} + +.ion-md-code-download:before { + content: ""; +} + +.ion-md-code-working:before { + content: ""; +} + +.ion-md-cog:before { + content: ""; +} + +.ion-md-color-fill:before { + content: ""; +} + +.ion-md-color-filter:before { + content: ""; +} + +.ion-md-color-palette:before { + content: ""; +} + +.ion-md-color-wand:before { + content: ""; +} + +.ion-md-compass:before { + content: ""; +} + +.ion-md-construct:before { + content: ""; +} + +.ion-md-contact:before { + content: ""; +} + +.ion-md-contacts:before { + content: ""; +} + +.ion-md-contract:before { + content: ""; +} + +.ion-md-contrast:before { + content: ""; +} + +.ion-md-copy:before { + content: ""; +} + +.ion-md-create:before { + content: ""; +} + +.ion-md-crop:before { + content: ""; +} + +.ion-md-cube:before { + content: ""; +} + +.ion-md-cut:before { + content: ""; +} + +.ion-md-desktop:before { + content: ""; +} + +.ion-md-disc:before { + content: ""; +} + +.ion-md-document:before { + content: ""; +} + +.ion-md-done-all:before { + content: ""; +} + +.ion-md-download:before { + content: ""; +} + +.ion-md-easel:before { + content: ""; +} + +.ion-md-egg:before { + content: ""; +} + +.ion-md-exit:before { + content: ""; +} + +.ion-md-expand:before { + content: ""; +} + +.ion-md-eye:before { + content: ""; +} + +.ion-md-eye-off:before { + content: ""; +} + +.ion-md-fastforward:before { + content: ""; +} + +.ion-md-female:before { + content: ""; +} + +.ion-md-filing:before { + content: ""; +} + +.ion-md-film:before { + content: ""; +} + +.ion-md-finger-print:before { + content: ""; +} + +.ion-md-fitness:before { + content: ""; +} + +.ion-md-flag:before { + content: ""; +} + +.ion-md-flame:before { + content: ""; +} + +.ion-md-flash:before { + content: ""; +} + +.ion-md-flash-off:before { + content: ""; +} + +.ion-md-flashlight:before { + content: ""; +} + +.ion-md-flask:before { + content: ""; +} + +.ion-md-flower:before { + content: ""; +} + +.ion-md-folder:before { + content: ""; +} + +.ion-md-folder-open:before { + content: ""; +} + +.ion-md-football:before { + content: ""; +} + +.ion-md-funnel:before { + content: ""; +} + +.ion-md-gift:before { + content: ""; +} + +.ion-md-git-branch:before { + content: ""; +} + +.ion-md-git-commit:before { + content: ""; +} + +.ion-md-git-compare:before { + content: ""; +} + +.ion-md-git-merge:before { + content: ""; +} + +.ion-md-git-network:before { + content: ""; +} + +.ion-md-git-pull-request:before { + content: ""; +} + +.ion-md-glasses:before { + content: ""; +} + +.ion-md-globe:before { + content: ""; +} + +.ion-md-grid:before { + content: ""; +} + +.ion-md-hammer:before { + content: ""; +} + +.ion-md-hand:before { + content: ""; +} + +.ion-md-happy:before { + content: ""; +} + +.ion-md-headset:before { + content: ""; +} + +.ion-md-heart:before { + content: ""; +} + +.ion-md-heart-dislike:before { + content: ""; +} + +.ion-md-heart-empty:before { + content: ""; +} + +.ion-md-heart-half:before { + content: ""; +} + +.ion-md-help:before { + content: ""; +} + +.ion-md-help-buoy:before { + content: ""; +} + +.ion-md-help-circle:before { + content: ""; +} + +.ion-md-help-circle-outline:before { + content: ""; +} + +.ion-md-home:before { + content: ""; +} + +.ion-md-hourglass:before { + content: ""; +} + +.ion-md-ice-cream:before { + content: ""; +} + +.ion-md-image:before { + content: ""; +} + +.ion-md-images:before { + content: ""; +} + +.ion-md-infinite:before { + content: ""; +} + +.ion-md-information:before { + content: ""; +} + +.ion-md-information-circle:before { + content: ""; +} + +.ion-md-information-circle-outline:before { + content: ""; +} + +.ion-md-jet:before { + content: ""; +} + +.ion-md-journal:before { + content: ""; +} + +.ion-md-key:before { + content: ""; +} + +.ion-md-keypad:before { + content: ""; +} + +.ion-md-laptop:before { + content: ""; +} + +.ion-md-leaf:before { + content: ""; +} + +.ion-md-link:before { + content: ""; +} + +.ion-md-list:before { + content: ""; +} + +.ion-md-list-box:before { + content: ""; +} + +.ion-md-locate:before { + content: ""; +} + +.ion-md-lock:before { + content: ""; +} + +.ion-md-log-in:before { + content: ""; +} + +.ion-md-log-out:before { + content: ""; +} + +.ion-md-magnet:before { + content: ""; +} + +.ion-md-mail:before { + content: ""; +} + +.ion-md-mail-open:before { + content: ""; +} + +.ion-md-mail-unread:before { + content: ""; +} + +.ion-md-male:before { + content: ""; +} + +.ion-md-man:before { + content: ""; +} + +.ion-md-map:before { + content: ""; +} + +.ion-md-medal:before { + content: ""; +} + +.ion-md-medical:before { + content: ""; +} + +.ion-md-medkit:before { + content: ""; +} + +.ion-md-megaphone:before { + content: ""; +} + +.ion-md-menu:before { + content: ""; +} + +.ion-md-mic:before { + content: ""; +} + +.ion-md-mic-off:before { + content: ""; +} + +.ion-md-microphone:before { + content: ""; +} + +.ion-md-moon:before { + content: ""; +} + +.ion-md-more:before { + content: ""; +} + +.ion-md-move:before { + content: ""; +} + +.ion-md-musical-note:before { + content: ""; +} + +.ion-md-musical-notes:before { + content: ""; +} + +.ion-md-navigate:before { + content: ""; +} + +.ion-md-notifications:before { + content: ""; +} + +.ion-md-notifications-off:before { + content: ""; +} + +.ion-md-notifications-outline:before { + content: ""; +} + +.ion-md-nuclear:before { + content: ""; +} + +.ion-md-nutrition:before { + content: ""; +} + +.ion-md-open:before { + content: ""; +} + +.ion-md-options:before { + content: ""; +} + +.ion-md-outlet:before { + content: ""; +} + +.ion-md-paper:before { + content: ""; +} + +.ion-md-paper-plane:before { + content: ""; +} + +.ion-md-partly-sunny:before { + content: ""; +} + +.ion-md-pause:before { + content: ""; +} + +.ion-md-paw:before { + content: ""; +} + +.ion-md-people:before { + content: ""; +} + +.ion-md-person:before { + content: ""; +} + +.ion-md-person-add:before { + content: ""; +} + +.ion-md-phone-landscape:before { + content: ""; +} + +.ion-md-phone-portrait:before { + content: ""; +} + +.ion-md-photos:before { + content: ""; +} + +.ion-md-pie:before { + content: ""; +} + +.ion-md-pin:before { + content: ""; +} + +.ion-md-pint:before { + content: ""; +} + +.ion-md-pizza:before { + content: ""; +} + +.ion-md-planet:before { + content: ""; +} + +.ion-md-play:before { + content: ""; +} + +.ion-md-play-circle:before { + content: ""; +} + +.ion-md-podium:before { + content: ""; +} + +.ion-md-power:before { + content: ""; +} + +.ion-md-pricetag:before { + content: ""; +} + +.ion-md-pricetags:before { + content: ""; +} + +.ion-md-print:before { + content: ""; +} + +.ion-md-pulse:before { + content: ""; +} + +.ion-md-qr-scanner:before { + content: ""; +} + +.ion-md-quote:before { + content: ""; +} + +.ion-md-radio:before { + content: ""; +} + +.ion-md-radio-button-off:before { + content: ""; +} + +.ion-md-radio-button-on:before { + content: ""; +} + +.ion-md-rainy:before { + content: ""; +} + +.ion-md-recording:before { + content: ""; +} + +.ion-md-redo:before { + content: ""; +} + +.ion-md-refresh:before { + content: ""; +} + +.ion-md-refresh-circle:before { + content: ""; +} + +.ion-md-remove:before { + content: ""; +} + +.ion-md-remove-circle:before { + content: ""; +} + +.ion-md-remove-circle-outline:before { + content: ""; +} + +.ion-md-reorder:before { + content: ""; +} + +.ion-md-repeat:before { + content: ""; +} + +.ion-md-resize:before { + content: ""; +} + +.ion-md-restaurant:before { + content: ""; +} + +.ion-md-return-left:before { + content: ""; +} + +.ion-md-return-right:before { + content: ""; +} + +.ion-md-reverse-camera:before { + content: ""; +} + +.ion-md-rewind:before { + content: ""; +} + +.ion-md-ribbon:before { + content: ""; +} + +.ion-md-rocket:before { + content: ""; +} + +.ion-md-rose:before { + content: ""; +} + +.ion-md-sad:before { + content: ""; +} + +.ion-md-save:before { + content: ""; +} + +.ion-md-school:before { + content: ""; +} + +.ion-md-search:before { + content: ""; +} + +.ion-md-send:before { + content: ""; +} + +.ion-md-settings:before { + content: ""; +} + +.ion-md-share:before { + content: ""; +} + +.ion-md-share-alt:before { + content: ""; +} + +.ion-md-shirt:before { + content: ""; +} + +.ion-md-shuffle:before { + content: ""; +} + +.ion-md-skip-backward:before { + content: ""; +} + +.ion-md-skip-forward:before { + content: ""; +} + +.ion-md-snow:before { + content: ""; +} + +.ion-md-speedometer:before { + content: ""; +} + +.ion-md-square:before { + content: ""; +} + +.ion-md-square-outline:before { + content: ""; +} + +.ion-md-star:before { + content: ""; +} + +.ion-md-star-half:before { + content: ""; +} + +.ion-md-star-outline:before { + content: ""; +} + +.ion-md-stats:before { + content: ""; +} + +.ion-md-stopwatch:before { + content: ""; +} + +.ion-md-subway:before { + content: ""; +} + +.ion-md-sunny:before { + content: ""; +} + +.ion-md-swap:before { + content: ""; +} + +.ion-md-switch:before { + content: ""; +} + +.ion-md-sync:before { + content: ""; +} + +.ion-md-tablet-landscape:before { + content: ""; +} + +.ion-md-tablet-portrait:before { + content: ""; +} + +.ion-md-tennisball:before { + content: ""; +} + +.ion-md-text:before { + content: ""; +} + +.ion-md-thermometer:before { + content: ""; +} + +.ion-md-thumbs-down:before { + content: ""; +} + +.ion-md-thumbs-up:before { + content: ""; +} + +.ion-md-thunderstorm:before { + content: ""; +} + +.ion-md-time:before { + content: ""; +} + +.ion-md-timer:before { + content: ""; +} + +.ion-md-today:before { + content: ""; +} + +.ion-md-train:before { + content: ""; +} + +.ion-md-transgender:before { + content: ""; +} + +.ion-md-trash:before { + content: ""; +} + +.ion-md-trending-down:before { + content: ""; +} + +.ion-md-trending-up:before { + content: ""; +} + +.ion-md-trophy:before { + content: ""; +} + +.ion-md-tv:before { + content: ""; +} + +.ion-md-umbrella:before { + content: ""; +} + +.ion-md-undo:before { + content: ""; +} + +.ion-md-unlock:before { + content: ""; +} + +.ion-md-videocam:before { + content: ""; +} + +.ion-md-volume-high:before { + content: ""; +} + +.ion-md-volume-low:before { + content: ""; +} + +.ion-md-volume-mute:before { + content: ""; +} + +.ion-md-volume-off:before { + content: ""; +} + +.ion-md-walk:before { + content: ""; +} + +.ion-md-wallet:before { + content: ""; +} + +.ion-md-warning:before { + content: ""; +} + +.ion-md-watch:before { + content: ""; +} + +.ion-md-water:before { + content: ""; +} + +.ion-md-wifi:before { + content: ""; +} + +.ion-md-wine:before { + content: ""; +} + +.ion-md-woman:before { + content: ""; +} +.toggle-checkbox { + position: absolute; + opacity: 0; + cursor: pointer; + height: 0; + width: 0; +} + +.toggle-slot { + position: relative; + height: 2em; + width: 3em; + border: none; + border-radius: 10em; + background-color: white; + transition: background-color 250ms; +} + +.toggle-checkbox:checked ~ .toggle-slot { + background-color: #374151; +} + +.toggle-button { + transform: translate(1.6em, 0.5em); + position: absolute; + height: 1em; + width: 1em; + border-radius: 50%; + background-color: #ffeccf; + transition: background-color 250ms, border-color 250ms, transform 500ms cubic-bezier(.26, 2, .46, .71); +} + +.toggle-checkbox:checked ~ .toggle-slot .toggle-button { + background-color: #485367; + transform: translate(0.5em, 0.5em); +} + +.sun-icon { + position: absolute; + height: 1em; + width: 1em; + color: #ffbb52; +} + +.sun-icon-wrapper { + position: absolute; + height: 1em; + width: 1em; + opacity: 1; + transform: translate(0.55em, 0.25em) rotate(15deg); + transform-origin: 50% 50%; + transition: opacity 150ms, transform 500ms cubic-bezier(.26, 2, .46, .71); +} + +.toggle-checkbox:checked ~ .toggle-slot .sun-icon-wrapper { + opacity: 0; + transform: translate(1.6em, 0.5em) rotate(0deg); +} + +.moon-icon { + position: absolute; + height: 1em; + width: 1em; + color: white; +} + +.moon-icon-wrapper { + position: absolute; + height: 1em; + width: 1em; + opacity: 0; + transform: translate(1.6em, .5em) rotate(0deg); + transform-origin: 50% 50%; + transition: opacity 150ms, transform 500ms cubic-bezier(.26, 2.5, .46, .71); +} + +.toggle-checkbox:checked ~ .toggle-slot .moon-icon-wrapper { + opacity: 1; + transform: translate(1.85em, 0.15em) rotate(-15deg); +} +.button, .input, .textarea, .select select, .file-cta, +.file-name, .pagination-previous, +.pagination-next, +.pagination-link, +.pagination-ellipsis { + -moz-appearance: none; + -webkit-appearance: none; + align-items: center; + border-radius: 4px; + display: inline-flex; + font-size: 1rem; + height: 2.5em; + justify-content: flex-start; + line-height: 1.5; + padding-bottom: calc(0.5em - 1px); + padding-left: calc(0.75em - 1px); + padding-right: calc(0.75em - 1px); + padding-top: calc(0.5em - 1px); + position: relative; + vertical-align: top; +} + +.button:focus, .input:focus, .textarea:focus, .select select:focus, .file-cta:focus, +.file-name:focus, .pagination-previous:focus, +.pagination-next:focus, +.pagination-link:focus, +.pagination-ellipsis:focus, .is-focused.button, .is-focused.input, .is-focused.textarea, .select select.is-focused, .is-focused.file-cta, +.is-focused.file-name, .is-focused.pagination-previous, +.is-focused.pagination-next, +.is-focused.pagination-link, +.is-focused.pagination-ellipsis, .button:active, .input:active, .textarea:active, .select select:active, .file-cta:active, +.file-name:active, .pagination-previous:active, +.pagination-next:active, +.pagination-link:active, +.pagination-ellipsis:active, .is-active.button, .is-active.input, .is-active.textarea, .select select.is-active, .is-active.file-cta, +.is-active.file-name, .is-active.pagination-previous, +.is-active.pagination-next, +.is-active.pagination-link, +.is-active.pagination-ellipsis { + outline: none; +} + +.button[disabled], .input[disabled], .textarea[disabled], .select select[disabled], .file-cta[disabled], +.file-name[disabled], .pagination-previous[disabled], +.pagination-next[disabled], +.pagination-link[disabled], +.pagination-ellipsis[disabled], +fieldset[disabled] .button, +fieldset[disabled] .input, +fieldset[disabled] .textarea, +fieldset[disabled] .select select, +.select fieldset[disabled] select, +fieldset[disabled] .file-cta, +fieldset[disabled] .file-name, +fieldset[disabled] .pagination-previous, +fieldset[disabled] .pagination-next, +fieldset[disabled] .pagination-link, +fieldset[disabled] .pagination-ellipsis { + cursor: not-allowed; +} + +.button, .file, .breadcrumb, .pagination-previous, +.pagination-next, +.pagination-link, +.pagination-ellipsis, .tabs, .is-unselectable { + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.select:not(.is-multiple):not(.is-loading)::after, .navbar-link:not(.is-arrowless)::after { + border: 3px solid transparent; + border-radius: 2px; + border-right: 0; + border-top: 0; + content: " "; + display: block; + height: 0.625em; + margin-top: -0.4375em; + pointer-events: none; + position: absolute; + top: 50%; + transform: rotate(-45deg); + transform-origin: center; + width: 0.625em; +} + +.box:not(:last-child), .content:not(:last-child), .notification:not(:last-child), .progress:not(:last-child), .table:not(:last-child), .table-container:not(:last-child), .title:not(:last-child), +.subtitle:not(:last-child), .breadcrumb:not(:last-child), .level:not(:last-child), .message:not(:last-child), .pagination:not(:last-child), .tabs:not(:last-child) { + margin-bottom: 1.5rem; +} + +.delete, .modal-close { + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + -moz-appearance: none; + -webkit-appearance: none; + background-color: rgba(10, 10, 10, 0.2); + border: none; + border-radius: 9999px; + cursor: pointer; + pointer-events: auto; + display: inline-block; + flex-grow: 0; + flex-shrink: 0; + font-size: 0; + height: 20px; + max-height: 20px; + max-width: 20px; + min-height: 20px; + min-width: 20px; + outline: none; + position: relative; + vertical-align: top; + width: 20px; +} + +.delete::before, .modal-close::before, .delete::after, .modal-close::after { + background-color: white; + content: ""; + display: block; + left: 50%; + position: absolute; + top: 50%; + transform: translateX(-50%) translateY(-50%) rotate(45deg); + transform-origin: center center; +} + +.delete::before, .modal-close::before { + height: 2px; + width: 50%; +} + +.delete::after, .modal-close::after { + height: 50%; + width: 2px; +} + +.delete:hover, .modal-close:hover, .delete:focus, .modal-close:focus { + background-color: rgba(10, 10, 10, 0.3); +} + +.delete:active, .modal-close:active { + background-color: rgba(10, 10, 10, 0.4); +} + +.is-small.delete, .is-small.modal-close { + height: 16px; + max-height: 16px; + max-width: 16px; + min-height: 16px; + min-width: 16px; + width: 16px; +} + +.is-medium.delete, .is-medium.modal-close { + height: 24px; + max-height: 24px; + max-width: 24px; + min-height: 24px; + min-width: 24px; + width: 24px; +} + +.button.is-loading::after, .loader, .select.is-loading::after, .control.is-loading::after { + -webkit-animation: spinAround 500ms infinite linear; + animation: spinAround 500ms infinite linear; + border: 2px solid #dbdbdb; + border-radius: 9999px; + border-right-color: transparent; + border-top-color: transparent; + content: ""; + display: block; + height: 1em; + position: relative; + width: 1em; +} + +@-webkit-keyframes spinAround { + from { + transform: rotate(0deg); + } + to { + transform: rotate(359deg); + } +} + +@keyframes spinAround { + from { + transform: rotate(0deg); + } + to { + transform: rotate(359deg); + } +} + +.button { + color: var(--text-color); + cursor: pointer; + justify-content: center; + padding-bottom: calc(0.5em - 1px); + padding-left: 1em; + padding-right: 1em; + padding-top: calc(0.5em - 1px); + text-align: center; + white-space: nowrap; +} + +.button strong { + color: inherit; +} + +.button .icon, .button .icon.is-small, .button .icon.is-medium, .button .icon.is-large { + height: 1.5em; + width: 1.5em; +} + +.button .icon:first-child:not(:last-child) { + margin-left: calc(-0.5em - 1px); + margin-right: 0.25em; +} + +.button .icon:last-child:not(:first-child) { + margin-left: 0.25em; + margin-right: calc(-0.5em - 1px); +} + +.button .icon:first-child:last-child { + margin-left: calc(-0.5em - 1px); + margin-right: calc(-0.5em - 1px); +} + +.button.is-text { + background-color: transparent; + border-color: transparent; + color: #4a4a4a; + text-decoration: underline; +} + +.button.is-text:hover, .button.is-text.is-hovered, .button.is-text:focus, .button.is-text.is-focused { + background-color: whitesmoke; + color: #363636; +} + +.button.is-text:active, .button.is-text.is-active { + background-color: #e8e8e8; + color: #363636; +} + +.button.is-text[disabled], +fieldset[disabled] .button.is-text { + background-color: transparent; + border-color: transparent; + box-shadow: none; +} + +.button.is-ghost { + background: none; + border-color: transparent; + color: #485fc7; + text-decoration: none; +} + +.button.is-ghost:hover, .button.is-ghost.is-hovered { + color: #485fc7; + text-decoration: underline; +} + +.button.is-white { + background-color: white; + border-color: transparent; + color: #0a0a0a; +} + +.button.is-white:hover, .button.is-white.is-hovered { + background-color: #f9f9f9; + border-color: transparent; + color: #0a0a0a; +} + +.button.is-white:focus, .button.is-white.is-focused { + border-color: transparent; + color: #0a0a0a; +} + +.button.is-white:focus:not(:active), .button.is-white.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); +} + +.button.is-white:active, .button.is-white.is-active { + background-color: #f2f2f2; + border-color: transparent; + color: #0a0a0a; +} + +.button.is-white[disabled], +fieldset[disabled] .button.is-white { + background-color: white; + border-color: transparent; + box-shadow: none; +} + +.button.is-white.is-inverted { + background-color: #0a0a0a; + color: white; +} + +.button.is-white.is-inverted:hover, .button.is-white.is-inverted.is-hovered { + background-color: black; +} + +.button.is-white.is-inverted[disabled], +fieldset[disabled] .button.is-white.is-inverted { + background-color: #0a0a0a; + border-color: transparent; + box-shadow: none; + color: white; +} + +.button.is-white.is-loading::after { + border-color: transparent transparent #0a0a0a #0a0a0a !important; +} + +.button.is-white.is-outlined { + background-color: transparent; + border-color: white; + color: white; +} + +.button.is-white.is-outlined:hover, .button.is-white.is-outlined.is-hovered, .button.is-white.is-outlined:focus, .button.is-white.is-outlined.is-focused { + background-color: white; + border-color: white; + color: #0a0a0a; +} + +.button.is-white.is-outlined.is-loading::after { + border-color: transparent transparent white white !important; +} + +.button.is-white.is-outlined.is-loading:hover::after, .button.is-white.is-outlined.is-loading.is-hovered::after, .button.is-white.is-outlined.is-loading:focus::after, .button.is-white.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #0a0a0a #0a0a0a !important; +} + +.button.is-white.is-outlined[disabled], +fieldset[disabled] .button.is-white.is-outlined { + background-color: transparent; + border-color: white; + box-shadow: none; + color: white; +} + +.button.is-white.is-inverted.is-outlined { + background-color: transparent; + border-color: #0a0a0a; + color: #0a0a0a; +} + +.button.is-white.is-inverted.is-outlined:hover, .button.is-white.is-inverted.is-outlined.is-hovered, .button.is-white.is-inverted.is-outlined:focus, .button.is-white.is-inverted.is-outlined.is-focused { + background-color: #0a0a0a; + color: white; +} + +.button.is-white.is-inverted.is-outlined.is-loading:hover::after, .button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-white.is-inverted.is-outlined.is-loading:focus::after, .button.is-white.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent white white !important; +} + +.button.is-white.is-inverted.is-outlined[disabled], +fieldset[disabled] .button.is-white.is-inverted.is-outlined { + background-color: transparent; + border-color: #0a0a0a; + box-shadow: none; + color: #0a0a0a; +} + +.button.is-black { + background-color: #0a0a0a; + border-color: transparent; + color: white; +} + +.button.is-black:hover, .button.is-black.is-hovered { + background-color: #040404; + border-color: transparent; + color: white; +} + +.button.is-black:focus, .button.is-black.is-focused { + border-color: transparent; + color: white; +} + +.button.is-black:focus:not(:active), .button.is-black.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); +} + +.button.is-black:active, .button.is-black.is-active { + background-color: black; + border-color: transparent; + color: white; +} + +.button.is-black[disabled], +fieldset[disabled] .button.is-black { + background-color: #0a0a0a; + border-color: transparent; + box-shadow: none; +} + +.button.is-black.is-inverted { + background-color: white; + color: #0a0a0a; +} + +.button.is-black.is-inverted:hover, .button.is-black.is-inverted.is-hovered { + background-color: #f2f2f2; +} + +.button.is-black.is-inverted[disabled], +fieldset[disabled] .button.is-black.is-inverted { + background-color: white; + border-color: transparent; + box-shadow: none; + color: #0a0a0a; +} + +.button.is-black.is-loading::after { + border-color: transparent transparent white white !important; +} + +.button.is-black.is-outlined { + background-color: transparent; + border-color: #0a0a0a; + color: #0a0a0a; +} + +.button.is-black.is-outlined:hover, .button.is-black.is-outlined.is-hovered, .button.is-black.is-outlined:focus, .button.is-black.is-outlined.is-focused { + background-color: #0a0a0a; + border-color: #0a0a0a; + color: white; +} + +.button.is-black.is-outlined.is-loading::after { + border-color: transparent transparent #0a0a0a #0a0a0a !important; +} + +.button.is-black.is-outlined.is-loading:hover::after, .button.is-black.is-outlined.is-loading.is-hovered::after, .button.is-black.is-outlined.is-loading:focus::after, .button.is-black.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent white white !important; +} + +.button.is-black.is-outlined[disabled], +fieldset[disabled] .button.is-black.is-outlined { + background-color: transparent; + border-color: #0a0a0a; + box-shadow: none; + color: #0a0a0a; +} + +.button.is-black.is-inverted.is-outlined { + background-color: transparent; + border-color: white; + color: white; +} + +.button.is-black.is-inverted.is-outlined:hover, .button.is-black.is-inverted.is-outlined.is-hovered, .button.is-black.is-inverted.is-outlined:focus, .button.is-black.is-inverted.is-outlined.is-focused { + background-color: white; + color: #0a0a0a; +} + +.button.is-black.is-inverted.is-outlined.is-loading:hover::after, .button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-black.is-inverted.is-outlined.is-loading:focus::after, .button.is-black.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #0a0a0a #0a0a0a !important; +} + +.button.is-black.is-inverted.is-outlined[disabled], +fieldset[disabled] .button.is-black.is-inverted.is-outlined { + background-color: transparent; + border-color: white; + box-shadow: none; + color: white; +} + +.button.is-light { + background-color: whitesmoke; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} + +.button.is-light:hover, .button.is-light.is-hovered { + background-color: #eeeeee; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} + +.button.is-light:focus, .button.is-light.is-focused { + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} + +.button.is-light:focus:not(:active), .button.is-light.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25); +} + +.button.is-light:active, .button.is-light.is-active { + background-color: #e8e8e8; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} + +.button.is-light[disabled], +fieldset[disabled] .button.is-light { + background-color: whitesmoke; + border-color: transparent; + box-shadow: none; +} + +.button.is-light.is-inverted { + background-color: rgba(0, 0, 0, 0.7); + color: whitesmoke; +} + +.button.is-light.is-inverted:hover, .button.is-light.is-inverted.is-hovered { + background-color: rgba(0, 0, 0, 0.7); +} + +.button.is-light.is-inverted[disabled], +fieldset[disabled] .button.is-light.is-inverted { + background-color: rgba(0, 0, 0, 0.7); + border-color: transparent; + box-shadow: none; + color: whitesmoke; +} + +.button.is-light.is-loading::after { + border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important; +} + +.button.is-light.is-outlined { + background-color: transparent; + border-color: whitesmoke; + color: whitesmoke; +} + +.button.is-light.is-outlined:hover, .button.is-light.is-outlined.is-hovered, .button.is-light.is-outlined:focus, .button.is-light.is-outlined.is-focused { + background-color: whitesmoke; + border-color: whitesmoke; + color: rgba(0, 0, 0, 0.7); +} + +.button.is-light.is-outlined.is-loading::after { + border-color: transparent transparent whitesmoke whitesmoke !important; +} + +.button.is-light.is-outlined.is-loading:hover::after, .button.is-light.is-outlined.is-loading.is-hovered::after, .button.is-light.is-outlined.is-loading:focus::after, .button.is-light.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important; +} + +.button.is-light.is-outlined[disabled], +fieldset[disabled] .button.is-light.is-outlined { + background-color: transparent; + border-color: whitesmoke; + box-shadow: none; + color: whitesmoke; +} + +.button.is-light.is-inverted.is-outlined { + background-color: transparent; + border-color: rgba(0, 0, 0, 0.7); + color: rgba(0, 0, 0, 0.7); +} + +.button.is-light.is-inverted.is-outlined:hover, .button.is-light.is-inverted.is-outlined.is-hovered, .button.is-light.is-inverted.is-outlined:focus, .button.is-light.is-inverted.is-outlined.is-focused { + background-color: rgba(0, 0, 0, 0.7); + color: whitesmoke; +} + +.button.is-light.is-inverted.is-outlined.is-loading:hover::after, .button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-light.is-inverted.is-outlined.is-loading:focus::after, .button.is-light.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent whitesmoke whitesmoke !important; +} + +.button.is-light.is-inverted.is-outlined[disabled], +fieldset[disabled] .button.is-light.is-inverted.is-outlined { + background-color: transparent; + border-color: rgba(0, 0, 0, 0.7); + box-shadow: none; + color: rgba(0, 0, 0, 0.7); +} + +.button.is-dark { + background-color: #363636; + border-color: transparent; + color: #fff; +} + +.button.is-dark:hover, .button.is-dark.is-hovered { + background-color: #2f2f2f; + border-color: transparent; + color: #fff; +} + +.button.is-dark:focus, .button.is-dark.is-focused { + border-color: transparent; + color: #fff; +} + +.button.is-dark:focus:not(:active), .button.is-dark.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25); +} + +.button.is-dark:active, .button.is-dark.is-active { + background-color: #292929; + border-color: transparent; + color: #fff; +} + +.button.is-dark[disabled], +fieldset[disabled] .button.is-dark { + background-color: #363636; + border-color: transparent; + box-shadow: none; +} + +.button.is-dark.is-inverted { + background-color: #fff; + color: #363636; +} + +.button.is-dark.is-inverted:hover, .button.is-dark.is-inverted.is-hovered { + background-color: #f2f2f2; +} + +.button.is-dark.is-inverted[disabled], +fieldset[disabled] .button.is-dark.is-inverted { + background-color: #fff; + border-color: transparent; + box-shadow: none; + color: #363636; +} + +.button.is-dark.is-loading::after { + border-color: transparent transparent #fff #fff !important; +} + +.button.is-dark.is-outlined { + background-color: transparent; + border-color: #363636; + color: #363636; +} + +.button.is-dark.is-outlined:hover, .button.is-dark.is-outlined.is-hovered, .button.is-dark.is-outlined:focus, .button.is-dark.is-outlined.is-focused { + background-color: #363636; + border-color: #363636; + color: #fff; +} + +.button.is-dark.is-outlined.is-loading::after { + border-color: transparent transparent #363636 #363636 !important; +} + +.button.is-dark.is-outlined.is-loading:hover::after, .button.is-dark.is-outlined.is-loading.is-hovered::after, .button.is-dark.is-outlined.is-loading:focus::after, .button.is-dark.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #fff #fff !important; +} + +.button.is-dark.is-outlined[disabled], +fieldset[disabled] .button.is-dark.is-outlined { + background-color: transparent; + border-color: #363636; + box-shadow: none; + color: #363636; +} + +.button.is-dark.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + color: #fff; +} + +.button.is-dark.is-inverted.is-outlined:hover, .button.is-dark.is-inverted.is-outlined.is-hovered, .button.is-dark.is-inverted.is-outlined:focus, .button.is-dark.is-inverted.is-outlined.is-focused { + background-color: #fff; + color: #363636; +} + +.button.is-dark.is-inverted.is-outlined.is-loading:hover::after, .button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-dark.is-inverted.is-outlined.is-loading:focus::after, .button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #363636 #363636 !important; +} + +.button.is-dark.is-inverted.is-outlined[disabled], +fieldset[disabled] .button.is-dark.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + box-shadow: none; + color: #fff; +} + +.button.is-primary { + background-color: #00d1b2; + border-color: transparent; + color: #fff; +} + +.button.is-primary:hover, .button.is-primary.is-hovered { + background-color: #00c4a7; + border-color: transparent; + color: #fff; +} + +.button.is-primary:focus, .button.is-primary.is-focused { + border-color: transparent; + color: #fff; +} + +.button.is-primary:focus:not(:active), .button.is-primary.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25); +} + +.button.is-primary:active, .button.is-primary.is-active { + background-color: #00b89c; + border-color: transparent; + color: #fff; +} + +.button.is-primary[disabled], +fieldset[disabled] .button.is-primary { + background-color: #00d1b2; + border-color: transparent; + box-shadow: none; +} + +.button.is-primary.is-inverted { + background-color: #fff; + color: #00d1b2; +} + +.button.is-primary.is-inverted:hover, .button.is-primary.is-inverted.is-hovered { + background-color: #f2f2f2; +} + +.button.is-primary.is-inverted[disabled], +fieldset[disabled] .button.is-primary.is-inverted { + background-color: #fff; + border-color: transparent; + box-shadow: none; + color: #00d1b2; +} + +.button.is-primary.is-loading::after { + border-color: transparent transparent #fff #fff !important; +} + +.button.is-primary.is-outlined { + background-color: transparent; + border-color: #00d1b2; + color: #00d1b2; +} + +.button.is-primary.is-outlined:hover, .button.is-primary.is-outlined.is-hovered, .button.is-primary.is-outlined:focus, .button.is-primary.is-outlined.is-focused { + background-color: #00d1b2; + border-color: #00d1b2; + color: #fff; +} + +.button.is-primary.is-outlined.is-loading::after { + border-color: transparent transparent #00d1b2 #00d1b2 !important; +} + +.button.is-primary.is-outlined.is-loading:hover::after, .button.is-primary.is-outlined.is-loading.is-hovered::after, .button.is-primary.is-outlined.is-loading:focus::after, .button.is-primary.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #fff #fff !important; +} + +.button.is-primary.is-outlined[disabled], +fieldset[disabled] .button.is-primary.is-outlined { + background-color: transparent; + border-color: #00d1b2; + box-shadow: none; + color: #00d1b2; +} + +.button.is-primary.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + color: #fff; +} + +.button.is-primary.is-inverted.is-outlined:hover, .button.is-primary.is-inverted.is-outlined.is-hovered, .button.is-primary.is-inverted.is-outlined:focus, .button.is-primary.is-inverted.is-outlined.is-focused { + background-color: #fff; + color: #00d1b2; +} + +.button.is-primary.is-inverted.is-outlined.is-loading:hover::after, .button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-primary.is-inverted.is-outlined.is-loading:focus::after, .button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #00d1b2 #00d1b2 !important; +} + +.button.is-primary.is-inverted.is-outlined[disabled], +fieldset[disabled] .button.is-primary.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + box-shadow: none; + color: #fff; +} + +.button.is-primary.is-light { + background-color: #ebfffc; + color: #00947e; +} + +.button.is-primary.is-light:hover, .button.is-primary.is-light.is-hovered { + background-color: #defffa; + border-color: transparent; + color: #00947e; +} + +.button.is-primary.is-light:active, .button.is-primary.is-light.is-active { + background-color: #d1fff8; + border-color: transparent; + color: #00947e; +} + +.button.is-link { + background-color: #485fc7; + border-color: transparent; + color: #fff; +} + +.button.is-link:hover, .button.is-link.is-hovered { + background-color: #3e56c4; + border-color: transparent; + color: #fff; +} + +.button.is-link:focus, .button.is-link.is-focused { + border-color: transparent; + color: #fff; +} + +.button.is-link:focus:not(:active), .button.is-link.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(72, 95, 199, 0.25); +} + +.button.is-link:active, .button.is-link.is-active { + background-color: #3a51bb; + border-color: transparent; + color: #fff; +} + +.button.is-link[disabled], +fieldset[disabled] .button.is-link { + background-color: #485fc7; + border-color: transparent; + box-shadow: none; +} + +.button.is-link.is-inverted { + background-color: #fff; + color: #485fc7; +} + +.button.is-link.is-inverted:hover, .button.is-link.is-inverted.is-hovered { + background-color: #f2f2f2; +} + +.button.is-link.is-inverted[disabled], +fieldset[disabled] .button.is-link.is-inverted { + background-color: #fff; + border-color: transparent; + box-shadow: none; + color: #485fc7; +} + +.button.is-link.is-loading::after { + border-color: transparent transparent #fff #fff !important; +} + +.button.is-link.is-outlined { + background-color: transparent; + border-color: #485fc7; + color: #485fc7; +} + +.button.is-link.is-outlined:hover, .button.is-link.is-outlined.is-hovered, .button.is-link.is-outlined:focus, .button.is-link.is-outlined.is-focused { + background-color: #485fc7; + border-color: #485fc7; + color: #fff; +} + +.button.is-link.is-outlined.is-loading::after { + border-color: transparent transparent #485fc7 #485fc7 !important; +} + +.button.is-link.is-outlined.is-loading:hover::after, .button.is-link.is-outlined.is-loading.is-hovered::after, .button.is-link.is-outlined.is-loading:focus::after, .button.is-link.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #fff #fff !important; +} + +.button.is-link.is-outlined[disabled], +fieldset[disabled] .button.is-link.is-outlined { + background-color: transparent; + border-color: #485fc7; + box-shadow: none; + color: #485fc7; +} + +.button.is-link.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + color: #fff; +} + +.button.is-link.is-inverted.is-outlined:hover, .button.is-link.is-inverted.is-outlined.is-hovered, .button.is-link.is-inverted.is-outlined:focus, .button.is-link.is-inverted.is-outlined.is-focused { + background-color: #fff; + color: #485fc7; +} + +.button.is-link.is-inverted.is-outlined.is-loading:hover::after, .button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-link.is-inverted.is-outlined.is-loading:focus::after, .button.is-link.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #485fc7 #485fc7 !important; +} + +.button.is-link.is-inverted.is-outlined[disabled], +fieldset[disabled] .button.is-link.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + box-shadow: none; + color: #fff; +} + +.button.is-link.is-light { + background-color: #eff1fa; + color: #3850b7; +} + +.button.is-link.is-light:hover, .button.is-link.is-light.is-hovered { + background-color: #e6e9f7; + border-color: transparent; + color: #3850b7; +} + +.button.is-link.is-light:active, .button.is-link.is-light.is-active { + background-color: #dce0f4; + border-color: transparent; + color: #3850b7; +} + +.button.is-info { + background-color: #3e8ed0; + border-color: transparent; + color: #fff; +} + +.button.is-info:hover, .button.is-info.is-hovered { + background-color: #3488ce; + border-color: transparent; + color: #fff; +} + +.button.is-info:focus, .button.is-info.is-focused { + border-color: transparent; + color: #fff; +} + +.button.is-info:focus:not(:active), .button.is-info.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(62, 142, 208, 0.25); +} + +.button.is-info:active, .button.is-info.is-active { + background-color: #3082c5; + border-color: transparent; + color: #fff; +} + +.button.is-info[disabled], +fieldset[disabled] .button.is-info { + background-color: #3e8ed0; + border-color: transparent; + box-shadow: none; +} + +.button.is-info.is-inverted { + background-color: #fff; + color: #3e8ed0; +} + +.button.is-info.is-inverted:hover, .button.is-info.is-inverted.is-hovered { + background-color: #f2f2f2; +} + +.button.is-info.is-inverted[disabled], +fieldset[disabled] .button.is-info.is-inverted { + background-color: #fff; + border-color: transparent; + box-shadow: none; + color: #3e8ed0; +} + +.button.is-info.is-loading::after { + border-color: transparent transparent #fff #fff !important; +} + +.button.is-info.is-outlined { + background-color: transparent; + border-color: #3e8ed0; + color: #3e8ed0; +} + +.button.is-info.is-outlined:hover, .button.is-info.is-outlined.is-hovered, .button.is-info.is-outlined:focus, .button.is-info.is-outlined.is-focused { + background-color: #3e8ed0; + border-color: #3e8ed0; + color: #fff; +} + +.button.is-info.is-outlined.is-loading::after { + border-color: transparent transparent #3e8ed0 #3e8ed0 !important; +} + +.button.is-info.is-outlined.is-loading:hover::after, .button.is-info.is-outlined.is-loading.is-hovered::after, .button.is-info.is-outlined.is-loading:focus::after, .button.is-info.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #fff #fff !important; +} + +.button.is-info.is-outlined[disabled], +fieldset[disabled] .button.is-info.is-outlined { + background-color: transparent; + border-color: #3e8ed0; + box-shadow: none; + color: #3e8ed0; +} + +.button.is-info.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + color: #fff; +} + +.button.is-info.is-inverted.is-outlined:hover, .button.is-info.is-inverted.is-outlined.is-hovered, .button.is-info.is-inverted.is-outlined:focus, .button.is-info.is-inverted.is-outlined.is-focused { + background-color: #fff; + color: #3e8ed0; +} + +.button.is-info.is-inverted.is-outlined.is-loading:hover::after, .button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-info.is-inverted.is-outlined.is-loading:focus::after, .button.is-info.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #3e8ed0 #3e8ed0 !important; +} + +.button.is-info.is-inverted.is-outlined[disabled], +fieldset[disabled] .button.is-info.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + box-shadow: none; + color: #fff; +} + +.button.is-info.is-light { + background-color: #eff5fb; + color: #296fa8; +} + +.button.is-info.is-light:hover, .button.is-info.is-light.is-hovered { + background-color: #e4eff9; + border-color: transparent; + color: #296fa8; +} + +.button.is-info.is-light:active, .button.is-info.is-light.is-active { + background-color: #dae9f6; + border-color: transparent; + color: #296fa8; +} + +.button.is-success { + background-color: #48c78e; + border-color: transparent; + color: #fff; +} + +.button.is-success:hover, .button.is-success.is-hovered { + background-color: #3ec487; + border-color: transparent; + color: #fff; +} + +.button.is-success:focus, .button.is-success.is-focused { + border-color: transparent; + color: #fff; +} + +.button.is-success:focus:not(:active), .button.is-success.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(72, 199, 142, 0.25); +} + +.button.is-success:active, .button.is-success.is-active { + background-color: #3abb81; + border-color: transparent; + color: #fff; +} + +.button.is-success[disabled], +fieldset[disabled] .button.is-success { + background-color: #48c78e; + border-color: transparent; + box-shadow: none; +} + +.button.is-success.is-inverted { + background-color: #fff; + color: #48c78e; +} + +.button.is-success.is-inverted:hover, .button.is-success.is-inverted.is-hovered { + background-color: #f2f2f2; +} + +.button.is-success.is-inverted[disabled], +fieldset[disabled] .button.is-success.is-inverted { + background-color: #fff; + border-color: transparent; + box-shadow: none; + color: #48c78e; +} + +.button.is-success.is-loading::after { + border-color: transparent transparent #fff #fff !important; +} + +.button.is-success.is-outlined { + background-color: transparent; + border-color: #48c78e; + color: #48c78e; +} + +.button.is-success.is-outlined:hover, .button.is-success.is-outlined.is-hovered, .button.is-success.is-outlined:focus, .button.is-success.is-outlined.is-focused { + background-color: #48c78e; + border-color: #48c78e; + color: #fff; +} + +.button.is-success.is-outlined.is-loading::after { + border-color: transparent transparent #48c78e #48c78e !important; +} + +.button.is-success.is-outlined.is-loading:hover::after, .button.is-success.is-outlined.is-loading.is-hovered::after, .button.is-success.is-outlined.is-loading:focus::after, .button.is-success.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #fff #fff !important; +} + +.button.is-success.is-outlined[disabled], +fieldset[disabled] .button.is-success.is-outlined { + background-color: transparent; + border-color: #48c78e; + box-shadow: none; + color: #48c78e; +} + +.button.is-success.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + color: #fff; +} + +.button.is-success.is-inverted.is-outlined:hover, .button.is-success.is-inverted.is-outlined.is-hovered, .button.is-success.is-inverted.is-outlined:focus, .button.is-success.is-inverted.is-outlined.is-focused { + background-color: #fff; + color: #48c78e; +} + +.button.is-success.is-inverted.is-outlined.is-loading:hover::after, .button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-success.is-inverted.is-outlined.is-loading:focus::after, .button.is-success.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #48c78e #48c78e !important; +} + +.button.is-success.is-inverted.is-outlined[disabled], +fieldset[disabled] .button.is-success.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + box-shadow: none; + color: #fff; +} + +.button.is-success.is-light { + background-color: #effaf5; + color: #257953; +} + +.button.is-success.is-light:hover, .button.is-success.is-light.is-hovered { + background-color: #e6f7ef; + border-color: transparent; + color: #257953; +} + +.button.is-success.is-light:active, .button.is-success.is-light.is-active { + background-color: #dcf4e9; + border-color: transparent; + color: #257953; +} + +.button.is-warning { + background-color: #ffe08a; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} + +.button.is-warning:hover, .button.is-warning.is-hovered { + background-color: #ffdc7d; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} + +.button.is-warning:focus, .button.is-warning.is-focused { + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} + +.button.is-warning:focus:not(:active), .button.is-warning.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(255, 224, 138, 0.25); +} + +.button.is-warning:active, .button.is-warning.is-active { + background-color: #ffd970; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} + +.button.is-warning[disabled], +fieldset[disabled] .button.is-warning { + background-color: #ffe08a; + border-color: transparent; + box-shadow: none; +} + +.button.is-warning.is-inverted { + background-color: rgba(0, 0, 0, 0.7); + color: #ffe08a; +} + +.button.is-warning.is-inverted:hover, .button.is-warning.is-inverted.is-hovered { + background-color: rgba(0, 0, 0, 0.7); +} + +.button.is-warning.is-inverted[disabled], +fieldset[disabled] .button.is-warning.is-inverted { + background-color: rgba(0, 0, 0, 0.7); + border-color: transparent; + box-shadow: none; + color: #ffe08a; +} + +.button.is-warning.is-loading::after { + border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important; +} + +.button.is-warning.is-outlined { + background-color: transparent; + border-color: #ffe08a; + color: #ffe08a; +} + +.button.is-warning.is-outlined:hover, .button.is-warning.is-outlined.is-hovered, .button.is-warning.is-outlined:focus, .button.is-warning.is-outlined.is-focused { + background-color: #ffe08a; + border-color: #ffe08a; + color: rgba(0, 0, 0, 0.7); +} + +.button.is-warning.is-outlined.is-loading::after { + border-color: transparent transparent #ffe08a #ffe08a !important; +} + +.button.is-warning.is-outlined.is-loading:hover::after, .button.is-warning.is-outlined.is-loading.is-hovered::after, .button.is-warning.is-outlined.is-loading:focus::after, .button.is-warning.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important; +} + +.button.is-warning.is-outlined[disabled], +fieldset[disabled] .button.is-warning.is-outlined { + background-color: transparent; + border-color: #ffe08a; + box-shadow: none; + color: #ffe08a; +} + +.button.is-warning.is-inverted.is-outlined { + background-color: transparent; + border-color: rgba(0, 0, 0, 0.7); + color: rgba(0, 0, 0, 0.7); +} + +.button.is-warning.is-inverted.is-outlined:hover, .button.is-warning.is-inverted.is-outlined.is-hovered, .button.is-warning.is-inverted.is-outlined:focus, .button.is-warning.is-inverted.is-outlined.is-focused { + background-color: rgba(0, 0, 0, 0.7); + color: #ffe08a; +} + +.button.is-warning.is-inverted.is-outlined.is-loading:hover::after, .button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-warning.is-inverted.is-outlined.is-loading:focus::after, .button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #ffe08a #ffe08a !important; +} + +.button.is-warning.is-inverted.is-outlined[disabled], +fieldset[disabled] .button.is-warning.is-inverted.is-outlined { + background-color: transparent; + border-color: rgba(0, 0, 0, 0.7); + box-shadow: none; + color: rgba(0, 0, 0, 0.7); +} + +.button.is-warning.is-light { + background-color: #fffaeb; + color: #946c00; +} + +.button.is-warning.is-light:hover, .button.is-warning.is-light.is-hovered { + background-color: #fff6de; + border-color: transparent; + color: #946c00; +} + +.button.is-warning.is-light:active, .button.is-warning.is-light.is-active { + background-color: #fff3d1; + border-color: transparent; + color: #946c00; +} + +.button.is-danger { + background-color: #f14668; + border-color: transparent; + color: #fff; +} + +.button.is-danger:hover, .button.is-danger.is-hovered { + background-color: #f03a5f; + border-color: transparent; + color: #fff; +} + +.button.is-danger:focus, .button.is-danger.is-focused { + border-color: transparent; + color: #fff; +} + +.button.is-danger:focus:not(:active), .button.is-danger.is-focused:not(:active) { + box-shadow: 0 0 0 0.125em rgba(241, 70, 104, 0.25); +} + +.button.is-danger:active, .button.is-danger.is-active { + background-color: #ef2e55; + border-color: transparent; + color: #fff; +} + +.button.is-danger[disabled], +fieldset[disabled] .button.is-danger { + background-color: #f14668; + border-color: transparent; + box-shadow: none; +} + +.button.is-danger.is-inverted { + background-color: #fff; + color: #f14668; +} + +.button.is-danger.is-inverted:hover, .button.is-danger.is-inverted.is-hovered { + background-color: #f2f2f2; +} + +.button.is-danger.is-inverted[disabled], +fieldset[disabled] .button.is-danger.is-inverted { + background-color: #fff; + border-color: transparent; + box-shadow: none; + color: #f14668; +} + +.button.is-danger.is-loading::after { + border-color: transparent transparent #fff #fff !important; +} + +.button.is-danger.is-outlined { + background-color: transparent; + border-color: #f14668; + color: #f14668; +} + +.button.is-danger.is-outlined:hover, .button.is-danger.is-outlined.is-hovered, .button.is-danger.is-outlined:focus, .button.is-danger.is-outlined.is-focused { + background-color: #f14668; + border-color: #f14668; + color: #fff; +} + +.button.is-danger.is-outlined.is-loading::after { + border-color: transparent transparent #f14668 #f14668 !important; +} + +.button.is-danger.is-outlined.is-loading:hover::after, .button.is-danger.is-outlined.is-loading.is-hovered::after, .button.is-danger.is-outlined.is-loading:focus::after, .button.is-danger.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #fff #fff !important; +} + +.button.is-danger.is-outlined[disabled], +fieldset[disabled] .button.is-danger.is-outlined { + background-color: transparent; + border-color: #f14668; + box-shadow: none; + color: #f14668; +} + +.button.is-danger.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + color: #fff; +} + +.button.is-danger.is-inverted.is-outlined:hover, .button.is-danger.is-inverted.is-outlined.is-hovered, .button.is-danger.is-inverted.is-outlined:focus, .button.is-danger.is-inverted.is-outlined.is-focused { + background-color: #fff; + color: #f14668; +} + +.button.is-danger.is-inverted.is-outlined.is-loading:hover::after, .button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-danger.is-inverted.is-outlined.is-loading:focus::after, .button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after { + border-color: transparent transparent #f14668 #f14668 !important; +} + +.button.is-danger.is-inverted.is-outlined[disabled], +fieldset[disabled] .button.is-danger.is-inverted.is-outlined { + background-color: transparent; + border-color: #fff; + box-shadow: none; + color: #fff; +} + +.button.is-danger.is-light { + background-color: #feecf0; + color: #cc0f35; +} + +.button.is-danger.is-light:hover, .button.is-danger.is-light.is-hovered { + background-color: #fde0e6; + border-color: transparent; + color: #cc0f35; +} + +.button.is-danger.is-light:active, .button.is-danger.is-light.is-active { + background-color: #fcd4dc; + border-color: transparent; + color: #cc0f35; +} + +.button.is-small { + font-size: 0.75rem; +} + +.button.is-small:not(.is-rounded) { + border-radius: 2px; +} + +.button.is-normal { + font-size: 1rem; +} + +.button.is-medium { + font-size: 1.25rem; +} + +.button.is-large { + font-size: 1.5rem; +} + +.button[disabled], +fieldset[disabled] .button { + background-color: white; + border-color: #dbdbdb; + box-shadow: none; + opacity: 0.5; +} + +.button.is-fullwidth { + display: flex; + width: 100%; +} + +.button.is-loading { + color: transparent !important; + pointer-events: none; +} + +.button.is-loading::after { + position: absolute; + left: calc(50% - (1em * 0.5)); + top: calc(50% - (1em * 0.5)); + position: absolute !important; +} + +.button.is-static { + background-color: whitesmoke; + border-color: #dbdbdb; + color: #7a7a7a; + box-shadow: none; + pointer-events: none; +} + +.button.is-rounded { + border-radius: 9999px; + padding-left: calc(1em + 0.25em); + padding-right: calc(1em + 0.25em); +} + +.icon { + align-items: center; + display: inline-flex; + justify-content: center; + height: 1.5rem; + width: 1.5rem; +} + +.icon.is-small { + height: 1rem; + width: 1rem; +} + +.icon.is-medium { + height: 2rem; + width: 2rem; +} + +.icon.is-large { + height: 3rem; + width: 3rem; +} + +.icon-text { + align-items: flex-start; + color: inherit; + display: inline-flex; + flex-wrap: wrap; + line-height: 1.5rem; + vertical-align: top; +} + +.icon-text .icon { + flex-grow: 0; + flex-shrink: 0; +} + +.icon-text .icon:not(:last-child) { + margin-right: 0.25em; +} + +.icon-text .icon:not(:first-child) { + margin-left: 0.25em; +} + +div.icon-text { + display: flex; +} + +.progress { + -moz-appearance: none; + -webkit-appearance: none; + border: none; + border-radius: 9999px; + display: block; + height: 1rem; + overflow: hidden; + padding: 0; + width: 100%; +} + +.progress::-webkit-progress-bar { + background-color: #ededed; +} + +.progress::-webkit-progress-value { + background-color: #4a4a4a; +} + +.progress::-moz-progress-bar { + background-color: #4a4a4a; +} + +.progress::-ms-fill { + background-color: #4a4a4a; + border: none; +} + +.progress.is-white::-webkit-progress-value { + background-color: white; +} + +.progress.is-white::-moz-progress-bar { + background-color: white; +} + +.progress.is-white::-ms-fill { + background-color: white; +} + +.progress.is-white:indeterminate { + background-image: linear-gradient(to right, white 30%, #ededed 30%); +} + +.progress.is-black::-webkit-progress-value { + background-color: #0a0a0a; +} + +.progress.is-black::-moz-progress-bar { + background-color: #0a0a0a; +} + +.progress.is-black::-ms-fill { + background-color: #0a0a0a; +} + +.progress.is-black:indeterminate { + background-image: linear-gradient(to right, #0a0a0a 30%, #ededed 30%); +} + +.progress.is-light::-webkit-progress-value { + background-color: whitesmoke; +} + +.progress.is-light::-moz-progress-bar { + background-color: whitesmoke; +} + +.progress.is-light::-ms-fill { + background-color: whitesmoke; +} + +.progress.is-light:indeterminate { + background-image: linear-gradient(to right, whitesmoke 30%, #ededed 30%); +} + +.progress.is-dark::-webkit-progress-value { + background-color: #363636; +} + +.progress.is-dark::-moz-progress-bar { + background-color: #363636; +} + +.progress.is-dark::-ms-fill { + background-color: #363636; +} + +.progress.is-dark:indeterminate { + background-image: linear-gradient(to right, #363636 30%, #ededed 30%); +} + +.progress.is-primary::-webkit-progress-value { + background-color: #00d1b2; +} + +.progress.is-primary::-moz-progress-bar { + background-color: #00d1b2; +} + +.progress.is-primary::-ms-fill { + background-color: #00d1b2; +} + +.progress.is-primary:indeterminate { + background-image: linear-gradient(to right, #00d1b2 30%, #ededed 30%); +} + +.progress.is-link::-webkit-progress-value { + background-color: #485fc7; +} + +.progress.is-link::-moz-progress-bar { + background-color: #485fc7; +} + +.progress.is-link::-ms-fill { + background-color: #485fc7; +} + +.progress.is-link:indeterminate { + background-image: linear-gradient(to right, #485fc7 30%, #ededed 30%); +} + +.progress.is-info::-webkit-progress-value { + background-color: #3e8ed0; +} + +.progress.is-info::-moz-progress-bar { + background-color: #3e8ed0; +} + +.progress.is-info::-ms-fill { + background-color: #3e8ed0; +} + +.progress.is-info:indeterminate { + background-image: linear-gradient(to right, #3e8ed0 30%, #ededed 30%); +} + +.progress.is-success::-webkit-progress-value { + background-color: #48c78e; +} + +.progress.is-success::-moz-progress-bar { + background-color: #48c78e; +} + +.progress.is-success::-ms-fill { + background-color: #48c78e; +} + +.progress.is-success:indeterminate { + background-image: linear-gradient(to right, #48c78e 30%, #ededed 30%); +} + +.progress.is-warning::-webkit-progress-value { + background-color: #ffe08a; +} + +.progress.is-warning::-moz-progress-bar { + background-color: #ffe08a; +} + +.progress.is-warning::-ms-fill { + background-color: #ffe08a; +} + +.progress.is-warning:indeterminate { + background-image: linear-gradient(to right, #ffe08a 30%, #ededed 30%); +} + +.progress.is-danger::-webkit-progress-value { + background-color: #f14668; +} + +.progress.is-danger::-moz-progress-bar { + background-color: #f14668; +} + +.progress.is-danger::-ms-fill { + background-color: #f14668; +} + +.progress.is-danger:indeterminate { + background-image: linear-gradient(to right, #f14668 30%, #ededed 30%); +} + +.progress:indeterminate { + -webkit-animation-duration: 1.5s; + animation-duration: 1.5s; + -webkit-animation-iteration-count: infinite; + animation-iteration-count: infinite; + -webkit-animation-name: moveIndeterminate; + animation-name: moveIndeterminate; + -webkit-animation-timing-function: linear; + animation-timing-function: linear; + background-color: #ededed; + background-image: linear-gradient(to right, #4a4a4a 30%, #ededed 30%); + background-position: top left; + background-repeat: no-repeat; + background-size: 150% 150%; +} + +.progress:indeterminate::-webkit-progress-bar { + background-color: transparent; +} + +.progress:indeterminate::-moz-progress-bar { + background-color: transparent; +} + +.progress:indeterminate::-ms-fill { + animation-name: none; +} + +.progress.is-small { + height: 0.75rem; +} + +.progress.is-medium { + height: 1.25rem; +} + +.progress.is-large { + height: 1.5rem; +} + +@-webkit-keyframes moveIndeterminate { + from { + background-position: 200% 0; + } + to { + background-position: -200% 0; + } +} + +@keyframes moveIndeterminate { + from { + background-position: 200% 0; + } + to { + background-position: -200% 0; + } +} + +.tags { + align-items: center; + display: flex; + flex-wrap: wrap; + justify-content: flex-start; +} + +.tags .tag { + margin-bottom: 0.5rem; +} + +.tags .tag:not(:last-child) { + margin-right: 0.5rem; +} + +.tags:last-child { + margin-bottom: -0.5rem; +} + +.tags:not(:last-child) { + margin-bottom: 1rem; +} + +.tags.are-medium .tag:not(.is-normal):not(.is-large) { + font-size: 1rem; +} + +.tags.are-large .tag:not(.is-normal):not(.is-medium) { + font-size: 1.25rem; +} + +.tags.is-centered { + justify-content: center; +} + +.tags.is-centered .tag { + margin-right: 0.25rem; + margin-left: 0.25rem; +} + +.tags.is-right { + justify-content: flex-end; +} + +.tags.is-right .tag:not(:first-child) { + margin-left: 0.5rem; +} + +.tags.is-right .tag:not(:last-child) { + margin-right: 0; +} + +.tags.has-addons .tag { + margin-right: 0; +} + +.tags.has-addons .tag:not(:first-child) { + margin-left: 0; + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.tags.has-addons .tag:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.tag:not(body) { + align-items: center; + background-color: whitesmoke; + border-radius: 4px; + color: #4a4a4a; + display: inline-flex; + font-size: 0.75rem; + height: 2em; + justify-content: center; + line-height: 1.5; + padding-left: 0.75em; + padding-right: 0.75em; + white-space: nowrap; +} + +.tag:not(body) .delete { + margin-left: 0.25rem; + margin-right: -0.375rem; +} + +.tag:not(body).is-white { + background-color: white; + color: #0a0a0a; +} + +.tag:not(body).is-black { + background-color: #0a0a0a; + color: white; +} + +.tag:not(body).is-light { + background-color: whitesmoke; + color: rgba(0, 0, 0, 0.7); +} + +.tag:not(body).is-dark { + background-color: #363636; + color: #fff; +} + +.tag:not(body).is-primary { + background-color: #00d1b2; + color: #fff; +} + +.tag:not(body).is-primary.is-light { + background-color: #ebfffc; + color: #00947e; +} + +.tag:not(body).is-link { + background-color: #485fc7; + color: #fff; +} + +.tag:not(body).is-link.is-light { + background-color: #eff1fa; + color: #3850b7; +} + +.tag:not(body).is-info { + background-color: #3e8ed0; + color: #fff; +} + +.tag:not(body).is-info.is-light { + background-color: #eff5fb; + color: #296fa8; +} + +.tag:not(body).is-success { + background-color: #48c78e; + color: #fff; +} + +.tag:not(body).is-success.is-light { + background-color: #effaf5; + color: #257953; +} + +.tag:not(body).is-warning { + background-color: #ffe08a; + color: rgba(0, 0, 0, 0.7); +} + +.tag:not(body).is-warning.is-light { + background-color: #fffaeb; + color: #946c00; +} + +.tag:not(body).is-danger { + background-color: #f14668; + color: #fff; +} + +.tag:not(body).is-danger.is-light { + background-color: #feecf0; + color: #cc0f35; +} + +.tag:not(body).is-normal { + font-size: 0.75rem; +} + +.tag:not(body).is-medium { + font-size: 1rem; +} + +.tag:not(body).is-large { + font-size: 1.25rem; +} + +.tag:not(body) .icon:first-child:not(:last-child) { + margin-left: -0.375em; + margin-right: 0.1875em; +} + +.tag:not(body) .icon:last-child:not(:first-child) { + margin-left: 0.1875em; + margin-right: -0.375em; +} + +.tag:not(body) .icon:first-child:last-child { + margin-left: -0.375em; + margin-right: -0.375em; +} + +.tag:not(body).is-delete { + margin-left: 1px; + padding: 0; + position: relative; + width: 2em; +} + +.tag:not(body).is-delete::before, .tag:not(body).is-delete::after { + background-color: currentColor; + content: ""; + display: block; + left: 50%; + position: absolute; + top: 50%; + transform: translateX(-50%) translateY(-50%) rotate(45deg); + transform-origin: center center; +} + +.tag:not(body).is-delete::before { + height: 1px; + width: 50%; +} + +.tag:not(body).is-delete::after { + height: 50%; + width: 1px; +} + +.tag:not(body).is-delete:hover, .tag:not(body).is-delete:focus { + background-color: #e8e8e8; +} + +.tag:not(body).is-delete:active { + background-color: #dbdbdb; +} + +.tag:not(body).is-rounded { + border-radius: 9999px; +} + +a.tag:hover { + text-decoration: underline; +} + +.number { + align-items: center; + background-color: whitesmoke; + border-radius: 9999px; + display: inline-flex; + font-size: 1.25rem; + height: 2em; + justify-content: center; + margin-right: 1.5rem; + min-width: 2.5em; + padding: 0.25rem 0.5rem; + text-align: center; + vertical-align: top; +} + +.input::-moz-placeholder, .textarea::-moz-placeholder, .select select::-moz-placeholder { + color: var(--placeholder-text-color); +} + +.input::-webkit-input-placeholder, .textarea::-webkit-input-placeholder, .select select::-webkit-input-placeholder { + color: var(--placeholder-text-color); +} + +.input:-moz-placeholder, .textarea:-moz-placeholder, .select select:-moz-placeholder { + color: var(--placeholder-text-color); +} + +.input:-ms-input-placeholder, .textarea:-ms-input-placeholder, .select select:-ms-input-placeholder { + color: var(--placeholder-text-color); +} + +.input[disabled], .textarea[disabled], .select select[disabled], +fieldset[disabled] .input, +fieldset[disabled] .textarea, +fieldset[disabled] .select select, +.select fieldset[disabled] select { + background-color: whitesmoke; + border-color: whitesmoke; + box-shadow: none; + color: #7a7a7a; +} + +.input[disabled]::-moz-placeholder, .textarea[disabled]::-moz-placeholder, .select select[disabled]::-moz-placeholder, +fieldset[disabled] .input::-moz-placeholder, +fieldset[disabled] .textarea::-moz-placeholder, +fieldset[disabled] .select select::-moz-placeholder, +.select fieldset[disabled] select::-moz-placeholder { + color: rgba(122, 122, 122, 0.3); +} + +.input[disabled]::-webkit-input-placeholder, .textarea[disabled]::-webkit-input-placeholder, .select select[disabled]::-webkit-input-placeholder, +fieldset[disabled] .input::-webkit-input-placeholder, +fieldset[disabled] .textarea::-webkit-input-placeholder, +fieldset[disabled] .select select::-webkit-input-placeholder, +.select fieldset[disabled] select::-webkit-input-placeholder { + color: rgba(122, 122, 122, 0.3); +} + +.input[disabled]:-moz-placeholder, .textarea[disabled]:-moz-placeholder, .select select[disabled]:-moz-placeholder, +fieldset[disabled] .input:-moz-placeholder, +fieldset[disabled] .textarea:-moz-placeholder, +fieldset[disabled] .select select:-moz-placeholder, +.select fieldset[disabled] select:-moz-placeholder { + color: rgba(122, 122, 122, 0.3); +} + +.input[disabled]:-ms-input-placeholder, .textarea[disabled]:-ms-input-placeholder, .select select[disabled]:-ms-input-placeholder, +fieldset[disabled] .input:-ms-input-placeholder, +fieldset[disabled] .textarea:-ms-input-placeholder, +fieldset[disabled] .select select:-ms-input-placeholder, +.select fieldset[disabled] select:-ms-input-placeholder { + color: rgba(122, 122, 122, 0.3); +} + +.input, .textarea { + box-shadow: inset 0 0.0625em 0.125em rgba(10, 10, 10, 0.05); + max-width: 100%; + width: 100%; +} + +.input[readonly], .textarea[readonly] { + box-shadow: none; +} + +.is-white.input, .is-white.textarea { + border-color: white; +} + +.is-white.input:focus, .is-white.textarea:focus, .is-white.is-focused.input, .is-white.is-focused.textarea, .is-white.input:active, .is-white.textarea:active, .is-white.is-active.input, .is-white.is-active.textarea { + box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); +} + +.is-black.input, .is-black.textarea { + border-color: #0a0a0a; +} + +.is-black.input:focus, .is-black.textarea:focus, .is-black.is-focused.input, .is-black.is-focused.textarea, .is-black.input:active, .is-black.textarea:active, .is-black.is-active.input, .is-black.is-active.textarea { + box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); +} + +.is-light.input, .is-light.textarea { + border-color: whitesmoke; +} + +.is-light.input:focus, .is-light.textarea:focus, .is-light.is-focused.input, .is-light.is-focused.textarea, .is-light.input:active, .is-light.textarea:active, .is-light.is-active.input, .is-light.is-active.textarea { + box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25); +} + +.is-dark.input, .is-dark.textarea { + border-color: #363636; +} + +.is-dark.input:focus, .is-dark.textarea:focus, .is-dark.is-focused.input, .is-dark.is-focused.textarea, .is-dark.input:active, .is-dark.textarea:active, .is-dark.is-active.input, .is-dark.is-active.textarea { + box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25); +} + +.is-primary.input, .is-primary.textarea { + border-color: #00d1b2; +} + +.is-primary.input:focus, .is-primary.textarea:focus, .is-primary.is-focused.input, .is-primary.is-focused.textarea, .is-primary.input:active, .is-primary.textarea:active, .is-primary.is-active.input, .is-primary.is-active.textarea { + box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25); +} + +.is-link.input, .is-link.textarea { + border-color: #485fc7; +} + +.is-link.input:focus, .is-link.textarea:focus, .is-link.is-focused.input, .is-link.is-focused.textarea, .is-link.input:active, .is-link.textarea:active, .is-link.is-active.input, .is-link.is-active.textarea { + box-shadow: 0 0 0 0.125em rgba(72, 95, 199, 0.25); +} + +.is-info.input, .is-info.textarea { + border-color: #3e8ed0; +} + +.is-info.input:focus, .is-info.textarea:focus, .is-info.is-focused.input, .is-info.is-focused.textarea, .is-info.input:active, .is-info.textarea:active, .is-info.is-active.input, .is-info.is-active.textarea { + box-shadow: 0 0 0 0.125em rgba(62, 142, 208, 0.25); +} + +.is-success.input, .is-success.textarea { + border-color: #48c78e; +} + +.is-success.input:focus, .is-success.textarea:focus, .is-success.is-focused.input, .is-success.is-focused.textarea, .is-success.input:active, .is-success.textarea:active, .is-success.is-active.input, .is-success.is-active.textarea { + box-shadow: 0 0 0 0.125em rgba(72, 199, 142, 0.25); +} + +.is-warning.input, .is-warning.textarea { + border-color: #ffe08a; +} + +.is-warning.input:focus, .is-warning.textarea:focus, .is-warning.is-focused.input, .is-warning.is-focused.textarea, .is-warning.input:active, .is-warning.textarea:active, .is-warning.is-active.input, .is-warning.is-active.textarea { + box-shadow: 0 0 0 0.125em rgba(255, 224, 138, 0.25); +} + +.is-danger.input, .is-danger.textarea { + border-color: #f14668; +} + +.is-danger.input:focus, .is-danger.textarea:focus, .is-danger.is-focused.input, .is-danger.is-focused.textarea, .is-danger.input:active, .is-danger.textarea:active, .is-danger.is-active.input, .is-danger.is-active.textarea { + box-shadow: 0 0 0 0.125em rgba(241, 70, 104, 0.25); +} + +.is-small.input, .is-small.textarea { + border-radius: 2px; + font-size: 0.75rem; +} + +.is-medium.input, .is-medium.textarea { + font-size: 1.25rem; +} + +.is-large.input, .is-large.textarea { + font-size: 1.5rem; +} + +.is-fullwidth.input, .is-fullwidth.textarea { + display: block; + width: 100%; +} + +.is-inline.input, .is-inline.textarea { + display: inline; + width: auto; +} + +.input.is-rounded { + border-radius: 9999px; + padding-left: calc(calc(0.75em - 1px) + 0.375em); + padding-right: calc(calc(0.75em - 1px) + 0.375em); +} + +.input.is-static { + background-color: transparent; + border-color: transparent; + box-shadow: none; + padding-left: 0; + padding-right: 0; +} + +.textarea { + display: block; + max-width: 100%; + min-width: 100%; + padding: calc(0.75em - 1px); + resize: vertical; +} + +.textarea:not([rows]) { + max-height: 40em; + min-height: 8em; +} + +.textarea[rows] { + height: initial; +} + +.textarea.has-fixed-size { + resize: none; +} + +.checkbox, .radio { + cursor: pointer; + display: inline-block; + line-height: 1.25; + position: relative; +} + +.checkbox input, .radio input { + cursor: pointer; +} + +.checkbox:hover, .radio:hover { + color: #363636; +} + +.checkbox[disabled], .radio[disabled], +fieldset[disabled] .checkbox, +fieldset[disabled] .radio, +.checkbox input[disabled], +.radio input[disabled] { + color: #7a7a7a; + cursor: not-allowed; +} + +.radio + .radio { + margin-left: 0.5em; +} + +.select { + display: inline-block; + max-width: 100%; + position: relative; + vertical-align: top; +} + +.select:not(.is-multiple) { + height: 2.5em; +} + +.select:not(.is-multiple):not(.is-loading)::after { + border-color: var(--text-color); + right: 1.125em; + z-index: 4; +} + +.select.is-rounded select { + border-radius: 9999px; + padding-left: 1em; +} + +.select select { + cursor: pointer; + display: block; + font-size: 1em; + max-width: 100%; + outline: none; +} + +.select select::-ms-expand { + display: none; +} + +.select select[disabled]:hover, +fieldset[disabled] .select select:hover { + border-color: whitesmoke; +} + +.select select:not([multiple]) { + padding-right: 2.5em; +} + +.select select[multiple] { + height: auto; + padding: 0; +} + +.select select[multiple] option { + padding: 0.5em 1em; +} + +.select:not(.is-multiple):not(.is-loading):hover::after { + border-color: var(--placeholder-text-color); +} + +.select.is-white:not(:hover)::after { + border-color: white; +} + +.select.is-white select { + border-color: white; +} + +.select.is-white select:hover, .select.is-white select.is-hovered { + border-color: #f2f2f2; +} + +.select.is-white select:focus, .select.is-white select.is-focused, .select.is-white select:active, .select.is-white select.is-active { + box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); +} + +.select.is-black:not(:hover)::after { + border-color: #0a0a0a; +} + +.select.is-black select { + border-color: #0a0a0a; +} + +.select.is-black select:hover, .select.is-black select.is-hovered { + border-color: black; +} + +.select.is-black select:focus, .select.is-black select.is-focused, .select.is-black select:active, .select.is-black select.is-active { + box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); +} + +.select.is-light:not(:hover)::after { + border-color: whitesmoke; +} + +.select.is-light select { + border-color: whitesmoke; +} + +.select.is-light select:hover, .select.is-light select.is-hovered { + border-color: #e8e8e8; +} + +.select.is-light select:focus, .select.is-light select.is-focused, .select.is-light select:active, .select.is-light select.is-active { + box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25); +} + +.select.is-dark:not(:hover)::after { + border-color: #363636; +} + +.select.is-dark select { + border-color: #363636; +} + +.select.is-dark select:hover, .select.is-dark select.is-hovered { + border-color: #292929; +} + +.select.is-dark select:focus, .select.is-dark select.is-focused, .select.is-dark select:active, .select.is-dark select.is-active { + box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25); +} + +.select.is-primary:not(:hover)::after { + border-color: #00d1b2; +} + +.select.is-primary select { + border-color: #00d1b2; +} + +.select.is-primary select:hover, .select.is-primary select.is-hovered { + border-color: #00b89c; +} + +.select.is-primary select:focus, .select.is-primary select.is-focused, .select.is-primary select:active, .select.is-primary select.is-active { + box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25); +} + +.select.is-link:not(:hover)::after { + border-color: #485fc7; +} + +.select.is-link select { + border-color: #485fc7; +} + +.select.is-link select:hover, .select.is-link select.is-hovered { + border-color: #3a51bb; +} + +.select.is-link select:focus, .select.is-link select.is-focused, .select.is-link select:active, .select.is-link select.is-active { + box-shadow: 0 0 0 0.125em rgba(72, 95, 199, 0.25); +} + +.select.is-info:not(:hover)::after { + border-color: #3e8ed0; +} + +.select.is-info select { + border-color: #3e8ed0; +} + +.select.is-info select:hover, .select.is-info select.is-hovered { + border-color: #3082c5; +} + +.select.is-info select:focus, .select.is-info select.is-focused, .select.is-info select:active, .select.is-info select.is-active { + box-shadow: 0 0 0 0.125em rgba(62, 142, 208, 0.25); +} + +.select.is-success:not(:hover)::after { + border-color: #48c78e; +} + +.select.is-success select { + border-color: #48c78e; +} + +.select.is-success select:hover, .select.is-success select.is-hovered { + border-color: #3abb81; +} + +.select.is-success select:focus, .select.is-success select.is-focused, .select.is-success select:active, .select.is-success select.is-active { + box-shadow: 0 0 0 0.125em rgba(72, 199, 142, 0.25); +} + +.select.is-warning:not(:hover)::after { + border-color: #ffe08a; +} + +.select.is-warning select { + border-color: #ffe08a; +} + +.select.is-warning select:hover, .select.is-warning select.is-hovered { + border-color: #ffd970; +} + +.select.is-warning select:focus, .select.is-warning select.is-focused, .select.is-warning select:active, .select.is-warning select.is-active { + box-shadow: 0 0 0 0.125em rgba(255, 224, 138, 0.25); +} + +.select.is-danger:not(:hover)::after { + border-color: #f14668; +} + +.select.is-danger select { + border-color: #f14668; +} + +.select.is-danger select:hover, .select.is-danger select.is-hovered { + border-color: #ef2e55; +} + +.select.is-danger select:focus, .select.is-danger select.is-focused, .select.is-danger select:active, .select.is-danger select.is-active { + box-shadow: 0 0 0 0.125em rgba(241, 70, 104, 0.25); +} + +.select.is-small { + border-radius: 2px; + font-size: 0.75rem; +} + +.select.is-medium { + font-size: 1.25rem; +} + +.select.is-large { + font-size: 1.5rem; +} + +.select.is-disabled::after { + border-color: #7a7a7a; +} + +.select.is-fullwidth { + width: 100%; +} + +.select.is-fullwidth select { + width: 100%; +} + +.select.is-loading::after { + margin-top: 0; + position: absolute; + right: 0.625em; + top: 0.625em; + transform: none; +} + +.select.is-loading.is-small:after { + font-size: 0.75rem; +} + +.select.is-loading.is-medium:after { + font-size: 1.25rem; +} + +.select.is-loading.is-large:after { + font-size: 1.5rem; +} + +.file { + align-items: stretch; + display: flex; + justify-content: flex-start; + position: relative; +} + +.file.is-white .file-cta { + background-color: white; + border-color: transparent; + color: #0a0a0a; +} + +.file.is-white:hover .file-cta, .file.is-white.is-hovered .file-cta { + background-color: #f9f9f9; + border-color: transparent; + color: #0a0a0a; +} + +.file.is-white:focus .file-cta, .file.is-white.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.25); + color: #0a0a0a; +} + +.file.is-white:active .file-cta, .file.is-white.is-active .file-cta { + background-color: #f2f2f2; + border-color: transparent; + color: #0a0a0a; +} + +.file.is-black .file-cta { + background-color: #0a0a0a; + border-color: transparent; + color: white; +} + +.file.is-black:hover .file-cta, .file.is-black.is-hovered .file-cta { + background-color: #040404; + border-color: transparent; + color: white; +} + +.file.is-black:focus .file-cta, .file.is-black.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.25); + color: white; +} + +.file.is-black:active .file-cta, .file.is-black.is-active .file-cta { + background-color: black; + border-color: transparent; + color: white; +} + +.file.is-light .file-cta { + background-color: whitesmoke; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} + +.file.is-light:hover .file-cta, .file.is-light.is-hovered .file-cta { + background-color: #eeeeee; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} + +.file.is-light:focus .file-cta, .file.is-light.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.25); + color: rgba(0, 0, 0, 0.7); +} + +.file.is-light:active .file-cta, .file.is-light.is-active .file-cta { + background-color: #e8e8e8; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} + +.file.is-dark .file-cta { + background-color: #363636; + border-color: transparent; + color: #fff; +} + +.file.is-dark:hover .file-cta, .file.is-dark.is-hovered .file-cta { + background-color: #2f2f2f; + border-color: transparent; + color: #fff; +} + +.file.is-dark:focus .file-cta, .file.is-dark.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.25); + color: #fff; +} + +.file.is-dark:active .file-cta, .file.is-dark.is-active .file-cta { + background-color: #292929; + border-color: transparent; + color: #fff; +} + +.file.is-primary .file-cta { + background-color: #00d1b2; + border-color: transparent; + color: #fff; +} + +.file.is-primary:hover .file-cta, .file.is-primary.is-hovered .file-cta { + background-color: #00c4a7; + border-color: transparent; + color: #fff; +} + +.file.is-primary:focus .file-cta, .file.is-primary.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(0, 209, 178, 0.25); + color: #fff; +} + +.file.is-primary:active .file-cta, .file.is-primary.is-active .file-cta { + background-color: #00b89c; + border-color: transparent; + color: #fff; +} + +.file.is-link .file-cta { + background-color: #485fc7; + border-color: transparent; + color: #fff; +} + +.file.is-link:hover .file-cta, .file.is-link.is-hovered .file-cta { + background-color: #3e56c4; + border-color: transparent; + color: #fff; +} + +.file.is-link:focus .file-cta, .file.is-link.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(72, 95, 199, 0.25); + color: #fff; +} + +.file.is-link:active .file-cta, .file.is-link.is-active .file-cta { + background-color: #3a51bb; + border-color: transparent; + color: #fff; +} + +.file.is-info .file-cta { + background-color: #3e8ed0; + border-color: transparent; + color: #fff; +} + +.file.is-info:hover .file-cta, .file.is-info.is-hovered .file-cta { + background-color: #3488ce; + border-color: transparent; + color: #fff; +} + +.file.is-info:focus .file-cta, .file.is-info.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(62, 142, 208, 0.25); + color: #fff; +} + +.file.is-info:active .file-cta, .file.is-info.is-active .file-cta { + background-color: #3082c5; + border-color: transparent; + color: #fff; +} + +.file.is-success .file-cta { + background-color: #48c78e; + border-color: transparent; + color: #fff; +} + +.file.is-success:hover .file-cta, .file.is-success.is-hovered .file-cta { + background-color: #3ec487; + border-color: transparent; + color: #fff; +} + +.file.is-success:focus .file-cta, .file.is-success.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(72, 199, 142, 0.25); + color: #fff; +} + +.file.is-success:active .file-cta, .file.is-success.is-active .file-cta { + background-color: #3abb81; + border-color: transparent; + color: #fff; +} + +.file.is-warning .file-cta { + background-color: #ffe08a; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} + +.file.is-warning:hover .file-cta, .file.is-warning.is-hovered .file-cta { + background-color: #ffdc7d; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} + +.file.is-warning:focus .file-cta, .file.is-warning.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(255, 224, 138, 0.25); + color: rgba(0, 0, 0, 0.7); +} + +.file.is-warning:active .file-cta, .file.is-warning.is-active .file-cta { + background-color: #ffd970; + border-color: transparent; + color: rgba(0, 0, 0, 0.7); +} + +.file.is-danger .file-cta { + background-color: #f14668; + border-color: transparent; + color: #fff; +} + +.file.is-danger:hover .file-cta, .file.is-danger.is-hovered .file-cta { + background-color: #f03a5f; + border-color: transparent; + color: #fff; +} + +.file.is-danger:focus .file-cta, .file.is-danger.is-focused .file-cta { + border-color: transparent; + box-shadow: 0 0 0.5em rgba(241, 70, 104, 0.25); + color: #fff; +} + +.file.is-danger:active .file-cta, .file.is-danger.is-active .file-cta { + background-color: #ef2e55; + border-color: transparent; + color: #fff; +} + +.file.is-small { + font-size: 0.75rem; +} + +.file.is-normal { + font-size: 1rem; +} + +.file.is-medium { + font-size: 1.25rem; +} + +.file.is-medium .file-icon .fa { + font-size: 21px; +} + +.file.is-large { + font-size: 1.5rem; +} + +.file.is-large .file-icon .fa { + font-size: 28px; +} + +.file.has-name .file-cta { + border-bottom-right-radius: 0; + border-top-right-radius: 0; +} + +.file.has-name .file-name { + border-bottom-left-radius: 0; + border-top-left-radius: 0; +} + +.file.has-name.is-empty .file-cta { + border-radius: 4px; +} + +.file.has-name.is-empty .file-name { + display: none; +} + +.file.is-boxed .file-label { + flex-direction: column; +} + +.file.is-boxed .file-cta { + flex-direction: column; + height: auto; + padding: 1em 3em; +} + +.file.is-boxed .file-name { + border-width: 0 1px 1px; +} + +.file.is-boxed .file-icon { + height: 1.5em; + width: 1.5em; +} + +.file.is-boxed .file-icon .fa { + font-size: 21px; +} + +.file.is-boxed.is-small .file-icon .fa { + font-size: 14px; +} + +.file.is-boxed.is-medium .file-icon .fa { + font-size: 28px; +} + +.file.is-boxed.is-large .file-icon .fa { + font-size: 35px; +} + +.file.is-boxed.has-name .file-cta { + border-radius: 4px 4px 0 0; +} + +.file.is-boxed.has-name .file-name { + border-radius: 0 0 4px 4px; + border-width: 0 1px 1px; +} + +.file.is-centered { + justify-content: center; +} + +.file.is-fullwidth .file-label { + width: 100%; +} + +.file.is-fullwidth .file-name { + flex-grow: 1; + max-width: none; +} + +.file.is-right { + justify-content: flex-end; +} + +.file.is-right .file-cta { + border-radius: 0 4px 4px 0; +} + +.file.is-right .file-name { + border-radius: 4px 0 0 4px; + border-width: 1px 0 1px 1px; + order: -1; +} + +.file-label { + align-items: stretch; + display: flex; + cursor: pointer; + justify-content: flex-start; + overflow: hidden; + position: relative; +} + +.file-label:hover .file-name { + border-color: #d5d5d5; +} + +.file-label:active .file-name { + border-color: #cfcfcf; +} + +.file-input { + height: 100%; + left: 0; + opacity: 0; + outline: none; + position: absolute; + top: 0; + width: 100%; +} + +.file-cta, +.file-name { + border-color: #dbdbdb; + border-radius: 4px; + font-size: 1em; + padding-left: 1em; + padding-right: 1em; + white-space: nowrap; +} + +.file-name { + border-color: #dbdbdb; + border-style: solid; + border-width: 1px 1px 1px 0; + display: block; + max-width: 16em; + overflow: hidden; + text-align: inherit; + text-overflow: ellipsis; +} + +.file-icon { + align-items: center; + display: flex; + height: 1em; + justify-content: center; + margin-right: 0.5em; + width: 1em; +} + +.file-icon .fa { + font-size: 14px; +} + +.label { + color: #363636; + display: block; + font-size: 1rem; + font-weight: 700; +} + +.label:not(:last-child) { + margin-bottom: 0.5em; +} + +.label.is-small { + font-size: 0.75rem; +} + +.label.is-medium { + font-size: 1.25rem; +} + +.label.is-large { + font-size: 1.5rem; +} + +.help { + display: block; + font-size: 0.75rem; + margin-top: 0.25rem; +} + +.help.is-white { + color: white; +} + +.help.is-black { + color: #0a0a0a; +} + +.help.is-light { + color: whitesmoke; +} + +.help.is-dark { + color: #363636; +} + +.help.is-primary { + color: #00d1b2; +} + +.help.is-link { + color: #485fc7; +} + +.help.is-info { + color: #3e8ed0; +} + +.help.is-success { + color: #48c78e; +} + +.help.is-warning { + color: #ffe08a; +} + +.help.is-danger { + color: #f14668; +} + +.field:not(:last-child) { + margin-bottom: 0.75rem; +} + +.field.has-addons { + display: flex; + justify-content: flex-start; +} + +.field.has-addons .control:not(:last-child) { + margin-right: -1px; +} + +.field.has-addons .control:not(:first-child):not(:last-child) .button, +.field.has-addons .control:not(:first-child):not(:last-child) .input, +.field.has-addons .control:not(:first-child):not(:last-child) .select select { + border-radius: 0; +} + +.field.has-addons .control:first-child:not(:only-child) .button, +.field.has-addons .control:first-child:not(:only-child) .input, +.field.has-addons .control:first-child:not(:only-child) .select select { + border-bottom-right-radius: 0; + border-top-right-radius: 0; +} + +.field.has-addons .control:last-child:not(:only-child) .button, +.field.has-addons .control:last-child:not(:only-child) .input, +.field.has-addons .control:last-child:not(:only-child) .select select { + border-bottom-left-radius: 0; + border-top-left-radius: 0; +} + +.field.has-addons .control .button:not([disabled]):hover, .field.has-addons .control .button:not([disabled]).is-hovered, +.field.has-addons .control .input:not([disabled]):hover, +.field.has-addons .control .input:not([disabled]).is-hovered, +.field.has-addons .control .select select:not([disabled]):hover, +.field.has-addons .control .select select:not([disabled]).is-hovered { + z-index: 2; +} + +.field.has-addons .control .button:not([disabled]):focus, .field.has-addons .control .button:not([disabled]).is-focused, .field.has-addons .control .button:not([disabled]):active, .field.has-addons .control .button:not([disabled]).is-active, +.field.has-addons .control .input:not([disabled]):focus, +.field.has-addons .control .input:not([disabled]).is-focused, +.field.has-addons .control .input:not([disabled]):active, +.field.has-addons .control .input:not([disabled]).is-active, +.field.has-addons .control .select select:not([disabled]):focus, +.field.has-addons .control .select select:not([disabled]).is-focused, +.field.has-addons .control .select select:not([disabled]):active, +.field.has-addons .control .select select:not([disabled]).is-active { + z-index: 3; +} + +.field.has-addons .control .button:not([disabled]):focus:hover, .field.has-addons .control .button:not([disabled]).is-focused:hover, .field.has-addons .control .button:not([disabled]):active:hover, .field.has-addons .control .button:not([disabled]).is-active:hover, +.field.has-addons .control .input:not([disabled]):focus:hover, +.field.has-addons .control .input:not([disabled]).is-focused:hover, +.field.has-addons .control .input:not([disabled]):active:hover, +.field.has-addons .control .input:not([disabled]).is-active:hover, +.field.has-addons .control .select select:not([disabled]):focus:hover, +.field.has-addons .control .select select:not([disabled]).is-focused:hover, +.field.has-addons .control .select select:not([disabled]):active:hover, +.field.has-addons .control .select select:not([disabled]).is-active:hover { + z-index: 4; +} + +.field.has-addons .control.is-expanded { + flex-grow: 1; + flex-shrink: 1; +} + +.field.has-addons.has-addons-centered { + justify-content: center; +} + +.field.has-addons.has-addons-right { + justify-content: flex-end; +} + +.field.has-addons.has-addons-fullwidth .control { + flex-grow: 1; + flex-shrink: 0; +} + +.field.is-grouped { + display: flex; + justify-content: flex-start; +} + +.field.is-grouped > .control { + flex-shrink: 0; +} + +.field.is-grouped > .control:not(:last-child) { + margin-bottom: 0; + margin-right: 0.75rem; +} + +.field.is-grouped > .control.is-expanded { + flex-grow: 1; + flex-shrink: 1; +} + +.field.is-grouped.is-grouped-centered { + justify-content: center; +} + +.field.is-grouped.is-grouped-right { + justify-content: flex-end; +} + +.field.is-grouped.is-grouped-multiline { + flex-wrap: wrap; +} + +.field.is-grouped.is-grouped-multiline > .control:last-child, .field.is-grouped.is-grouped-multiline > .control:not(:last-child) { + margin-bottom: 0.75rem; +} + +.field.is-grouped.is-grouped-multiline:last-child { + margin-bottom: -0.75rem; +} + +.field.is-grouped.is-grouped-multiline:not(:last-child) { + margin-bottom: 0; +} + +@media screen and (min-width: 769px), print { + .field.is-horizontal { + display: flex; + } +} + +.field-label .label { + font-size: inherit; +} + +@media screen and (max-width: 768px) { + .field-label { + margin-bottom: 0.5rem; + } +} + +@media screen and (min-width: 769px), print { + .field-label { + flex-basis: 0; + flex-grow: 1; + flex-shrink: 0; + margin-right: 1.5rem; + text-align: right; + } + .field-label.is-small { + font-size: 0.75rem; + padding-top: 0.375em; + } + .field-label.is-normal { + padding-top: 0.375em; + } + .field-label.is-medium { + font-size: 1.25rem; + padding-top: 0.375em; + } + .field-label.is-large { + font-size: 1.5rem; + padding-top: 0.375em; + } +} + +.field-body .field .field { + margin-bottom: 0; +} + +@media screen and (min-width: 769px), print { + .field-body { + display: flex; + flex-basis: 0; + flex-grow: 5; + flex-shrink: 1; + } + .field-body .field { + margin-bottom: 0; + } + .field-body > .field { + flex-shrink: 1; + } + .field-body > .field:not(.is-narrow) { + flex-grow: 1; + } + .field-body > .field:not(:last-child) { + margin-right: 0.75rem; + } +} + +.control { + box-sizing: border-box; + clear: both; + font-size: 1rem; + position: relative; + text-align: inherit; +} + +.control.has-icons-left .input:focus ~ .icon, +.control.has-icons-left .select:focus ~ .icon, .control.has-icons-right .input:focus ~ .icon, +.control.has-icons-right .select:focus ~ .icon { + color: #4a4a4a; +} + +.control.has-icons-left .input.is-small ~ .icon, +.control.has-icons-left .select.is-small ~ .icon, .control.has-icons-right .input.is-small ~ .icon, +.control.has-icons-right .select.is-small ~ .icon { + font-size: 0.75rem; +} + +.control.has-icons-left .input.is-medium ~ .icon, +.control.has-icons-left .select.is-medium ~ .icon, .control.has-icons-right .input.is-medium ~ .icon, +.control.has-icons-right .select.is-medium ~ .icon { + font-size: 1.25rem; +} + +.control.has-icons-left .input.is-large ~ .icon, +.control.has-icons-left .select.is-large ~ .icon, .control.has-icons-right .input.is-large ~ .icon, +.control.has-icons-right .select.is-large ~ .icon { + font-size: 1.5rem; +} + +.control.has-icons-left .icon, .control.has-icons-right .icon { + height: 2.5em; + pointer-events: none; + position: absolute; + top: 0; + width: 2.5em; + z-index: 4; +} + +.control.has-icons-left .input, +.control.has-icons-left .select select { + padding-left: 2.5em; +} + +.control.has-icons-left .icon.is-left { + left: 0; +} + +.control.has-icons-right .input, +.control.has-icons-right .select select { + padding-right: 2.5em; +} + +.control.has-icons-right .icon.is-right { + right: 0; +} + +.control.is-loading::after { + position: absolute !important; + right: 0.625em; + top: 0.625em; + z-index: 4; +} + +.control.is-loading.is-small:after { + font-size: 0.75rem; +} + +.control.is-loading.is-medium:after { + font-size: 1.25rem; +} + +.control.is-loading.is-large:after { + font-size: 1.5rem; +} + +.dropdown { + display: inline-flex; + position: relative; + vertical-align: top; +} + +.dropdown.is-active .dropdown-menu, .dropdown.is-hoverable:hover .dropdown-menu { + display: block; +} + +.dropdown.is-right .dropdown-menu { + left: auto; + right: 0; +} + +.dropdown.is-up .dropdown-menu { + bottom: 100%; + padding-bottom: 4px; + padding-top: initial; + top: auto; +} + +.dropdown-menu { + display: none; + left: 0; + min-width: 12rem; + padding-top: 4px; + position: absolute; + top: 100%; + z-index: 20; +} + +.dropdown-content { + background-color: white; + border-radius: 4px; + box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02); + padding-bottom: 0.5rem; + padding-top: 0.5rem; +} + +.dropdown-item { + color: #4a4a4a; + display: block; + font-size: 0.875rem; + line-height: 1.5; + padding: 0.375rem 1rem; + position: relative; +} + +a.dropdown-item, +button.dropdown-item { + padding-right: 3rem; + text-align: inherit; + white-space: nowrap; + width: 100%; +} + +a.dropdown-item:hover, +button.dropdown-item:hover { + background-color: whitesmoke; + color: #0a0a0a; +} + +a.dropdown-item.is-active, +button.dropdown-item.is-active { + background-color: #485fc7; + color: #fff; +} + +.dropdown-divider { + background-color: #ededed; + border: none; + display: block; + height: 1px; + margin: 0.5rem 0; +} + +.modal { + align-items: center; + display: none; + flex-direction: column; + justify-content: center; + overflow: hidden; + position: fixed; + z-index: 40; +} + +.modal.is-active { + display: flex; +} + +.modal-background { + background-color: rgba(10, 10, 10, 0.86); +} + +.modal-content, +.modal-card { + margin: 0 20px; + max-height: calc(100vh - 160px); + overflow: auto; + position: relative; + width: 100%; +} + +@media screen and (min-width: 769px) { + .modal-content, + .modal-card { + margin: 0 auto; + max-height: calc(100vh - 40px); + width: 640px; + } +} + +.modal-close { + background: none; + height: 40px; + position: fixed; + right: 20px; + top: 20px; + width: 40px; +} + +.modal-card { + display: flex; + flex-direction: column; + max-height: calc(100vh - 40px); + overflow: hidden; + -ms-overflow-y: visible; +} + +.modal-card-head, +.modal-card-foot { + align-items: center; + background-color: whitesmoke; + display: flex; + flex-shrink: 0; + justify-content: flex-start; + padding: 20px; + position: relative; +} + +.modal-card-head { + border-bottom: 1px solid #dbdbdb; + border-top-left-radius: 6px; + border-top-right-radius: 6px; +} + +.modal-card-title { + color: #363636; + flex-grow: 1; + flex-shrink: 0; + font-size: 1.5rem; + line-height: 1; +} + +.modal-card-foot { + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; + border-top: 1px solid #dbdbdb; +} + +.modal-card-foot .button:not(:last-child) { + margin-right: 0.5em; +} + +.modal-card-body { + -webkit-overflow-scrolling: touch; + background-color: white; + flex-grow: 1; + flex-shrink: 1; + overflow: auto; + padding: 20px; +} + +.has-text-white { + color: white !important; +} + +a.has-text-white:hover, a.has-text-white:focus { + color: #e6e6e6 !important; +} + +.has-background-white { + background-color: white !important; +} + +.has-text-black { + color: #0a0a0a !important; +} + +a.has-text-black:hover, a.has-text-black:focus { + color: black !important; +} + +.has-background-black { + background-color: #0a0a0a !important; +} + +.has-text-light { + color: whitesmoke !important; +} + +a.has-text-light:hover, a.has-text-light:focus { + color: #dbdbdb !important; +} + +.has-background-light { + background-color: whitesmoke !important; +} + +.has-text-dark { + color: #363636 !important; +} + +a.has-text-dark:hover, a.has-text-dark:focus { + color: #1c1c1c !important; +} + +.has-background-dark { + background-color: #363636 !important; +} + +.has-text-primary { + color: #00d1b2 !important; +} + +a.has-text-primary:hover, a.has-text-primary:focus { + color: #009e86 !important; +} + +.has-background-primary { + background-color: #00d1b2 !important; +} + +.has-text-primary-light { + color: #ebfffc !important; +} + +a.has-text-primary-light:hover, a.has-text-primary-light:focus { + color: #b8fff4 !important; +} + +.has-background-primary-light { + background-color: #ebfffc !important; +} + +.has-text-primary-dark { + color: #00947e !important; +} + +a.has-text-primary-dark:hover, a.has-text-primary-dark:focus { + color: #00c7a9 !important; +} + +.has-background-primary-dark { + background-color: #00947e !important; +} + +.has-text-link { + color: #485fc7 !important; +} + +a.has-text-link:hover, a.has-text-link:focus { + color: #3449a8 !important; +} + +.has-background-link { + background-color: #485fc7 !important; +} + +.has-text-link-light { + color: #eff1fa !important; +} + +a.has-text-link-light:hover, a.has-text-link-light:focus { + color: #c8cfee !important; +} + +.has-background-link-light { + background-color: #eff1fa !important; +} + +.has-text-link-dark { + color: #3850b7 !important; +} + +a.has-text-link-dark:hover, a.has-text-link-dark:focus { + color: #576dcb !important; +} + +.has-background-link-dark { + background-color: #3850b7 !important; +} + +.has-text-info { + color: #3e8ed0 !important; +} + +a.has-text-info:hover, a.has-text-info:focus { + color: #2b74b1 !important; +} + +.has-background-info { + background-color: #3e8ed0 !important; +} + +.has-text-info-light { + color: #eff5fb !important; +} + +a.has-text-info-light:hover, a.has-text-info-light:focus { + color: #c6ddf1 !important; +} + +.has-background-info-light { + background-color: #eff5fb !important; +} + +.has-text-info-dark { + color: #296fa8 !important; +} + +a.has-text-info-dark:hover, a.has-text-info-dark:focus { + color: #368ace !important; +} + +.has-background-info-dark { + background-color: #296fa8 !important; +} + +.has-text-success { + color: #48c78e !important; +} + +a.has-text-success:hover, a.has-text-success:focus { + color: #34a873 !important; +} + +.has-background-success { + background-color: #48c78e !important; +} + +.has-text-success-light { + color: #effaf5 !important; +} + +a.has-text-success-light:hover, a.has-text-success-light:focus { + color: #c8eedd !important; +} + +.has-background-success-light { + background-color: #effaf5 !important; +} + +.has-text-success-dark { + color: #257953 !important; +} + +a.has-text-success-dark:hover, a.has-text-success-dark:focus { + color: #31a06e !important; +} + +.has-background-success-dark { + background-color: #257953 !important; +} + +.has-text-warning { + color: #ffe08a !important; +} + +a.has-text-warning:hover, a.has-text-warning:focus { + color: #ffd257 !important; +} + +.has-background-warning { + background-color: #ffe08a !important; +} + +.has-text-warning-light { + color: #fffaeb !important; +} + +a.has-text-warning-light:hover, a.has-text-warning-light:focus { + color: #ffecb8 !important; +} + +.has-background-warning-light { + background-color: #fffaeb !important; +} + +.has-text-warning-dark { + color: #946c00 !important; +} + +a.has-text-warning-dark:hover, a.has-text-warning-dark:focus { + color: #c79200 !important; +} + +.has-background-warning-dark { + background-color: #946c00 !important; +} + +.has-text-danger { + color: #f14668 !important; +} + +a.has-text-danger:hover, a.has-text-danger:focus { + color: #ee1742 !important; +} + +.has-background-danger { + background-color: #f14668 !important; +} + +.has-text-danger-light { + color: #feecf0 !important; +} + +a.has-text-danger-light:hover, a.has-text-danger-light:focus { + color: #fabdc9 !important; +} + +.has-background-danger-light { + background-color: #feecf0 !important; +} + +.has-text-danger-dark { + color: #cc0f35 !important; +} + +a.has-text-danger-dark:hover, a.has-text-danger-dark:focus { + color: #ee2049 !important; +} + +.has-background-danger-dark { + background-color: #cc0f35 !important; +} + +.has-text-black-bis { + color: #121212 !important; +} + +.has-background-black-bis { + background-color: #121212 !important; +} + +.has-text-black-ter { + color: #242424 !important; +} + +.has-background-black-ter { + background-color: #242424 !important; +} + +.has-text-grey-darker { + color: #363636 !important; +} + +.has-background-grey-darker { + background-color: #363636 !important; +} + +.has-text-grey-dark { + color: #4a4a4a !important; +} + +.has-background-grey-dark { + background-color: #4a4a4a !important; +} + +.has-text-grey { + color: #7a7a7a !important; +} + +.has-background-grey { + background-color: #7a7a7a !important; +} + +.has-text-grey-light { + color: #b5b5b5 !important; +} + +.has-background-grey-light { + background-color: #b5b5b5 !important; +} + +.has-text-grey-lighter { + color: #dbdbdb !important; +} + +.has-background-grey-lighter { + background-color: #dbdbdb !important; +} + +.has-text-white-ter { + color: whitesmoke !important; +} + +.has-background-white-ter { + background-color: whitesmoke !important; +} + +.has-text-white-bis { + color: #fafafa !important; +} + +.has-background-white-bis { + background-color: #fafafa !important; +} + +:root { + --background: #fadcc7; + --text-color: #7c3a0b; + --placeholder-text-color: rgba(124, 58, 11, 0.3); + --black: #0a0a0a; + --black-bis: #121212; + --black-ter: #242424; + --white: #fffefe; + --primary-color: #fadcc7; + --primary-color-light: white; + --primary-color-dark: #f19c5f; + --primary-gradiend-light: #fce8d9; + --primary-gradiend-dark: #f8d0b4; + --primary-gradiend-lighter: #fdf3ec; + --primary-gradiend-darker: #f7c5a1; + --secondary-color: #c7e5fa; + --secondary-color-light: white; + --secondary-color-dark: #b4dcf8; + --light-shadow: rgba(255, 255, 255, 0.5); + --dark-shadow: rgba(241, 156, 95, 0.5); + /*--fa-primary-color: hsl(25,84%,26.4%); + --fa-secondary-color: hsl(25,84%,66%);*/ + --fa-primary-color: #0b4d7c; + --fa-secondary-color: #5fb4f1; + /*--fa-primary-color: hsl(115,84%,26.4%); + --fa-secondary-color: hsl(115,84%,66%);*/ + --fa-primary-opacity: 0.80; + --fa-secondary-opacity: 0.80; + --danger-color: #fbd5d5; + --warning-color: #fbf3d5; + --info-color: #d5f1fb; + --plus-green: #71ba40; + --plus-gold: #cab021; } + +:root { + --shadow-offset: 8px; + --blur-radius: 16px; + --is-inset: inherit; } + +.neomorph { + box-shadow: calc(-1 * var(--shadow-offset)) calc(-1 * var(--shadow-offset)) var(--blur-radius) var(--light-shadow), var(--shadow-offset) var(--shadow-offset) var(--blur-radius) var(--dark-shadow); } + .neomorphInset { + box-shadow: inset var(--shadow-offset) var(--shadow-offset) var(--blur-radius) var(--dark-shadow), inset calc(-1 * var(--shadow-offset)) calc(-1 * var(--shadow-offset)) var(--blur-radius) var(--light-shadow); } + .neomorphInset.is-nxxsmall { + --shadow-offset: 2px; + --blur-radius: 4px; } + @media (min-width: 640px) { + .neomorphInset.is-nxxsmall-sm { + --shadow-offset: 2px; + --blur-radius: 4px; } } + @media (min-width: 768px) { + .neomorphInset.is-nxxsmall-md { + --shadow-offset: 2px; + --blur-radius: 4px; } } + @media (min-width: 1024px) { + .neomorphInset.is-nxxsmall-lg { + --shadow-offset: 2px; + --blur-radius: 4px; } } + @media (min-width: 1280px) { + .neomorphInset.is-nxxsmall-xl { + --shadow-offset: 2px; + --blur-radius: 4px; } } + .neomorphInset.is-nxsmall { + --shadow-offset: 3px; + --blur-radius: 6px; } + @media (min-width: 640px) { + .neomorphInset.is-nxsmall-sm { + --shadow-offset: 3px; + --blur-radius: 6px; } } + @media (min-width: 768px) { + .neomorphInset.is-nxsmall-md { + --shadow-offset: 3px; + --blur-radius: 6px; } } + @media (min-width: 1024px) { + .neomorphInset.is-nxsmall-lg { + --shadow-offset: 3px; + --blur-radius: 6px; } } + @media (min-width: 1280px) { + .neomorphInset.is-nxsmall-xl { + --shadow-offset: 3px; + --blur-radius: 6px; } } + .neomorphInset.is-nsmall { + --shadow-offset: 6px; + --blur-radius: 12px; } + @media (min-width: 640px) { + .neomorphInset.is-nsmall-sm { + --shadow-offset: 6px; + --blur-radius: 12px; } } + @media (min-width: 768px) { + .neomorphInset.is-nsmall-md { + --shadow-offset: 6px; + --blur-radius: 12px; } } + @media (min-width: 1024px) { + .neomorphInset.is-nsmall-lg { + --shadow-offset: 6px; + --blur-radius: 12px; } } + @media (min-width: 1280px) { + .neomorphInset.is-nsmall-xl { + --shadow-offset: 6px; + --blur-radius: 12px; } } + .neomorph.is-nxxsmall { + --shadow-offset: 2px; + --blur-radius: 4px; } + @media (min-width: 640px) { + .neomorph.is-nxxsmall-sm { + --shadow-offset: 2px; + --blur-radius: 4px; } } + @media (min-width: 768px) { + .neomorph.is-nxxsmall-md { + --shadow-offset: 2px; + --blur-radius: 4px; } } + @media (min-width: 1024px) { + .neomorph.is-nxxsmall-lg { + --shadow-offset: 2px; + --blur-radius: 4px; } } + @media (min-width: 1280px) { + .neomorph.is-nxxsmall-xl { + --shadow-offset: 2px; + --blur-radius: 4px; } } + .neomorph.is-nxsmall { + --shadow-offset: 3px; + --blur-radius: 6px; } + @media (min-width: 640px) { + .neomorph.is-nxsmall-sm { + --shadow-offset: 3px; + --blur-radius: 6px; } } + @media (min-width: 768px) { + .neomorph.is-nxsmall-md { + --shadow-offset: 3px; + --blur-radius: 6px; } } + @media (min-width: 1024px) { + .neomorph.is-nxsmall-lg { + --shadow-offset: 3px; + --blur-radius: 6px; } } + @media (min-width: 1280px) { + .neomorph.is-nxsmall-xl { + --shadow-offset: 3px; + --blur-radius: 6px; } } + .neomorph.is-nsmall { + --shadow-offset: 6px; + --blur-radius: 12px; } + @media (min-width: 640px) { + .neomorph.is-nsmall-sm { + --shadow-offset: 6px; + --blur-radius: 12px; } } + @media (min-width: 768px) { + .neomorph.is-nsmall-md { + --shadow-offset: 6px; + --blur-radius: 12px; } } + @media (min-width: 1024px) { + .neomorph.is-nsmall-lg { + --shadow-offset: 6px; + --blur-radius: 12px; } } + @media (min-width: 1280px) { + .neomorph.is-nsmall-xl { + --shadow-offset: 6px; + --blur-radius: 12px; } } + .neomorph.is-nnormal { + --shadow-offset: 8px; + --blur-radius: 16px; } + @media (min-width: 640px) { + .neomorph.is-nnormal-sm { + --shadow-offset: 8px; + --blur-radius: 16px; } } + @media (min-width: 768px) { + .neomorph.is-nnormal-md { + --shadow-offset: 8px; + --blur-radius: 16px; } } + @media (min-width: 1024px) { + .neomorph.is-nnormal-lg { + --shadow-offset: 8px; + --blur-radius: 16px; } } + @media (min-width: 1280px) { + .neomorph.is-nnormal-xl { + --shadow-offset: 8px; + --blur-radius: 16px; } } + +button.neoBtn, .neoBtn { + background-image: linear-gradient(145deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)); + box-shadow: -3px -3px 6px var(--light-shadow), 3px 3px 6px var(--dark-shadow); + border: none; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + button.neoBtn:focus, .neoBtn:focus { + background-image: linear-gradient(-45deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)); + box-shadow: -3px -3px 6px var(--light-shadow), 3px 3px 6px var(--dark-shadow); + border: none; } + button.neoBtnSmall, .neoBtnSmall { + background-image: linear-gradient(145deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)); + box-shadow: -2px -2px 4px var(--light-shadow), 2px 2px 4px var(--dark-shadow); + border: none; } + button.neoBtnSmall:focus, .neoBtnSmall:focus { + background-image: linear-gradient(-45deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)); + box-shadow: -2px -2px 4px var(--light-shadow), 2px 2px 4px var(--dark-shadow); + border: none; } + button.neoBtnSmall:focus:not(:active), .neoBtnSmall:focus:not(:active) { + background-image: linear-gradient(-45deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)); + box-shadow: -2px -2px 4px var(--light-shadow), 2px 2px 4px var(--dark-shadow); } + button.neoBtnSmall:focus input[type=file], .neoBtnSmall:focus input[type=file] { + background-image: linear-gradient(-45deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)); } + button.neoBtnSmallPlain, .neoBtnSmallPlain { + box-shadow: -3px -3px 6px var(--light-shadow), 3px 3px 6px var(--dark-shadow); + border: none; } + button.neoBtnSmallPlain:focus, .neoBtnSmallPlain:focus { + box-shadow: -3px -3px 6px var(--light-shadow), 3px 3px 6px var(--dark-shadow); + border: none; } + button.neoBtnSmallInsetPlain, .neoBtnSmallInsetPlain { + background-image: linear-gradient(145deg, var(--primary-gradiend-dark), var(--primary-gradiend-light)); + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); + border: none; } + button.neoBtnSmallInsetPlain:focus, .neoBtnSmallInsetPlain:focus { + background-image: linear-gradient(145deg, var(--primary-gradiend-darker), var(--primary-gradiend-lighter)); + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); + border: none; } + button.neoBtnSmallXInsetPlain, .neoBtnSmallXInsetPlain { + background-image: linear-gradient(145deg, var(--primary-gradiend-dark), var(--primary-gradiend-light)); + box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow); + border: none; } + button.neoBtnSmallXInsetPlain:focus, .neoBtnSmallXInsetPlain:focus { + background-image: linear-gradient(145deg, var(--primary-gradiend-darker), var(--primary-gradiend-lighter)); + box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow); + border: none; } + button.neoBtnInsetPlain, .neoBtnInsetPlain { + background-image: linear-gradient(145deg, var(--primary-gradiend-dark), var(--primary-gradiend-light)); + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); + border: none; } + button.neoBtnInsetPlain:focus, .neoBtnInsetPlain:focus { + background-image: linear-gradient(145deg, var(--primary-gradiend-darker), var(--primary-gradiend-lighter)); + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); + border: none; } + button.neoBtnInsetPlain:focus:not(:active), .neoBtnInsetPlain:focus:not(:active) { + background-image: linear-gradient(145deg, var(--primary-gradiend-darker), var(--primary-gradiend-lighter)); + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); } + +button.neoFile, .neoFile { + box-shadow: 0px 0px 0px var(--light-shadow), 0px 0px 0px var(--dark-shadow); + transition: all .2s linear; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + button.neoFile:hover, .neoFile:hover { + box-shadow: -3px -3px 6px var(--light-shadow), 3px 3px 6px var(--dark-shadow); } + button.neoFile:focus-visible, .neoFile:focus-visible { + background: linear-gradient(-45deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)); + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); + outline: none; } + button.neoFile.isSelected, .neoFile.isSelected { + background: linear-gradient(145deg, var(--primary-gradiend-dark), var(--primary-gradiend-light)); + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); } + button.neoFile.isSelected:focus-visible, .neoFile.isSelected:focus-visible { + background: linear-gradient(-45deg, var(--primary-gradiend-lighter), var(--primary-gradiend-darker)); + outline: none; } + button.neoFile.is-active, button.neoFile.active, .neoFile.is-active, .neoFile.active { + box-shadow: inset 3px 3px 6px var(--dark-shadow), inset -3px -3px 6px var(--light-shadow); + color: var(--black); } + +button.neoInput, .neoInput { + box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow); + background: linear-gradient(145deg, var(--primary-gradiend-dark), var(--primary-gradiend-light)); + border: none; } + button.neoInput:focus, .neoInput:focus { + background: linear-gradient(145deg, var(--primary-gradiend-darker), var(--primary-gradiend-lighter)); + border: none; } + +button.neoSelect > select, .neoSelect > select { + box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow); + background: linear-gradient(145deg, var(--primary-gradiend-dark), var(--primary-gradiend-light)); + border: none; } + button.neoSelect > select:focus, .neoSelect > select:focus { + background: linear-gradient(145deg, var(--primary-gradiend-darker), var(--primary-gradiend-lighter)); + border: none; } + +.neoCheckbox { + opacity: 0; + width: 0; } + .neoCheckbox:focus + label:before { + background: linear-gradient(145deg, var(--primary-gradiend-darker), var(--primary-gradiend-lighter)) !important; } + .neoCheckboxContainer { + position: relative; } + .neoCheckbox + label { + padding: .15rem .15rem .15rem 2rem; + cursor: pointer; + font-size: 1rem; + line-height: 1.5; } + .neoCheckbox + label:before { + animation-name: none; + width: 1.5rem; + height: 1.5rem; + border-radius: 100px; + position: absolute; + left: 0; + top: 0rem; + content: ''; + border: none; + box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow); + background: linear-gradient(145deg, var(--primary-gradiend-dark), var(--primary-gradiend-light)) !important; } + .neoCheckbox:checked.is-checked-bold + label { + font-weight: bold; } + .neoCheckbox:checked + label:after { + display: inline-block; + width: .375rem; + height: .6rem; + top: .35rem; + left: .55rem; + transform: translateY(0rem) rotate(45deg); + border-width: .1rem; + border-top-width: 0.1rem; + border-left-width: 0.1rem; + border-style: solid; + border-top-style: solid; + border-left-style: solid; + border-color: var(--text-color); + border-top: 0; + border-left: 0; + position: absolute; + content: ''; } + +hr.neoSeparatorFlat { + height: 10px; + border: none; + border-radius: 20px; + box-shadow: -2px -2px 4px var(--light-shadow), 2px 2px 4px var(--dark-shadow); + background: var(--background); } + +hr.neoSeparatorPressed { + height: 10px; + border: none; + border-radius: 20px; + box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow); + background: linear-gradient(145deg, var(--primary-gradiend-dark), var(--primary-gradiend-light)); } + +input.neoRange[type=range] { + height: 30px; + -webkit-appearance: none; + width: 100%; + background: transparent; } + input.neoRange[type=range]:focus { + outline: none; } + input.neoRange[type=range]::-webkit-slider-runnable-track { + width: 100%; + height: 20px; + cursor: pointer; + animate: 0.2s; + border-radius: 20px; + box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow); + background: linear-gradient(90deg, #fa9e9e, #faad9e, #fabd9e, #facc9e, #fadb9e, #faeb9e, #fafa9e, #ebfa9e, #dbfa9e, #ccfa9e, #bdfa9e, #adfa9e, #9efa9e, #9efaad, #9efabd, #9efacc, #9efadb, #9efaeb, #9efafa, #9eebfa, #9edbfa, #9eccfa, #9ebdfa, #9eadfa, #9e9efa, #ad9efa, #bd9efa, #cc9efa, #db9efa, #eb9efa, #fa9efa, #fa9eeb, #fa9edb, #fa9ecc, #fa9ebd, #fa9ead, #fa9ea0) !important; } + input.neoRange[type=range]::-webkit-slider-thumb { + border: none; + height: 26px; + width: 26px; + border-radius: 20px; + box-shadow: 2px 2px 4px var(--dark-shadow), -2px -2px 4px var(--light-shadow); + background: linear-gradient(145deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)) !important; + cursor: pointer; + -webkit-appearance: none; + margin-top: -3px; } + input.neoRange[type=range]:focus::-webkit-slider-runnable-track { + background: linear-gradient(90deg, #fa9e9e, #faad9e, #fabd9e, #facc9e, #fadb9e, #faeb9e, #fafa9e, #ebfa9e, #dbfa9e, #ccfa9e, #bdfa9e, #adfa9e, #9efa9e, #9efaad, #9efabd, #9efacc, #9efadb, #9efaeb, #9efafa, #9eebfa, #9edbfa, #9eccfa, #9ebdfa, #9eadfa, #9e9efa, #ad9efa, #bd9efa, #cc9efa, #db9efa, #eb9efa, #fa9efa, #fa9eeb, #fa9edb, #fa9ecc, #fa9ebd, #fa9ead, #fa9ea0) !important; } + input.neoRange[type=range]::-moz-range-track { + width: 100%; + height: 20px; + cursor: pointer; + border-radius: 20px; + box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow); + background: linear-gradient(90deg, #fa9e9e, #faad9e, #fabd9e, #facc9e, #fadb9e, #faeb9e, #fafa9e, #ebfa9e, #dbfa9e, #ccfa9e, #bdfa9e, #adfa9e, #9efa9e, #9efaad, #9efabd, #9efacc, #9efadb, #9efaeb, #9efafa, #9eebfa, #9edbfa, #9eccfa, #9ebdfa, #9eadfa, #9e9efa, #ad9efa, #bd9efa, #cc9efa, #db9efa, #eb9efa, #fa9efa, #fa9eeb, #fa9edb, #fa9ecc, #fa9ebd, #fa9ead, #fa9ea0) !important; + border: none; } + input.neoRange[type=range]::-moz-range-thumb { + border: none; + height: 26px; + width: 26px; + border-radius: 20px; + box-shadow: 2px 2px 4px var(--dark-shadow), -2px -2px 4px var(--light-shadow); + background: linear-gradient(145deg, var(--primary-gradiend-light), var(--primary-gradiend-dark)) !important; + cursor: pointer; } + +body { + color: var(--text-color); + background-color: var(--background); } + +.background { + background-color: var(--background); } + +details > summary::-webkit-details-marker { + color: var(--text-color); } + +:focus-visible { + outline: none; } + +*, ::after, ::before { + scrollbar-color: inherit; + scrollbar-width: inherit; } + +::-webkit-scrollbar { + width: 8px; } + +::-webkit-scrollbar-button { + width: 8px; + height: 5px; } + +::-webkit-scrollbar-track { + background: transparent; + border: thin solid transparent; + box-shadow: none; + border-radius: 10px; } + +::-webkit-scrollbar-thumb { + background: var(--primary-color-dark); + border: thin solid transparent; + border-radius: 10px; } + +::-webkit-scrollbar-thumb:hover { + background: var(--primary-color-dark); } + +::-moz-selection { + /* Code for Firefox */ + color: var(--primary-color); + background: var(--primary-color-dark); } + +::selection { + color: var(--primary-color); + background: var(--primary-color-dark); } + +.flex.flex-col-reverse > div:first-child { + margin-top: 1rem; } + +.loadAnimation span { + animation-name: blink; + animation-duration: 1.4s; + animation-iteration-count: infinite; + animation-fill-mode: both; } + +.loadAnimation span:nth-child(1) { + animation-delay: .4s; } + +.loadAnimation span:nth-child(2) { + animation-delay: .3s; } + +.loadAnimation span:nth-child(3) { + animation-delay: .2s; } + +.loadAnimation span:nth-child(4) { + animation-delay: .2s; } + +.loadAnimation span:nth-child(5) { + animation-delay: .3s; } + +.loadAnimation span:nth-child(6) { + animation-delay: .4s; } + +/* ! tailwindcss v3.0.18 | MIT License | https://tailwindcss.com */ + +*, +::before, +::after{ + box-sizing:border-box; + border-width:0; + border-style:solid; + border-color:#e5e7eb; +} + +::before, +::after{ + --tw-content:''; +} + +html{ + line-height:1.5; + -webkit-text-size-adjust:100%; + -moz-tab-size:4; + -o-tab-size:4; + tab-size:4; + font-family:ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; +} + +body{ + margin:0; + line-height:inherit; +} + +hr{ + height:0; + color:inherit; + border-top-width:1px; +} + +abbr:where([title]){ + -webkit-text-decoration:underline dotted; + text-decoration:underline dotted; +} + +h1, +h2, +h3, +h4, +h5, +h6{ + font-size:inherit; + font-weight:inherit; +} + +a{ + color:inherit; + text-decoration:inherit; +} + +b, +strong{ + font-weight:bolder; +} + +code, +kbd, +samp, +pre{ + font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + font-size:1em; +} + +small{ + font-size:80%; +} + +sub, +sup{ + font-size:75%; + line-height:0; + position:relative; + vertical-align:baseline; +} + +sub{ + bottom:-0.25em; +} + +sup{ + top:-0.5em; +} + +table{ + text-indent:0; + border-color:inherit; + border-collapse:collapse; +} + +button, +input, +optgroup, +select, +textarea{ + font-family:inherit; + font-size:100%; + line-height:inherit; + color:inherit; + margin:0; + padding:0; +} + +button, +select{ + text-transform:none; +} + +button, +[type='button'], +[type='reset'], +[type='submit']{ + -webkit-appearance:button; + background-color:transparent; + background-image:none; +} + +:-moz-focusring{ + outline:auto; +} + +:-moz-ui-invalid{ + box-shadow:none; +} + +progress{ + vertical-align:baseline; +} + +::-webkit-inner-spin-button, +::-webkit-outer-spin-button{ + height:auto; +} + +[type='search']{ + -webkit-appearance:textfield; + outline-offset:-2px; +} + +::-webkit-search-decoration{ + -webkit-appearance:none; +} + +::-webkit-file-upload-button{ + -webkit-appearance:button; + font:inherit; +} + +summary{ + display:list-item; +} + +blockquote, +dl, +dd, +h1, +h2, +h3, +h4, +h5, +h6, +hr, +figure, +p, +pre{ + margin:0; +} + +fieldset{ + margin:0; + padding:0; +} + +legend{ + padding:0; +} + +ol, +ul, +menu{ + list-style:none; + margin:0; + padding:0; +} + +textarea{ + resize:vertical; +} + +input::-moz-placeholder, textarea::-moz-placeholder{ + opacity:1; + color:#9ca3af; +} + +input:-ms-input-placeholder, textarea:-ms-input-placeholder{ + opacity:1; + color:#9ca3af; +} + +input::placeholder, +textarea::placeholder{ + opacity:1; + color:#9ca3af; +} + +button, +[role="button"]{ + cursor:pointer; +} +:disabled{ + cursor:default; +} + +img, +svg, +video, +canvas, +audio, +iframe, +embed, +object{ + display:block; + vertical-align:middle; +} + +img, +video{ + max-width:100%; + height:auto; +} + +[hidden]{ + display:none; +} + +*, ::before, ::after{ + --tw-translate-x:0; + --tw-translate-y:0; + --tw-rotate:0; + --tw-skew-x:0; + --tw-skew-y:0; + --tw-scale-x:1; + --tw-scale-y:1; + --tw-pan-x: ; + --tw-pan-y: ; + --tw-pinch-zoom: ; + --tw-scroll-snap-strictness:proximity; + --tw-ordinal: ; + --tw-slashed-zero: ; + --tw-numeric-figure: ; + --tw-numeric-spacing: ; + --tw-numeric-fraction: ; + --tw-ring-inset: ; + --tw-ring-offset-width:0px; + --tw-ring-offset-color:#fff; + --tw-ring-color:rgb(59 130 246 / 0.5); + --tw-ring-offset-shadow:0 0 #0000; + --tw-ring-shadow:0 0 #0000; + --tw-shadow:0 0 #0000; + --tw-shadow-colored:0 0 #0000; + --tw-blur: ; + --tw-brightness: ; + --tw-contrast: ; + --tw-grayscale: ; + --tw-hue-rotate: ; + --tw-invert: ; + --tw-saturate: ; + --tw-sepia: ; + --tw-drop-shadow: ; + --tw-backdrop-blur: ; + --tw-backdrop-brightness: ; + --tw-backdrop-contrast: ; + --tw-backdrop-grayscale: ; + --tw-backdrop-hue-rotate: ; + --tw-backdrop-invert: ; + --tw-backdrop-opacity: ; + --tw-backdrop-saturate: ; + --tw-backdrop-sepia: ; +} +.static{ + position:static; +} +.absolute{ + position:absolute; +} +.relative{ + position:relative; +} +.right-2{ + right:0.5rem; +} +.bottom-1{ + bottom:0.25rem; +} +.top-full{ + top:100%; +} +.z-50{ + z-index:50; +} +.mx-auto{ + margin-left:auto; + margin-right:auto; +} +.my-auto{ + margin-top:auto; + margin-bottom:auto; +} +.mt-3{ + margin-top:0.75rem; +} +.mb-3{ + margin-bottom:0.75rem; +} +.mt-1{ + margin-top:0.25rem; +} +.mr-0{ + margin-right:0px; +} +.ml-5{ + margin-left:1.25rem; +} +.ml-6{ + margin-left:1.5rem; +} +.mt-2{ + margin-top:0.5rem; +} +.mb-0{ + margin-bottom:0px; +} +.ml-0{ + margin-left:0px; +} +.mt-4{ + margin-top:1rem; +} +.mt-8{ + margin-top:2rem; +} +.ml-2{ + margin-left:0.5rem; +} +.mt-0{ + margin-top:0px; +} +.block{ + display:block; +} +.flex{ + display:flex; +} +.inline-flex{ + display:inline-flex; +} +.grid{ + display:grid; +} +.hidden{ + display:none; +} +.aspect-video{ + aspect-ratio:16 / 9; +} +.h-12{ + height:3rem; +} +.h-\[30px\]{ + height:30px; +} +.h-full{ + height:100%; +} +.h-8{ + height:2rem; +} +.h-screen{ + height:100vh; +} +.h-24{ + height:6rem; +} +.max-h-\[30vh\]{ + max-height:30vh; +} +.max-h-\[50vh\]{ + max-height:50vh; +} +.max-h-8{ + max-height:2rem; +} +.max-h-24{ + max-height:6rem; +} +.w-full{ + width:100%; +} +.w-12{ + width:3rem; +} +.w-auto{ + width:auto; +} +.w-52{ + width:13rem; +} +.w-8{ + width:2rem; +} +.w-\[30px\]{ + width:30px; +} +.min-w-0{ + min-width:0px; +} +.min-w-full{ + min-width:100%; +} +.max-w-\[80\%\]{ + max-width:80%; +} +.max-w-\[6rem\]{ + max-width:6rem; +} +.max-w-xl{ + max-width:36rem; +} +.max-w-md{ + max-width:28rem; +} +.max-w-4xl{ + max-width:56rem; +} +.flex-none{ + flex:none; +} +.flex-1{ + flex:1 1 0%; +} +.shrink{ + flex-shrink:1; +} +.cursor-not-allowed{ + cursor:not-allowed; +} +.cursor-pointer{ + cursor:pointer; +} +.auto-cols-auto{ + grid-auto-columns:auto; +} +.grid-flow-col-dense{ + grid-auto-flow:column dense; +} +.grid-cols-1{ + grid-template-columns:repeat(1, minmax(0, 1fr)); +} +.grid-cols-2{ + grid-template-columns:repeat(2, minmax(0, 1fr)); +} +.grid-rows-1{ + grid-template-rows:repeat(1, minmax(0, 1fr)); +} +.flex-row{ + flex-direction:row; +} +.flex-col{ + flex-direction:column; +} +.flex-col-reverse{ + flex-direction:column-reverse; +} +.items-start{ + align-items:flex-start; +} +.items-center{ + align-items:center; +} +.justify-between{ + justify-content:space-between; +} +.gap-4{ + gap:1rem; +} +.gap-6{ + gap:1.5rem; +} +.space-y-4 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse:0; + margin-top:calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom:calc(1rem * var(--tw-space-y-reverse)); +} +.space-x-3 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse:0; + margin-right:calc(0.75rem * var(--tw-space-x-reverse)); + margin-left:calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); +} +.space-y-3 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse:0; + margin-top:calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom:calc(0.75rem * var(--tw-space-y-reverse)); +} +.space-y-1 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse:0; + margin-top:calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom:calc(0.25rem * var(--tw-space-y-reverse)); +} +.space-x-2 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse:0; + margin-right:calc(0.5rem * var(--tw-space-x-reverse)); + margin-left:calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); +} +.space-x-1 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse:0; + margin-right:calc(0.25rem * var(--tw-space-x-reverse)); + margin-left:calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); +} +.space-y-2 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse:0; + margin-top:calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom:calc(0.5rem * var(--tw-space-y-reverse)); +} +.space-x-4 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse:0; + margin-right:calc(1rem * var(--tw-space-x-reverse)); + margin-left:calc(1rem * calc(1 - var(--tw-space-x-reverse))); +} +.divide-y > :not([hidden]) ~ :not([hidden]){ + --tw-divide-y-reverse:0; + border-top-width:calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width:calc(1px * var(--tw-divide-y-reverse)); +} +.self-start{ + align-self:flex-start; +} +.self-center{ + align-self:center; +} +.overflow-visible{ + overflow:visible; +} +.overflow-y-auto{ + overflow-y:auto; +} +.truncate{ + overflow:hidden; + text-overflow:ellipsis; + white-space:nowrap; +} +.break-all{ + word-break:break-all; +} +.rounded-xl{ + border-radius:0.75rem; +} +.rounded-full{ + border-radius:9999px; +} +.rounded-lg{ + border-radius:0.5rem; +} +.\!rounded-lg{ + border-radius:0.5rem !important; +} +.rounded-md{ + border-radius:0.375rem; +} +.rounded{ + border-radius:0.25rem; +} +.rounded-l-xl{ + border-top-left-radius:0.75rem; + border-bottom-left-radius:0.75rem; +} +.rounded-t-\[1\.4rem\]{ + border-top-left-radius:1.4rem; + border-top-right-radius:1.4rem; +} +.rounded-b-lg{ + border-bottom-right-radius:0.5rem; + border-bottom-left-radius:0.5rem; +} +.rounded-b-\[1\.4rem\]{ + border-bottom-right-radius:1.4rem; + border-bottom-left-radius:1.4rem; +} +.rounded-t-lg{ + border-top-left-radius:0.5rem; + border-top-right-radius:0.5rem; +} +.border-0{ + border-width:0px; +} +.border-2{ + border-width:2px; +} +.border-b-2{ + border-bottom-width:2px; +} +.border-gray-300{ + --tw-border-opacity:1; + border-color:rgb(209 213 219 / var(--tw-border-opacity)); +} +.border-gray-200{ + --tw-border-opacity:1; + border-color:rgb(229 231 235 / var(--tw-border-opacity)); +} +.border-transparent{ + border-color:transparent; +} +.bg-gray-100{ + --tw-bg-opacity:1; + background-color:rgb(243 244 246 / var(--tw-bg-opacity)); +} +.bg-gray-200{ + --tw-bg-opacity:1; + background-color:rgb(229 231 235 / var(--tw-bg-opacity)); +} +.bg-cover{ + background-size:cover; +} +.bg-center{ + background-position:center; +} +.bg-right{ + background-position:right; +} +.bg-no-repeat{ + background-repeat:no-repeat; +} +.object-cover{ + -o-object-fit:cover; + object-fit:cover; +} +.p-3{ + padding:0.75rem; +} +.p-1{ + padding:0.25rem; +} +.p-4{ + padding:1rem; +} +.py-3{ + padding-top:0.75rem; + padding-bottom:0.75rem; +} +.px-8{ + padding-left:2rem; + padding-right:2rem; +} +.px-2{ + padding-left:0.5rem; + padding-right:0.5rem; +} +.py-1{ + padding-top:0.25rem; + padding-bottom:0.25rem; +} +.py-2{ + padding-top:0.5rem; + padding-bottom:0.5rem; +} +.px-3{ + padding-left:0.75rem; + padding-right:0.75rem; +} +.px-6{ + padding-left:1.5rem; + padding-right:1.5rem; +} +.py-12{ + padding-top:3rem; + padding-bottom:3rem; +} +.py-8{ + padding-top:2rem; + padding-bottom:2rem; +} +.px-0\.5{ + padding-left:0.125rem; + padding-right:0.125rem; +} +.px-0{ + padding-left:0px; + padding-right:0px; +} +.pl-3{ + padding-left:0.75rem; +} +.pr-3{ + padding-right:0.75rem; +} +.pt-2{ + padding-top:0.5rem; +} +.pt-3{ + padding-top:0.75rem; +} +.text-center{ + text-align:center; +} +.text-right{ + text-align:right; +} +.text-xs{ + font-size:0.75rem; + line-height:1rem; +} +.text-sm{ + font-size:0.875rem; + line-height:1.25rem; +} +.text-2xl{ + font-size:1.5rem; + line-height:2rem; +} +.text-base{ + font-size:1rem; + line-height:1.5rem; +} +.text-lg{ + font-size:1.125rem; + line-height:1.75rem; +} +.text-4xl{ + font-size:2.25rem; + line-height:2.5rem; +} +.font-bold{ + font-weight:700; +} +.text-pink-300{ + --tw-text-opacity:1; + color:rgb(249 168 212 / var(--tw-text-opacity)); +} +.text-red-400{ + --tw-text-opacity:1; + color:rgb(248 113 113 / var(--tw-text-opacity)); +} +.text-gray-900{ + --tw-text-opacity:1; + color:rgb(17 24 39 / var(--tw-text-opacity)); +} +.text-gray-600{ + --tw-text-opacity:1; + color:rgb(75 85 99 / var(--tw-text-opacity)); +} +.text-gray-700{ + --tw-text-opacity:1; + color:rgb(55 65 81 / var(--tw-text-opacity)); +} +.text-indigo-600{ + --tw-text-opacity:1; + color:rgb(79 70 229 / var(--tw-text-opacity)); +} +.text-black{ + --tw-text-opacity:1; + color:rgb(0 0 0 / var(--tw-text-opacity)); +} +.text-gray-500{ + --tw-text-opacity:1; + color:rgb(107 114 128 / var(--tw-text-opacity)); +} +.underline{ + -webkit-text-decoration-line:underline; + text-decoration-line:underline; +} +.antialiased{ + -webkit-font-smoothing:antialiased; + -moz-osx-font-smoothing:grayscale; +} +.opacity-50{ + opacity:0.5; +} +.shadow-sm{ + --tw-shadow:0 1px 2px 0 rgb(0 0 0 / 0.05); + --tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color); + box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} +.drop-shadow{ + --tw-drop-shadow:drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06)); + filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); +} +.focus\:border-indigo-300:focus{ + --tw-border-opacity:1; + border-color:rgb(165 180 252 / var(--tw-border-opacity)); +} +.focus\:border-black:focus{ + --tw-border-opacity:1; + border-color:rgb(0 0 0 / var(--tw-border-opacity)); +} +.focus\:border-gray-300:focus{ + --tw-border-opacity:1; + border-color:rgb(209 213 219 / var(--tw-border-opacity)); +} +.focus\:border-gray-500:focus{ + --tw-border-opacity:1; + border-color:rgb(107 114 128 / var(--tw-border-opacity)); +} +.focus\:border-transparent:focus{ + border-color:transparent; +} +.focus\:bg-white:focus{ + --tw-bg-opacity:1; + background-color:rgb(255 255 255 / var(--tw-bg-opacity)); +} +.focus\:bg-gray-200:focus{ + --tw-bg-opacity:1; + background-color:rgb(229 231 235 / var(--tw-bg-opacity)); +} +.focus\:ring:focus{ + --tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} +.focus\:ring-0:focus{ + --tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} +.focus\:ring-1:focus{ + --tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} +.focus\:ring-indigo-200:focus{ + --tw-ring-opacity:1; + --tw-ring-color:rgb(199 210 254 / var(--tw-ring-opacity)); +} +.focus\:ring-black:focus{ + --tw-ring-opacity:1; + --tw-ring-color:rgb(0 0 0 / var(--tw-ring-opacity)); +} +.focus\:ring-gray-500:focus{ + --tw-ring-opacity:1; + --tw-ring-color:rgb(107 114 128 / var(--tw-ring-opacity)); +} +.focus\:ring-opacity-50:focus{ + --tw-ring-opacity:0.5; +} +.focus\:ring-offset-0:focus{ + --tw-ring-offset-width:0px; +} +.focus\:ring-offset-2:focus{ + --tw-ring-offset-width:2px; +} +@media (min-width: 768px){ + + .md\:relative{ + position:relative; + } + + .md\:top-auto{ + top:auto; + } + + .md\:ml-10{ + margin-left:2.5rem; + } + + .md\:block{ + display:block; + } + + .md\:hidden{ + display:none; + } + + .md\:h-16{ + height:4rem; + } + + .md\:h-12{ + height:3rem; + } + + .md\:max-h-40{ + max-height:10rem; + } + + .md\:w-16{ + width:4rem; + } + + .md\:w-52{ + width:13rem; + } + + .md\:w-full{ + width:100%; + } + + .md\:w-12{ + width:3rem; + } + + .md\:max-w-\[12rem\]{ + max-width:12rem; + } + + .md\:max-w-4xl{ + max-width:56rem; + } + + .md\:grid-cols-2{ + grid-template-columns:repeat(2, minmax(0, 1fr)); + } + + .md\:flex-row{ + flex-direction:row; + } + + .md\:p-4{ + padding:1rem; + } + + .md\:p-2{ + padding:0.5rem; + } + + .md\:p-5{ + padding:1.25rem; + } + + .md\:p-0{ + padding:0px; + } + + .md\:py-4{ + padding-top:1rem; + padding-bottom:1rem; + } + + .md\:px-3{ + padding-left:0.75rem; + padding-right:0.75rem; + } + + .md\:py-2{ + padding-top:0.5rem; + padding-bottom:0.5rem; + } + + .md\:py-3{ + padding-top:0.75rem; + padding-bottom:0.75rem; + } + + .md\:px-4{ + padding-left:1rem; + padding-right:1rem; + } + + .md\:pl-4{ + padding-left:1rem; + } + + .md\:pr-4{ + padding-right:1rem; + } + + .md\:pl-2{ + padding-left:0.5rem; + } + + .md\:text-sm{ + font-size:0.875rem; + line-height:1.25rem; + } + + .md\:text-base{ + font-size:1rem; + line-height:1.5rem; + } + + .md\:shadow-none{ + --tw-shadow:0 0 #0000; + --tw-shadow-colored:0 0 #0000; + box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } +} +a { + text-decoration: underline; +} +a.button{ + text-decoration: none; +} \ No newline at end of file diff --git a/wwwroot/css/style.min.css.gz b/wwwroot/css/style.min.css.gz deleted file mode 100644 index 4a3e41d..0000000 Binary files a/wwwroot/css/style.min.css.gz and /dev/null differ diff --git a/wwwroot/css/tailwind-override.css b/wwwroot/css/tailwind-override.css index e69de29..9784158 100644 --- a/wwwroot/css/tailwind-override.css +++ b/wwwroot/css/tailwind-override.css @@ -0,0 +1,6 @@ +a { + text-decoration: underline; +} +a.button{ + text-decoration: none; +} \ No newline at end of file diff --git a/wwwroot/fonts/ionicons.eot b/wwwroot/fonts/ionicons.eot index 92a3f20..a0e37e2 100644 Binary files a/wwwroot/fonts/ionicons.eot and b/wwwroot/fonts/ionicons.eot differ diff --git a/wwwroot/fonts/ionicons.svg b/wwwroot/fonts/ionicons.svg index 49fc8f3..bd3fabd 100644 --- a/wwwroot/fonts/ionicons.svg +++ b/wwwroot/fonts/ionicons.svg @@ -1,2230 +1,713 @@ - - + + - + -Created by FontForge 20120731 at Thu Dec 4 09:51:48 2014 +Created by FontForge 20160407 at Thu Nov 21 14:40:23 2019 By Adam Bradley -Created by Adam Bradley with FontForge 2.0 (http://fontforge.sf.net) +Copyright (c) 2019, Adam Bradley - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + \ No newline at end of file diff --git a/wwwroot/fonts/ionicons.ttf b/wwwroot/fonts/ionicons.ttf index c4e4632..42926d2 100644 Binary files a/wwwroot/fonts/ionicons.ttf and b/wwwroot/fonts/ionicons.ttf differ diff --git a/wwwroot/fonts/ionicons.woff b/wwwroot/fonts/ionicons.woff index 5f3a14e..096517d 100644 Binary files a/wwwroot/fonts/ionicons.woff and b/wwwroot/fonts/ionicons.woff differ diff --git a/wwwroot/index.html b/wwwroot/index.html index 41bc4d1..5f35c67 100644 --- a/wwwroot/index.html +++ b/wwwroot/index.html @@ -2,28 +2,32 @@ - - - decePubClient - - - - - - - + + + Index + + + + + + -
Loading...
+
+
Loading...
+
-
- An unhandled error has occurred. - Reload - 🗙 -
- - + + + + + + + + + + diff --git a/wwwroot/main.js b/wwwroot/main.js index e69de29..8917484 100644 --- a/wwwroot/main.js +++ b/wwwroot/main.js @@ -0,0 +1,164 @@ +window.cascadingStateInstanceReference = (dotNetReference) => { + try { + window.cascadingStateInstance = dotNetReference + } catch (e) { + console.error(e) + } +} +window.logFromJs = (message, where) => { + try { + if (!window.cascadingStateInstance || + typeof window.cascadingStateInstance.invokeMethodAsync != "function") + return + window.cascadingStateInstance.invokeMethodAsync('LogFromJs', message, where) + } catch (e) { + console.error(e) + } +} +window.isServiceWorkerAvailable = () => { + try { + return navigator.serviceWorker.valueOf().controller != null + } catch (e) { + console.error(e) + window.logFromJs(e.message, "isServiceWorkerAvailable") + } +} +window.getLanguage = () => { + try { + return navigator.language.substr(0, 2) + } catch (e) { + console.error(e) + window.logFromJs(e.message, "getLanguage") + } +} +window.setLanguage = (lang) => { + try { + navigator.language = lang + } catch (e) { + console.error(e) + window.logFromJs(e.message, "setLanguage") + } +} +window.isOnline = async () => { + try { + const isOnline = navigator.onLine + //const url = "https://contents.nuvola.xyz/api/assets/6d9f5e55-2034-456f-92e7-d9ec51066443" + //let isOnlineStatusCode = true + + //try { + // const online = await fetch(url) + // isOnlineStatusCode = online.status >= 200 && online.status < 399 + //} catch (_) { + // isOnlineStatusCode = false + //} + + if (navigator.connection !== undefined && + navigator.connection.effectiveType !== undefined && + navigator.connection.type !== undefined) { + if (!isOnline) + return isOnline + + return navigator.connection.type === "cellular" ? + navigator.connection.effectiveType.indexOf("2g") === -1 /*&& isOnlineStatusCode*/ : + true + } else + return isOnline //&& isOnlineStatusCode + } catch (e) { + console.error(e) + window.logFromJs(e.message, "isOnline") + } +} +window.clearCache = async () => { + try { + const cachesNames = await caches.keys() + for (let i = 0; i < cachesNames.length; i++) + await caches.delete(cachesNames[i]) + } catch (e) { + console.error(e) + window.logFromJs(e.message, "clearCache") + } +} +window.clearLocalStorage = () => { + try { + localStorage.removeItem("PrivateCacheData") + localStorage.removeItem("AuthData") + } catch (e) { + console.error(e) + window.logFromJs(e.message, "clearLocalStorage") + } +} +window.reloadPage = () => { + try { + location.reload(true) + } catch (e) { + console.error(e) + window.logFromJs(e.message, "reloadPage") + } +} +window.getHeight = (classId) => { + try { + const elements = document.querySelectorAll(classId) + let px = 0 + if (!elements) return 0 + elements.forEach(v => px += v.offsetHeight) + return px + } catch (e) { + console.error(e) + window.logFromJs(e.message, "getHeight") + } +} +window.setAppBadge = (counter) => { + try { + navigator.setAppBadge(counter) + } catch (e) { + console.error(e) + window.logFromJs(e.message, "setAppBadge") + } +} +window.clearAppBadge = () => { + try { + navigator.clearAppBadge() + } catch (e) { + console.error(e) + window.logFromJs(e.message, "clearAppBadge") + } +} +window.isMobileMedia = () => { + try { + return ((window.innerWidth > 0) ? window.innerWidth : screen.width) <= 768 + } catch (e) { + console.error(e) + window.logFromJs(e.message, "isMobileMedia") + } +} +window.canShareStuff = () => { + try { + return navigator.share !== undefined + } catch (e) { + console.error(e) + window.logFromJs(e.message, "canShareStuff") + } +} +window.shareTextUrl = (title, text, url) => { + try { + navigator.share({ + title: title, + text: text, + url: url + }) + } catch (e) { + console.error(e) + window.logFromJs(e.message, "shareTextUrl") + } +} +window.shareText = (title, text) => { + try { + navigator.share({ + title: title, + text: text + }) + } catch (e) { + console.error(e) + window.logFromJs(e.message, "shareText") + } +} \ No newline at end of file diff --git a/wwwroot/manifest.json b/wwwroot/manifest.json index d33437d..506dd5c 100644 --- a/wwwroot/manifest.json +++ b/wwwroot/manifest.json @@ -1,21 +1,42 @@ { "name": "decePubClient", "short_name": "decePubClient", + "description": "Dece this pub", + "dir": "ltr", "start_url": "./", + "scope": "/", + "id": "/", "display": "standalone", - "background_color": "#ffffff", - "theme_color": "#03173d", + "background_color": "#FADCC7", + "theme_color": "#FADCC7", "prefer_related_applications": false, "icons": [ { - "src": "icon-512.png", + "src": "/imgs/icon-512.png", "type": "image/png", "sizes": "512x512" }, { - "src": "icon-192.png", + "src": "/imgs/icon-192.png", "type": "image/png", "sizes": "192x192" } - ] + ], + "categories": [ + "fediverse", + "government", + "social", + "threads", + "discussions", + "communication" + ], + "screenshots": [ + { + "src": "/imgs/icon-512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "shortcuts": [], + "version": "0.1" } diff --git a/wwwroot/sample-data/weather.json b/wwwroot/sample-data/weather.json deleted file mode 100644 index 06463c0..0000000 --- a/wwwroot/sample-data/weather.json +++ /dev/null @@ -1,27 +0,0 @@ -[ - { - "date": "2018-05-06", - "temperatureC": 1, - "summary": "Freezing" - }, - { - "date": "2018-05-07", - "temperatureC": 14, - "summary": "Bracing" - }, - { - "date": "2018-05-08", - "temperatureC": -13, - "summary": "Freezing" - }, - { - "date": "2018-05-09", - "temperatureC": -16, - "summary": "Balmy" - }, - { - "date": "2018-05-10", - "temperatureC": -2, - "summary": "Chilly" - } -] diff --git a/wwwroot/vendor/bulma.css b/wwwroot/vendor/bulma.css index 35238eb..92751a0 100644 --- a/wwwroot/vendor/bulma.css +++ b/wwwroot/vendor/bulma.css @@ -1,5 +1,3 @@ -/*! bulma.io v0.9.3 | MIT License | github.com/jgthms/bulma */ -/* Bulma Utilities */ .button, .input, .textarea, .select select, .file-cta, .file-name, .pagination-previous, .pagination-next, @@ -8,9 +6,7 @@ -moz-appearance: none; -webkit-appearance: none; align-items: center; - border: 1px solid transparent; border-radius: 4px; - box-shadow: none; display: inline-flex; font-size: 1rem; height: 2.5em; @@ -92,7 +88,7 @@ fieldset[disabled] .pagination-ellipsis { } .box:not(:last-child), .content:not(:last-child), .notification:not(:last-child), .progress:not(:last-child), .table:not(:last-child), .table-container:not(:last-child), .title:not(:last-child), -.subtitle:not(:last-child), .block:not(:last-child), .breadcrumb:not(:last-child), .level:not(:last-child), .message:not(:last-child), .pagination:not(:last-child), .tabs:not(:last-child) { +.subtitle:not(:last-child), .breadcrumb:not(:last-child), .level:not(:last-child), .message:not(:last-child), .pagination:not(:last-child), .tabs:not(:last-child) { margin-bottom: 1.5rem; } @@ -171,15 +167,6 @@ fieldset[disabled] .pagination-ellipsis { width: 24px; } -.is-large.delete, .is-large.modal-close { - height: 32px; - max-height: 32px; - max-width: 32px; - min-height: 32px; - min-width: 32px; - width: 32px; -} - .button.is-loading::after, .loader, .select.is-loading::after, .control.is-loading::after { -webkit-animation: spinAround 500ms infinite linear; animation: spinAround 500ms infinite linear; @@ -194,263 +181,6 @@ fieldset[disabled] .pagination-ellipsis { width: 1em; } -.image.is-square img, -.image.is-square .has-ratio, .image.is-1by1 img, -.image.is-1by1 .has-ratio, .image.is-5by4 img, -.image.is-5by4 .has-ratio, .image.is-4by3 img, -.image.is-4by3 .has-ratio, .image.is-3by2 img, -.image.is-3by2 .has-ratio, .image.is-5by3 img, -.image.is-5by3 .has-ratio, .image.is-16by9 img, -.image.is-16by9 .has-ratio, .image.is-2by1 img, -.image.is-2by1 .has-ratio, .image.is-3by1 img, -.image.is-3by1 .has-ratio, .image.is-4by5 img, -.image.is-4by5 .has-ratio, .image.is-3by4 img, -.image.is-3by4 .has-ratio, .image.is-2by3 img, -.image.is-2by3 .has-ratio, .image.is-3by5 img, -.image.is-3by5 .has-ratio, .image.is-9by16 img, -.image.is-9by16 .has-ratio, .image.is-1by2 img, -.image.is-1by2 .has-ratio, .image.is-1by3 img, -.image.is-1by3 .has-ratio, .modal, .modal-background, .is-overlay, .hero-video { - bottom: 0; - left: 0; - position: absolute; - right: 0; - top: 0; -} - -.navbar-burger { - -moz-appearance: none; - -webkit-appearance: none; - appearance: none; - background: none; - border: none; - color: currentColor; - font-family: inherit; - font-size: 1em; - margin: 0; - padding: 0; -} - -/* Bulma Base */ -/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */ -html, -body, -p, -ol, -ul, -li, -dl, -dt, -dd, -blockquote, -figure, -fieldset, -legend, -textarea, -pre, -iframe, -hr, -h1, -h2, -h3, -h4, -h5, -h6 { - margin: 0; - padding: 0; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - font-size: 100%; - font-weight: normal; -} - -ul { - list-style: none; -} - -button, -input, -select, -textarea { - margin: 0; -} - -html { - box-sizing: border-box; -} - -*, *::before, *::after { - box-sizing: inherit; -} - -img, -video { - height: auto; - max-width: 100%; -} - -iframe { - border: 0; -} - -table { - border-collapse: collapse; - border-spacing: 0; -} - -td, -th { - padding: 0; -} - -td:not([align]), -th:not([align]) { - text-align: inherit; -} - -html { - background-color: white; - font-size: 16px; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - min-width: 300px; - overflow-x: hidden; - overflow-y: scroll; - text-rendering: optimizeLegibility; - -webkit-text-size-adjust: 100%; - -moz-text-size-adjust: 100%; - text-size-adjust: 100%; -} - -article, -aside, -figure, -footer, -header, -hgroup, -section { - display: block; -} - -body, -button, -input, -optgroup, -select, -textarea { - font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif; -} - -code, -pre { - -moz-osx-font-smoothing: auto; - -webkit-font-smoothing: auto; - font-family: monospace; -} - -body { - color: #4a4a4a; - font-size: 1em; - font-weight: 400; - line-height: 1.5; -} - -a { - color: #485fc7; - cursor: pointer; - text-decoration: none; -} - -a strong { - color: currentColor; -} - -a:hover { - color: #363636; -} - -code { - background-color: whitesmoke; - color: #da1039; - font-size: 0.875em; - font-weight: normal; - padding: 0.25em 0.5em 0.25em; -} - -hr { - background-color: whitesmoke; - border: none; - display: block; - height: 2px; - margin: 1.5rem 0; -} - -img { - height: auto; - max-width: 100%; -} - -input[type="checkbox"], -input[type="radio"] { - vertical-align: baseline; -} - -small { - font-size: 0.875em; -} - -span { - font-style: inherit; - font-weight: inherit; -} - -strong { - color: #363636; - font-weight: 700; -} - -fieldset { - border: none; -} - -pre { - -webkit-overflow-scrolling: touch; - background-color: whitesmoke; - color: #4a4a4a; - font-size: 0.875em; - overflow-x: auto; - padding: 1.25rem 1.5rem; - white-space: pre; - word-wrap: normal; -} - -pre code { - background-color: transparent; - color: currentColor; - font-size: 1em; - padding: 0; -} - -table td, -table th { - vertical-align: top; -} - -table td:not([align]), -table th:not([align]) { - text-align: inherit; -} - -table th { - color: #363636; -} - @-webkit-keyframes spinAround { from { transform: rotate(0deg); @@ -469,29 +199,8 @@ table th { } } -/* Bulma Elements */ -.box { - background-color: white; - border-radius: 6px; - box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02); - color: #4a4a4a; - display: block; - padding: 1.25rem; -} - -a.box:hover, a.box:focus { - box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0 0 1px #485fc7; -} - -a.box:active { - box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2), 0 0 0 1px #485fc7; -} - .button { - background-color: white; - border-color: #dbdbdb; - border-width: 1px; - color: #363636; + color: var(--text-color); cursor: pointer; justify-content: center; padding-bottom: calc(0.5em - 1px); @@ -526,25 +235,6 @@ a.box:active { margin-right: calc(-0.5em - 1px); } -.button:hover, .button.is-hovered { - border-color: #b5b5b5; - color: #363636; -} - -.button:focus, .button.is-focused { - border-color: #485fc7; - color: #363636; -} - -.button:focus:not(:active), .button.is-focused:not(:active) { - box-shadow: 0 0 0 0.125em rgba(72, 95, 199, 0.25); -} - -.button:active, .button.is-active { - border-color: #4a4a4a; - color: #363636; -} - .button.is-text { background-color: transparent; border-color: transparent; @@ -1802,349 +1492,6 @@ fieldset[disabled] .button { padding-right: calc(1em + 0.25em); } -.buttons { - align-items: center; - display: flex; - flex-wrap: wrap; - justify-content: flex-start; -} - -.buttons .button { - margin-bottom: 0.5rem; -} - -.buttons .button:not(:last-child):not(.is-fullwidth) { - margin-right: 0.5rem; -} - -.buttons:last-child { - margin-bottom: -0.5rem; -} - -.buttons:not(:last-child) { - margin-bottom: 1rem; -} - -.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large) { - font-size: 0.75rem; -} - -.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large):not(.is-rounded) { - border-radius: 2px; -} - -.buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large) { - font-size: 1.25rem; -} - -.buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium) { - font-size: 1.5rem; -} - -.buttons.has-addons .button:not(:first-child) { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} - -.buttons.has-addons .button:not(:last-child) { - border-bottom-right-radius: 0; - border-top-right-radius: 0; - margin-right: -1px; -} - -.buttons.has-addons .button:last-child { - margin-right: 0; -} - -.buttons.has-addons .button:hover, .buttons.has-addons .button.is-hovered { - z-index: 2; -} - -.buttons.has-addons .button:focus, .buttons.has-addons .button.is-focused, .buttons.has-addons .button:active, .buttons.has-addons .button.is-active, .buttons.has-addons .button.is-selected { - z-index: 3; -} - -.buttons.has-addons .button:focus:hover, .buttons.has-addons .button.is-focused:hover, .buttons.has-addons .button:active:hover, .buttons.has-addons .button.is-active:hover, .buttons.has-addons .button.is-selected:hover { - z-index: 4; -} - -.buttons.has-addons .button.is-expanded { - flex-grow: 1; - flex-shrink: 1; -} - -.buttons.is-centered { - justify-content: center; -} - -.buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth) { - margin-left: 0.25rem; - margin-right: 0.25rem; -} - -.buttons.is-right { - justify-content: flex-end; -} - -.buttons.is-right:not(.has-addons) .button:not(.is-fullwidth) { - margin-left: 0.25rem; - margin-right: 0.25rem; -} - -.container { - flex-grow: 1; - margin: 0 auto; - position: relative; - width: auto; -} - -.container.is-fluid { - max-width: none !important; - padding-left: 32px; - padding-right: 32px; - width: 100%; -} - -@media screen and (min-width: 1024px) { - .container { - max-width: 960px; - } -} - -@media screen and (max-width: 1215px) { - .container.is-widescreen:not(.is-max-desktop) { - max-width: 1152px; - } -} - -@media screen and (max-width: 1407px) { - .container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen) { - max-width: 1344px; - } -} - -@media screen and (min-width: 1216px) { - .container:not(.is-max-desktop) { - max-width: 1152px; - } -} - -@media screen and (min-width: 1408px) { - .container:not(.is-max-desktop):not(.is-max-widescreen) { - max-width: 1344px; - } -} - -.content li + li { - margin-top: 0.25em; -} - -.content p:not(:last-child), -.content dl:not(:last-child), -.content ol:not(:last-child), -.content ul:not(:last-child), -.content blockquote:not(:last-child), -.content pre:not(:last-child), -.content table:not(:last-child) { - margin-bottom: 1em; -} - -.content h1, -.content h2, -.content h3, -.content h4, -.content h5, -.content h6 { - color: #363636; - font-weight: 600; - line-height: 1.125; -} - -.content h1 { - font-size: 2em; - margin-bottom: 0.5em; -} - -.content h1:not(:first-child) { - margin-top: 1em; -} - -.content h2 { - font-size: 1.75em; - margin-bottom: 0.5714em; -} - -.content h2:not(:first-child) { - margin-top: 1.1428em; -} - -.content h3 { - font-size: 1.5em; - margin-bottom: 0.6666em; -} - -.content h3:not(:first-child) { - margin-top: 1.3333em; -} - -.content h4 { - font-size: 1.25em; - margin-bottom: 0.8em; -} - -.content h5 { - font-size: 1.125em; - margin-bottom: 0.8888em; -} - -.content h6 { - font-size: 1em; - margin-bottom: 1em; -} - -.content blockquote { - background-color: whitesmoke; - border-left: 5px solid #dbdbdb; - padding: 1.25em 1.5em; -} - -.content ol { - list-style-position: outside; - margin-left: 2em; - margin-top: 1em; -} - -.content ol:not([type]) { - list-style-type: decimal; -} - -.content ol:not([type]).is-lower-alpha { - list-style-type: lower-alpha; -} - -.content ol:not([type]).is-lower-roman { - list-style-type: lower-roman; -} - -.content ol:not([type]).is-upper-alpha { - list-style-type: upper-alpha; -} - -.content ol:not([type]).is-upper-roman { - list-style-type: upper-roman; -} - -.content ul { - list-style: disc outside; - margin-left: 2em; - margin-top: 1em; -} - -.content ul ul { - list-style-type: circle; - margin-top: 0.5em; -} - -.content ul ul ul { - list-style-type: square; -} - -.content dd { - margin-left: 2em; -} - -.content figure { - margin-left: 2em; - margin-right: 2em; - text-align: center; -} - -.content figure:not(:first-child) { - margin-top: 2em; -} - -.content figure:not(:last-child) { - margin-bottom: 2em; -} - -.content figure img { - display: inline-block; -} - -.content figure figcaption { - font-style: italic; -} - -.content pre { - -webkit-overflow-scrolling: touch; - overflow-x: auto; - padding: 1.25em 1.5em; - white-space: pre; - word-wrap: normal; -} - -.content sup, -.content sub { - font-size: 75%; -} - -.content table { - width: 100%; -} - -.content table td, -.content table th { - border: 1px solid #dbdbdb; - border-width: 0 0 1px; - padding: 0.5em 0.75em; - vertical-align: top; -} - -.content table th { - color: #363636; -} - -.content table th:not([align]) { - text-align: inherit; -} - -.content table thead td, -.content table thead th { - border-width: 0 0 2px; - color: #363636; -} - -.content table tfoot td, -.content table tfoot th { - border-width: 2px 0 0; - color: #363636; -} - -.content table tbody tr:last-child td, -.content table tbody tr:last-child th { - border-bottom-width: 0; -} - -.content .tabs li + li { - margin-top: 0; -} - -.content.is-small { - font-size: 0.75rem; -} - -.content.is-normal { - font-size: 1rem; -} - -.content.is-medium { - font-size: 1.25rem; -} - -.content.is-large { - font-size: 1.5rem; -} - .icon { align-items: center; display: inline-flex; @@ -2194,258 +1541,6 @@ div.icon-text { display: flex; } -.image { - display: block; - position: relative; -} - -.image img { - display: block; - height: auto; - width: 100%; -} - -.image img.is-rounded { - border-radius: 9999px; -} - -.image.is-fullwidth { - width: 100%; -} - -.image.is-square img, -.image.is-square .has-ratio, .image.is-1by1 img, -.image.is-1by1 .has-ratio, .image.is-5by4 img, -.image.is-5by4 .has-ratio, .image.is-4by3 img, -.image.is-4by3 .has-ratio, .image.is-3by2 img, -.image.is-3by2 .has-ratio, .image.is-5by3 img, -.image.is-5by3 .has-ratio, .image.is-16by9 img, -.image.is-16by9 .has-ratio, .image.is-2by1 img, -.image.is-2by1 .has-ratio, .image.is-3by1 img, -.image.is-3by1 .has-ratio, .image.is-4by5 img, -.image.is-4by5 .has-ratio, .image.is-3by4 img, -.image.is-3by4 .has-ratio, .image.is-2by3 img, -.image.is-2by3 .has-ratio, .image.is-3by5 img, -.image.is-3by5 .has-ratio, .image.is-9by16 img, -.image.is-9by16 .has-ratio, .image.is-1by2 img, -.image.is-1by2 .has-ratio, .image.is-1by3 img, -.image.is-1by3 .has-ratio { - height: 100%; - width: 100%; -} - -.image.is-square, .image.is-1by1 { - padding-top: 100%; -} - -.image.is-5by4 { - padding-top: 80%; -} - -.image.is-4by3 { - padding-top: 75%; -} - -.image.is-3by2 { - padding-top: 66.6666%; -} - -.image.is-5by3 { - padding-top: 60%; -} - -.image.is-16by9 { - padding-top: 56.25%; -} - -.image.is-2by1 { - padding-top: 50%; -} - -.image.is-3by1 { - padding-top: 33.3333%; -} - -.image.is-4by5 { - padding-top: 125%; -} - -.image.is-3by4 { - padding-top: 133.3333%; -} - -.image.is-2by3 { - padding-top: 150%; -} - -.image.is-3by5 { - padding-top: 166.6666%; -} - -.image.is-9by16 { - padding-top: 177.7777%; -} - -.image.is-1by2 { - padding-top: 200%; -} - -.image.is-1by3 { - padding-top: 300%; -} - -.image.is-16x16 { - height: 16px; - width: 16px; -} - -.image.is-24x24 { - height: 24px; - width: 24px; -} - -.image.is-32x32 { - height: 32px; - width: 32px; -} - -.image.is-48x48 { - height: 48px; - width: 48px; -} - -.image.is-64x64 { - height: 64px; - width: 64px; -} - -.image.is-96x96 { - height: 96px; - width: 96px; -} - -.image.is-128x128 { - height: 128px; - width: 128px; -} - -.notification { - background-color: whitesmoke; - border-radius: 4px; - position: relative; - padding: 1.25rem 2.5rem 1.25rem 1.5rem; -} - -.notification a:not(.button):not(.dropdown-item) { - color: currentColor; - text-decoration: underline; -} - -.notification strong { - color: currentColor; -} - -.notification code, -.notification pre { - background: white; -} - -.notification pre code { - background: transparent; -} - -.notification > .delete { - right: 0.5rem; - position: absolute; - top: 0.5rem; -} - -.notification .title, -.notification .subtitle, -.notification .content { - color: currentColor; -} - -.notification.is-white { - background-color: white; - color: #0a0a0a; -} - -.notification.is-black { - background-color: #0a0a0a; - color: white; -} - -.notification.is-light { - background-color: whitesmoke; - color: rgba(0, 0, 0, 0.7); -} - -.notification.is-dark { - background-color: #363636; - color: #fff; -} - -.notification.is-primary { - background-color: #00d1b2; - color: #fff; -} - -.notification.is-primary.is-light { - background-color: #ebfffc; - color: #00947e; -} - -.notification.is-link { - background-color: #485fc7; - color: #fff; -} - -.notification.is-link.is-light { - background-color: #eff1fa; - color: #3850b7; -} - -.notification.is-info { - background-color: #3e8ed0; - color: #fff; -} - -.notification.is-info.is-light { - background-color: #eff5fb; - color: #296fa8; -} - -.notification.is-success { - background-color: #48c78e; - color: #fff; -} - -.notification.is-success.is-light { - background-color: #effaf5; - color: #257953; -} - -.notification.is-warning { - background-color: #ffe08a; - color: rgba(0, 0, 0, 0.7); -} - -.notification.is-warning.is-light { - background-color: #fffaeb; - color: #946c00; -} - -.notification.is-danger { - background-color: #f14668; - color: #fff; -} - -.notification.is-danger.is-light { - background-color: #feecf0; - color: #cc0f35; -} - .progress { -moz-appearance: none; -webkit-appearance: none; @@ -2693,208 +1788,6 @@ div.icon-text { } } -.table { - background-color: white; - color: #363636; -} - -.table td, -.table th { - border: 1px solid #dbdbdb; - border-width: 0 0 1px; - padding: 0.5em 0.75em; - vertical-align: top; -} - -.table td.is-white, -.table th.is-white { - background-color: white; - border-color: white; - color: #0a0a0a; -} - -.table td.is-black, -.table th.is-black { - background-color: #0a0a0a; - border-color: #0a0a0a; - color: white; -} - -.table td.is-light, -.table th.is-light { - background-color: whitesmoke; - border-color: whitesmoke; - color: rgba(0, 0, 0, 0.7); -} - -.table td.is-dark, -.table th.is-dark { - background-color: #363636; - border-color: #363636; - color: #fff; -} - -.table td.is-primary, -.table th.is-primary { - background-color: #00d1b2; - border-color: #00d1b2; - color: #fff; -} - -.table td.is-link, -.table th.is-link { - background-color: #485fc7; - border-color: #485fc7; - color: #fff; -} - -.table td.is-info, -.table th.is-info { - background-color: #3e8ed0; - border-color: #3e8ed0; - color: #fff; -} - -.table td.is-success, -.table th.is-success { - background-color: #48c78e; - border-color: #48c78e; - color: #fff; -} - -.table td.is-warning, -.table th.is-warning { - background-color: #ffe08a; - border-color: #ffe08a; - color: rgba(0, 0, 0, 0.7); -} - -.table td.is-danger, -.table th.is-danger { - background-color: #f14668; - border-color: #f14668; - color: #fff; -} - -.table td.is-narrow, -.table th.is-narrow { - white-space: nowrap; - width: 1%; -} - -.table td.is-selected, -.table th.is-selected { - background-color: #00d1b2; - color: #fff; -} - -.table td.is-selected a, -.table td.is-selected strong, -.table th.is-selected a, -.table th.is-selected strong { - color: currentColor; -} - -.table td.is-vcentered, -.table th.is-vcentered { - vertical-align: middle; -} - -.table th { - color: #363636; -} - -.table th:not([align]) { - text-align: inherit; -} - -.table tr.is-selected { - background-color: #00d1b2; - color: #fff; -} - -.table tr.is-selected a, -.table tr.is-selected strong { - color: currentColor; -} - -.table tr.is-selected td, -.table tr.is-selected th { - border-color: #fff; - color: currentColor; -} - -.table thead { - background-color: transparent; -} - -.table thead td, -.table thead th { - border-width: 0 0 2px; - color: #363636; -} - -.table tfoot { - background-color: transparent; -} - -.table tfoot td, -.table tfoot th { - border-width: 2px 0 0; - color: #363636; -} - -.table tbody { - background-color: transparent; -} - -.table tbody tr:last-child td, -.table tbody tr:last-child th { - border-bottom-width: 0; -} - -.table.is-bordered td, -.table.is-bordered th { - border-width: 1px; -} - -.table.is-bordered tr:last-child td, -.table.is-bordered tr:last-child th { - border-bottom-width: 1px; -} - -.table.is-fullwidth { - width: 100%; -} - -.table.is-hoverable tbody tr:not(.is-selected):hover { - background-color: #fafafa; -} - -.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover { - background-color: #fafafa; -} - -.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even) { - background-color: whitesmoke; -} - -.table.is-narrow td, -.table.is-narrow th { - padding: 0.25em 0.5em; -} - -.table.is-striped tbody tr:not(.is-selected):nth-child(even) { - background-color: #fafafa; -} - -.table-container { - -webkit-overflow-scrolling: touch; - overflow: auto; - overflow-y: hidden; - max-width: 100%; -} - .tags { align-items: center; display: flex; @@ -3133,129 +2026,6 @@ a.tag:hover { text-decoration: underline; } -.title, -.subtitle { - word-break: break-word; -} - -.title em, -.title span, -.subtitle em, -.subtitle span { - font-weight: inherit; -} - -.title sub, -.subtitle sub { - font-size: 0.75em; -} - -.title sup, -.subtitle sup { - font-size: 0.75em; -} - -.title .tag, -.subtitle .tag { - vertical-align: middle; -} - -.title { - color: #363636; - font-size: 2rem; - font-weight: 600; - line-height: 1.125; -} - -.title strong { - color: inherit; - font-weight: inherit; -} - -.title:not(.is-spaced) + .subtitle { - margin-top: -1.25rem; -} - -.title.is-1 { - font-size: 3rem; -} - -.title.is-2 { - font-size: 2.5rem; -} - -.title.is-3 { - font-size: 2rem; -} - -.title.is-4 { - font-size: 1.5rem; -} - -.title.is-5 { - font-size: 1.25rem; -} - -.title.is-6 { - font-size: 1rem; -} - -.title.is-7 { - font-size: 0.75rem; -} - -.subtitle { - color: #4a4a4a; - font-size: 1.25rem; - font-weight: 400; - line-height: 1.25; -} - -.subtitle strong { - color: #363636; - font-weight: 600; -} - -.subtitle:not(.is-spaced) + .title { - margin-top: -1.25rem; -} - -.subtitle.is-1 { - font-size: 3rem; -} - -.subtitle.is-2 { - font-size: 2.5rem; -} - -.subtitle.is-3 { - font-size: 2rem; -} - -.subtitle.is-4 { - font-size: 1.5rem; -} - -.subtitle.is-5 { - font-size: 1.25rem; -} - -.subtitle.is-6 { - font-size: 1rem; -} - -.subtitle.is-7 { - font-size: 0.75rem; -} - -.heading { - display: block; - font-size: 11px; - letter-spacing: 1px; - margin-bottom: 5px; - text-transform: uppercase; -} - .number { align-items: center; background-color: whitesmoke; @@ -3271,37 +2041,20 @@ a.tag:hover { vertical-align: top; } -/* Bulma Form */ -.input, .textarea, .select select { - background-color: white; - border-color: #dbdbdb; - border-radius: 4px; - color: #363636; -} - .input::-moz-placeholder, .textarea::-moz-placeholder, .select select::-moz-placeholder { - color: rgba(54, 54, 54, 0.3); + color: var(--placeholder-text-color); } .input::-webkit-input-placeholder, .textarea::-webkit-input-placeholder, .select select::-webkit-input-placeholder { - color: rgba(54, 54, 54, 0.3); + color: var(--placeholder-text-color); } .input:-moz-placeholder, .textarea:-moz-placeholder, .select select:-moz-placeholder { - color: rgba(54, 54, 54, 0.3); + color: var(--placeholder-text-color); } .input:-ms-input-placeholder, .textarea:-ms-input-placeholder, .select select:-ms-input-placeholder { - color: rgba(54, 54, 54, 0.3); -} - -.input:hover, .textarea:hover, .select select:hover, .is-hovered.input, .is-hovered.textarea, .select select.is-hovered { - border-color: #b5b5b5; -} - -.input:focus, .textarea:focus, .select select:focus, .is-focused.input, .is-focused.textarea, .select select.is-focused, .input:active, .textarea:active, .select select:active, .is-active.input, .is-active.textarea, .select select.is-active { - border-color: #485fc7; - box-shadow: 0 0 0 0.125em rgba(72, 95, 199, 0.25); + color: var(--placeholder-text-color); } .input[disabled], .textarea[disabled], .select select[disabled], @@ -3535,7 +2288,7 @@ fieldset[disabled] .radio, } .select:not(.is-multiple):not(.is-loading)::after { - border-color: #485fc7; + border-color: var(--text-color); right: 1.125em; z-index: 4; } @@ -3576,7 +2329,7 @@ fieldset[disabled] .select select:hover { } .select:not(.is-multiple):not(.is-loading):hover::after { - border-color: #363636; + border-color: var(--placeholder-text-color); } .select.is-white:not(:hover)::after { @@ -4153,20 +2906,10 @@ fieldset[disabled] .select select:hover { position: relative; } -.file-label:hover .file-cta { - background-color: #eeeeee; - color: #363636; -} - .file-label:hover .file-name { border-color: #d5d5d5; } -.file-label:active .file-cta { - background-color: #e8e8e8; - color: #363636; -} - .file-label:active .file-name { border-color: #cfcfcf; } @@ -4191,11 +2934,6 @@ fieldset[disabled] .select select:hover { white-space: nowrap; } -.file-cta { - background-color: whitesmoke; - color: #4a4a4a; -} - .file-name { border-color: #dbdbdb; border-style: solid; @@ -4514,7 +3252,6 @@ fieldset[disabled] .select select:hover { } .control.has-icons-left .icon, .control.has-icons-right .icon { - color: #dbdbdb; height: 2.5em; pointer-events: none; position: absolute; @@ -4560,200 +3297,6 @@ fieldset[disabled] .select select:hover { font-size: 1.5rem; } -/* Bulma Components */ -.breadcrumb { - font-size: 1rem; - white-space: nowrap; -} - -.breadcrumb a { - align-items: center; - color: #485fc7; - display: flex; - justify-content: center; - padding: 0 0.75em; -} - -.breadcrumb a:hover { - color: #363636; -} - -.breadcrumb li { - align-items: center; - display: flex; -} - -.breadcrumb li:first-child a { - padding-left: 0; -} - -.breadcrumb li.is-active a { - color: #363636; - cursor: default; - pointer-events: none; -} - -.breadcrumb li + li::before { - color: #b5b5b5; - content: "\0002f"; -} - -.breadcrumb ul, -.breadcrumb ol { - align-items: flex-start; - display: flex; - flex-wrap: wrap; - justify-content: flex-start; -} - -.breadcrumb .icon:first-child { - margin-right: 0.5em; -} - -.breadcrumb .icon:last-child { - margin-left: 0.5em; -} - -.breadcrumb.is-centered ol, -.breadcrumb.is-centered ul { - justify-content: center; -} - -.breadcrumb.is-right ol, -.breadcrumb.is-right ul { - justify-content: flex-end; -} - -.breadcrumb.is-small { - font-size: 0.75rem; -} - -.breadcrumb.is-medium { - font-size: 1.25rem; -} - -.breadcrumb.is-large { - font-size: 1.5rem; -} - -.breadcrumb.has-arrow-separator li + li::before { - content: "\02192"; -} - -.breadcrumb.has-bullet-separator li + li::before { - content: "\02022"; -} - -.breadcrumb.has-dot-separator li + li::before { - content: "\000b7"; -} - -.breadcrumb.has-succeeds-separator li + li::before { - content: "\0227B"; -} - -.card { - background-color: white; - border-radius: 0.25rem; - box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02); - color: #4a4a4a; - max-width: 100%; - position: relative; -} - -.card-header:first-child, .card-content:first-child, .card-footer:first-child { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; -} - -.card-header:last-child, .card-content:last-child, .card-footer:last-child { - border-bottom-left-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; -} - -.card-header { - background-color: transparent; - align-items: stretch; - box-shadow: 0 0.125em 0.25em rgba(10, 10, 10, 0.1); - display: flex; -} - -.card-header-title { - align-items: center; - color: #363636; - display: flex; - flex-grow: 1; - font-weight: 700; - padding: 0.75rem 1rem; -} - -.card-header-title.is-centered { - justify-content: center; -} - -.card-header-icon { - -moz-appearance: none; - -webkit-appearance: none; - appearance: none; - background: none; - border: none; - color: currentColor; - font-family: inherit; - font-size: 1em; - margin: 0; - padding: 0; - align-items: center; - cursor: pointer; - display: flex; - justify-content: center; - padding: 0.75rem 1rem; -} - -.card-image { - display: block; - position: relative; -} - -.card-image:first-child img { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; -} - -.card-image:last-child img { - border-bottom-left-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; -} - -.card-content { - background-color: transparent; - padding: 1.5rem; -} - -.card-footer { - background-color: transparent; - border-top: 1px solid #ededed; - align-items: stretch; - display: flex; -} - -.card-footer-item { - align-items: center; - display: flex; - flex-basis: 0; - flex-grow: 1; - flex-shrink: 0; - justify-content: center; - padding: 0.75rem; -} - -.card-footer-item:not(:last-child) { - border-right: 1px solid #ededed; -} - -.card .media:not(:last-child) { - margin-bottom: 1.5rem; -} - .dropdown { display: inline-flex; position: relative; @@ -4831,450 +3374,6 @@ button.dropdown-item.is-active { margin: 0.5rem 0; } -.level { - align-items: center; - justify-content: space-between; -} - -.level code { - border-radius: 4px; -} - -.level img { - display: inline-block; - vertical-align: top; -} - -.level.is-mobile { - display: flex; -} - -.level.is-mobile .level-left, -.level.is-mobile .level-right { - display: flex; -} - -.level.is-mobile .level-left + .level-right { - margin-top: 0; -} - -.level.is-mobile .level-item:not(:last-child) { - margin-bottom: 0; - margin-right: 0.75rem; -} - -.level.is-mobile .level-item:not(.is-narrow) { - flex-grow: 1; -} - -@media screen and (min-width: 769px), print { - .level { - display: flex; - } - .level > .level-item:not(.is-narrow) { - flex-grow: 1; - } -} - -.level-item { - align-items: center; - display: flex; - flex-basis: auto; - flex-grow: 0; - flex-shrink: 0; - justify-content: center; -} - -.level-item .title, -.level-item .subtitle { - margin-bottom: 0; -} - -@media screen and (max-width: 768px) { - .level-item:not(:last-child) { - margin-bottom: 0.75rem; - } -} - -.level-left, -.level-right { - flex-basis: auto; - flex-grow: 0; - flex-shrink: 0; -} - -.level-left .level-item.is-flexible, -.level-right .level-item.is-flexible { - flex-grow: 1; -} - -@media screen and (min-width: 769px), print { - .level-left .level-item:not(:last-child), - .level-right .level-item:not(:last-child) { - margin-right: 0.75rem; - } -} - -.level-left { - align-items: center; - justify-content: flex-start; -} - -@media screen and (max-width: 768px) { - .level-left + .level-right { - margin-top: 1.5rem; - } -} - -@media screen and (min-width: 769px), print { - .level-left { - display: flex; - } -} - -.level-right { - align-items: center; - justify-content: flex-end; -} - -@media screen and (min-width: 769px), print { - .level-right { - display: flex; - } -} - -.media { - align-items: flex-start; - display: flex; - text-align: inherit; -} - -.media .content:not(:last-child) { - margin-bottom: 0.75rem; -} - -.media .media { - border-top: 1px solid rgba(219, 219, 219, 0.5); - display: flex; - padding-top: 0.75rem; -} - -.media .media .content:not(:last-child), -.media .media .control:not(:last-child) { - margin-bottom: 0.5rem; -} - -.media .media .media { - padding-top: 0.5rem; -} - -.media .media .media + .media { - margin-top: 0.5rem; -} - -.media + .media { - border-top: 1px solid rgba(219, 219, 219, 0.5); - margin-top: 1rem; - padding-top: 1rem; -} - -.media.is-large + .media { - margin-top: 1.5rem; - padding-top: 1.5rem; -} - -.media-left, -.media-right { - flex-basis: auto; - flex-grow: 0; - flex-shrink: 0; -} - -.media-left { - margin-right: 1rem; -} - -.media-right { - margin-left: 1rem; -} - -.media-content { - flex-basis: auto; - flex-grow: 1; - flex-shrink: 1; - text-align: inherit; -} - -@media screen and (max-width: 768px) { - .media-content { - overflow-x: auto; - } -} - -.menu { - font-size: 1rem; -} - -.menu.is-small { - font-size: 0.75rem; -} - -.menu.is-medium { - font-size: 1.25rem; -} - -.menu.is-large { - font-size: 1.5rem; -} - -.menu-list { - line-height: 1.25; -} - -.menu-list a { - border-radius: 2px; - color: #4a4a4a; - display: block; - padding: 0.5em 0.75em; -} - -.menu-list a:hover { - background-color: whitesmoke; - color: #363636; -} - -.menu-list a.is-active { - background-color: #485fc7; - color: #fff; -} - -.menu-list li ul { - border-left: 1px solid #dbdbdb; - margin: 0.75em; - padding-left: 0.75em; -} - -.menu-label { - color: #7a7a7a; - font-size: 0.75em; - letter-spacing: 0.1em; - text-transform: uppercase; -} - -.menu-label:not(:first-child) { - margin-top: 1em; -} - -.menu-label:not(:last-child) { - margin-bottom: 1em; -} - -.message { - background-color: whitesmoke; - border-radius: 4px; - font-size: 1rem; -} - -.message strong { - color: currentColor; -} - -.message a:not(.button):not(.tag):not(.dropdown-item) { - color: currentColor; - text-decoration: underline; -} - -.message.is-small { - font-size: 0.75rem; -} - -.message.is-medium { - font-size: 1.25rem; -} - -.message.is-large { - font-size: 1.5rem; -} - -.message.is-white { - background-color: white; -} - -.message.is-white .message-header { - background-color: white; - color: #0a0a0a; -} - -.message.is-white .message-body { - border-color: white; -} - -.message.is-black { - background-color: #fafafa; -} - -.message.is-black .message-header { - background-color: #0a0a0a; - color: white; -} - -.message.is-black .message-body { - border-color: #0a0a0a; -} - -.message.is-light { - background-color: #fafafa; -} - -.message.is-light .message-header { - background-color: whitesmoke; - color: rgba(0, 0, 0, 0.7); -} - -.message.is-light .message-body { - border-color: whitesmoke; -} - -.message.is-dark { - background-color: #fafafa; -} - -.message.is-dark .message-header { - background-color: #363636; - color: #fff; -} - -.message.is-dark .message-body { - border-color: #363636; -} - -.message.is-primary { - background-color: #ebfffc; -} - -.message.is-primary .message-header { - background-color: #00d1b2; - color: #fff; -} - -.message.is-primary .message-body { - border-color: #00d1b2; - color: #00947e; -} - -.message.is-link { - background-color: #eff1fa; -} - -.message.is-link .message-header { - background-color: #485fc7; - color: #fff; -} - -.message.is-link .message-body { - border-color: #485fc7; - color: #3850b7; -} - -.message.is-info { - background-color: #eff5fb; -} - -.message.is-info .message-header { - background-color: #3e8ed0; - color: #fff; -} - -.message.is-info .message-body { - border-color: #3e8ed0; - color: #296fa8; -} - -.message.is-success { - background-color: #effaf5; -} - -.message.is-success .message-header { - background-color: #48c78e; - color: #fff; -} - -.message.is-success .message-body { - border-color: #48c78e; - color: #257953; -} - -.message.is-warning { - background-color: #fffaeb; -} - -.message.is-warning .message-header { - background-color: #ffe08a; - color: rgba(0, 0, 0, 0.7); -} - -.message.is-warning .message-body { - border-color: #ffe08a; - color: #946c00; -} - -.message.is-danger { - background-color: #feecf0; -} - -.message.is-danger .message-header { - background-color: #f14668; - color: #fff; -} - -.message.is-danger .message-body { - border-color: #f14668; - color: #cc0f35; -} - -.message-header { - align-items: center; - background-color: #4a4a4a; - border-radius: 4px 4px 0 0; - color: #fff; - display: flex; - font-weight: 700; - justify-content: space-between; - line-height: 1.25; - padding: 0.75em 1em; - position: relative; -} - -.message-header .delete { - flex-grow: 0; - flex-shrink: 0; - margin-left: 0.75em; -} - -.message-header + .message-body { - border-width: 0; - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.message-body { - border-color: #dbdbdb; - border-radius: 4px; - border-style: solid; - border-width: 0 0 0 4px; - color: #4a4a4a; - padding: 1.25em 1.5em; -} - -.message-body code, -.message-body pre { - background-color: white; -} - -.message-body pre code { - background-color: transparent; -} - .modal { align-items: center; display: none; @@ -5372,3562 +3471,6 @@ button.dropdown-item.is-active { padding: 20px; } -.navbar { - background-color: white; - min-height: 3.25rem; - position: relative; - z-index: 30; -} - -.navbar.is-white { - background-color: white; - color: #0a0a0a; -} - -.navbar.is-white .navbar-brand > .navbar-item, -.navbar.is-white .navbar-brand .navbar-link { - color: #0a0a0a; -} - -.navbar.is-white .navbar-brand > a.navbar-item:focus, .navbar.is-white .navbar-brand > a.navbar-item:hover, .navbar.is-white .navbar-brand > a.navbar-item.is-active, -.navbar.is-white .navbar-brand .navbar-link:focus, -.navbar.is-white .navbar-brand .navbar-link:hover, -.navbar.is-white .navbar-brand .navbar-link.is-active { - background-color: #f2f2f2; - color: #0a0a0a; -} - -.navbar.is-white .navbar-brand .navbar-link::after { - border-color: #0a0a0a; -} - -.navbar.is-white .navbar-burger { - color: #0a0a0a; -} - -@media screen and (min-width: 1024px) { - .navbar.is-white .navbar-start > .navbar-item, - .navbar.is-white .navbar-start .navbar-link, - .navbar.is-white .navbar-end > .navbar-item, - .navbar.is-white .navbar-end .navbar-link { - color: #0a0a0a; - } - .navbar.is-white .navbar-start > a.navbar-item:focus, .navbar.is-white .navbar-start > a.navbar-item:hover, .navbar.is-white .navbar-start > a.navbar-item.is-active, - .navbar.is-white .navbar-start .navbar-link:focus, - .navbar.is-white .navbar-start .navbar-link:hover, - .navbar.is-white .navbar-start .navbar-link.is-active, - .navbar.is-white .navbar-end > a.navbar-item:focus, - .navbar.is-white .navbar-end > a.navbar-item:hover, - .navbar.is-white .navbar-end > a.navbar-item.is-active, - .navbar.is-white .navbar-end .navbar-link:focus, - .navbar.is-white .navbar-end .navbar-link:hover, - .navbar.is-white .navbar-end .navbar-link.is-active { - background-color: #f2f2f2; - color: #0a0a0a; - } - .navbar.is-white .navbar-start .navbar-link::after, - .navbar.is-white .navbar-end .navbar-link::after { - border-color: #0a0a0a; - } - .navbar.is-white .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-white .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #f2f2f2; - color: #0a0a0a; - } - .navbar.is-white .navbar-dropdown a.navbar-item.is-active { - background-color: white; - color: #0a0a0a; - } -} - -.navbar.is-black { - background-color: #0a0a0a; - color: white; -} - -.navbar.is-black .navbar-brand > .navbar-item, -.navbar.is-black .navbar-brand .navbar-link { - color: white; -} - -.navbar.is-black .navbar-brand > a.navbar-item:focus, .navbar.is-black .navbar-brand > a.navbar-item:hover, .navbar.is-black .navbar-brand > a.navbar-item.is-active, -.navbar.is-black .navbar-brand .navbar-link:focus, -.navbar.is-black .navbar-brand .navbar-link:hover, -.navbar.is-black .navbar-brand .navbar-link.is-active { - background-color: black; - color: white; -} - -.navbar.is-black .navbar-brand .navbar-link::after { - border-color: white; -} - -.navbar.is-black .navbar-burger { - color: white; -} - -@media screen and (min-width: 1024px) { - .navbar.is-black .navbar-start > .navbar-item, - .navbar.is-black .navbar-start .navbar-link, - .navbar.is-black .navbar-end > .navbar-item, - .navbar.is-black .navbar-end .navbar-link { - color: white; - } - .navbar.is-black .navbar-start > a.navbar-item:focus, .navbar.is-black .navbar-start > a.navbar-item:hover, .navbar.is-black .navbar-start > a.navbar-item.is-active, - .navbar.is-black .navbar-start .navbar-link:focus, - .navbar.is-black .navbar-start .navbar-link:hover, - .navbar.is-black .navbar-start .navbar-link.is-active, - .navbar.is-black .navbar-end > a.navbar-item:focus, - .navbar.is-black .navbar-end > a.navbar-item:hover, - .navbar.is-black .navbar-end > a.navbar-item.is-active, - .navbar.is-black .navbar-end .navbar-link:focus, - .navbar.is-black .navbar-end .navbar-link:hover, - .navbar.is-black .navbar-end .navbar-link.is-active { - background-color: black; - color: white; - } - .navbar.is-black .navbar-start .navbar-link::after, - .navbar.is-black .navbar-end .navbar-link::after { - border-color: white; - } - .navbar.is-black .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-black .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link { - background-color: black; - color: white; - } - .navbar.is-black .navbar-dropdown a.navbar-item.is-active { - background-color: #0a0a0a; - color: white; - } -} - -.navbar.is-light { - background-color: whitesmoke; - color: rgba(0, 0, 0, 0.7); -} - -.navbar.is-light .navbar-brand > .navbar-item, -.navbar.is-light .navbar-brand .navbar-link { - color: rgba(0, 0, 0, 0.7); -} - -.navbar.is-light .navbar-brand > a.navbar-item:focus, .navbar.is-light .navbar-brand > a.navbar-item:hover, .navbar.is-light .navbar-brand > a.navbar-item.is-active, -.navbar.is-light .navbar-brand .navbar-link:focus, -.navbar.is-light .navbar-brand .navbar-link:hover, -.navbar.is-light .navbar-brand .navbar-link.is-active { - background-color: #e8e8e8; - color: rgba(0, 0, 0, 0.7); -} - -.navbar.is-light .navbar-brand .navbar-link::after { - border-color: rgba(0, 0, 0, 0.7); -} - -.navbar.is-light .navbar-burger { - color: rgba(0, 0, 0, 0.7); -} - -@media screen and (min-width: 1024px) { - .navbar.is-light .navbar-start > .navbar-item, - .navbar.is-light .navbar-start .navbar-link, - .navbar.is-light .navbar-end > .navbar-item, - .navbar.is-light .navbar-end .navbar-link { - color: rgba(0, 0, 0, 0.7); - } - .navbar.is-light .navbar-start > a.navbar-item:focus, .navbar.is-light .navbar-start > a.navbar-item:hover, .navbar.is-light .navbar-start > a.navbar-item.is-active, - .navbar.is-light .navbar-start .navbar-link:focus, - .navbar.is-light .navbar-start .navbar-link:hover, - .navbar.is-light .navbar-start .navbar-link.is-active, - .navbar.is-light .navbar-end > a.navbar-item:focus, - .navbar.is-light .navbar-end > a.navbar-item:hover, - .navbar.is-light .navbar-end > a.navbar-item.is-active, - .navbar.is-light .navbar-end .navbar-link:focus, - .navbar.is-light .navbar-end .navbar-link:hover, - .navbar.is-light .navbar-end .navbar-link.is-active { - background-color: #e8e8e8; - color: rgba(0, 0, 0, 0.7); - } - .navbar.is-light .navbar-start .navbar-link::after, - .navbar.is-light .navbar-end .navbar-link::after { - border-color: rgba(0, 0, 0, 0.7); - } - .navbar.is-light .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-light .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #e8e8e8; - color: rgba(0, 0, 0, 0.7); - } - .navbar.is-light .navbar-dropdown a.navbar-item.is-active { - background-color: whitesmoke; - color: rgba(0, 0, 0, 0.7); - } -} - -.navbar.is-dark { - background-color: #363636; - color: #fff; -} - -.navbar.is-dark .navbar-brand > .navbar-item, -.navbar.is-dark .navbar-brand .navbar-link { - color: #fff; -} - -.navbar.is-dark .navbar-brand > a.navbar-item:focus, .navbar.is-dark .navbar-brand > a.navbar-item:hover, .navbar.is-dark .navbar-brand > a.navbar-item.is-active, -.navbar.is-dark .navbar-brand .navbar-link:focus, -.navbar.is-dark .navbar-brand .navbar-link:hover, -.navbar.is-dark .navbar-brand .navbar-link.is-active { - background-color: #292929; - color: #fff; -} - -.navbar.is-dark .navbar-brand .navbar-link::after { - border-color: #fff; -} - -.navbar.is-dark .navbar-burger { - color: #fff; -} - -@media screen and (min-width: 1024px) { - .navbar.is-dark .navbar-start > .navbar-item, - .navbar.is-dark .navbar-start .navbar-link, - .navbar.is-dark .navbar-end > .navbar-item, - .navbar.is-dark .navbar-end .navbar-link { - color: #fff; - } - .navbar.is-dark .navbar-start > a.navbar-item:focus, .navbar.is-dark .navbar-start > a.navbar-item:hover, .navbar.is-dark .navbar-start > a.navbar-item.is-active, - .navbar.is-dark .navbar-start .navbar-link:focus, - .navbar.is-dark .navbar-start .navbar-link:hover, - .navbar.is-dark .navbar-start .navbar-link.is-active, - .navbar.is-dark .navbar-end > a.navbar-item:focus, - .navbar.is-dark .navbar-end > a.navbar-item:hover, - .navbar.is-dark .navbar-end > a.navbar-item.is-active, - .navbar.is-dark .navbar-end .navbar-link:focus, - .navbar.is-dark .navbar-end .navbar-link:hover, - .navbar.is-dark .navbar-end .navbar-link.is-active { - background-color: #292929; - color: #fff; - } - .navbar.is-dark .navbar-start .navbar-link::after, - .navbar.is-dark .navbar-end .navbar-link::after { - border-color: #fff; - } - .navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #292929; - color: #fff; - } - .navbar.is-dark .navbar-dropdown a.navbar-item.is-active { - background-color: #363636; - color: #fff; - } -} - -.navbar.is-primary { - background-color: #00d1b2; - color: #fff; -} - -.navbar.is-primary .navbar-brand > .navbar-item, -.navbar.is-primary .navbar-brand .navbar-link { - color: #fff; -} - -.navbar.is-primary .navbar-brand > a.navbar-item:focus, .navbar.is-primary .navbar-brand > a.navbar-item:hover, .navbar.is-primary .navbar-brand > a.navbar-item.is-active, -.navbar.is-primary .navbar-brand .navbar-link:focus, -.navbar.is-primary .navbar-brand .navbar-link:hover, -.navbar.is-primary .navbar-brand .navbar-link.is-active { - background-color: #00b89c; - color: #fff; -} - -.navbar.is-primary .navbar-brand .navbar-link::after { - border-color: #fff; -} - -.navbar.is-primary .navbar-burger { - color: #fff; -} - -@media screen and (min-width: 1024px) { - .navbar.is-primary .navbar-start > .navbar-item, - .navbar.is-primary .navbar-start .navbar-link, - .navbar.is-primary .navbar-end > .navbar-item, - .navbar.is-primary .navbar-end .navbar-link { - color: #fff; - } - .navbar.is-primary .navbar-start > a.navbar-item:focus, .navbar.is-primary .navbar-start > a.navbar-item:hover, .navbar.is-primary .navbar-start > a.navbar-item.is-active, - .navbar.is-primary .navbar-start .navbar-link:focus, - .navbar.is-primary .navbar-start .navbar-link:hover, - .navbar.is-primary .navbar-start .navbar-link.is-active, - .navbar.is-primary .navbar-end > a.navbar-item:focus, - .navbar.is-primary .navbar-end > a.navbar-item:hover, - .navbar.is-primary .navbar-end > a.navbar-item.is-active, - .navbar.is-primary .navbar-end .navbar-link:focus, - .navbar.is-primary .navbar-end .navbar-link:hover, - .navbar.is-primary .navbar-end .navbar-link.is-active { - background-color: #00b89c; - color: #fff; - } - .navbar.is-primary .navbar-start .navbar-link::after, - .navbar.is-primary .navbar-end .navbar-link::after { - border-color: #fff; - } - .navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #00b89c; - color: #fff; - } - .navbar.is-primary .navbar-dropdown a.navbar-item.is-active { - background-color: #00d1b2; - color: #fff; - } -} - -.navbar.is-link { - background-color: #485fc7; - color: #fff; -} - -.navbar.is-link .navbar-brand > .navbar-item, -.navbar.is-link .navbar-brand .navbar-link { - color: #fff; -} - -.navbar.is-link .navbar-brand > a.navbar-item:focus, .navbar.is-link .navbar-brand > a.navbar-item:hover, .navbar.is-link .navbar-brand > a.navbar-item.is-active, -.navbar.is-link .navbar-brand .navbar-link:focus, -.navbar.is-link .navbar-brand .navbar-link:hover, -.navbar.is-link .navbar-brand .navbar-link.is-active { - background-color: #3a51bb; - color: #fff; -} - -.navbar.is-link .navbar-brand .navbar-link::after { - border-color: #fff; -} - -.navbar.is-link .navbar-burger { - color: #fff; -} - -@media screen and (min-width: 1024px) { - .navbar.is-link .navbar-start > .navbar-item, - .navbar.is-link .navbar-start .navbar-link, - .navbar.is-link .navbar-end > .navbar-item, - .navbar.is-link .navbar-end .navbar-link { - color: #fff; - } - .navbar.is-link .navbar-start > a.navbar-item:focus, .navbar.is-link .navbar-start > a.navbar-item:hover, .navbar.is-link .navbar-start > a.navbar-item.is-active, - .navbar.is-link .navbar-start .navbar-link:focus, - .navbar.is-link .navbar-start .navbar-link:hover, - .navbar.is-link .navbar-start .navbar-link.is-active, - .navbar.is-link .navbar-end > a.navbar-item:focus, - .navbar.is-link .navbar-end > a.navbar-item:hover, - .navbar.is-link .navbar-end > a.navbar-item.is-active, - .navbar.is-link .navbar-end .navbar-link:focus, - .navbar.is-link .navbar-end .navbar-link:hover, - .navbar.is-link .navbar-end .navbar-link.is-active { - background-color: #3a51bb; - color: #fff; - } - .navbar.is-link .navbar-start .navbar-link::after, - .navbar.is-link .navbar-end .navbar-link::after { - border-color: #fff; - } - .navbar.is-link .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-link .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #3a51bb; - color: #fff; - } - .navbar.is-link .navbar-dropdown a.navbar-item.is-active { - background-color: #485fc7; - color: #fff; - } -} - -.navbar.is-info { - background-color: #3e8ed0; - color: #fff; -} - -.navbar.is-info .navbar-brand > .navbar-item, -.navbar.is-info .navbar-brand .navbar-link { - color: #fff; -} - -.navbar.is-info .navbar-brand > a.navbar-item:focus, .navbar.is-info .navbar-brand > a.navbar-item:hover, .navbar.is-info .navbar-brand > a.navbar-item.is-active, -.navbar.is-info .navbar-brand .navbar-link:focus, -.navbar.is-info .navbar-brand .navbar-link:hover, -.navbar.is-info .navbar-brand .navbar-link.is-active { - background-color: #3082c5; - color: #fff; -} - -.navbar.is-info .navbar-brand .navbar-link::after { - border-color: #fff; -} - -.navbar.is-info .navbar-burger { - color: #fff; -} - -@media screen and (min-width: 1024px) { - .navbar.is-info .navbar-start > .navbar-item, - .navbar.is-info .navbar-start .navbar-link, - .navbar.is-info .navbar-end > .navbar-item, - .navbar.is-info .navbar-end .navbar-link { - color: #fff; - } - .navbar.is-info .navbar-start > a.navbar-item:focus, .navbar.is-info .navbar-start > a.navbar-item:hover, .navbar.is-info .navbar-start > a.navbar-item.is-active, - .navbar.is-info .navbar-start .navbar-link:focus, - .navbar.is-info .navbar-start .navbar-link:hover, - .navbar.is-info .navbar-start .navbar-link.is-active, - .navbar.is-info .navbar-end > a.navbar-item:focus, - .navbar.is-info .navbar-end > a.navbar-item:hover, - .navbar.is-info .navbar-end > a.navbar-item.is-active, - .navbar.is-info .navbar-end .navbar-link:focus, - .navbar.is-info .navbar-end .navbar-link:hover, - .navbar.is-info .navbar-end .navbar-link.is-active { - background-color: #3082c5; - color: #fff; - } - .navbar.is-info .navbar-start .navbar-link::after, - .navbar.is-info .navbar-end .navbar-link::after { - border-color: #fff; - } - .navbar.is-info .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-info .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #3082c5; - color: #fff; - } - .navbar.is-info .navbar-dropdown a.navbar-item.is-active { - background-color: #3e8ed0; - color: #fff; - } -} - -.navbar.is-success { - background-color: #48c78e; - color: #fff; -} - -.navbar.is-success .navbar-brand > .navbar-item, -.navbar.is-success .navbar-brand .navbar-link { - color: #fff; -} - -.navbar.is-success .navbar-brand > a.navbar-item:focus, .navbar.is-success .navbar-brand > a.navbar-item:hover, .navbar.is-success .navbar-brand > a.navbar-item.is-active, -.navbar.is-success .navbar-brand .navbar-link:focus, -.navbar.is-success .navbar-brand .navbar-link:hover, -.navbar.is-success .navbar-brand .navbar-link.is-active { - background-color: #3abb81; - color: #fff; -} - -.navbar.is-success .navbar-brand .navbar-link::after { - border-color: #fff; -} - -.navbar.is-success .navbar-burger { - color: #fff; -} - -@media screen and (min-width: 1024px) { - .navbar.is-success .navbar-start > .navbar-item, - .navbar.is-success .navbar-start .navbar-link, - .navbar.is-success .navbar-end > .navbar-item, - .navbar.is-success .navbar-end .navbar-link { - color: #fff; - } - .navbar.is-success .navbar-start > a.navbar-item:focus, .navbar.is-success .navbar-start > a.navbar-item:hover, .navbar.is-success .navbar-start > a.navbar-item.is-active, - .navbar.is-success .navbar-start .navbar-link:focus, - .navbar.is-success .navbar-start .navbar-link:hover, - .navbar.is-success .navbar-start .navbar-link.is-active, - .navbar.is-success .navbar-end > a.navbar-item:focus, - .navbar.is-success .navbar-end > a.navbar-item:hover, - .navbar.is-success .navbar-end > a.navbar-item.is-active, - .navbar.is-success .navbar-end .navbar-link:focus, - .navbar.is-success .navbar-end .navbar-link:hover, - .navbar.is-success .navbar-end .navbar-link.is-active { - background-color: #3abb81; - color: #fff; - } - .navbar.is-success .navbar-start .navbar-link::after, - .navbar.is-success .navbar-end .navbar-link::after { - border-color: #fff; - } - .navbar.is-success .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-success .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #3abb81; - color: #fff; - } - .navbar.is-success .navbar-dropdown a.navbar-item.is-active { - background-color: #48c78e; - color: #fff; - } -} - -.navbar.is-warning { - background-color: #ffe08a; - color: rgba(0, 0, 0, 0.7); -} - -.navbar.is-warning .navbar-brand > .navbar-item, -.navbar.is-warning .navbar-brand .navbar-link { - color: rgba(0, 0, 0, 0.7); -} - -.navbar.is-warning .navbar-brand > a.navbar-item:focus, .navbar.is-warning .navbar-brand > a.navbar-item:hover, .navbar.is-warning .navbar-brand > a.navbar-item.is-active, -.navbar.is-warning .navbar-brand .navbar-link:focus, -.navbar.is-warning .navbar-brand .navbar-link:hover, -.navbar.is-warning .navbar-brand .navbar-link.is-active { - background-color: #ffd970; - color: rgba(0, 0, 0, 0.7); -} - -.navbar.is-warning .navbar-brand .navbar-link::after { - border-color: rgba(0, 0, 0, 0.7); -} - -.navbar.is-warning .navbar-burger { - color: rgba(0, 0, 0, 0.7); -} - -@media screen and (min-width: 1024px) { - .navbar.is-warning .navbar-start > .navbar-item, - .navbar.is-warning .navbar-start .navbar-link, - .navbar.is-warning .navbar-end > .navbar-item, - .navbar.is-warning .navbar-end .navbar-link { - color: rgba(0, 0, 0, 0.7); - } - .navbar.is-warning .navbar-start > a.navbar-item:focus, .navbar.is-warning .navbar-start > a.navbar-item:hover, .navbar.is-warning .navbar-start > a.navbar-item.is-active, - .navbar.is-warning .navbar-start .navbar-link:focus, - .navbar.is-warning .navbar-start .navbar-link:hover, - .navbar.is-warning .navbar-start .navbar-link.is-active, - .navbar.is-warning .navbar-end > a.navbar-item:focus, - .navbar.is-warning .navbar-end > a.navbar-item:hover, - .navbar.is-warning .navbar-end > a.navbar-item.is-active, - .navbar.is-warning .navbar-end .navbar-link:focus, - .navbar.is-warning .navbar-end .navbar-link:hover, - .navbar.is-warning .navbar-end .navbar-link.is-active { - background-color: #ffd970; - color: rgba(0, 0, 0, 0.7); - } - .navbar.is-warning .navbar-start .navbar-link::after, - .navbar.is-warning .navbar-end .navbar-link::after { - border-color: rgba(0, 0, 0, 0.7); - } - .navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #ffd970; - color: rgba(0, 0, 0, 0.7); - } - .navbar.is-warning .navbar-dropdown a.navbar-item.is-active { - background-color: #ffe08a; - color: rgba(0, 0, 0, 0.7); - } -} - -.navbar.is-danger { - background-color: #f14668; - color: #fff; -} - -.navbar.is-danger .navbar-brand > .navbar-item, -.navbar.is-danger .navbar-brand .navbar-link { - color: #fff; -} - -.navbar.is-danger .navbar-brand > a.navbar-item:focus, .navbar.is-danger .navbar-brand > a.navbar-item:hover, .navbar.is-danger .navbar-brand > a.navbar-item.is-active, -.navbar.is-danger .navbar-brand .navbar-link:focus, -.navbar.is-danger .navbar-brand .navbar-link:hover, -.navbar.is-danger .navbar-brand .navbar-link.is-active { - background-color: #ef2e55; - color: #fff; -} - -.navbar.is-danger .navbar-brand .navbar-link::after { - border-color: #fff; -} - -.navbar.is-danger .navbar-burger { - color: #fff; -} - -@media screen and (min-width: 1024px) { - .navbar.is-danger .navbar-start > .navbar-item, - .navbar.is-danger .navbar-start .navbar-link, - .navbar.is-danger .navbar-end > .navbar-item, - .navbar.is-danger .navbar-end .navbar-link { - color: #fff; - } - .navbar.is-danger .navbar-start > a.navbar-item:focus, .navbar.is-danger .navbar-start > a.navbar-item:hover, .navbar.is-danger .navbar-start > a.navbar-item.is-active, - .navbar.is-danger .navbar-start .navbar-link:focus, - .navbar.is-danger .navbar-start .navbar-link:hover, - .navbar.is-danger .navbar-start .navbar-link.is-active, - .navbar.is-danger .navbar-end > a.navbar-item:focus, - .navbar.is-danger .navbar-end > a.navbar-item:hover, - .navbar.is-danger .navbar-end > a.navbar-item.is-active, - .navbar.is-danger .navbar-end .navbar-link:focus, - .navbar.is-danger .navbar-end .navbar-link:hover, - .navbar.is-danger .navbar-end .navbar-link.is-active { - background-color: #ef2e55; - color: #fff; - } - .navbar.is-danger .navbar-start .navbar-link::after, - .navbar.is-danger .navbar-end .navbar-link::after { - border-color: #fff; - } - .navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #ef2e55; - color: #fff; - } - .navbar.is-danger .navbar-dropdown a.navbar-item.is-active { - background-color: #f14668; - color: #fff; - } -} - -.navbar > .container { - align-items: stretch; - display: flex; - min-height: 3.25rem; - width: 100%; -} - -.navbar.has-shadow { - box-shadow: 0 2px 0 0 whitesmoke; -} - -.navbar.is-fixed-bottom, .navbar.is-fixed-top { - left: 0; - position: fixed; - right: 0; - z-index: 30; -} - -.navbar.is-fixed-bottom { - bottom: 0; -} - -.navbar.is-fixed-bottom.has-shadow { - box-shadow: 0 -2px 0 0 whitesmoke; -} - -.navbar.is-fixed-top { - top: 0; -} - -html.has-navbar-fixed-top, -body.has-navbar-fixed-top { - padding-top: 3.25rem; -} - -html.has-navbar-fixed-bottom, -body.has-navbar-fixed-bottom { - padding-bottom: 3.25rem; -} - -.navbar-brand, -.navbar-tabs { - align-items: stretch; - display: flex; - flex-shrink: 0; - min-height: 3.25rem; -} - -.navbar-brand a.navbar-item:focus, .navbar-brand a.navbar-item:hover { - background-color: transparent; -} - -.navbar-tabs { - -webkit-overflow-scrolling: touch; - max-width: 100vw; - overflow-x: auto; - overflow-y: hidden; -} - -.navbar-burger { - color: #4a4a4a; - cursor: pointer; - display: block; - height: 3.25rem; - position: relative; - width: 3.25rem; - margin-left: auto; -} - -.navbar-burger span { - background-color: currentColor; - display: block; - height: 1px; - left: calc(50% - 8px); - position: absolute; - transform-origin: center; - transition-duration: 86ms; - transition-property: background-color, opacity, transform; - transition-timing-function: ease-out; - width: 16px; -} - -.navbar-burger span:nth-child(1) { - top: calc(50% - 6px); -} - -.navbar-burger span:nth-child(2) { - top: calc(50% - 1px); -} - -.navbar-burger span:nth-child(3) { - top: calc(50% + 4px); -} - -.navbar-burger:hover { - background-color: rgba(0, 0, 0, 0.05); -} - -.navbar-burger.is-active span:nth-child(1) { - transform: translateY(5px) rotate(45deg); -} - -.navbar-burger.is-active span:nth-child(2) { - opacity: 0; -} - -.navbar-burger.is-active span:nth-child(3) { - transform: translateY(-5px) rotate(-45deg); -} - -.navbar-menu { - display: none; -} - -.navbar-item, -.navbar-link { - color: #4a4a4a; - display: block; - line-height: 1.5; - padding: 0.5rem 0.75rem; - position: relative; -} - -.navbar-item .icon:only-child, -.navbar-link .icon:only-child { - margin-left: -0.25rem; - margin-right: -0.25rem; -} - -a.navbar-item, -.navbar-link { - cursor: pointer; -} - -a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover, a.navbar-item.is-active, -.navbar-link:focus, -.navbar-link:focus-within, -.navbar-link:hover, -.navbar-link.is-active { - background-color: #fafafa; - color: #485fc7; -} - -.navbar-item { - flex-grow: 0; - flex-shrink: 0; -} - -.navbar-item img { - max-height: 1.75rem; -} - -.navbar-item.has-dropdown { - padding: 0; -} - -.navbar-item.is-expanded { - flex-grow: 1; - flex-shrink: 1; -} - -.navbar-item.is-tab { - border-bottom: 1px solid transparent; - min-height: 3.25rem; - padding-bottom: calc(0.5rem - 1px); -} - -.navbar-item.is-tab:focus, .navbar-item.is-tab:hover { - background-color: transparent; - border-bottom-color: #485fc7; -} - -.navbar-item.is-tab.is-active { - background-color: transparent; - border-bottom-color: #485fc7; - border-bottom-style: solid; - border-bottom-width: 3px; - color: #485fc7; - padding-bottom: calc(0.5rem - 3px); -} - -.navbar-content { - flex-grow: 1; - flex-shrink: 1; -} - -.navbar-link:not(.is-arrowless) { - padding-right: 2.5em; -} - -.navbar-link:not(.is-arrowless)::after { - border-color: #485fc7; - margin-top: -0.375em; - right: 1.125em; -} - -.navbar-dropdown { - font-size: 0.875rem; - padding-bottom: 0.5rem; - padding-top: 0.5rem; -} - -.navbar-dropdown .navbar-item { - padding-left: 1.5rem; - padding-right: 1.5rem; -} - -.navbar-divider { - background-color: whitesmoke; - border: none; - display: none; - height: 2px; - margin: 0.5rem 0; -} - -@media screen and (max-width: 1023px) { - .navbar > .container { - display: block; - } - .navbar-brand .navbar-item, - .navbar-tabs .navbar-item { - align-items: center; - display: flex; - } - .navbar-link::after { - display: none; - } - .navbar-menu { - background-color: white; - box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1); - padding: 0.5rem 0; - } - .navbar-menu.is-active { - display: block; - } - .navbar.is-fixed-bottom-touch, .navbar.is-fixed-top-touch { - left: 0; - position: fixed; - right: 0; - z-index: 30; - } - .navbar.is-fixed-bottom-touch { - bottom: 0; - } - .navbar.is-fixed-bottom-touch.has-shadow { - box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1); - } - .navbar.is-fixed-top-touch { - top: 0; - } - .navbar.is-fixed-top .navbar-menu, .navbar.is-fixed-top-touch .navbar-menu { - -webkit-overflow-scrolling: touch; - max-height: calc(100vh - 3.25rem); - overflow: auto; - } - html.has-navbar-fixed-top-touch, - body.has-navbar-fixed-top-touch { - padding-top: 3.25rem; - } - html.has-navbar-fixed-bottom-touch, - body.has-navbar-fixed-bottom-touch { - padding-bottom: 3.25rem; - } -} - -@media screen and (min-width: 1024px) { - .navbar, - .navbar-menu, - .navbar-start, - .navbar-end { - align-items: stretch; - display: flex; - } - .navbar { - min-height: 3.25rem; - } - .navbar.is-spaced { - padding: 1rem 2rem; - } - .navbar.is-spaced .navbar-start, - .navbar.is-spaced .navbar-end { - align-items: center; - } - .navbar.is-spaced a.navbar-item, - .navbar.is-spaced .navbar-link { - border-radius: 4px; - } - .navbar.is-transparent a.navbar-item:focus, .navbar.is-transparent a.navbar-item:hover, .navbar.is-transparent a.navbar-item.is-active, - .navbar.is-transparent .navbar-link:focus, - .navbar.is-transparent .navbar-link:hover, - .navbar.is-transparent .navbar-link.is-active { - background-color: transparent !important; - } - .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link { - background-color: transparent !important; - } - .navbar.is-transparent .navbar-dropdown a.navbar-item:focus, .navbar.is-transparent .navbar-dropdown a.navbar-item:hover { - background-color: whitesmoke; - color: #0a0a0a; - } - .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active { - background-color: whitesmoke; - color: #485fc7; - } - .navbar-burger { - display: none; - } - .navbar-item, - .navbar-link { - align-items: center; - display: flex; - } - .navbar-item.has-dropdown { - align-items: stretch; - } - .navbar-item.has-dropdown-up .navbar-link::after { - transform: rotate(135deg) translate(0.25em, -0.25em); - } - .navbar-item.has-dropdown-up .navbar-dropdown { - border-bottom: 2px solid #dbdbdb; - border-radius: 6px 6px 0 0; - border-top: none; - bottom: 100%; - box-shadow: 0 -8px 8px rgba(10, 10, 10, 0.1); - top: auto; - } - .navbar-item.is-active .navbar-dropdown, .navbar-item.is-hoverable:focus .navbar-dropdown, .navbar-item.is-hoverable:focus-within .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown { - display: block; - } - .navbar.is-spaced .navbar-item.is-active .navbar-dropdown, .navbar-item.is-active .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:focus .navbar-dropdown, .navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:focus-within .navbar-dropdown, .navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed { - opacity: 1; - pointer-events: auto; - transform: translateY(0); - } - .navbar-menu { - flex-grow: 1; - flex-shrink: 0; - } - .navbar-start { - justify-content: flex-start; - margin-right: auto; - } - .navbar-end { - justify-content: flex-end; - margin-left: auto; - } - .navbar-dropdown { - background-color: white; - border-bottom-left-radius: 6px; - border-bottom-right-radius: 6px; - border-top: 2px solid #dbdbdb; - box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1); - display: none; - font-size: 0.875rem; - left: 0; - min-width: 100%; - position: absolute; - top: 100%; - z-index: 20; - } - .navbar-dropdown .navbar-item { - padding: 0.375rem 1rem; - white-space: nowrap; - } - .navbar-dropdown a.navbar-item { - padding-right: 3rem; - } - .navbar-dropdown a.navbar-item:focus, .navbar-dropdown a.navbar-item:hover { - background-color: whitesmoke; - color: #0a0a0a; - } - .navbar-dropdown a.navbar-item.is-active { - background-color: whitesmoke; - color: #485fc7; - } - .navbar.is-spaced .navbar-dropdown, .navbar-dropdown.is-boxed { - border-radius: 6px; - border-top: none; - box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1); - display: block; - opacity: 0; - pointer-events: none; - top: calc(100% + (-4px)); - transform: translateY(-5px); - transition-duration: 86ms; - transition-property: opacity, transform; - } - .navbar-dropdown.is-right { - left: auto; - right: 0; - } - .navbar-divider { - display: block; - } - .navbar > .container .navbar-brand, - .container > .navbar .navbar-brand { - margin-left: -0.75rem; - } - .navbar > .container .navbar-menu, - .container > .navbar .navbar-menu { - margin-right: -0.75rem; - } - .navbar.is-fixed-bottom-desktop, .navbar.is-fixed-top-desktop { - left: 0; - position: fixed; - right: 0; - z-index: 30; - } - .navbar.is-fixed-bottom-desktop { - bottom: 0; - } - .navbar.is-fixed-bottom-desktop.has-shadow { - box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1); - } - .navbar.is-fixed-top-desktop { - top: 0; - } - html.has-navbar-fixed-top-desktop, - body.has-navbar-fixed-top-desktop { - padding-top: 3.25rem; - } - html.has-navbar-fixed-bottom-desktop, - body.has-navbar-fixed-bottom-desktop { - padding-bottom: 3.25rem; - } - html.has-spaced-navbar-fixed-top, - body.has-spaced-navbar-fixed-top { - padding-top: 5.25rem; - } - html.has-spaced-navbar-fixed-bottom, - body.has-spaced-navbar-fixed-bottom { - padding-bottom: 5.25rem; - } - a.navbar-item.is-active, - .navbar-link.is-active { - color: #0a0a0a; - } - a.navbar-item.is-active:not(:focus):not(:hover), - .navbar-link.is-active:not(:focus):not(:hover) { - background-color: transparent; - } - .navbar-item.has-dropdown:focus .navbar-link, .navbar-item.has-dropdown:hover .navbar-link, .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #fafafa; - } -} - -.hero.is-fullheight-with-navbar { - min-height: calc(100vh - 3.25rem); -} - -.pagination { - font-size: 1rem; - margin: -0.25rem; -} - -.pagination.is-small { - font-size: 0.75rem; -} - -.pagination.is-medium { - font-size: 1.25rem; -} - -.pagination.is-large { - font-size: 1.5rem; -} - -.pagination.is-rounded .pagination-previous, -.pagination.is-rounded .pagination-next { - padding-left: 1em; - padding-right: 1em; - border-radius: 9999px; -} - -.pagination.is-rounded .pagination-link { - border-radius: 9999px; -} - -.pagination, -.pagination-list { - align-items: center; - display: flex; - justify-content: center; - text-align: center; -} - -.pagination-previous, -.pagination-next, -.pagination-link, -.pagination-ellipsis { - font-size: 1em; - justify-content: center; - margin: 0.25rem; - padding-left: 0.5em; - padding-right: 0.5em; - text-align: center; -} - -.pagination-previous, -.pagination-next, -.pagination-link { - border-color: #dbdbdb; - color: #363636; - min-width: 2.5em; -} - -.pagination-previous:hover, -.pagination-next:hover, -.pagination-link:hover { - border-color: #b5b5b5; - color: #363636; -} - -.pagination-previous:focus, -.pagination-next:focus, -.pagination-link:focus { - border-color: #485fc7; -} - -.pagination-previous:active, -.pagination-next:active, -.pagination-link:active { - box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2); -} - -.pagination-previous[disabled], -.pagination-next[disabled], -.pagination-link[disabled] { - background-color: #dbdbdb; - border-color: #dbdbdb; - box-shadow: none; - color: #7a7a7a; - opacity: 0.5; -} - -.pagination-previous, -.pagination-next { - padding-left: 0.75em; - padding-right: 0.75em; - white-space: nowrap; -} - -.pagination-link.is-current { - background-color: #485fc7; - border-color: #485fc7; - color: #fff; -} - -.pagination-ellipsis { - color: #b5b5b5; - pointer-events: none; -} - -.pagination-list { - flex-wrap: wrap; -} - -.pagination-list li { - list-style: none; -} - -@media screen and (max-width: 768px) { - .pagination { - flex-wrap: wrap; - } - .pagination-previous, - .pagination-next { - flex-grow: 1; - flex-shrink: 1; - } - .pagination-list li { - flex-grow: 1; - flex-shrink: 1; - } -} - -@media screen and (min-width: 769px), print { - .pagination-list { - flex-grow: 1; - flex-shrink: 1; - justify-content: flex-start; - order: 1; - } - .pagination-previous, - .pagination-next, - .pagination-link, - .pagination-ellipsis { - margin-bottom: 0; - margin-top: 0; - } - .pagination-previous { - order: 2; - } - .pagination-next { - order: 3; - } - .pagination { - justify-content: space-between; - margin-bottom: 0; - margin-top: 0; - } - .pagination.is-centered .pagination-previous { - order: 1; - } - .pagination.is-centered .pagination-list { - justify-content: center; - order: 2; - } - .pagination.is-centered .pagination-next { - order: 3; - } - .pagination.is-right .pagination-previous { - order: 1; - } - .pagination.is-right .pagination-next { - order: 2; - } - .pagination.is-right .pagination-list { - justify-content: flex-end; - order: 3; - } -} - -.panel { - border-radius: 6px; - box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02); - font-size: 1rem; -} - -.panel:not(:last-child) { - margin-bottom: 1.5rem; -} - -.panel.is-white .panel-heading { - background-color: white; - color: #0a0a0a; -} - -.panel.is-white .panel-tabs a.is-active { - border-bottom-color: white; -} - -.panel.is-white .panel-block.is-active .panel-icon { - color: white; -} - -.panel.is-black .panel-heading { - background-color: #0a0a0a; - color: white; -} - -.panel.is-black .panel-tabs a.is-active { - border-bottom-color: #0a0a0a; -} - -.panel.is-black .panel-block.is-active .panel-icon { - color: #0a0a0a; -} - -.panel.is-light .panel-heading { - background-color: whitesmoke; - color: rgba(0, 0, 0, 0.7); -} - -.panel.is-light .panel-tabs a.is-active { - border-bottom-color: whitesmoke; -} - -.panel.is-light .panel-block.is-active .panel-icon { - color: whitesmoke; -} - -.panel.is-dark .panel-heading { - background-color: #363636; - color: #fff; -} - -.panel.is-dark .panel-tabs a.is-active { - border-bottom-color: #363636; -} - -.panel.is-dark .panel-block.is-active .panel-icon { - color: #363636; -} - -.panel.is-primary .panel-heading { - background-color: #00d1b2; - color: #fff; -} - -.panel.is-primary .panel-tabs a.is-active { - border-bottom-color: #00d1b2; -} - -.panel.is-primary .panel-block.is-active .panel-icon { - color: #00d1b2; -} - -.panel.is-link .panel-heading { - background-color: #485fc7; - color: #fff; -} - -.panel.is-link .panel-tabs a.is-active { - border-bottom-color: #485fc7; -} - -.panel.is-link .panel-block.is-active .panel-icon { - color: #485fc7; -} - -.panel.is-info .panel-heading { - background-color: #3e8ed0; - color: #fff; -} - -.panel.is-info .panel-tabs a.is-active { - border-bottom-color: #3e8ed0; -} - -.panel.is-info .panel-block.is-active .panel-icon { - color: #3e8ed0; -} - -.panel.is-success .panel-heading { - background-color: #48c78e; - color: #fff; -} - -.panel.is-success .panel-tabs a.is-active { - border-bottom-color: #48c78e; -} - -.panel.is-success .panel-block.is-active .panel-icon { - color: #48c78e; -} - -.panel.is-warning .panel-heading { - background-color: #ffe08a; - color: rgba(0, 0, 0, 0.7); -} - -.panel.is-warning .panel-tabs a.is-active { - border-bottom-color: #ffe08a; -} - -.panel.is-warning .panel-block.is-active .panel-icon { - color: #ffe08a; -} - -.panel.is-danger .panel-heading { - background-color: #f14668; - color: #fff; -} - -.panel.is-danger .panel-tabs a.is-active { - border-bottom-color: #f14668; -} - -.panel.is-danger .panel-block.is-active .panel-icon { - color: #f14668; -} - -.panel-tabs:not(:last-child), -.panel-block:not(:last-child) { - border-bottom: 1px solid #ededed; -} - -.panel-heading { - background-color: #ededed; - border-radius: 6px 6px 0 0; - color: #363636; - font-size: 1.25em; - font-weight: 700; - line-height: 1.25; - padding: 0.75em 1em; -} - -.panel-tabs { - align-items: flex-end; - display: flex; - font-size: 0.875em; - justify-content: center; -} - -.panel-tabs a { - border-bottom: 1px solid #dbdbdb; - margin-bottom: -1px; - padding: 0.5em; -} - -.panel-tabs a.is-active { - border-bottom-color: #4a4a4a; - color: #363636; -} - -.panel-list a { - color: #4a4a4a; -} - -.panel-list a:hover { - color: #485fc7; -} - -.panel-block { - align-items: center; - color: #363636; - display: flex; - justify-content: flex-start; - padding: 0.5em 0.75em; -} - -.panel-block input[type="checkbox"] { - margin-right: 0.75em; -} - -.panel-block > .control { - flex-grow: 1; - flex-shrink: 1; - width: 100%; -} - -.panel-block.is-wrapped { - flex-wrap: wrap; -} - -.panel-block.is-active { - border-left-color: #485fc7; - color: #363636; -} - -.panel-block.is-active .panel-icon { - color: #485fc7; -} - -.panel-block:last-child { - border-bottom-left-radius: 6px; - border-bottom-right-radius: 6px; -} - -a.panel-block, -label.panel-block { - cursor: pointer; -} - -a.panel-block:hover, -label.panel-block:hover { - background-color: whitesmoke; -} - -.panel-icon { - display: inline-block; - font-size: 14px; - height: 1em; - line-height: 1em; - text-align: center; - vertical-align: top; - width: 1em; - color: #7a7a7a; - margin-right: 0.75em; -} - -.panel-icon .fa { - font-size: inherit; - line-height: inherit; -} - -.tabs { - -webkit-overflow-scrolling: touch; - align-items: stretch; - display: flex; - font-size: 1rem; - justify-content: space-between; - overflow: hidden; - overflow-x: auto; - white-space: nowrap; -} - -.tabs a { - align-items: center; - border-bottom-color: #dbdbdb; - border-bottom-style: solid; - border-bottom-width: 1px; - color: #4a4a4a; - display: flex; - justify-content: center; - margin-bottom: -1px; - padding: 0.5em 1em; - vertical-align: top; -} - -.tabs a:hover { - border-bottom-color: #363636; - color: #363636; -} - -.tabs li { - display: block; -} - -.tabs li.is-active a { - border-bottom-color: #485fc7; - color: #485fc7; -} - -.tabs ul { - align-items: center; - border-bottom-color: #dbdbdb; - border-bottom-style: solid; - border-bottom-width: 1px; - display: flex; - flex-grow: 1; - flex-shrink: 0; - justify-content: flex-start; -} - -.tabs ul.is-left { - padding-right: 0.75em; -} - -.tabs ul.is-center { - flex: none; - justify-content: center; - padding-left: 0.75em; - padding-right: 0.75em; -} - -.tabs ul.is-right { - justify-content: flex-end; - padding-left: 0.75em; -} - -.tabs .icon:first-child { - margin-right: 0.5em; -} - -.tabs .icon:last-child { - margin-left: 0.5em; -} - -.tabs.is-centered ul { - justify-content: center; -} - -.tabs.is-right ul { - justify-content: flex-end; -} - -.tabs.is-boxed a { - border: 1px solid transparent; - border-radius: 4px 4px 0 0; -} - -.tabs.is-boxed a:hover { - background-color: whitesmoke; - border-bottom-color: #dbdbdb; -} - -.tabs.is-boxed li.is-active a { - background-color: white; - border-color: #dbdbdb; - border-bottom-color: transparent !important; -} - -.tabs.is-fullwidth li { - flex-grow: 1; - flex-shrink: 0; -} - -.tabs.is-toggle a { - border-color: #dbdbdb; - border-style: solid; - border-width: 1px; - margin-bottom: 0; - position: relative; -} - -.tabs.is-toggle a:hover { - background-color: whitesmoke; - border-color: #b5b5b5; - z-index: 2; -} - -.tabs.is-toggle li + li { - margin-left: -1px; -} - -.tabs.is-toggle li:first-child a { - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; -} - -.tabs.is-toggle li:last-child a { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; -} - -.tabs.is-toggle li.is-active a { - background-color: #485fc7; - border-color: #485fc7; - color: #fff; - z-index: 1; -} - -.tabs.is-toggle ul { - border-bottom: none; -} - -.tabs.is-toggle.is-toggle-rounded li:first-child a { - border-bottom-left-radius: 9999px; - border-top-left-radius: 9999px; - padding-left: 1.25em; -} - -.tabs.is-toggle.is-toggle-rounded li:last-child a { - border-bottom-right-radius: 9999px; - border-top-right-radius: 9999px; - padding-right: 1.25em; -} - -.tabs.is-small { - font-size: 0.75rem; -} - -.tabs.is-medium { - font-size: 1.25rem; -} - -.tabs.is-large { - font-size: 1.5rem; -} - -/* Bulma Grid */ -.column { - display: block; - flex-basis: 0; - flex-grow: 1; - flex-shrink: 1; - padding: 0.75rem; -} - -.columns.is-mobile > .column.is-narrow { - flex: none; - width: unset; -} - -.columns.is-mobile > .column.is-full { - flex: none; - width: 100%; -} - -.columns.is-mobile > .column.is-three-quarters { - flex: none; - width: 75%; -} - -.columns.is-mobile > .column.is-two-thirds { - flex: none; - width: 66.6666%; -} - -.columns.is-mobile > .column.is-half { - flex: none; - width: 50%; -} - -.columns.is-mobile > .column.is-one-third { - flex: none; - width: 33.3333%; -} - -.columns.is-mobile > .column.is-one-quarter { - flex: none; - width: 25%; -} - -.columns.is-mobile > .column.is-one-fifth { - flex: none; - width: 20%; -} - -.columns.is-mobile > .column.is-two-fifths { - flex: none; - width: 40%; -} - -.columns.is-mobile > .column.is-three-fifths { - flex: none; - width: 60%; -} - -.columns.is-mobile > .column.is-four-fifths { - flex: none; - width: 80%; -} - -.columns.is-mobile > .column.is-offset-three-quarters { - margin-left: 75%; -} - -.columns.is-mobile > .column.is-offset-two-thirds { - margin-left: 66.6666%; -} - -.columns.is-mobile > .column.is-offset-half { - margin-left: 50%; -} - -.columns.is-mobile > .column.is-offset-one-third { - margin-left: 33.3333%; -} - -.columns.is-mobile > .column.is-offset-one-quarter { - margin-left: 25%; -} - -.columns.is-mobile > .column.is-offset-one-fifth { - margin-left: 20%; -} - -.columns.is-mobile > .column.is-offset-two-fifths { - margin-left: 40%; -} - -.columns.is-mobile > .column.is-offset-three-fifths { - margin-left: 60%; -} - -.columns.is-mobile > .column.is-offset-four-fifths { - margin-left: 80%; -} - -.columns.is-mobile > .column.is-0 { - flex: none; - width: 0%; -} - -.columns.is-mobile > .column.is-offset-0 { - margin-left: 0%; -} - -.columns.is-mobile > .column.is-1 { - flex: none; - width: 8.33333%; -} - -.columns.is-mobile > .column.is-offset-1 { - margin-left: 8.33333%; -} - -.columns.is-mobile > .column.is-2 { - flex: none; - width: 16.66667%; -} - -.columns.is-mobile > .column.is-offset-2 { - margin-left: 16.66667%; -} - -.columns.is-mobile > .column.is-3 { - flex: none; - width: 25%; -} - -.columns.is-mobile > .column.is-offset-3 { - margin-left: 25%; -} - -.columns.is-mobile > .column.is-4 { - flex: none; - width: 33.33333%; -} - -.columns.is-mobile > .column.is-offset-4 { - margin-left: 33.33333%; -} - -.columns.is-mobile > .column.is-5 { - flex: none; - width: 41.66667%; -} - -.columns.is-mobile > .column.is-offset-5 { - margin-left: 41.66667%; -} - -.columns.is-mobile > .column.is-6 { - flex: none; - width: 50%; -} - -.columns.is-mobile > .column.is-offset-6 { - margin-left: 50%; -} - -.columns.is-mobile > .column.is-7 { - flex: none; - width: 58.33333%; -} - -.columns.is-mobile > .column.is-offset-7 { - margin-left: 58.33333%; -} - -.columns.is-mobile > .column.is-8 { - flex: none; - width: 66.66667%; -} - -.columns.is-mobile > .column.is-offset-8 { - margin-left: 66.66667%; -} - -.columns.is-mobile > .column.is-9 { - flex: none; - width: 75%; -} - -.columns.is-mobile > .column.is-offset-9 { - margin-left: 75%; -} - -.columns.is-mobile > .column.is-10 { - flex: none; - width: 83.33333%; -} - -.columns.is-mobile > .column.is-offset-10 { - margin-left: 83.33333%; -} - -.columns.is-mobile > .column.is-11 { - flex: none; - width: 91.66667%; -} - -.columns.is-mobile > .column.is-offset-11 { - margin-left: 91.66667%; -} - -.columns.is-mobile > .column.is-12 { - flex: none; - width: 100%; -} - -.columns.is-mobile > .column.is-offset-12 { - margin-left: 100%; -} - -@media screen and (max-width: 768px) { - .column.is-narrow-mobile { - flex: none; - width: unset; - } - .column.is-full-mobile { - flex: none; - width: 100%; - } - .column.is-three-quarters-mobile { - flex: none; - width: 75%; - } - .column.is-two-thirds-mobile { - flex: none; - width: 66.6666%; - } - .column.is-half-mobile { - flex: none; - width: 50%; - } - .column.is-one-third-mobile { - flex: none; - width: 33.3333%; - } - .column.is-one-quarter-mobile { - flex: none; - width: 25%; - } - .column.is-one-fifth-mobile { - flex: none; - width: 20%; - } - .column.is-two-fifths-mobile { - flex: none; - width: 40%; - } - .column.is-three-fifths-mobile { - flex: none; - width: 60%; - } - .column.is-four-fifths-mobile { - flex: none; - width: 80%; - } - .column.is-offset-three-quarters-mobile { - margin-left: 75%; - } - .column.is-offset-two-thirds-mobile { - margin-left: 66.6666%; - } - .column.is-offset-half-mobile { - margin-left: 50%; - } - .column.is-offset-one-third-mobile { - margin-left: 33.3333%; - } - .column.is-offset-one-quarter-mobile { - margin-left: 25%; - } - .column.is-offset-one-fifth-mobile { - margin-left: 20%; - } - .column.is-offset-two-fifths-mobile { - margin-left: 40%; - } - .column.is-offset-three-fifths-mobile { - margin-left: 60%; - } - .column.is-offset-four-fifths-mobile { - margin-left: 80%; - } - .column.is-0-mobile { - flex: none; - width: 0%; - } - .column.is-offset-0-mobile { - margin-left: 0%; - } - .column.is-1-mobile { - flex: none; - width: 8.33333%; - } - .column.is-offset-1-mobile { - margin-left: 8.33333%; - } - .column.is-2-mobile { - flex: none; - width: 16.66667%; - } - .column.is-offset-2-mobile { - margin-left: 16.66667%; - } - .column.is-3-mobile { - flex: none; - width: 25%; - } - .column.is-offset-3-mobile { - margin-left: 25%; - } - .column.is-4-mobile { - flex: none; - width: 33.33333%; - } - .column.is-offset-4-mobile { - margin-left: 33.33333%; - } - .column.is-5-mobile { - flex: none; - width: 41.66667%; - } - .column.is-offset-5-mobile { - margin-left: 41.66667%; - } - .column.is-6-mobile { - flex: none; - width: 50%; - } - .column.is-offset-6-mobile { - margin-left: 50%; - } - .column.is-7-mobile { - flex: none; - width: 58.33333%; - } - .column.is-offset-7-mobile { - margin-left: 58.33333%; - } - .column.is-8-mobile { - flex: none; - width: 66.66667%; - } - .column.is-offset-8-mobile { - margin-left: 66.66667%; - } - .column.is-9-mobile { - flex: none; - width: 75%; - } - .column.is-offset-9-mobile { - margin-left: 75%; - } - .column.is-10-mobile { - flex: none; - width: 83.33333%; - } - .column.is-offset-10-mobile { - margin-left: 83.33333%; - } - .column.is-11-mobile { - flex: none; - width: 91.66667%; - } - .column.is-offset-11-mobile { - margin-left: 91.66667%; - } - .column.is-12-mobile { - flex: none; - width: 100%; - } - .column.is-offset-12-mobile { - margin-left: 100%; - } -} - -@media screen and (min-width: 769px), print { - .column.is-narrow, .column.is-narrow-tablet { - flex: none; - width: unset; - } - .column.is-full, .column.is-full-tablet { - flex: none; - width: 100%; - } - .column.is-three-quarters, .column.is-three-quarters-tablet { - flex: none; - width: 75%; - } - .column.is-two-thirds, .column.is-two-thirds-tablet { - flex: none; - width: 66.6666%; - } - .column.is-half, .column.is-half-tablet { - flex: none; - width: 50%; - } - .column.is-one-third, .column.is-one-third-tablet { - flex: none; - width: 33.3333%; - } - .column.is-one-quarter, .column.is-one-quarter-tablet { - flex: none; - width: 25%; - } - .column.is-one-fifth, .column.is-one-fifth-tablet { - flex: none; - width: 20%; - } - .column.is-two-fifths, .column.is-two-fifths-tablet { - flex: none; - width: 40%; - } - .column.is-three-fifths, .column.is-three-fifths-tablet { - flex: none; - width: 60%; - } - .column.is-four-fifths, .column.is-four-fifths-tablet { - flex: none; - width: 80%; - } - .column.is-offset-three-quarters, .column.is-offset-three-quarters-tablet { - margin-left: 75%; - } - .column.is-offset-two-thirds, .column.is-offset-two-thirds-tablet { - margin-left: 66.6666%; - } - .column.is-offset-half, .column.is-offset-half-tablet { - margin-left: 50%; - } - .column.is-offset-one-third, .column.is-offset-one-third-tablet { - margin-left: 33.3333%; - } - .column.is-offset-one-quarter, .column.is-offset-one-quarter-tablet { - margin-left: 25%; - } - .column.is-offset-one-fifth, .column.is-offset-one-fifth-tablet { - margin-left: 20%; - } - .column.is-offset-two-fifths, .column.is-offset-two-fifths-tablet { - margin-left: 40%; - } - .column.is-offset-three-fifths, .column.is-offset-three-fifths-tablet { - margin-left: 60%; - } - .column.is-offset-four-fifths, .column.is-offset-four-fifths-tablet { - margin-left: 80%; - } - .column.is-0, .column.is-0-tablet { - flex: none; - width: 0%; - } - .column.is-offset-0, .column.is-offset-0-tablet { - margin-left: 0%; - } - .column.is-1, .column.is-1-tablet { - flex: none; - width: 8.33333%; - } - .column.is-offset-1, .column.is-offset-1-tablet { - margin-left: 8.33333%; - } - .column.is-2, .column.is-2-tablet { - flex: none; - width: 16.66667%; - } - .column.is-offset-2, .column.is-offset-2-tablet { - margin-left: 16.66667%; - } - .column.is-3, .column.is-3-tablet { - flex: none; - width: 25%; - } - .column.is-offset-3, .column.is-offset-3-tablet { - margin-left: 25%; - } - .column.is-4, .column.is-4-tablet { - flex: none; - width: 33.33333%; - } - .column.is-offset-4, .column.is-offset-4-tablet { - margin-left: 33.33333%; - } - .column.is-5, .column.is-5-tablet { - flex: none; - width: 41.66667%; - } - .column.is-offset-5, .column.is-offset-5-tablet { - margin-left: 41.66667%; - } - .column.is-6, .column.is-6-tablet { - flex: none; - width: 50%; - } - .column.is-offset-6, .column.is-offset-6-tablet { - margin-left: 50%; - } - .column.is-7, .column.is-7-tablet { - flex: none; - width: 58.33333%; - } - .column.is-offset-7, .column.is-offset-7-tablet { - margin-left: 58.33333%; - } - .column.is-8, .column.is-8-tablet { - flex: none; - width: 66.66667%; - } - .column.is-offset-8, .column.is-offset-8-tablet { - margin-left: 66.66667%; - } - .column.is-9, .column.is-9-tablet { - flex: none; - width: 75%; - } - .column.is-offset-9, .column.is-offset-9-tablet { - margin-left: 75%; - } - .column.is-10, .column.is-10-tablet { - flex: none; - width: 83.33333%; - } - .column.is-offset-10, .column.is-offset-10-tablet { - margin-left: 83.33333%; - } - .column.is-11, .column.is-11-tablet { - flex: none; - width: 91.66667%; - } - .column.is-offset-11, .column.is-offset-11-tablet { - margin-left: 91.66667%; - } - .column.is-12, .column.is-12-tablet { - flex: none; - width: 100%; - } - .column.is-offset-12, .column.is-offset-12-tablet { - margin-left: 100%; - } -} - -@media screen and (max-width: 1023px) { - .column.is-narrow-touch { - flex: none; - width: unset; - } - .column.is-full-touch { - flex: none; - width: 100%; - } - .column.is-three-quarters-touch { - flex: none; - width: 75%; - } - .column.is-two-thirds-touch { - flex: none; - width: 66.6666%; - } - .column.is-half-touch { - flex: none; - width: 50%; - } - .column.is-one-third-touch { - flex: none; - width: 33.3333%; - } - .column.is-one-quarter-touch { - flex: none; - width: 25%; - } - .column.is-one-fifth-touch { - flex: none; - width: 20%; - } - .column.is-two-fifths-touch { - flex: none; - width: 40%; - } - .column.is-three-fifths-touch { - flex: none; - width: 60%; - } - .column.is-four-fifths-touch { - flex: none; - width: 80%; - } - .column.is-offset-three-quarters-touch { - margin-left: 75%; - } - .column.is-offset-two-thirds-touch { - margin-left: 66.6666%; - } - .column.is-offset-half-touch { - margin-left: 50%; - } - .column.is-offset-one-third-touch { - margin-left: 33.3333%; - } - .column.is-offset-one-quarter-touch { - margin-left: 25%; - } - .column.is-offset-one-fifth-touch { - margin-left: 20%; - } - .column.is-offset-two-fifths-touch { - margin-left: 40%; - } - .column.is-offset-three-fifths-touch { - margin-left: 60%; - } - .column.is-offset-four-fifths-touch { - margin-left: 80%; - } - .column.is-0-touch { - flex: none; - width: 0%; - } - .column.is-offset-0-touch { - margin-left: 0%; - } - .column.is-1-touch { - flex: none; - width: 8.33333%; - } - .column.is-offset-1-touch { - margin-left: 8.33333%; - } - .column.is-2-touch { - flex: none; - width: 16.66667%; - } - .column.is-offset-2-touch { - margin-left: 16.66667%; - } - .column.is-3-touch { - flex: none; - width: 25%; - } - .column.is-offset-3-touch { - margin-left: 25%; - } - .column.is-4-touch { - flex: none; - width: 33.33333%; - } - .column.is-offset-4-touch { - margin-left: 33.33333%; - } - .column.is-5-touch { - flex: none; - width: 41.66667%; - } - .column.is-offset-5-touch { - margin-left: 41.66667%; - } - .column.is-6-touch { - flex: none; - width: 50%; - } - .column.is-offset-6-touch { - margin-left: 50%; - } - .column.is-7-touch { - flex: none; - width: 58.33333%; - } - .column.is-offset-7-touch { - margin-left: 58.33333%; - } - .column.is-8-touch { - flex: none; - width: 66.66667%; - } - .column.is-offset-8-touch { - margin-left: 66.66667%; - } - .column.is-9-touch { - flex: none; - width: 75%; - } - .column.is-offset-9-touch { - margin-left: 75%; - } - .column.is-10-touch { - flex: none; - width: 83.33333%; - } - .column.is-offset-10-touch { - margin-left: 83.33333%; - } - .column.is-11-touch { - flex: none; - width: 91.66667%; - } - .column.is-offset-11-touch { - margin-left: 91.66667%; - } - .column.is-12-touch { - flex: none; - width: 100%; - } - .column.is-offset-12-touch { - margin-left: 100%; - } -} - -@media screen and (min-width: 1024px) { - .column.is-narrow-desktop { - flex: none; - width: unset; - } - .column.is-full-desktop { - flex: none; - width: 100%; - } - .column.is-three-quarters-desktop { - flex: none; - width: 75%; - } - .column.is-two-thirds-desktop { - flex: none; - width: 66.6666%; - } - .column.is-half-desktop { - flex: none; - width: 50%; - } - .column.is-one-third-desktop { - flex: none; - width: 33.3333%; - } - .column.is-one-quarter-desktop { - flex: none; - width: 25%; - } - .column.is-one-fifth-desktop { - flex: none; - width: 20%; - } - .column.is-two-fifths-desktop { - flex: none; - width: 40%; - } - .column.is-three-fifths-desktop { - flex: none; - width: 60%; - } - .column.is-four-fifths-desktop { - flex: none; - width: 80%; - } - .column.is-offset-three-quarters-desktop { - margin-left: 75%; - } - .column.is-offset-two-thirds-desktop { - margin-left: 66.6666%; - } - .column.is-offset-half-desktop { - margin-left: 50%; - } - .column.is-offset-one-third-desktop { - margin-left: 33.3333%; - } - .column.is-offset-one-quarter-desktop { - margin-left: 25%; - } - .column.is-offset-one-fifth-desktop { - margin-left: 20%; - } - .column.is-offset-two-fifths-desktop { - margin-left: 40%; - } - .column.is-offset-three-fifths-desktop { - margin-left: 60%; - } - .column.is-offset-four-fifths-desktop { - margin-left: 80%; - } - .column.is-0-desktop { - flex: none; - width: 0%; - } - .column.is-offset-0-desktop { - margin-left: 0%; - } - .column.is-1-desktop { - flex: none; - width: 8.33333%; - } - .column.is-offset-1-desktop { - margin-left: 8.33333%; - } - .column.is-2-desktop { - flex: none; - width: 16.66667%; - } - .column.is-offset-2-desktop { - margin-left: 16.66667%; - } - .column.is-3-desktop { - flex: none; - width: 25%; - } - .column.is-offset-3-desktop { - margin-left: 25%; - } - .column.is-4-desktop { - flex: none; - width: 33.33333%; - } - .column.is-offset-4-desktop { - margin-left: 33.33333%; - } - .column.is-5-desktop { - flex: none; - width: 41.66667%; - } - .column.is-offset-5-desktop { - margin-left: 41.66667%; - } - .column.is-6-desktop { - flex: none; - width: 50%; - } - .column.is-offset-6-desktop { - margin-left: 50%; - } - .column.is-7-desktop { - flex: none; - width: 58.33333%; - } - .column.is-offset-7-desktop { - margin-left: 58.33333%; - } - .column.is-8-desktop { - flex: none; - width: 66.66667%; - } - .column.is-offset-8-desktop { - margin-left: 66.66667%; - } - .column.is-9-desktop { - flex: none; - width: 75%; - } - .column.is-offset-9-desktop { - margin-left: 75%; - } - .column.is-10-desktop { - flex: none; - width: 83.33333%; - } - .column.is-offset-10-desktop { - margin-left: 83.33333%; - } - .column.is-11-desktop { - flex: none; - width: 91.66667%; - } - .column.is-offset-11-desktop { - margin-left: 91.66667%; - } - .column.is-12-desktop { - flex: none; - width: 100%; - } - .column.is-offset-12-desktop { - margin-left: 100%; - } -} - -@media screen and (min-width: 1216px) { - .column.is-narrow-widescreen { - flex: none; - width: unset; - } - .column.is-full-widescreen { - flex: none; - width: 100%; - } - .column.is-three-quarters-widescreen { - flex: none; - width: 75%; - } - .column.is-two-thirds-widescreen { - flex: none; - width: 66.6666%; - } - .column.is-half-widescreen { - flex: none; - width: 50%; - } - .column.is-one-third-widescreen { - flex: none; - width: 33.3333%; - } - .column.is-one-quarter-widescreen { - flex: none; - width: 25%; - } - .column.is-one-fifth-widescreen { - flex: none; - width: 20%; - } - .column.is-two-fifths-widescreen { - flex: none; - width: 40%; - } - .column.is-three-fifths-widescreen { - flex: none; - width: 60%; - } - .column.is-four-fifths-widescreen { - flex: none; - width: 80%; - } - .column.is-offset-three-quarters-widescreen { - margin-left: 75%; - } - .column.is-offset-two-thirds-widescreen { - margin-left: 66.6666%; - } - .column.is-offset-half-widescreen { - margin-left: 50%; - } - .column.is-offset-one-third-widescreen { - margin-left: 33.3333%; - } - .column.is-offset-one-quarter-widescreen { - margin-left: 25%; - } - .column.is-offset-one-fifth-widescreen { - margin-left: 20%; - } - .column.is-offset-two-fifths-widescreen { - margin-left: 40%; - } - .column.is-offset-three-fifths-widescreen { - margin-left: 60%; - } - .column.is-offset-four-fifths-widescreen { - margin-left: 80%; - } - .column.is-0-widescreen { - flex: none; - width: 0%; - } - .column.is-offset-0-widescreen { - margin-left: 0%; - } - .column.is-1-widescreen { - flex: none; - width: 8.33333%; - } - .column.is-offset-1-widescreen { - margin-left: 8.33333%; - } - .column.is-2-widescreen { - flex: none; - width: 16.66667%; - } - .column.is-offset-2-widescreen { - margin-left: 16.66667%; - } - .column.is-3-widescreen { - flex: none; - width: 25%; - } - .column.is-offset-3-widescreen { - margin-left: 25%; - } - .column.is-4-widescreen { - flex: none; - width: 33.33333%; - } - .column.is-offset-4-widescreen { - margin-left: 33.33333%; - } - .column.is-5-widescreen { - flex: none; - width: 41.66667%; - } - .column.is-offset-5-widescreen { - margin-left: 41.66667%; - } - .column.is-6-widescreen { - flex: none; - width: 50%; - } - .column.is-offset-6-widescreen { - margin-left: 50%; - } - .column.is-7-widescreen { - flex: none; - width: 58.33333%; - } - .column.is-offset-7-widescreen { - margin-left: 58.33333%; - } - .column.is-8-widescreen { - flex: none; - width: 66.66667%; - } - .column.is-offset-8-widescreen { - margin-left: 66.66667%; - } - .column.is-9-widescreen { - flex: none; - width: 75%; - } - .column.is-offset-9-widescreen { - margin-left: 75%; - } - .column.is-10-widescreen { - flex: none; - width: 83.33333%; - } - .column.is-offset-10-widescreen { - margin-left: 83.33333%; - } - .column.is-11-widescreen { - flex: none; - width: 91.66667%; - } - .column.is-offset-11-widescreen { - margin-left: 91.66667%; - } - .column.is-12-widescreen { - flex: none; - width: 100%; - } - .column.is-offset-12-widescreen { - margin-left: 100%; - } -} - -@media screen and (min-width: 1408px) { - .column.is-narrow-fullhd { - flex: none; - width: unset; - } - .column.is-full-fullhd { - flex: none; - width: 100%; - } - .column.is-three-quarters-fullhd { - flex: none; - width: 75%; - } - .column.is-two-thirds-fullhd { - flex: none; - width: 66.6666%; - } - .column.is-half-fullhd { - flex: none; - width: 50%; - } - .column.is-one-third-fullhd { - flex: none; - width: 33.3333%; - } - .column.is-one-quarter-fullhd { - flex: none; - width: 25%; - } - .column.is-one-fifth-fullhd { - flex: none; - width: 20%; - } - .column.is-two-fifths-fullhd { - flex: none; - width: 40%; - } - .column.is-three-fifths-fullhd { - flex: none; - width: 60%; - } - .column.is-four-fifths-fullhd { - flex: none; - width: 80%; - } - .column.is-offset-three-quarters-fullhd { - margin-left: 75%; - } - .column.is-offset-two-thirds-fullhd { - margin-left: 66.6666%; - } - .column.is-offset-half-fullhd { - margin-left: 50%; - } - .column.is-offset-one-third-fullhd { - margin-left: 33.3333%; - } - .column.is-offset-one-quarter-fullhd { - margin-left: 25%; - } - .column.is-offset-one-fifth-fullhd { - margin-left: 20%; - } - .column.is-offset-two-fifths-fullhd { - margin-left: 40%; - } - .column.is-offset-three-fifths-fullhd { - margin-left: 60%; - } - .column.is-offset-four-fifths-fullhd { - margin-left: 80%; - } - .column.is-0-fullhd { - flex: none; - width: 0%; - } - .column.is-offset-0-fullhd { - margin-left: 0%; - } - .column.is-1-fullhd { - flex: none; - width: 8.33333%; - } - .column.is-offset-1-fullhd { - margin-left: 8.33333%; - } - .column.is-2-fullhd { - flex: none; - width: 16.66667%; - } - .column.is-offset-2-fullhd { - margin-left: 16.66667%; - } - .column.is-3-fullhd { - flex: none; - width: 25%; - } - .column.is-offset-3-fullhd { - margin-left: 25%; - } - .column.is-4-fullhd { - flex: none; - width: 33.33333%; - } - .column.is-offset-4-fullhd { - margin-left: 33.33333%; - } - .column.is-5-fullhd { - flex: none; - width: 41.66667%; - } - .column.is-offset-5-fullhd { - margin-left: 41.66667%; - } - .column.is-6-fullhd { - flex: none; - width: 50%; - } - .column.is-offset-6-fullhd { - margin-left: 50%; - } - .column.is-7-fullhd { - flex: none; - width: 58.33333%; - } - .column.is-offset-7-fullhd { - margin-left: 58.33333%; - } - .column.is-8-fullhd { - flex: none; - width: 66.66667%; - } - .column.is-offset-8-fullhd { - margin-left: 66.66667%; - } - .column.is-9-fullhd { - flex: none; - width: 75%; - } - .column.is-offset-9-fullhd { - margin-left: 75%; - } - .column.is-10-fullhd { - flex: none; - width: 83.33333%; - } - .column.is-offset-10-fullhd { - margin-left: 83.33333%; - } - .column.is-11-fullhd { - flex: none; - width: 91.66667%; - } - .column.is-offset-11-fullhd { - margin-left: 91.66667%; - } - .column.is-12-fullhd { - flex: none; - width: 100%; - } - .column.is-offset-12-fullhd { - margin-left: 100%; - } -} - -.columns { - margin-left: -0.75rem; - margin-right: -0.75rem; - margin-top: -0.75rem; -} - -.columns:last-child { - margin-bottom: -0.75rem; -} - -.columns:not(:last-child) { - margin-bottom: calc(1.5rem - 0.75rem); -} - -.columns.is-centered { - justify-content: center; -} - -.columns.is-gapless { - margin-left: 0; - margin-right: 0; - margin-top: 0; -} - -.columns.is-gapless > .column { - margin: 0; - padding: 0 !important; -} - -.columns.is-gapless:not(:last-child) { - margin-bottom: 1.5rem; -} - -.columns.is-gapless:last-child { - margin-bottom: 0; -} - -.columns.is-mobile { - display: flex; -} - -.columns.is-multiline { - flex-wrap: wrap; -} - -.columns.is-vcentered { - align-items: center; -} - -@media screen and (min-width: 769px), print { - .columns:not(.is-desktop) { - display: flex; - } -} - -@media screen and (min-width: 1024px) { - .columns.is-desktop { - display: flex; - } -} - -.columns.is-variable { - --columnGap: 0.75rem; - margin-left: calc(-1 * var(--columnGap)); - margin-right: calc(-1 * var(--columnGap)); -} - -.columns.is-variable > .column { - padding-left: var(--columnGap); - padding-right: var(--columnGap); -} - -.columns.is-variable.is-0 { - --columnGap: 0rem; -} - -@media screen and (max-width: 768px) { - .columns.is-variable.is-0-mobile { - --columnGap: 0rem; - } -} - -@media screen and (min-width: 769px), print { - .columns.is-variable.is-0-tablet { - --columnGap: 0rem; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .columns.is-variable.is-0-tablet-only { - --columnGap: 0rem; - } -} - -@media screen and (max-width: 1023px) { - .columns.is-variable.is-0-touch { - --columnGap: 0rem; - } -} - -@media screen and (min-width: 1024px) { - .columns.is-variable.is-0-desktop { - --columnGap: 0rem; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .columns.is-variable.is-0-desktop-only { - --columnGap: 0rem; - } -} - -@media screen and (min-width: 1216px) { - .columns.is-variable.is-0-widescreen { - --columnGap: 0rem; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-variable.is-0-widescreen-only { - --columnGap: 0rem; - } -} - -@media screen and (min-width: 1408px) { - .columns.is-variable.is-0-fullhd { - --columnGap: 0rem; - } -} - -.columns.is-variable.is-1 { - --columnGap: 0.25rem; -} - -@media screen and (max-width: 768px) { - .columns.is-variable.is-1-mobile { - --columnGap: 0.25rem; - } -} - -@media screen and (min-width: 769px), print { - .columns.is-variable.is-1-tablet { - --columnGap: 0.25rem; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .columns.is-variable.is-1-tablet-only { - --columnGap: 0.25rem; - } -} - -@media screen and (max-width: 1023px) { - .columns.is-variable.is-1-touch { - --columnGap: 0.25rem; - } -} - -@media screen and (min-width: 1024px) { - .columns.is-variable.is-1-desktop { - --columnGap: 0.25rem; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .columns.is-variable.is-1-desktop-only { - --columnGap: 0.25rem; - } -} - -@media screen and (min-width: 1216px) { - .columns.is-variable.is-1-widescreen { - --columnGap: 0.25rem; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-variable.is-1-widescreen-only { - --columnGap: 0.25rem; - } -} - -@media screen and (min-width: 1408px) { - .columns.is-variable.is-1-fullhd { - --columnGap: 0.25rem; - } -} - -.columns.is-variable.is-2 { - --columnGap: 0.5rem; -} - -@media screen and (max-width: 768px) { - .columns.is-variable.is-2-mobile { - --columnGap: 0.5rem; - } -} - -@media screen and (min-width: 769px), print { - .columns.is-variable.is-2-tablet { - --columnGap: 0.5rem; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .columns.is-variable.is-2-tablet-only { - --columnGap: 0.5rem; - } -} - -@media screen and (max-width: 1023px) { - .columns.is-variable.is-2-touch { - --columnGap: 0.5rem; - } -} - -@media screen and (min-width: 1024px) { - .columns.is-variable.is-2-desktop { - --columnGap: 0.5rem; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .columns.is-variable.is-2-desktop-only { - --columnGap: 0.5rem; - } -} - -@media screen and (min-width: 1216px) { - .columns.is-variable.is-2-widescreen { - --columnGap: 0.5rem; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-variable.is-2-widescreen-only { - --columnGap: 0.5rem; - } -} - -@media screen and (min-width: 1408px) { - .columns.is-variable.is-2-fullhd { - --columnGap: 0.5rem; - } -} - -.columns.is-variable.is-3 { - --columnGap: 0.75rem; -} - -@media screen and (max-width: 768px) { - .columns.is-variable.is-3-mobile { - --columnGap: 0.75rem; - } -} - -@media screen and (min-width: 769px), print { - .columns.is-variable.is-3-tablet { - --columnGap: 0.75rem; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .columns.is-variable.is-3-tablet-only { - --columnGap: 0.75rem; - } -} - -@media screen and (max-width: 1023px) { - .columns.is-variable.is-3-touch { - --columnGap: 0.75rem; - } -} - -@media screen and (min-width: 1024px) { - .columns.is-variable.is-3-desktop { - --columnGap: 0.75rem; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .columns.is-variable.is-3-desktop-only { - --columnGap: 0.75rem; - } -} - -@media screen and (min-width: 1216px) { - .columns.is-variable.is-3-widescreen { - --columnGap: 0.75rem; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-variable.is-3-widescreen-only { - --columnGap: 0.75rem; - } -} - -@media screen and (min-width: 1408px) { - .columns.is-variable.is-3-fullhd { - --columnGap: 0.75rem; - } -} - -.columns.is-variable.is-4 { - --columnGap: 1rem; -} - -@media screen and (max-width: 768px) { - .columns.is-variable.is-4-mobile { - --columnGap: 1rem; - } -} - -@media screen and (min-width: 769px), print { - .columns.is-variable.is-4-tablet { - --columnGap: 1rem; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .columns.is-variable.is-4-tablet-only { - --columnGap: 1rem; - } -} - -@media screen and (max-width: 1023px) { - .columns.is-variable.is-4-touch { - --columnGap: 1rem; - } -} - -@media screen and (min-width: 1024px) { - .columns.is-variable.is-4-desktop { - --columnGap: 1rem; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .columns.is-variable.is-4-desktop-only { - --columnGap: 1rem; - } -} - -@media screen and (min-width: 1216px) { - .columns.is-variable.is-4-widescreen { - --columnGap: 1rem; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-variable.is-4-widescreen-only { - --columnGap: 1rem; - } -} - -@media screen and (min-width: 1408px) { - .columns.is-variable.is-4-fullhd { - --columnGap: 1rem; - } -} - -.columns.is-variable.is-5 { - --columnGap: 1.25rem; -} - -@media screen and (max-width: 768px) { - .columns.is-variable.is-5-mobile { - --columnGap: 1.25rem; - } -} - -@media screen and (min-width: 769px), print { - .columns.is-variable.is-5-tablet { - --columnGap: 1.25rem; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .columns.is-variable.is-5-tablet-only { - --columnGap: 1.25rem; - } -} - -@media screen and (max-width: 1023px) { - .columns.is-variable.is-5-touch { - --columnGap: 1.25rem; - } -} - -@media screen and (min-width: 1024px) { - .columns.is-variable.is-5-desktop { - --columnGap: 1.25rem; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .columns.is-variable.is-5-desktop-only { - --columnGap: 1.25rem; - } -} - -@media screen and (min-width: 1216px) { - .columns.is-variable.is-5-widescreen { - --columnGap: 1.25rem; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-variable.is-5-widescreen-only { - --columnGap: 1.25rem; - } -} - -@media screen and (min-width: 1408px) { - .columns.is-variable.is-5-fullhd { - --columnGap: 1.25rem; - } -} - -.columns.is-variable.is-6 { - --columnGap: 1.5rem; -} - -@media screen and (max-width: 768px) { - .columns.is-variable.is-6-mobile { - --columnGap: 1.5rem; - } -} - -@media screen and (min-width: 769px), print { - .columns.is-variable.is-6-tablet { - --columnGap: 1.5rem; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .columns.is-variable.is-6-tablet-only { - --columnGap: 1.5rem; - } -} - -@media screen and (max-width: 1023px) { - .columns.is-variable.is-6-touch { - --columnGap: 1.5rem; - } -} - -@media screen and (min-width: 1024px) { - .columns.is-variable.is-6-desktop { - --columnGap: 1.5rem; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .columns.is-variable.is-6-desktop-only { - --columnGap: 1.5rem; - } -} - -@media screen and (min-width: 1216px) { - .columns.is-variable.is-6-widescreen { - --columnGap: 1.5rem; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-variable.is-6-widescreen-only { - --columnGap: 1.5rem; - } -} - -@media screen and (min-width: 1408px) { - .columns.is-variable.is-6-fullhd { - --columnGap: 1.5rem; - } -} - -.columns.is-variable.is-7 { - --columnGap: 1.75rem; -} - -@media screen and (max-width: 768px) { - .columns.is-variable.is-7-mobile { - --columnGap: 1.75rem; - } -} - -@media screen and (min-width: 769px), print { - .columns.is-variable.is-7-tablet { - --columnGap: 1.75rem; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .columns.is-variable.is-7-tablet-only { - --columnGap: 1.75rem; - } -} - -@media screen and (max-width: 1023px) { - .columns.is-variable.is-7-touch { - --columnGap: 1.75rem; - } -} - -@media screen and (min-width: 1024px) { - .columns.is-variable.is-7-desktop { - --columnGap: 1.75rem; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .columns.is-variable.is-7-desktop-only { - --columnGap: 1.75rem; - } -} - -@media screen and (min-width: 1216px) { - .columns.is-variable.is-7-widescreen { - --columnGap: 1.75rem; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-variable.is-7-widescreen-only { - --columnGap: 1.75rem; - } -} - -@media screen and (min-width: 1408px) { - .columns.is-variable.is-7-fullhd { - --columnGap: 1.75rem; - } -} - -.columns.is-variable.is-8 { - --columnGap: 2rem; -} - -@media screen and (max-width: 768px) { - .columns.is-variable.is-8-mobile { - --columnGap: 2rem; - } -} - -@media screen and (min-width: 769px), print { - .columns.is-variable.is-8-tablet { - --columnGap: 2rem; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .columns.is-variable.is-8-tablet-only { - --columnGap: 2rem; - } -} - -@media screen and (max-width: 1023px) { - .columns.is-variable.is-8-touch { - --columnGap: 2rem; - } -} - -@media screen and (min-width: 1024px) { - .columns.is-variable.is-8-desktop { - --columnGap: 2rem; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .columns.is-variable.is-8-desktop-only { - --columnGap: 2rem; - } -} - -@media screen and (min-width: 1216px) { - .columns.is-variable.is-8-widescreen { - --columnGap: 2rem; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-variable.is-8-widescreen-only { - --columnGap: 2rem; - } -} - -@media screen and (min-width: 1408px) { - .columns.is-variable.is-8-fullhd { - --columnGap: 2rem; - } -} - -.tile { - align-items: stretch; - display: block; - flex-basis: 0; - flex-grow: 1; - flex-shrink: 1; - min-height: -webkit-min-content; - min-height: -moz-min-content; - min-height: min-content; -} - -.tile.is-ancestor { - margin-left: -0.75rem; - margin-right: -0.75rem; - margin-top: -0.75rem; -} - -.tile.is-ancestor:last-child { - margin-bottom: -0.75rem; -} - -.tile.is-ancestor:not(:last-child) { - margin-bottom: 0.75rem; -} - -.tile.is-child { - margin: 0 !important; -} - -.tile.is-parent { - padding: 0.75rem; -} - -.tile.is-vertical { - flex-direction: column; -} - -.tile.is-vertical > .tile.is-child:not(:last-child) { - margin-bottom: 1.5rem !important; -} - -@media screen and (min-width: 769px), print { - .tile:not(.is-child) { - display: flex; - } - .tile.is-1 { - flex: none; - width: 8.33333%; - } - .tile.is-2 { - flex: none; - width: 16.66667%; - } - .tile.is-3 { - flex: none; - width: 25%; - } - .tile.is-4 { - flex: none; - width: 33.33333%; - } - .tile.is-5 { - flex: none; - width: 41.66667%; - } - .tile.is-6 { - flex: none; - width: 50%; - } - .tile.is-7 { - flex: none; - width: 58.33333%; - } - .tile.is-8 { - flex: none; - width: 66.66667%; - } - .tile.is-9 { - flex: none; - width: 75%; - } - .tile.is-10 { - flex: none; - width: 83.33333%; - } - .tile.is-11 { - flex: none; - width: 91.66667%; - } - .tile.is-12 { - flex: none; - width: 100%; - } -} - -/* Bulma Helpers */ .has-text-white { color: white !important; } @@ -9263,2549 +3806,3 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus { .has-background-white-bis { background-color: #fafafa !important; } - -.is-flex-direction-row { - flex-direction: row !important; -} - -.is-flex-direction-row-reverse { - flex-direction: row-reverse !important; -} - -.is-flex-direction-column { - flex-direction: column !important; -} - -.is-flex-direction-column-reverse { - flex-direction: column-reverse !important; -} - -.is-flex-wrap-nowrap { - flex-wrap: nowrap !important; -} - -.is-flex-wrap-wrap { - flex-wrap: wrap !important; -} - -.is-flex-wrap-wrap-reverse { - flex-wrap: wrap-reverse !important; -} - -.is-justify-content-flex-start { - justify-content: flex-start !important; -} - -.is-justify-content-flex-end { - justify-content: flex-end !important; -} - -.is-justify-content-center { - justify-content: center !important; -} - -.is-justify-content-space-between { - justify-content: space-between !important; -} - -.is-justify-content-space-around { - justify-content: space-around !important; -} - -.is-justify-content-space-evenly { - justify-content: space-evenly !important; -} - -.is-justify-content-start { - justify-content: start !important; -} - -.is-justify-content-end { - justify-content: end !important; -} - -.is-justify-content-left { - justify-content: left !important; -} - -.is-justify-content-right { - justify-content: right !important; -} - -.is-align-content-flex-start { - align-content: flex-start !important; -} - -.is-align-content-flex-end { - align-content: flex-end !important; -} - -.is-align-content-center { - align-content: center !important; -} - -.is-align-content-space-between { - align-content: space-between !important; -} - -.is-align-content-space-around { - align-content: space-around !important; -} - -.is-align-content-space-evenly { - align-content: space-evenly !important; -} - -.is-align-content-stretch { - align-content: stretch !important; -} - -.is-align-content-start { - align-content: start !important; -} - -.is-align-content-end { - align-content: end !important; -} - -.is-align-content-baseline { - align-content: baseline !important; -} - -.is-align-items-stretch { - align-items: stretch !important; -} - -.is-align-items-flex-start { - align-items: flex-start !important; -} - -.is-align-items-flex-end { - align-items: flex-end !important; -} - -.is-align-items-center { - align-items: center !important; -} - -.is-align-items-baseline { - align-items: baseline !important; -} - -.is-align-items-start { - align-items: start !important; -} - -.is-align-items-end { - align-items: end !important; -} - -.is-align-items-self-start { - align-items: self-start !important; -} - -.is-align-items-self-end { - align-items: self-end !important; -} - -.is-align-self-auto { - align-self: auto !important; -} - -.is-align-self-flex-start { - align-self: flex-start !important; -} - -.is-align-self-flex-end { - align-self: flex-end !important; -} - -.is-align-self-center { - align-self: center !important; -} - -.is-align-self-baseline { - align-self: baseline !important; -} - -.is-align-self-stretch { - align-self: stretch !important; -} - -.is-flex-grow-0 { - flex-grow: 0 !important; -} - -.is-flex-grow-1 { - flex-grow: 1 !important; -} - -.is-flex-grow-2 { - flex-grow: 2 !important; -} - -.is-flex-grow-3 { - flex-grow: 3 !important; -} - -.is-flex-grow-4 { - flex-grow: 4 !important; -} - -.is-flex-grow-5 { - flex-grow: 5 !important; -} - -.is-flex-shrink-0 { - flex-shrink: 0 !important; -} - -.is-flex-shrink-1 { - flex-shrink: 1 !important; -} - -.is-flex-shrink-2 { - flex-shrink: 2 !important; -} - -.is-flex-shrink-3 { - flex-shrink: 3 !important; -} - -.is-flex-shrink-4 { - flex-shrink: 4 !important; -} - -.is-flex-shrink-5 { - flex-shrink: 5 !important; -} - -.is-clearfix::after { - clear: both; - content: " "; - display: table; -} - -.is-pulled-left { - float: left !important; -} - -.is-pulled-right { - float: right !important; -} - -.is-radiusless { - border-radius: 0 !important; -} - -.is-shadowless { - box-shadow: none !important; -} - -.is-clickable { - cursor: pointer !important; - pointer-events: all !important; -} - -.is-clipped { - overflow: hidden !important; -} - -.is-relative { - position: relative !important; -} - -.is-marginless { - margin: 0 !important; -} - -.is-paddingless { - padding: 0 !important; -} - -.m-0 { - margin: 0 !important; -} - -.mt-0 { - margin-top: 0 !important; -} - -.mr-0 { - margin-right: 0 !important; -} - -.mb-0 { - margin-bottom: 0 !important; -} - -.ml-0 { - margin-left: 0 !important; -} - -.mx-0 { - margin-left: 0 !important; - margin-right: 0 !important; -} - -.my-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; -} - -.m-1 { - margin: 0.25rem !important; -} - -.mt-1 { - margin-top: 0.25rem !important; -} - -.mr-1 { - margin-right: 0.25rem !important; -} - -.mb-1 { - margin-bottom: 0.25rem !important; -} - -.ml-1 { - margin-left: 0.25rem !important; -} - -.mx-1 { - margin-left: 0.25rem !important; - margin-right: 0.25rem !important; -} - -.my-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; -} - -.m-2 { - margin: 0.5rem !important; -} - -.mt-2 { - margin-top: 0.5rem !important; -} - -.mr-2 { - margin-right: 0.5rem !important; -} - -.mb-2 { - margin-bottom: 0.5rem !important; -} - -.ml-2 { - margin-left: 0.5rem !important; -} - -.mx-2 { - margin-left: 0.5rem !important; - margin-right: 0.5rem !important; -} - -.my-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; -} - -.m-3 { - margin: 0.75rem !important; -} - -.mt-3 { - margin-top: 0.75rem !important; -} - -.mr-3 { - margin-right: 0.75rem !important; -} - -.mb-3 { - margin-bottom: 0.75rem !important; -} - -.ml-3 { - margin-left: 0.75rem !important; -} - -.mx-3 { - margin-left: 0.75rem !important; - margin-right: 0.75rem !important; -} - -.my-3 { - margin-top: 0.75rem !important; - margin-bottom: 0.75rem !important; -} - -.m-4 { - margin: 1rem !important; -} - -.mt-4 { - margin-top: 1rem !important; -} - -.mr-4 { - margin-right: 1rem !important; -} - -.mb-4 { - margin-bottom: 1rem !important; -} - -.ml-4 { - margin-left: 1rem !important; -} - -.mx-4 { - margin-left: 1rem !important; - margin-right: 1rem !important; -} - -.my-4 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; -} - -.m-5 { - margin: 1.5rem !important; -} - -.mt-5 { - margin-top: 1.5rem !important; -} - -.mr-5 { - margin-right: 1.5rem !important; -} - -.mb-5 { - margin-bottom: 1.5rem !important; -} - -.ml-5 { - margin-left: 1.5rem !important; -} - -.mx-5 { - margin-left: 1.5rem !important; - margin-right: 1.5rem !important; -} - -.my-5 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; -} - -.m-6 { - margin: 3rem !important; -} - -.mt-6 { - margin-top: 3rem !important; -} - -.mr-6 { - margin-right: 3rem !important; -} - -.mb-6 { - margin-bottom: 3rem !important; -} - -.ml-6 { - margin-left: 3rem !important; -} - -.mx-6 { - margin-left: 3rem !important; - margin-right: 3rem !important; -} - -.my-6 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; -} - -.m-auto { - margin: auto !important; -} - -.mt-auto { - margin-top: auto !important; -} - -.mr-auto { - margin-right: auto !important; -} - -.mb-auto { - margin-bottom: auto !important; -} - -.ml-auto { - margin-left: auto !important; -} - -.mx-auto { - margin-left: auto !important; - margin-right: auto !important; -} - -.my-auto { - margin-top: auto !important; - margin-bottom: auto !important; -} - -.p-0 { - padding: 0 !important; -} - -.pt-0 { - padding-top: 0 !important; -} - -.pr-0 { - padding-right: 0 !important; -} - -.pb-0 { - padding-bottom: 0 !important; -} - -.pl-0 { - padding-left: 0 !important; -} - -.px-0 { - padding-left: 0 !important; - padding-right: 0 !important; -} - -.py-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; -} - -.p-1 { - padding: 0.25rem !important; -} - -.pt-1 { - padding-top: 0.25rem !important; -} - -.pr-1 { - padding-right: 0.25rem !important; -} - -.pb-1 { - padding-bottom: 0.25rem !important; -} - -.pl-1 { - padding-left: 0.25rem !important; -} - -.px-1 { - padding-left: 0.25rem !important; - padding-right: 0.25rem !important; -} - -.py-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; -} - -.p-2 { - padding: 0.5rem !important; -} - -.pt-2 { - padding-top: 0.5rem !important; -} - -.pr-2 { - padding-right: 0.5rem !important; -} - -.pb-2 { - padding-bottom: 0.5rem !important; -} - -.pl-2 { - padding-left: 0.5rem !important; -} - -.px-2 { - padding-left: 0.5rem !important; - padding-right: 0.5rem !important; -} - -.py-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; -} - -.p-3 { - padding: 0.75rem !important; -} - -.pt-3 { - padding-top: 0.75rem !important; -} - -.pr-3 { - padding-right: 0.75rem !important; -} - -.pb-3 { - padding-bottom: 0.75rem !important; -} - -.pl-3 { - padding-left: 0.75rem !important; -} - -.px-3 { - padding-left: 0.75rem !important; - padding-right: 0.75rem !important; -} - -.py-3 { - padding-top: 0.75rem !important; - padding-bottom: 0.75rem !important; -} - -.p-4 { - padding: 1rem !important; -} - -.pt-4 { - padding-top: 1rem !important; -} - -.pr-4 { - padding-right: 1rem !important; -} - -.pb-4 { - padding-bottom: 1rem !important; -} - -.pl-4 { - padding-left: 1rem !important; -} - -.px-4 { - padding-left: 1rem !important; - padding-right: 1rem !important; -} - -.py-4 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; -} - -.p-5 { - padding: 1.5rem !important; -} - -.pt-5 { - padding-top: 1.5rem !important; -} - -.pr-5 { - padding-right: 1.5rem !important; -} - -.pb-5 { - padding-bottom: 1.5rem !important; -} - -.pl-5 { - padding-left: 1.5rem !important; -} - -.px-5 { - padding-left: 1.5rem !important; - padding-right: 1.5rem !important; -} - -.py-5 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; -} - -.p-6 { - padding: 3rem !important; -} - -.pt-6 { - padding-top: 3rem !important; -} - -.pr-6 { - padding-right: 3rem !important; -} - -.pb-6 { - padding-bottom: 3rem !important; -} - -.pl-6 { - padding-left: 3rem !important; -} - -.px-6 { - padding-left: 3rem !important; - padding-right: 3rem !important; -} - -.py-6 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; -} - -.p-auto { - padding: auto !important; -} - -.pt-auto { - padding-top: auto !important; -} - -.pr-auto { - padding-right: auto !important; -} - -.pb-auto { - padding-bottom: auto !important; -} - -.pl-auto { - padding-left: auto !important; -} - -.px-auto { - padding-left: auto !important; - padding-right: auto !important; -} - -.py-auto { - padding-top: auto !important; - padding-bottom: auto !important; -} - -.is-size-1 { - font-size: 3rem !important; -} - -.is-size-2 { - font-size: 2.5rem !important; -} - -.is-size-3 { - font-size: 2rem !important; -} - -.is-size-4 { - font-size: 1.5rem !important; -} - -.is-size-5 { - font-size: 1.25rem !important; -} - -.is-size-6 { - font-size: 1rem !important; -} - -.is-size-7 { - font-size: 0.75rem !important; -} - -@media screen and (max-width: 768px) { - .is-size-1-mobile { - font-size: 3rem !important; - } - .is-size-2-mobile { - font-size: 2.5rem !important; - } - .is-size-3-mobile { - font-size: 2rem !important; - } - .is-size-4-mobile { - font-size: 1.5rem !important; - } - .is-size-5-mobile { - font-size: 1.25rem !important; - } - .is-size-6-mobile { - font-size: 1rem !important; - } - .is-size-7-mobile { - font-size: 0.75rem !important; - } -} - -@media screen and (min-width: 769px), print { - .is-size-1-tablet { - font-size: 3rem !important; - } - .is-size-2-tablet { - font-size: 2.5rem !important; - } - .is-size-3-tablet { - font-size: 2rem !important; - } - .is-size-4-tablet { - font-size: 1.5rem !important; - } - .is-size-5-tablet { - font-size: 1.25rem !important; - } - .is-size-6-tablet { - font-size: 1rem !important; - } - .is-size-7-tablet { - font-size: 0.75rem !important; - } -} - -@media screen and (max-width: 1023px) { - .is-size-1-touch { - font-size: 3rem !important; - } - .is-size-2-touch { - font-size: 2.5rem !important; - } - .is-size-3-touch { - font-size: 2rem !important; - } - .is-size-4-touch { - font-size: 1.5rem !important; - } - .is-size-5-touch { - font-size: 1.25rem !important; - } - .is-size-6-touch { - font-size: 1rem !important; - } - .is-size-7-touch { - font-size: 0.75rem !important; - } -} - -@media screen and (min-width: 1024px) { - .is-size-1-desktop { - font-size: 3rem !important; - } - .is-size-2-desktop { - font-size: 2.5rem !important; - } - .is-size-3-desktop { - font-size: 2rem !important; - } - .is-size-4-desktop { - font-size: 1.5rem !important; - } - .is-size-5-desktop { - font-size: 1.25rem !important; - } - .is-size-6-desktop { - font-size: 1rem !important; - } - .is-size-7-desktop { - font-size: 0.75rem !important; - } -} - -@media screen and (min-width: 1216px) { - .is-size-1-widescreen { - font-size: 3rem !important; - } - .is-size-2-widescreen { - font-size: 2.5rem !important; - } - .is-size-3-widescreen { - font-size: 2rem !important; - } - .is-size-4-widescreen { - font-size: 1.5rem !important; - } - .is-size-5-widescreen { - font-size: 1.25rem !important; - } - .is-size-6-widescreen { - font-size: 1rem !important; - } - .is-size-7-widescreen { - font-size: 0.75rem !important; - } -} - -@media screen and (min-width: 1408px) { - .is-size-1-fullhd { - font-size: 3rem !important; - } - .is-size-2-fullhd { - font-size: 2.5rem !important; - } - .is-size-3-fullhd { - font-size: 2rem !important; - } - .is-size-4-fullhd { - font-size: 1.5rem !important; - } - .is-size-5-fullhd { - font-size: 1.25rem !important; - } - .is-size-6-fullhd { - font-size: 1rem !important; - } - .is-size-7-fullhd { - font-size: 0.75rem !important; - } -} - -.has-text-centered { - text-align: center !important; -} - -.has-text-justified { - text-align: justify !important; -} - -.has-text-left { - text-align: left !important; -} - -.has-text-right { - text-align: right !important; -} - -@media screen and (max-width: 768px) { - .has-text-centered-mobile { - text-align: center !important; - } -} - -@media screen and (min-width: 769px), print { - .has-text-centered-tablet { - text-align: center !important; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .has-text-centered-tablet-only { - text-align: center !important; - } -} - -@media screen and (max-width: 1023px) { - .has-text-centered-touch { - text-align: center !important; - } -} - -@media screen and (min-width: 1024px) { - .has-text-centered-desktop { - text-align: center !important; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .has-text-centered-desktop-only { - text-align: center !important; - } -} - -@media screen and (min-width: 1216px) { - .has-text-centered-widescreen { - text-align: center !important; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .has-text-centered-widescreen-only { - text-align: center !important; - } -} - -@media screen and (min-width: 1408px) { - .has-text-centered-fullhd { - text-align: center !important; - } -} - -@media screen and (max-width: 768px) { - .has-text-justified-mobile { - text-align: justify !important; - } -} - -@media screen and (min-width: 769px), print { - .has-text-justified-tablet { - text-align: justify !important; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .has-text-justified-tablet-only { - text-align: justify !important; - } -} - -@media screen and (max-width: 1023px) { - .has-text-justified-touch { - text-align: justify !important; - } -} - -@media screen and (min-width: 1024px) { - .has-text-justified-desktop { - text-align: justify !important; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .has-text-justified-desktop-only { - text-align: justify !important; - } -} - -@media screen and (min-width: 1216px) { - .has-text-justified-widescreen { - text-align: justify !important; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .has-text-justified-widescreen-only { - text-align: justify !important; - } -} - -@media screen and (min-width: 1408px) { - .has-text-justified-fullhd { - text-align: justify !important; - } -} - -@media screen and (max-width: 768px) { - .has-text-left-mobile { - text-align: left !important; - } -} - -@media screen and (min-width: 769px), print { - .has-text-left-tablet { - text-align: left !important; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .has-text-left-tablet-only { - text-align: left !important; - } -} - -@media screen and (max-width: 1023px) { - .has-text-left-touch { - text-align: left !important; - } -} - -@media screen and (min-width: 1024px) { - .has-text-left-desktop { - text-align: left !important; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .has-text-left-desktop-only { - text-align: left !important; - } -} - -@media screen and (min-width: 1216px) { - .has-text-left-widescreen { - text-align: left !important; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .has-text-left-widescreen-only { - text-align: left !important; - } -} - -@media screen and (min-width: 1408px) { - .has-text-left-fullhd { - text-align: left !important; - } -} - -@media screen and (max-width: 768px) { - .has-text-right-mobile { - text-align: right !important; - } -} - -@media screen and (min-width: 769px), print { - .has-text-right-tablet { - text-align: right !important; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .has-text-right-tablet-only { - text-align: right !important; - } -} - -@media screen and (max-width: 1023px) { - .has-text-right-touch { - text-align: right !important; - } -} - -@media screen and (min-width: 1024px) { - .has-text-right-desktop { - text-align: right !important; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .has-text-right-desktop-only { - text-align: right !important; - } -} - -@media screen and (min-width: 1216px) { - .has-text-right-widescreen { - text-align: right !important; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .has-text-right-widescreen-only { - text-align: right !important; - } -} - -@media screen and (min-width: 1408px) { - .has-text-right-fullhd { - text-align: right !important; - } -} - -.is-capitalized { - text-transform: capitalize !important; -} - -.is-lowercase { - text-transform: lowercase !important; -} - -.is-uppercase { - text-transform: uppercase !important; -} - -.is-italic { - font-style: italic !important; -} - -.is-underlined { - text-decoration: underline !important; -} - -.has-text-weight-light { - font-weight: 300 !important; -} - -.has-text-weight-normal { - font-weight: 400 !important; -} - -.has-text-weight-medium { - font-weight: 500 !important; -} - -.has-text-weight-semibold { - font-weight: 600 !important; -} - -.has-text-weight-bold { - font-weight: 700 !important; -} - -.is-family-primary { - font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; -} - -.is-family-secondary { - font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; -} - -.is-family-sans-serif { - font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; -} - -.is-family-monospace { - font-family: monospace !important; -} - -.is-family-code { - font-family: monospace !important; -} - -.is-block { - display: block !important; -} - -@media screen and (max-width: 768px) { - .is-block-mobile { - display: block !important; - } -} - -@media screen and (min-width: 769px), print { - .is-block-tablet { - display: block !important; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .is-block-tablet-only { - display: block !important; - } -} - -@media screen and (max-width: 1023px) { - .is-block-touch { - display: block !important; - } -} - -@media screen and (min-width: 1024px) { - .is-block-desktop { - display: block !important; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .is-block-desktop-only { - display: block !important; - } -} - -@media screen and (min-width: 1216px) { - .is-block-widescreen { - display: block !important; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-block-widescreen-only { - display: block !important; - } -} - -@media screen and (min-width: 1408px) { - .is-block-fullhd { - display: block !important; - } -} - -.is-flex { - display: flex !important; -} - -@media screen and (max-width: 768px) { - .is-flex-mobile { - display: flex !important; - } -} - -@media screen and (min-width: 769px), print { - .is-flex-tablet { - display: flex !important; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .is-flex-tablet-only { - display: flex !important; - } -} - -@media screen and (max-width: 1023px) { - .is-flex-touch { - display: flex !important; - } -} - -@media screen and (min-width: 1024px) { - .is-flex-desktop { - display: flex !important; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .is-flex-desktop-only { - display: flex !important; - } -} - -@media screen and (min-width: 1216px) { - .is-flex-widescreen { - display: flex !important; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-flex-widescreen-only { - display: flex !important; - } -} - -@media screen and (min-width: 1408px) { - .is-flex-fullhd { - display: flex !important; - } -} - -.is-inline { - display: inline !important; -} - -@media screen and (max-width: 768px) { - .is-inline-mobile { - display: inline !important; - } -} - -@media screen and (min-width: 769px), print { - .is-inline-tablet { - display: inline !important; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .is-inline-tablet-only { - display: inline !important; - } -} - -@media screen and (max-width: 1023px) { - .is-inline-touch { - display: inline !important; - } -} - -@media screen and (min-width: 1024px) { - .is-inline-desktop { - display: inline !important; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .is-inline-desktop-only { - display: inline !important; - } -} - -@media screen and (min-width: 1216px) { - .is-inline-widescreen { - display: inline !important; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-inline-widescreen-only { - display: inline !important; - } -} - -@media screen and (min-width: 1408px) { - .is-inline-fullhd { - display: inline !important; - } -} - -.is-inline-block { - display: inline-block !important; -} - -@media screen and (max-width: 768px) { - .is-inline-block-mobile { - display: inline-block !important; - } -} - -@media screen and (min-width: 769px), print { - .is-inline-block-tablet { - display: inline-block !important; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .is-inline-block-tablet-only { - display: inline-block !important; - } -} - -@media screen and (max-width: 1023px) { - .is-inline-block-touch { - display: inline-block !important; - } -} - -@media screen and (min-width: 1024px) { - .is-inline-block-desktop { - display: inline-block !important; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .is-inline-block-desktop-only { - display: inline-block !important; - } -} - -@media screen and (min-width: 1216px) { - .is-inline-block-widescreen { - display: inline-block !important; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-inline-block-widescreen-only { - display: inline-block !important; - } -} - -@media screen and (min-width: 1408px) { - .is-inline-block-fullhd { - display: inline-block !important; - } -} - -.is-inline-flex { - display: inline-flex !important; -} - -@media screen and (max-width: 768px) { - .is-inline-flex-mobile { - display: inline-flex !important; - } -} - -@media screen and (min-width: 769px), print { - .is-inline-flex-tablet { - display: inline-flex !important; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .is-inline-flex-tablet-only { - display: inline-flex !important; - } -} - -@media screen and (max-width: 1023px) { - .is-inline-flex-touch { - display: inline-flex !important; - } -} - -@media screen and (min-width: 1024px) { - .is-inline-flex-desktop { - display: inline-flex !important; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .is-inline-flex-desktop-only { - display: inline-flex !important; - } -} - -@media screen and (min-width: 1216px) { - .is-inline-flex-widescreen { - display: inline-flex !important; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-inline-flex-widescreen-only { - display: inline-flex !important; - } -} - -@media screen and (min-width: 1408px) { - .is-inline-flex-fullhd { - display: inline-flex !important; - } -} - -.is-hidden { - display: none !important; -} - -.is-sr-only { - border: none !important; - clip: rect(0, 0, 0, 0) !important; - height: 0.01em !important; - overflow: hidden !important; - padding: 0 !important; - position: absolute !important; - white-space: nowrap !important; - width: 0.01em !important; -} - -@media screen and (max-width: 768px) { - .is-hidden-mobile { - display: none !important; - } -} - -@media screen and (min-width: 769px), print { - .is-hidden-tablet { - display: none !important; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .is-hidden-tablet-only { - display: none !important; - } -} - -@media screen and (max-width: 1023px) { - .is-hidden-touch { - display: none !important; - } -} - -@media screen and (min-width: 1024px) { - .is-hidden-desktop { - display: none !important; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .is-hidden-desktop-only { - display: none !important; - } -} - -@media screen and (min-width: 1216px) { - .is-hidden-widescreen { - display: none !important; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-hidden-widescreen-only { - display: none !important; - } -} - -@media screen and (min-width: 1408px) { - .is-hidden-fullhd { - display: none !important; - } -} - -.is-invisible { - visibility: hidden !important; -} - -@media screen and (max-width: 768px) { - .is-invisible-mobile { - visibility: hidden !important; - } -} - -@media screen and (min-width: 769px), print { - .is-invisible-tablet { - visibility: hidden !important; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .is-invisible-tablet-only { - visibility: hidden !important; - } -} - -@media screen and (max-width: 1023px) { - .is-invisible-touch { - visibility: hidden !important; - } -} - -@media screen and (min-width: 1024px) { - .is-invisible-desktop { - visibility: hidden !important; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .is-invisible-desktop-only { - visibility: hidden !important; - } -} - -@media screen and (min-width: 1216px) { - .is-invisible-widescreen { - visibility: hidden !important; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-invisible-widescreen-only { - visibility: hidden !important; - } -} - -@media screen and (min-width: 1408px) { - .is-invisible-fullhd { - visibility: hidden !important; - } -} - -/* Bulma Layout */ -.hero { - align-items: stretch; - display: flex; - flex-direction: column; - justify-content: space-between; -} - -.hero .navbar { - background: none; -} - -.hero .tabs ul { - border-bottom: none; -} - -.hero.is-white { - background-color: white; - color: #0a0a0a; -} - -.hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), -.hero.is-white strong { - color: inherit; -} - -.hero.is-white .title { - color: #0a0a0a; -} - -.hero.is-white .subtitle { - color: rgba(10, 10, 10, 0.9); -} - -.hero.is-white .subtitle a:not(.button), -.hero.is-white .subtitle strong { - color: #0a0a0a; -} - -@media screen and (max-width: 1023px) { - .hero.is-white .navbar-menu { - background-color: white; - } -} - -.hero.is-white .navbar-item, -.hero.is-white .navbar-link { - color: rgba(10, 10, 10, 0.7); -} - -.hero.is-white a.navbar-item:hover, .hero.is-white a.navbar-item.is-active, -.hero.is-white .navbar-link:hover, -.hero.is-white .navbar-link.is-active { - background-color: #f2f2f2; - color: #0a0a0a; -} - -.hero.is-white .tabs a { - color: #0a0a0a; - opacity: 0.9; -} - -.hero.is-white .tabs a:hover { - opacity: 1; -} - -.hero.is-white .tabs li.is-active a { - color: white !important; - opacity: 1; -} - -.hero.is-white .tabs.is-boxed a, .hero.is-white .tabs.is-toggle a { - color: #0a0a0a; -} - -.hero.is-white .tabs.is-boxed a:hover, .hero.is-white .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); -} - -.hero.is-white .tabs.is-boxed li.is-active a, .hero.is-white .tabs.is-boxed li.is-active a:hover, .hero.is-white .tabs.is-toggle li.is-active a, .hero.is-white .tabs.is-toggle li.is-active a:hover { - background-color: #0a0a0a; - border-color: #0a0a0a; - color: white; -} - -.hero.is-white.is-bold { - background-image: linear-gradient(141deg, #e6e6e6 0%, white 71%, white 100%); -} - -@media screen and (max-width: 768px) { - .hero.is-white.is-bold .navbar-menu { - background-image: linear-gradient(141deg, #e6e6e6 0%, white 71%, white 100%); - } -} - -.hero.is-black { - background-color: #0a0a0a; - color: white; -} - -.hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), -.hero.is-black strong { - color: inherit; -} - -.hero.is-black .title { - color: white; -} - -.hero.is-black .subtitle { - color: rgba(255, 255, 255, 0.9); -} - -.hero.is-black .subtitle a:not(.button), -.hero.is-black .subtitle strong { - color: white; -} - -@media screen and (max-width: 1023px) { - .hero.is-black .navbar-menu { - background-color: #0a0a0a; - } -} - -.hero.is-black .navbar-item, -.hero.is-black .navbar-link { - color: rgba(255, 255, 255, 0.7); -} - -.hero.is-black a.navbar-item:hover, .hero.is-black a.navbar-item.is-active, -.hero.is-black .navbar-link:hover, -.hero.is-black .navbar-link.is-active { - background-color: black; - color: white; -} - -.hero.is-black .tabs a { - color: white; - opacity: 0.9; -} - -.hero.is-black .tabs a:hover { - opacity: 1; -} - -.hero.is-black .tabs li.is-active a { - color: #0a0a0a !important; - opacity: 1; -} - -.hero.is-black .tabs.is-boxed a, .hero.is-black .tabs.is-toggle a { - color: white; -} - -.hero.is-black .tabs.is-boxed a:hover, .hero.is-black .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); -} - -.hero.is-black .tabs.is-boxed li.is-active a, .hero.is-black .tabs.is-boxed li.is-active a:hover, .hero.is-black .tabs.is-toggle li.is-active a, .hero.is-black .tabs.is-toggle li.is-active a:hover { - background-color: white; - border-color: white; - color: #0a0a0a; -} - -.hero.is-black.is-bold { - background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%); -} - -@media screen and (max-width: 768px) { - .hero.is-black.is-bold .navbar-menu { - background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%); - } -} - -.hero.is-light { - background-color: whitesmoke; - color: rgba(0, 0, 0, 0.7); -} - -.hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), -.hero.is-light strong { - color: inherit; -} - -.hero.is-light .title { - color: rgba(0, 0, 0, 0.7); -} - -.hero.is-light .subtitle { - color: rgba(0, 0, 0, 0.9); -} - -.hero.is-light .subtitle a:not(.button), -.hero.is-light .subtitle strong { - color: rgba(0, 0, 0, 0.7); -} - -@media screen and (max-width: 1023px) { - .hero.is-light .navbar-menu { - background-color: whitesmoke; - } -} - -.hero.is-light .navbar-item, -.hero.is-light .navbar-link { - color: rgba(0, 0, 0, 0.7); -} - -.hero.is-light a.navbar-item:hover, .hero.is-light a.navbar-item.is-active, -.hero.is-light .navbar-link:hover, -.hero.is-light .navbar-link.is-active { - background-color: #e8e8e8; - color: rgba(0, 0, 0, 0.7); -} - -.hero.is-light .tabs a { - color: rgba(0, 0, 0, 0.7); - opacity: 0.9; -} - -.hero.is-light .tabs a:hover { - opacity: 1; -} - -.hero.is-light .tabs li.is-active a { - color: whitesmoke !important; - opacity: 1; -} - -.hero.is-light .tabs.is-boxed a, .hero.is-light .tabs.is-toggle a { - color: rgba(0, 0, 0, 0.7); -} - -.hero.is-light .tabs.is-boxed a:hover, .hero.is-light .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); -} - -.hero.is-light .tabs.is-boxed li.is-active a, .hero.is-light .tabs.is-boxed li.is-active a:hover, .hero.is-light .tabs.is-toggle li.is-active a, .hero.is-light .tabs.is-toggle li.is-active a:hover { - background-color: rgba(0, 0, 0, 0.7); - border-color: rgba(0, 0, 0, 0.7); - color: whitesmoke; -} - -.hero.is-light.is-bold { - background-image: linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%); -} - -@media screen and (max-width: 768px) { - .hero.is-light.is-bold .navbar-menu { - background-image: linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%); - } -} - -.hero.is-dark { - background-color: #363636; - color: #fff; -} - -.hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), -.hero.is-dark strong { - color: inherit; -} - -.hero.is-dark .title { - color: #fff; -} - -.hero.is-dark .subtitle { - color: rgba(255, 255, 255, 0.9); -} - -.hero.is-dark .subtitle a:not(.button), -.hero.is-dark .subtitle strong { - color: #fff; -} - -@media screen and (max-width: 1023px) { - .hero.is-dark .navbar-menu { - background-color: #363636; - } -} - -.hero.is-dark .navbar-item, -.hero.is-dark .navbar-link { - color: rgba(255, 255, 255, 0.7); -} - -.hero.is-dark a.navbar-item:hover, .hero.is-dark a.navbar-item.is-active, -.hero.is-dark .navbar-link:hover, -.hero.is-dark .navbar-link.is-active { - background-color: #292929; - color: #fff; -} - -.hero.is-dark .tabs a { - color: #fff; - opacity: 0.9; -} - -.hero.is-dark .tabs a:hover { - opacity: 1; -} - -.hero.is-dark .tabs li.is-active a { - color: #363636 !important; - opacity: 1; -} - -.hero.is-dark .tabs.is-boxed a, .hero.is-dark .tabs.is-toggle a { - color: #fff; -} - -.hero.is-dark .tabs.is-boxed a:hover, .hero.is-dark .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); -} - -.hero.is-dark .tabs.is-boxed li.is-active a, .hero.is-dark .tabs.is-boxed li.is-active a:hover, .hero.is-dark .tabs.is-toggle li.is-active a, .hero.is-dark .tabs.is-toggle li.is-active a:hover { - background-color: #fff; - border-color: #fff; - color: #363636; -} - -.hero.is-dark.is-bold { - background-image: linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%); -} - -@media screen and (max-width: 768px) { - .hero.is-dark.is-bold .navbar-menu { - background-image: linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%); - } -} - -.hero.is-primary { - background-color: #00d1b2; - color: #fff; -} - -.hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), -.hero.is-primary strong { - color: inherit; -} - -.hero.is-primary .title { - color: #fff; -} - -.hero.is-primary .subtitle { - color: rgba(255, 255, 255, 0.9); -} - -.hero.is-primary .subtitle a:not(.button), -.hero.is-primary .subtitle strong { - color: #fff; -} - -@media screen and (max-width: 1023px) { - .hero.is-primary .navbar-menu { - background-color: #00d1b2; - } -} - -.hero.is-primary .navbar-item, -.hero.is-primary .navbar-link { - color: rgba(255, 255, 255, 0.7); -} - -.hero.is-primary a.navbar-item:hover, .hero.is-primary a.navbar-item.is-active, -.hero.is-primary .navbar-link:hover, -.hero.is-primary .navbar-link.is-active { - background-color: #00b89c; - color: #fff; -} - -.hero.is-primary .tabs a { - color: #fff; - opacity: 0.9; -} - -.hero.is-primary .tabs a:hover { - opacity: 1; -} - -.hero.is-primary .tabs li.is-active a { - color: #00d1b2 !important; - opacity: 1; -} - -.hero.is-primary .tabs.is-boxed a, .hero.is-primary .tabs.is-toggle a { - color: #fff; -} - -.hero.is-primary .tabs.is-boxed a:hover, .hero.is-primary .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); -} - -.hero.is-primary .tabs.is-boxed li.is-active a, .hero.is-primary .tabs.is-boxed li.is-active a:hover, .hero.is-primary .tabs.is-toggle li.is-active a, .hero.is-primary .tabs.is-toggle li.is-active a:hover { - background-color: #fff; - border-color: #fff; - color: #00d1b2; -} - -.hero.is-primary.is-bold { - background-image: linear-gradient(141deg, #009e6c 0%, #00d1b2 71%, #00e7eb 100%); -} - -@media screen and (max-width: 768px) { - .hero.is-primary.is-bold .navbar-menu { - background-image: linear-gradient(141deg, #009e6c 0%, #00d1b2 71%, #00e7eb 100%); - } -} - -.hero.is-link { - background-color: #485fc7; - color: #fff; -} - -.hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), -.hero.is-link strong { - color: inherit; -} - -.hero.is-link .title { - color: #fff; -} - -.hero.is-link .subtitle { - color: rgba(255, 255, 255, 0.9); -} - -.hero.is-link .subtitle a:not(.button), -.hero.is-link .subtitle strong { - color: #fff; -} - -@media screen and (max-width: 1023px) { - .hero.is-link .navbar-menu { - background-color: #485fc7; - } -} - -.hero.is-link .navbar-item, -.hero.is-link .navbar-link { - color: rgba(255, 255, 255, 0.7); -} - -.hero.is-link a.navbar-item:hover, .hero.is-link a.navbar-item.is-active, -.hero.is-link .navbar-link:hover, -.hero.is-link .navbar-link.is-active { - background-color: #3a51bb; - color: #fff; -} - -.hero.is-link .tabs a { - color: #fff; - opacity: 0.9; -} - -.hero.is-link .tabs a:hover { - opacity: 1; -} - -.hero.is-link .tabs li.is-active a { - color: #485fc7 !important; - opacity: 1; -} - -.hero.is-link .tabs.is-boxed a, .hero.is-link .tabs.is-toggle a { - color: #fff; -} - -.hero.is-link .tabs.is-boxed a:hover, .hero.is-link .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); -} - -.hero.is-link .tabs.is-boxed li.is-active a, .hero.is-link .tabs.is-boxed li.is-active a:hover, .hero.is-link .tabs.is-toggle li.is-active a, .hero.is-link .tabs.is-toggle li.is-active a:hover { - background-color: #fff; - border-color: #fff; - color: #485fc7; -} - -.hero.is-link.is-bold { - background-image: linear-gradient(141deg, #2959b3 0%, #485fc7 71%, #5658d2 100%); -} - -@media screen and (max-width: 768px) { - .hero.is-link.is-bold .navbar-menu { - background-image: linear-gradient(141deg, #2959b3 0%, #485fc7 71%, #5658d2 100%); - } -} - -.hero.is-info { - background-color: #3e8ed0; - color: #fff; -} - -.hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), -.hero.is-info strong { - color: inherit; -} - -.hero.is-info .title { - color: #fff; -} - -.hero.is-info .subtitle { - color: rgba(255, 255, 255, 0.9); -} - -.hero.is-info .subtitle a:not(.button), -.hero.is-info .subtitle strong { - color: #fff; -} - -@media screen and (max-width: 1023px) { - .hero.is-info .navbar-menu { - background-color: #3e8ed0; - } -} - -.hero.is-info .navbar-item, -.hero.is-info .navbar-link { - color: rgba(255, 255, 255, 0.7); -} - -.hero.is-info a.navbar-item:hover, .hero.is-info a.navbar-item.is-active, -.hero.is-info .navbar-link:hover, -.hero.is-info .navbar-link.is-active { - background-color: #3082c5; - color: #fff; -} - -.hero.is-info .tabs a { - color: #fff; - opacity: 0.9; -} - -.hero.is-info .tabs a:hover { - opacity: 1; -} - -.hero.is-info .tabs li.is-active a { - color: #3e8ed0 !important; - opacity: 1; -} - -.hero.is-info .tabs.is-boxed a, .hero.is-info .tabs.is-toggle a { - color: #fff; -} - -.hero.is-info .tabs.is-boxed a:hover, .hero.is-info .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); -} - -.hero.is-info .tabs.is-boxed li.is-active a, .hero.is-info .tabs.is-boxed li.is-active a:hover, .hero.is-info .tabs.is-toggle li.is-active a, .hero.is-info .tabs.is-toggle li.is-active a:hover { - background-color: #fff; - border-color: #fff; - color: #3e8ed0; -} - -.hero.is-info.is-bold { - background-image: linear-gradient(141deg, #208fbc 0%, #3e8ed0 71%, #4d83db 100%); -} - -@media screen and (max-width: 768px) { - .hero.is-info.is-bold .navbar-menu { - background-image: linear-gradient(141deg, #208fbc 0%, #3e8ed0 71%, #4d83db 100%); - } -} - -.hero.is-success { - background-color: #48c78e; - color: #fff; -} - -.hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), -.hero.is-success strong { - color: inherit; -} - -.hero.is-success .title { - color: #fff; -} - -.hero.is-success .subtitle { - color: rgba(255, 255, 255, 0.9); -} - -.hero.is-success .subtitle a:not(.button), -.hero.is-success .subtitle strong { - color: #fff; -} - -@media screen and (max-width: 1023px) { - .hero.is-success .navbar-menu { - background-color: #48c78e; - } -} - -.hero.is-success .navbar-item, -.hero.is-success .navbar-link { - color: rgba(255, 255, 255, 0.7); -} - -.hero.is-success a.navbar-item:hover, .hero.is-success a.navbar-item.is-active, -.hero.is-success .navbar-link:hover, -.hero.is-success .navbar-link.is-active { - background-color: #3abb81; - color: #fff; -} - -.hero.is-success .tabs a { - color: #fff; - opacity: 0.9; -} - -.hero.is-success .tabs a:hover { - opacity: 1; -} - -.hero.is-success .tabs li.is-active a { - color: #48c78e !important; - opacity: 1; -} - -.hero.is-success .tabs.is-boxed a, .hero.is-success .tabs.is-toggle a { - color: #fff; -} - -.hero.is-success .tabs.is-boxed a:hover, .hero.is-success .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); -} - -.hero.is-success .tabs.is-boxed li.is-active a, .hero.is-success .tabs.is-boxed li.is-active a:hover, .hero.is-success .tabs.is-toggle li.is-active a, .hero.is-success .tabs.is-toggle li.is-active a:hover { - background-color: #fff; - border-color: #fff; - color: #48c78e; -} - -.hero.is-success.is-bold { - background-image: linear-gradient(141deg, #29b35e 0%, #48c78e 71%, #56d2af 100%); -} - -@media screen and (max-width: 768px) { - .hero.is-success.is-bold .navbar-menu { - background-image: linear-gradient(141deg, #29b35e 0%, #48c78e 71%, #56d2af 100%); - } -} - -.hero.is-warning { - background-color: #ffe08a; - color: rgba(0, 0, 0, 0.7); -} - -.hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), -.hero.is-warning strong { - color: inherit; -} - -.hero.is-warning .title { - color: rgba(0, 0, 0, 0.7); -} - -.hero.is-warning .subtitle { - color: rgba(0, 0, 0, 0.9); -} - -.hero.is-warning .subtitle a:not(.button), -.hero.is-warning .subtitle strong { - color: rgba(0, 0, 0, 0.7); -} - -@media screen and (max-width: 1023px) { - .hero.is-warning .navbar-menu { - background-color: #ffe08a; - } -} - -.hero.is-warning .navbar-item, -.hero.is-warning .navbar-link { - color: rgba(0, 0, 0, 0.7); -} - -.hero.is-warning a.navbar-item:hover, .hero.is-warning a.navbar-item.is-active, -.hero.is-warning .navbar-link:hover, -.hero.is-warning .navbar-link.is-active { - background-color: #ffd970; - color: rgba(0, 0, 0, 0.7); -} - -.hero.is-warning .tabs a { - color: rgba(0, 0, 0, 0.7); - opacity: 0.9; -} - -.hero.is-warning .tabs a:hover { - opacity: 1; -} - -.hero.is-warning .tabs li.is-active a { - color: #ffe08a !important; - opacity: 1; -} - -.hero.is-warning .tabs.is-boxed a, .hero.is-warning .tabs.is-toggle a { - color: rgba(0, 0, 0, 0.7); -} - -.hero.is-warning .tabs.is-boxed a:hover, .hero.is-warning .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); -} - -.hero.is-warning .tabs.is-boxed li.is-active a, .hero.is-warning .tabs.is-boxed li.is-active a:hover, .hero.is-warning .tabs.is-toggle li.is-active a, .hero.is-warning .tabs.is-toggle li.is-active a:hover { - background-color: rgba(0, 0, 0, 0.7); - border-color: rgba(0, 0, 0, 0.7); - color: #ffe08a; -} - -.hero.is-warning.is-bold { - background-image: linear-gradient(141deg, #ffb657 0%, #ffe08a 71%, #fff6a3 100%); -} - -@media screen and (max-width: 768px) { - .hero.is-warning.is-bold .navbar-menu { - background-image: linear-gradient(141deg, #ffb657 0%, #ffe08a 71%, #fff6a3 100%); - } -} - -.hero.is-danger { - background-color: #f14668; - color: #fff; -} - -.hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), -.hero.is-danger strong { - color: inherit; -} - -.hero.is-danger .title { - color: #fff; -} - -.hero.is-danger .subtitle { - color: rgba(255, 255, 255, 0.9); -} - -.hero.is-danger .subtitle a:not(.button), -.hero.is-danger .subtitle strong { - color: #fff; -} - -@media screen and (max-width: 1023px) { - .hero.is-danger .navbar-menu { - background-color: #f14668; - } -} - -.hero.is-danger .navbar-item, -.hero.is-danger .navbar-link { - color: rgba(255, 255, 255, 0.7); -} - -.hero.is-danger a.navbar-item:hover, .hero.is-danger a.navbar-item.is-active, -.hero.is-danger .navbar-link:hover, -.hero.is-danger .navbar-link.is-active { - background-color: #ef2e55; - color: #fff; -} - -.hero.is-danger .tabs a { - color: #fff; - opacity: 0.9; -} - -.hero.is-danger .tabs a:hover { - opacity: 1; -} - -.hero.is-danger .tabs li.is-active a { - color: #f14668 !important; - opacity: 1; -} - -.hero.is-danger .tabs.is-boxed a, .hero.is-danger .tabs.is-toggle a { - color: #fff; -} - -.hero.is-danger .tabs.is-boxed a:hover, .hero.is-danger .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); -} - -.hero.is-danger .tabs.is-boxed li.is-active a, .hero.is-danger .tabs.is-boxed li.is-active a:hover, .hero.is-danger .tabs.is-toggle li.is-active a, .hero.is-danger .tabs.is-toggle li.is-active a:hover { - background-color: #fff; - border-color: #fff; - color: #f14668; -} - -.hero.is-danger.is-bold { - background-image: linear-gradient(141deg, #fa0a62 0%, #f14668 71%, #f7595f 100%); -} - -@media screen and (max-width: 768px) { - .hero.is-danger.is-bold .navbar-menu { - background-image: linear-gradient(141deg, #fa0a62 0%, #f14668 71%, #f7595f 100%); - } -} - -.hero.is-small .hero-body { - padding: 1.5rem; -} - -@media screen and (min-width: 769px), print { - .hero.is-medium .hero-body { - padding: 9rem 4.5rem; - } -} - -@media screen and (min-width: 769px), print { - .hero.is-large .hero-body { - padding: 18rem 6rem; - } -} - -.hero.is-halfheight .hero-body, .hero.is-fullheight .hero-body, .hero.is-fullheight-with-navbar .hero-body { - align-items: center; - display: flex; -} - -.hero.is-halfheight .hero-body > .container, .hero.is-fullheight .hero-body > .container, .hero.is-fullheight-with-navbar .hero-body > .container { - flex-grow: 1; - flex-shrink: 1; -} - -.hero.is-halfheight { - min-height: 50vh; -} - -.hero.is-fullheight { - min-height: 100vh; -} - -.hero-video { - overflow: hidden; -} - -.hero-video video { - left: 50%; - min-height: 100%; - min-width: 100%; - position: absolute; - top: 50%; - transform: translate3d(-50%, -50%, 0); -} - -.hero-video.is-transparent { - opacity: 0.3; -} - -@media screen and (max-width: 768px) { - .hero-video { - display: none; - } -} - -.hero-buttons { - margin-top: 1.5rem; -} - -@media screen and (max-width: 768px) { - .hero-buttons .button { - display: flex; - } - .hero-buttons .button:not(:last-child) { - margin-bottom: 0.75rem; - } -} - -@media screen and (min-width: 769px), print { - .hero-buttons { - display: flex; - justify-content: center; - } - .hero-buttons .button:not(:last-child) { - margin-right: 1.5rem; - } -} - -.hero-head, -.hero-foot { - flex-grow: 0; - flex-shrink: 0; -} - -.hero-body { - flex-grow: 1; - flex-shrink: 0; - padding: 3rem 1.5rem; -} - -@media screen and (min-width: 769px), print { - .hero-body { - padding: 3rem 3rem; - } -} - -.section { - padding: 3rem 1.5rem; -} - -@media screen and (min-width: 1024px) { - .section { - padding: 3rem 3rem; - } - .section.is-medium { - padding: 9rem 4.5rem; - } - .section.is-large { - padding: 18rem 6rem; - } -} - -.footer { - background-color: #fafafa; - padding: 3rem 1.5rem 6rem; -} -/*# sourceMappingURL=bulma.css.map */ \ No newline at end of file diff --git a/wwwroot/vendor/fontawesome.css b/wwwroot/vendor/fontawesome.css index d9ade75..eee7ff0 100644 --- a/wwwroot/vendor/fontawesome.css +++ b/wwwroot/vendor/fontawesome.css @@ -1,7 +1,3 @@ -/*! - * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - */ .fa, .fas, .far, @@ -187,8 +183,6 @@ .fa-inverse { color: #fff; } -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen -readers do not read off random characters that represent icons */ .fa-500px:before { content: "\f26e"; } diff --git a/wwwroot/vendor/ionicons.css b/wwwroot/vendor/ionicons.css index 885aa6b..80868f5 100644 --- a/wwwroot/vendor/ionicons.css +++ b/wwwroot/vendor/ionicons.css @@ -1,6 +1,6 @@ @charset "UTF-8"; /*! - Ionicons, v2.0.0 + Ionicons, v4.6.4-1 Created by Ben Sperry for the Ionic Framework, http://ionicons.com/ https://twitter.com/benjsperry https://twitter.com/ionicframework MIT License: https://github.com/driftyco/ionicons @@ -10,1471 +10,3503 @@ used under CC BY http://creativecommons.org/licenses/by/4.0/ Modified icons to fit ionicon’s grid from original. */ -@font-face { font-family: "Ionicons"; src: url("../fonts/ionicons.eot?v=2.0.0"); src: url("../fonts/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"), url("../fonts/ionicons.ttf?v=2.0.0") format("truetype"), url("../fonts/ionicons.woff?v=2.0.0") format("woff"), url("../fonts/ionicons.svg?v=2.0.0#Ionicons") format("svg"); font-weight: normal; font-style: normal; } -.ion, .ionicons, .ion-alert:before, .ion-alert-circled:before, .ion-android-add:before, .ion-android-add-circle:before, .ion-android-alarm-clock:before, .ion-android-alert:before, .ion-android-apps:before, .ion-android-archive:before, .ion-android-arrow-back:before, .ion-android-arrow-down:before, .ion-android-arrow-dropdown:before, .ion-android-arrow-dropdown-circle:before, .ion-android-arrow-dropleft:before, .ion-android-arrow-dropleft-circle:before, .ion-android-arrow-dropright:before, .ion-android-arrow-dropright-circle:before, .ion-android-arrow-dropup:before, .ion-android-arrow-dropup-circle:before, .ion-android-arrow-forward:before, .ion-android-arrow-up:before, .ion-android-attach:before, .ion-android-bar:before, .ion-android-bicycle:before, .ion-android-boat:before, .ion-android-bookmark:before, .ion-android-bulb:before, .ion-android-bus:before, .ion-android-calendar:before, .ion-android-call:before, .ion-android-camera:before, .ion-android-cancel:before, .ion-android-car:before, .ion-android-cart:before, .ion-android-chat:before, .ion-android-checkbox:before, .ion-android-checkbox-blank:before, .ion-android-checkbox-outline:before, .ion-android-checkbox-outline-blank:before, .ion-android-checkmark-circle:before, .ion-android-clipboard:before, .ion-android-close:before, .ion-android-cloud:before, .ion-android-cloud-circle:before, .ion-android-cloud-done:before, .ion-android-cloud-outline:before, .ion-android-color-palette:before, .ion-android-compass:before, .ion-android-contact:before, .ion-android-contacts:before, .ion-android-contract:before, .ion-android-create:before, .ion-android-delete:before, .ion-android-desktop:before, .ion-android-document:before, .ion-android-done:before, .ion-android-done-all:before, .ion-android-download:before, .ion-android-drafts:before, .ion-android-exit:before, .ion-android-expand:before, .ion-android-favorite:before, .ion-android-favorite-outline:before, .ion-android-film:before, .ion-android-folder:before, .ion-android-folder-open:before, .ion-android-funnel:before, .ion-android-globe:before, .ion-android-hand:before, .ion-android-hangout:before, .ion-android-happy:before, .ion-android-home:before, .ion-android-image:before, .ion-android-laptop:before, .ion-android-list:before, .ion-android-locate:before, .ion-android-lock:before, .ion-android-mail:before, .ion-android-map:before, .ion-android-menu:before, .ion-android-microphone:before, .ion-android-microphone-off:before, .ion-android-more-horizontal:before, .ion-android-more-vertical:before, .ion-android-navigate:before, .ion-android-notifications:before, .ion-android-notifications-none:before, .ion-android-notifications-off:before, .ion-android-open:before, .ion-android-options:before, .ion-android-people:before, .ion-android-person:before, .ion-android-person-add:before, .ion-android-phone-landscape:before, .ion-android-phone-portrait:before, .ion-android-pin:before, .ion-android-plane:before, .ion-android-playstore:before, .ion-android-print:before, .ion-android-radio-button-off:before, .ion-android-radio-button-on:before, .ion-android-refresh:before, .ion-android-remove:before, .ion-android-remove-circle:before, .ion-android-restaurant:before, .ion-android-sad:before, .ion-android-search:before, .ion-android-send:before, .ion-android-settings:before, .ion-android-share:before, .ion-android-share-alt:before, .ion-android-star:before, .ion-android-star-half:before, .ion-android-star-outline:before, .ion-android-stopwatch:before, .ion-android-subway:before, .ion-android-sunny:before, .ion-android-sync:before, .ion-android-textsms:before, .ion-android-time:before, .ion-android-train:before, .ion-android-unlock:before, .ion-android-upload:before, .ion-android-volume-down:before, .ion-android-volume-mute:before, .ion-android-volume-off:before, .ion-android-volume-up:before, .ion-android-walk:before, .ion-android-warning:before, .ion-android-watch:before, .ion-android-wifi:before, .ion-aperture:before, .ion-archive:before, .ion-arrow-down-a:before, .ion-arrow-down-b:before, .ion-arrow-down-c:before, .ion-arrow-expand:before, .ion-arrow-graph-down-left:before, .ion-arrow-graph-down-right:before, .ion-arrow-graph-up-left:before, .ion-arrow-graph-up-right:before, .ion-arrow-left-a:before, .ion-arrow-left-b:before, .ion-arrow-left-c:before, .ion-arrow-move:before, .ion-arrow-resize:before, .ion-arrow-return-left:before, .ion-arrow-return-right:before, .ion-arrow-right-a:before, .ion-arrow-right-b:before, .ion-arrow-right-c:before, .ion-arrow-shrink:before, .ion-arrow-swap:before, .ion-arrow-up-a:before, .ion-arrow-up-b:before, .ion-arrow-up-c:before, .ion-asterisk:before, .ion-at:before, .ion-backspace:before, .ion-backspace-outline:before, .ion-bag:before, .ion-battery-charging:before, .ion-battery-empty:before, .ion-battery-full:before, .ion-battery-half:before, .ion-battery-low:before, .ion-beaker:before, .ion-beer:before, .ion-bluetooth:before, .ion-bonfire:before, .ion-bookmark:before, .ion-bowtie:before, .ion-briefcase:before, .ion-bug:before, .ion-calculator:before, .ion-calendar:before, .ion-camera:before, .ion-card:before, .ion-cash:before, .ion-chatbox:before, .ion-chatbox-working:before, .ion-chatboxes:before, .ion-chatbubble:before, .ion-chatbubble-working:before, .ion-chatbubbles:before, .ion-checkmark:before, .ion-checkmark-circled:before, .ion-checkmark-round:before, .ion-chevron-down:before, .ion-chevron-left:before, .ion-chevron-right:before, .ion-chevron-up:before, .ion-clipboard:before, .ion-clock:before, .ion-close:before, .ion-close-circled:before, .ion-close-round:before, .ion-closed-captioning:before, .ion-cloud:before, .ion-code:before, .ion-code-download:before, .ion-code-working:before, .ion-coffee:before, .ion-compass:before, .ion-compose:before, .ion-connection-bars:before, .ion-contrast:before, .ion-crop:before, .ion-cube:before, .ion-disc:before, .ion-document:before, .ion-document-text:before, .ion-drag:before, .ion-earth:before, .ion-easel:before, .ion-edit:before, .ion-egg:before, .ion-eject:before, .ion-email:before, .ion-email-unread:before, .ion-erlenmeyer-flask:before, .ion-erlenmeyer-flask-bubbles:before, .ion-eye:before, .ion-eye-disabled:before, .ion-female:before, .ion-filing:before, .ion-film-marker:before, .ion-fireball:before, .ion-flag:before, .ion-flame:before, .ion-flash:before, .ion-flash-off:before, .ion-folder:before, .ion-fork:before, .ion-fork-repo:before, .ion-forward:before, .ion-funnel:before, .ion-gear-a:before, .ion-gear-b:before, .ion-grid:before, .ion-hammer:before, .ion-happy:before, .ion-happy-outline:before, .ion-headphone:before, .ion-heart:before, .ion-heart-broken:before, .ion-help:before, .ion-help-buoy:before, .ion-help-circled:before, .ion-home:before, .ion-icecream:before, .ion-image:before, .ion-images:before, .ion-information:before, .ion-information-circled:before, .ion-ionic:before, .ion-ios-alarm:before, .ion-ios-alarm-outline:before, .ion-ios-albums:before, .ion-ios-albums-outline:before, .ion-ios-americanfootball:before, .ion-ios-americanfootball-outline:before, .ion-ios-analytics:before, .ion-ios-analytics-outline:before, .ion-ios-arrow-back:before, .ion-ios-arrow-down:before, .ion-ios-arrow-forward:before, .ion-ios-arrow-left:before, .ion-ios-arrow-right:before, .ion-ios-arrow-thin-down:before, .ion-ios-arrow-thin-left:before, .ion-ios-arrow-thin-right:before, .ion-ios-arrow-thin-up:before, .ion-ios-arrow-up:before, .ion-ios-at:before, .ion-ios-at-outline:before, .ion-ios-barcode:before, .ion-ios-barcode-outline:before, .ion-ios-baseball:before, .ion-ios-baseball-outline:before, .ion-ios-basketball:before, .ion-ios-basketball-outline:before, .ion-ios-bell:before, .ion-ios-bell-outline:before, .ion-ios-body:before, .ion-ios-body-outline:before, .ion-ios-bolt:before, .ion-ios-bolt-outline:before, .ion-ios-book:before, .ion-ios-book-outline:before, .ion-ios-bookmarks:before, .ion-ios-bookmarks-outline:before, .ion-ios-box:before, .ion-ios-box-outline:before, .ion-ios-briefcase:before, .ion-ios-briefcase-outline:before, .ion-ios-browsers:before, .ion-ios-browsers-outline:before, .ion-ios-calculator:before, .ion-ios-calculator-outline:before, .ion-ios-calendar:before, .ion-ios-calendar-outline:before, .ion-ios-camera:before, .ion-ios-camera-outline:before, .ion-ios-cart:before, .ion-ios-cart-outline:before, .ion-ios-chatboxes:before, .ion-ios-chatboxes-outline:before, .ion-ios-chatbubble:before, .ion-ios-chatbubble-outline:before, .ion-ios-checkmark:before, .ion-ios-checkmark-empty:before, .ion-ios-checkmark-outline:before, .ion-ios-circle-filled:before, .ion-ios-circle-outline:before, .ion-ios-clock:before, .ion-ios-clock-outline:before, .ion-ios-close:before, .ion-ios-close-empty:before, .ion-ios-close-outline:before, .ion-ios-cloud:before, .ion-ios-cloud-download:before, .ion-ios-cloud-download-outline:before, .ion-ios-cloud-outline:before, .ion-ios-cloud-upload:before, .ion-ios-cloud-upload-outline:before, .ion-ios-cloudy:before, .ion-ios-cloudy-night:before, .ion-ios-cloudy-night-outline:before, .ion-ios-cloudy-outline:before, .ion-ios-cog:before, .ion-ios-cog-outline:before, .ion-ios-color-filter:before, .ion-ios-color-filter-outline:before, .ion-ios-color-wand:before, .ion-ios-color-wand-outline:before, .ion-ios-compose:before, .ion-ios-compose-outline:before, .ion-ios-contact:before, .ion-ios-contact-outline:before, .ion-ios-copy:before, .ion-ios-copy-outline:before, .ion-ios-crop:before, .ion-ios-crop-strong:before, .ion-ios-download:before, .ion-ios-download-outline:before, .ion-ios-drag:before, .ion-ios-email:before, .ion-ios-email-outline:before, .ion-ios-eye:before, .ion-ios-eye-outline:before, .ion-ios-fastforward:before, .ion-ios-fastforward-outline:before, .ion-ios-filing:before, .ion-ios-filing-outline:before, .ion-ios-film:before, .ion-ios-film-outline:before, .ion-ios-flag:before, .ion-ios-flag-outline:before, .ion-ios-flame:before, .ion-ios-flame-outline:before, .ion-ios-flask:before, .ion-ios-flask-outline:before, .ion-ios-flower:before, .ion-ios-flower-outline:before, .ion-ios-folder:before, .ion-ios-folder-outline:before, .ion-ios-football:before, .ion-ios-football-outline:before, .ion-ios-game-controller-a:before, .ion-ios-game-controller-a-outline:before, .ion-ios-game-controller-b:before, .ion-ios-game-controller-b-outline:before, .ion-ios-gear:before, .ion-ios-gear-outline:before, .ion-ios-glasses:before, .ion-ios-glasses-outline:before, .ion-ios-grid-view:before, .ion-ios-grid-view-outline:before, .ion-ios-heart:before, .ion-ios-heart-outline:before, .ion-ios-help:before, .ion-ios-help-empty:before, .ion-ios-help-outline:before, .ion-ios-home:before, .ion-ios-home-outline:before, .ion-ios-infinite:before, .ion-ios-infinite-outline:before, .ion-ios-information:before, .ion-ios-information-empty:before, .ion-ios-information-outline:before, .ion-ios-ionic-outline:before, .ion-ios-keypad:before, .ion-ios-keypad-outline:before, .ion-ios-lightbulb:before, .ion-ios-lightbulb-outline:before, .ion-ios-list:before, .ion-ios-list-outline:before, .ion-ios-location:before, .ion-ios-location-outline:before, .ion-ios-locked:before, .ion-ios-locked-outline:before, .ion-ios-loop:before, .ion-ios-loop-strong:before, .ion-ios-medical:before, .ion-ios-medical-outline:before, .ion-ios-medkit:before, .ion-ios-medkit-outline:before, .ion-ios-mic:before, .ion-ios-mic-off:before, .ion-ios-mic-outline:before, .ion-ios-minus:before, .ion-ios-minus-empty:before, .ion-ios-minus-outline:before, .ion-ios-monitor:before, .ion-ios-monitor-outline:before, .ion-ios-moon:before, .ion-ios-moon-outline:before, .ion-ios-more:before, .ion-ios-more-outline:before, .ion-ios-musical-note:before, .ion-ios-musical-notes:before, .ion-ios-navigate:before, .ion-ios-navigate-outline:before, .ion-ios-nutrition:before, .ion-ios-nutrition-outline:before, .ion-ios-paper:before, .ion-ios-paper-outline:before, .ion-ios-paperplane:before, .ion-ios-paperplane-outline:before, .ion-ios-partlysunny:before, .ion-ios-partlysunny-outline:before, .ion-ios-pause:before, .ion-ios-pause-outline:before, .ion-ios-paw:before, .ion-ios-paw-outline:before, .ion-ios-people:before, .ion-ios-people-outline:before, .ion-ios-person:before, .ion-ios-person-outline:before, .ion-ios-personadd:before, .ion-ios-personadd-outline:before, .ion-ios-photos:before, .ion-ios-photos-outline:before, .ion-ios-pie:before, .ion-ios-pie-outline:before, .ion-ios-pint:before, .ion-ios-pint-outline:before, .ion-ios-play:before, .ion-ios-play-outline:before, .ion-ios-plus:before, .ion-ios-plus-empty:before, .ion-ios-plus-outline:before, .ion-ios-pricetag:before, .ion-ios-pricetag-outline:before, .ion-ios-pricetags:before, .ion-ios-pricetags-outline:before, .ion-ios-printer:before, .ion-ios-printer-outline:before, .ion-ios-pulse:before, .ion-ios-pulse-strong:before, .ion-ios-rainy:before, .ion-ios-rainy-outline:before, .ion-ios-recording:before, .ion-ios-recording-outline:before, .ion-ios-redo:before, .ion-ios-redo-outline:before, .ion-ios-refresh:before, .ion-ios-refresh-empty:before, .ion-ios-refresh-outline:before, .ion-ios-reload:before, .ion-ios-reverse-camera:before, .ion-ios-reverse-camera-outline:before, .ion-ios-rewind:before, .ion-ios-rewind-outline:before, .ion-ios-rose:before, .ion-ios-rose-outline:before, .ion-ios-search:before, .ion-ios-search-strong:before, .ion-ios-settings:before, .ion-ios-settings-strong:before, .ion-ios-shuffle:before, .ion-ios-shuffle-strong:before, .ion-ios-skipbackward:before, .ion-ios-skipbackward-outline:before, .ion-ios-skipforward:before, .ion-ios-skipforward-outline:before, .ion-ios-snowy:before, .ion-ios-speedometer:before, .ion-ios-speedometer-outline:before, .ion-ios-star:before, .ion-ios-star-half:before, .ion-ios-star-outline:before, .ion-ios-stopwatch:before, .ion-ios-stopwatch-outline:before, .ion-ios-sunny:before, .ion-ios-sunny-outline:before, .ion-ios-telephone:before, .ion-ios-telephone-outline:before, .ion-ios-tennisball:before, .ion-ios-tennisball-outline:before, .ion-ios-thunderstorm:before, .ion-ios-thunderstorm-outline:before, .ion-ios-time:before, .ion-ios-time-outline:before, .ion-ios-timer:before, .ion-ios-timer-outline:before, .ion-ios-toggle:before, .ion-ios-toggle-outline:before, .ion-ios-trash:before, .ion-ios-trash-outline:before, .ion-ios-undo:before, .ion-ios-undo-outline:before, .ion-ios-unlocked:before, .ion-ios-unlocked-outline:before, .ion-ios-upload:before, .ion-ios-upload-outline:before, .ion-ios-videocam:before, .ion-ios-videocam-outline:before, .ion-ios-volume-high:before, .ion-ios-volume-low:before, .ion-ios-wineglass:before, .ion-ios-wineglass-outline:before, .ion-ios-world:before, .ion-ios-world-outline:before, .ion-ipad:before, .ion-iphone:before, .ion-ipod:before, .ion-jet:before, .ion-key:before, .ion-knife:before, .ion-laptop:before, .ion-leaf:before, .ion-levels:before, .ion-lightbulb:before, .ion-link:before, .ion-load-a:before, .ion-load-b:before, .ion-load-c:before, .ion-load-d:before, .ion-location:before, .ion-lock-combination:before, .ion-locked:before, .ion-log-in:before, .ion-log-out:before, .ion-loop:before, .ion-magnet:before, .ion-male:before, .ion-man:before, .ion-map:before, .ion-medkit:before, .ion-merge:before, .ion-mic-a:before, .ion-mic-b:before, .ion-mic-c:before, .ion-minus:before, .ion-minus-circled:before, .ion-minus-round:before, .ion-model-s:before, .ion-monitor:before, .ion-more:before, .ion-mouse:before, .ion-music-note:before, .ion-navicon:before, .ion-navicon-round:before, .ion-navigate:before, .ion-network:before, .ion-no-smoking:before, .ion-nuclear:before, .ion-outlet:before, .ion-paintbrush:before, .ion-paintbucket:before, .ion-paper-airplane:before, .ion-paperclip:before, .ion-pause:before, .ion-person:before, .ion-person-add:before, .ion-person-stalker:before, .ion-pie-graph:before, .ion-pin:before, .ion-pinpoint:before, .ion-pizza:before, .ion-plane:before, .ion-planet:before, .ion-play:before, .ion-playstation:before, .ion-plus:before, .ion-plus-circled:before, .ion-plus-round:before, .ion-podium:before, .ion-pound:before, .ion-power:before, .ion-pricetag:before, .ion-pricetags:before, .ion-printer:before, .ion-pull-request:before, .ion-qr-scanner:before, .ion-quote:before, .ion-radio-waves:before, .ion-record:before, .ion-refresh:before, .ion-reply:before, .ion-reply-all:before, .ion-ribbon-a:before, .ion-ribbon-b:before, .ion-sad:before, .ion-sad-outline:before, .ion-scissors:before, .ion-search:before, .ion-settings:before, .ion-share:before, .ion-shuffle:before, .ion-skip-backward:before, .ion-skip-forward:before, .ion-social-android:before, .ion-social-android-outline:before, .ion-social-angular:before, .ion-social-angular-outline:before, .ion-social-apple:before, .ion-social-apple-outline:before, .ion-social-bitcoin:before, .ion-social-bitcoin-outline:before, .ion-social-buffer:before, .ion-social-buffer-outline:before, .ion-social-chrome:before, .ion-social-chrome-outline:before, .ion-social-codepen:before, .ion-social-codepen-outline:before, .ion-social-css3:before, .ion-social-css3-outline:before, .ion-social-designernews:before, .ion-social-designernews-outline:before, .ion-social-dribbble:before, .ion-social-dribbble-outline:before, .ion-social-dropbox:before, .ion-social-dropbox-outline:before, .ion-social-euro:before, .ion-social-euro-outline:before, .ion-social-facebook:before, .ion-social-facebook-outline:before, .ion-social-foursquare:before, .ion-social-foursquare-outline:before, .ion-social-freebsd-devil:before, .ion-social-github:before, .ion-social-github-outline:before, .ion-social-google:before, .ion-social-google-outline:before, .ion-social-googleplus:before, .ion-social-googleplus-outline:before, .ion-social-hackernews:before, .ion-social-hackernews-outline:before, .ion-social-html5:before, .ion-social-html5-outline:before, .ion-social-instagram:before, .ion-social-instagram-outline:before, .ion-social-javascript:before, .ion-social-javascript-outline:before, .ion-social-linkedin:before, .ion-social-linkedin-outline:before, .ion-social-markdown:before, .ion-social-nodejs:before, .ion-social-octocat:before, .ion-social-pinterest:before, .ion-social-pinterest-outline:before, .ion-social-python:before, .ion-social-reddit:before, .ion-social-reddit-outline:before, .ion-social-rss:before, .ion-social-rss-outline:before, .ion-social-sass:before, .ion-social-skype:before, .ion-social-skype-outline:before, .ion-social-snapchat:before, .ion-social-snapchat-outline:before, .ion-social-tumblr:before, .ion-social-tumblr-outline:before, .ion-social-tux:before, .ion-social-twitch:before, .ion-social-twitch-outline:before, .ion-social-twitter:before, .ion-social-twitter-outline:before, .ion-social-usd:before, .ion-social-usd-outline:before, .ion-social-vimeo:before, .ion-social-vimeo-outline:before, .ion-social-whatsapp:before, .ion-social-whatsapp-outline:before, .ion-social-windows:before, .ion-social-windows-outline:before, .ion-social-wordpress:before, .ion-social-wordpress-outline:before, .ion-social-yahoo:before, .ion-social-yahoo-outline:before, .ion-social-yen:before, .ion-social-yen-outline:before, .ion-social-youtube:before, .ion-social-youtube-outline:before, .ion-soup-can:before, .ion-soup-can-outline:before, .ion-speakerphone:before, .ion-speedometer:before, .ion-spoon:before, .ion-star:before, .ion-stats-bars:before, .ion-steam:before, .ion-stop:before, .ion-thermometer:before, .ion-thumbsdown:before, .ion-thumbsup:before, .ion-toggle:before, .ion-toggle-filled:before, .ion-transgender:before, .ion-trash-a:before, .ion-trash-b:before, .ion-trophy:before, .ion-tshirt:before, .ion-tshirt-outline:before, .ion-umbrella:before, .ion-university:before, .ion-unlocked:before, .ion-upload:before, .ion-usb:before, .ion-videocamera:before, .ion-volume-high:before, .ion-volume-low:before, .ion-volume-medium:before, .ion-volume-mute:before, .ion-wand:before, .ion-waterdrop:before, .ion-wifi:before, .ion-wineglass:before, .ion-woman:before, .ion-wrench:before, .ion-xbox:before { display: inline-block; font-family: "Ionicons"; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; text-rendering: auto; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } +@font-face { + font-family: "Ionicons"; + src: url("../fonts/ionicons.eot?v=4.6.4-1"); + src: url("../fonts/ionicons.eot?v=4.6.4-1#iefix") format("embedded-opentype"), url("../fonts/ionicons.woff2?v=4.6.4-1") format("woff2"), url("../fonts/ionicons.woff?v=4.6.4-1") format("woff"), url("../fonts/ionicons.ttf?v=4.6.4-1") format("truetype"), url("../fonts/ionicons.svg?v=4.6.4-1#Ionicons") format("svg"); + font-weight: normal; + font-style: normal; +} +.ion, .ionicons, +.ion-ios-add:before, +.ion-ios-add-circle:before, +.ion-ios-add-circle-outline:before, +.ion-ios-airplane:before, +.ion-ios-alarm:before, +.ion-ios-albums:before, +.ion-ios-alert:before, +.ion-ios-american-football:before, +.ion-ios-analytics:before, +.ion-ios-aperture:before, +.ion-ios-apps:before, +.ion-ios-appstore:before, +.ion-ios-archive:before, +.ion-ios-arrow-back:before, +.ion-ios-arrow-down:before, +.ion-ios-arrow-dropdown:before, +.ion-ios-arrow-dropdown-circle:before, +.ion-ios-arrow-dropleft:before, +.ion-ios-arrow-dropleft-circle:before, +.ion-ios-arrow-dropright:before, +.ion-ios-arrow-dropright-circle:before, +.ion-ios-arrow-dropup:before, +.ion-ios-arrow-dropup-circle:before, +.ion-ios-arrow-forward:before, +.ion-ios-arrow-round-back:before, +.ion-ios-arrow-round-down:before, +.ion-ios-arrow-round-forward:before, +.ion-ios-arrow-round-up:before, +.ion-ios-arrow-up:before, +.ion-ios-at:before, +.ion-ios-attach:before, +.ion-ios-backspace:before, +.ion-ios-barcode:before, +.ion-ios-baseball:before, +.ion-ios-basket:before, +.ion-ios-basketball:before, +.ion-ios-battery-charging:before, +.ion-ios-battery-dead:before, +.ion-ios-battery-full:before, +.ion-ios-beaker:before, +.ion-ios-bed:before, +.ion-ios-beer:before, +.ion-ios-bicycle:before, +.ion-ios-bluetooth:before, +.ion-ios-boat:before, +.ion-ios-body:before, +.ion-ios-bonfire:before, +.ion-ios-book:before, +.ion-ios-bookmark:before, +.ion-ios-bookmarks:before, +.ion-ios-bowtie:before, +.ion-ios-briefcase:before, +.ion-ios-browsers:before, +.ion-ios-brush:before, +.ion-ios-bug:before, +.ion-ios-build:before, +.ion-ios-bulb:before, +.ion-ios-bus:before, +.ion-ios-business:before, +.ion-ios-cafe:before, +.ion-ios-calculator:before, +.ion-ios-calendar:before, +.ion-ios-call:before, +.ion-ios-camera:before, +.ion-ios-car:before, +.ion-ios-card:before, +.ion-ios-cart:before, +.ion-ios-cash:before, +.ion-ios-cellular:before, +.ion-ios-chatboxes:before, +.ion-ios-chatbubbles:before, +.ion-ios-checkbox:before, +.ion-ios-checkbox-outline:before, +.ion-ios-checkmark:before, +.ion-ios-checkmark-circle:before, +.ion-ios-checkmark-circle-outline:before, +.ion-ios-clipboard:before, +.ion-ios-clock:before, +.ion-ios-close:before, +.ion-ios-close-circle:before, +.ion-ios-close-circle-outline:before, +.ion-ios-cloud:before, +.ion-ios-cloud-circle:before, +.ion-ios-cloud-done:before, +.ion-ios-cloud-download:before, +.ion-ios-cloud-outline:before, +.ion-ios-cloud-upload:before, +.ion-ios-cloudy:before, +.ion-ios-cloudy-night:before, +.ion-ios-code:before, +.ion-ios-code-download:before, +.ion-ios-code-working:before, +.ion-ios-cog:before, +.ion-ios-color-fill:before, +.ion-ios-color-filter:before, +.ion-ios-color-palette:before, +.ion-ios-color-wand:before, +.ion-ios-compass:before, +.ion-ios-construct:before, +.ion-ios-contact:before, +.ion-ios-contacts:before, +.ion-ios-contract:before, +.ion-ios-contrast:before, +.ion-ios-copy:before, +.ion-ios-create:before, +.ion-ios-crop:before, +.ion-ios-cube:before, +.ion-ios-cut:before, +.ion-ios-desktop:before, +.ion-ios-disc:before, +.ion-ios-document:before, +.ion-ios-done-all:before, +.ion-ios-download:before, +.ion-ios-easel:before, +.ion-ios-egg:before, +.ion-ios-exit:before, +.ion-ios-expand:before, +.ion-ios-eye:before, +.ion-ios-eye-off:before, +.ion-ios-fastforward:before, +.ion-ios-female:before, +.ion-ios-filing:before, +.ion-ios-film:before, +.ion-ios-finger-print:before, +.ion-ios-fitness:before, +.ion-ios-flag:before, +.ion-ios-flame:before, +.ion-ios-flash:before, +.ion-ios-flash-off:before, +.ion-ios-flashlight:before, +.ion-ios-flask:before, +.ion-ios-flower:before, +.ion-ios-folder:before, +.ion-ios-folder-open:before, +.ion-ios-football:before, +.ion-ios-funnel:before, +.ion-ios-gift:before, +.ion-ios-git-branch:before, +.ion-ios-git-commit:before, +.ion-ios-git-compare:before, +.ion-ios-git-merge:before, +.ion-ios-git-network:before, +.ion-ios-git-pull-request:before, +.ion-ios-glasses:before, +.ion-ios-globe:before, +.ion-ios-grid:before, +.ion-ios-hammer:before, +.ion-ios-hand:before, +.ion-ios-happy:before, +.ion-ios-headset:before, +.ion-ios-heart:before, +.ion-ios-heart-dislike:before, +.ion-ios-heart-empty:before, +.ion-ios-heart-half:before, +.ion-ios-help:before, +.ion-ios-help-buoy:before, +.ion-ios-help-circle:before, +.ion-ios-help-circle-outline:before, +.ion-ios-home:before, +.ion-ios-hourglass:before, +.ion-ios-ice-cream:before, +.ion-ios-image:before, +.ion-ios-images:before, +.ion-ios-infinite:before, +.ion-ios-information:before, +.ion-ios-information-circle:before, +.ion-ios-information-circle-outline:before, +.ion-ios-jet:before, +.ion-ios-journal:before, +.ion-ios-key:before, +.ion-ios-keypad:before, +.ion-ios-laptop:before, +.ion-ios-leaf:before, +.ion-ios-link:before, +.ion-ios-list:before, +.ion-ios-list-box:before, +.ion-ios-locate:before, +.ion-ios-lock:before, +.ion-ios-log-in:before, +.ion-ios-log-out:before, +.ion-ios-magnet:before, +.ion-ios-mail:before, +.ion-ios-mail-open:before, +.ion-ios-mail-unread:before, +.ion-ios-male:before, +.ion-ios-man:before, +.ion-ios-map:before, +.ion-ios-medal:before, +.ion-ios-medical:before, +.ion-ios-medkit:before, +.ion-ios-megaphone:before, +.ion-ios-menu:before, +.ion-ios-mic:before, +.ion-ios-mic-off:before, +.ion-ios-microphone:before, +.ion-ios-moon:before, +.ion-ios-more:before, +.ion-ios-move:before, +.ion-ios-musical-note:before, +.ion-ios-musical-notes:before, +.ion-ios-navigate:before, +.ion-ios-notifications:before, +.ion-ios-notifications-off:before, +.ion-ios-notifications-outline:before, +.ion-ios-nuclear:before, +.ion-ios-nutrition:before, +.ion-ios-open:before, +.ion-ios-options:before, +.ion-ios-outlet:before, +.ion-ios-paper:before, +.ion-ios-paper-plane:before, +.ion-ios-partly-sunny:before, +.ion-ios-pause:before, +.ion-ios-paw:before, +.ion-ios-people:before, +.ion-ios-person:before, +.ion-ios-person-add:before, +.ion-ios-phone-landscape:before, +.ion-ios-phone-portrait:before, +.ion-ios-photos:before, +.ion-ios-pie:before, +.ion-ios-pin:before, +.ion-ios-pint:before, +.ion-ios-pizza:before, +.ion-ios-planet:before, +.ion-ios-play:before, +.ion-ios-play-circle:before, +.ion-ios-podium:before, +.ion-ios-power:before, +.ion-ios-pricetag:before, +.ion-ios-pricetags:before, +.ion-ios-print:before, +.ion-ios-pulse:before, +.ion-ios-qr-scanner:before, +.ion-ios-quote:before, +.ion-ios-radio:before, +.ion-ios-radio-button-off:before, +.ion-ios-radio-button-on:before, +.ion-ios-rainy:before, +.ion-ios-recording:before, +.ion-ios-redo:before, +.ion-ios-refresh:before, +.ion-ios-refresh-circle:before, +.ion-ios-remove:before, +.ion-ios-remove-circle:before, +.ion-ios-remove-circle-outline:before, +.ion-ios-reorder:before, +.ion-ios-repeat:before, +.ion-ios-resize:before, +.ion-ios-restaurant:before, +.ion-ios-return-left:before, +.ion-ios-return-right:before, +.ion-ios-reverse-camera:before, +.ion-ios-rewind:before, +.ion-ios-ribbon:before, +.ion-ios-rocket:before, +.ion-ios-rose:before, +.ion-ios-sad:before, +.ion-ios-save:before, +.ion-ios-school:before, +.ion-ios-search:before, +.ion-ios-send:before, +.ion-ios-settings:before, +.ion-ios-share:before, +.ion-ios-share-alt:before, +.ion-ios-shirt:before, +.ion-ios-shuffle:before, +.ion-ios-skip-backward:before, +.ion-ios-skip-forward:before, +.ion-ios-snow:before, +.ion-ios-speedometer:before, +.ion-ios-square:before, +.ion-ios-square-outline:before, +.ion-ios-star:before, +.ion-ios-star-half:before, +.ion-ios-star-outline:before, +.ion-ios-stats:before, +.ion-ios-stopwatch:before, +.ion-ios-subway:before, +.ion-ios-sunny:before, +.ion-ios-swap:before, +.ion-ios-switch:before, +.ion-ios-sync:before, +.ion-ios-tablet-landscape:before, +.ion-ios-tablet-portrait:before, +.ion-ios-tennisball:before, +.ion-ios-text:before, +.ion-ios-thermometer:before, +.ion-ios-thumbs-down:before, +.ion-ios-thumbs-up:before, +.ion-ios-thunderstorm:before, +.ion-ios-time:before, +.ion-ios-timer:before, +.ion-ios-today:before, +.ion-ios-train:before, +.ion-ios-transgender:before, +.ion-ios-trash:before, +.ion-ios-trending-down:before, +.ion-ios-trending-up:before, +.ion-ios-trophy:before, +.ion-ios-tv:before, +.ion-ios-umbrella:before, +.ion-ios-undo:before, +.ion-ios-unlock:before, +.ion-ios-videocam:before, +.ion-ios-volume-high:before, +.ion-ios-volume-low:before, +.ion-ios-volume-mute:before, +.ion-ios-volume-off:before, +.ion-ios-walk:before, +.ion-ios-wallet:before, +.ion-ios-warning:before, +.ion-ios-watch:before, +.ion-ios-water:before, +.ion-ios-wifi:before, +.ion-ios-wine:before, +.ion-ios-woman:before, +.ion-logo-android:before, +.ion-logo-angular:before, +.ion-logo-apple:before, +.ion-logo-bitbucket:before, +.ion-logo-bitcoin:before, +.ion-logo-buffer:before, +.ion-logo-chrome:before, +.ion-logo-closed-captioning:before, +.ion-logo-codepen:before, +.ion-logo-css3:before, +.ion-logo-designernews:before, +.ion-logo-dribbble:before, +.ion-logo-dropbox:before, +.ion-logo-euro:before, +.ion-logo-facebook:before, +.ion-logo-flickr:before, +.ion-logo-foursquare:before, +.ion-logo-freebsd-devil:before, +.ion-logo-game-controller-a:before, +.ion-logo-game-controller-b:before, +.ion-logo-github:before, +.ion-logo-google:before, +.ion-logo-googleplus:before, +.ion-logo-hackernews:before, +.ion-logo-html5:before, +.ion-logo-instagram:before, +.ion-logo-ionic:before, +.ion-logo-ionitron:before, +.ion-logo-javascript:before, +.ion-logo-linkedin:before, +.ion-logo-markdown:before, +.ion-logo-model-s:before, +.ion-logo-no-smoking:before, +.ion-logo-nodejs:before, +.ion-logo-npm:before, +.ion-logo-octocat:before, +.ion-logo-pinterest:before, +.ion-logo-playstation:before, +.ion-logo-polymer:before, +.ion-logo-python:before, +.ion-logo-reddit:before, +.ion-logo-rss:before, +.ion-logo-sass:before, +.ion-logo-skype:before, +.ion-logo-slack:before, +.ion-logo-snapchat:before, +.ion-logo-steam:before, +.ion-logo-tumblr:before, +.ion-logo-tux:before, +.ion-logo-twitch:before, +.ion-logo-twitter:before, +.ion-logo-usd:before, +.ion-logo-vimeo:before, +.ion-logo-vk:before, +.ion-logo-whatsapp:before, +.ion-logo-windows:before, +.ion-logo-wordpress:before, +.ion-logo-xbox:before, +.ion-logo-xing:before, +.ion-logo-yahoo:before, +.ion-logo-yen:before, +.ion-logo-youtube:before, +.ion-md-add:before, +.ion-md-add-circle:before, +.ion-md-add-circle-outline:before, +.ion-md-airplane:before, +.ion-md-alarm:before, +.ion-md-albums:before, +.ion-md-alert:before, +.ion-md-american-football:before, +.ion-md-analytics:before, +.ion-md-aperture:before, +.ion-md-apps:before, +.ion-md-appstore:before, +.ion-md-archive:before, +.ion-md-arrow-back:before, +.ion-md-arrow-down:before, +.ion-md-arrow-dropdown:before, +.ion-md-arrow-dropdown-circle:before, +.ion-md-arrow-dropleft:before, +.ion-md-arrow-dropleft-circle:before, +.ion-md-arrow-dropright:before, +.ion-md-arrow-dropright-circle:before, +.ion-md-arrow-dropup:before, +.ion-md-arrow-dropup-circle:before, +.ion-md-arrow-forward:before, +.ion-md-arrow-round-back:before, +.ion-md-arrow-round-down:before, +.ion-md-arrow-round-forward:before, +.ion-md-arrow-round-up:before, +.ion-md-arrow-up:before, +.ion-md-at:before, +.ion-md-attach:before, +.ion-md-backspace:before, +.ion-md-barcode:before, +.ion-md-baseball:before, +.ion-md-basket:before, +.ion-md-basketball:before, +.ion-md-battery-charging:before, +.ion-md-battery-dead:before, +.ion-md-battery-full:before, +.ion-md-beaker:before, +.ion-md-bed:before, +.ion-md-beer:before, +.ion-md-bicycle:before, +.ion-md-bluetooth:before, +.ion-md-boat:before, +.ion-md-body:before, +.ion-md-bonfire:before, +.ion-md-book:before, +.ion-md-bookmark:before, +.ion-md-bookmarks:before, +.ion-md-bowtie:before, +.ion-md-briefcase:before, +.ion-md-browsers:before, +.ion-md-brush:before, +.ion-md-bug:before, +.ion-md-build:before, +.ion-md-bulb:before, +.ion-md-bus:before, +.ion-md-business:before, +.ion-md-cafe:before, +.ion-md-calculator:before, +.ion-md-calendar:before, +.ion-md-call:before, +.ion-md-camera:before, +.ion-md-car:before, +.ion-md-card:before, +.ion-md-cart:before, +.ion-md-cash:before, +.ion-md-cellular:before, +.ion-md-chatboxes:before, +.ion-md-chatbubbles:before, +.ion-md-checkbox:before, +.ion-md-checkbox-outline:before, +.ion-md-checkmark:before, +.ion-md-checkmark-circle:before, +.ion-md-checkmark-circle-outline:before, +.ion-md-clipboard:before, +.ion-md-clock:before, +.ion-md-close:before, +.ion-md-close-circle:before, +.ion-md-close-circle-outline:before, +.ion-md-cloud:before, +.ion-md-cloud-circle:before, +.ion-md-cloud-done:before, +.ion-md-cloud-download:before, +.ion-md-cloud-outline:before, +.ion-md-cloud-upload:before, +.ion-md-cloudy:before, +.ion-md-cloudy-night:before, +.ion-md-code:before, +.ion-md-code-download:before, +.ion-md-code-working:before, +.ion-md-cog:before, +.ion-md-color-fill:before, +.ion-md-color-filter:before, +.ion-md-color-palette:before, +.ion-md-color-wand:before, +.ion-md-compass:before, +.ion-md-construct:before, +.ion-md-contact:before, +.ion-md-contacts:before, +.ion-md-contract:before, +.ion-md-contrast:before, +.ion-md-copy:before, +.ion-md-create:before, +.ion-md-crop:before, +.ion-md-cube:before, +.ion-md-cut:before, +.ion-md-desktop:before, +.ion-md-disc:before, +.ion-md-document:before, +.ion-md-done-all:before, +.ion-md-download:before, +.ion-md-easel:before, +.ion-md-egg:before, +.ion-md-exit:before, +.ion-md-expand:before, +.ion-md-eye:before, +.ion-md-eye-off:before, +.ion-md-fastforward:before, +.ion-md-female:before, +.ion-md-filing:before, +.ion-md-film:before, +.ion-md-finger-print:before, +.ion-md-fitness:before, +.ion-md-flag:before, +.ion-md-flame:before, +.ion-md-flash:before, +.ion-md-flash-off:before, +.ion-md-flashlight:before, +.ion-md-flask:before, +.ion-md-flower:before, +.ion-md-folder:before, +.ion-md-folder-open:before, +.ion-md-football:before, +.ion-md-funnel:before, +.ion-md-gift:before, +.ion-md-git-branch:before, +.ion-md-git-commit:before, +.ion-md-git-compare:before, +.ion-md-git-merge:before, +.ion-md-git-network:before, +.ion-md-git-pull-request:before, +.ion-md-glasses:before, +.ion-md-globe:before, +.ion-md-grid:before, +.ion-md-hammer:before, +.ion-md-hand:before, +.ion-md-happy:before, +.ion-md-headset:before, +.ion-md-heart:before, +.ion-md-heart-dislike:before, +.ion-md-heart-empty:before, +.ion-md-heart-half:before, +.ion-md-help:before, +.ion-md-help-buoy:before, +.ion-md-help-circle:before, +.ion-md-help-circle-outline:before, +.ion-md-home:before, +.ion-md-hourglass:before, +.ion-md-ice-cream:before, +.ion-md-image:before, +.ion-md-images:before, +.ion-md-infinite:before, +.ion-md-information:before, +.ion-md-information-circle:before, +.ion-md-information-circle-outline:before, +.ion-md-jet:before, +.ion-md-journal:before, +.ion-md-key:before, +.ion-md-keypad:before, +.ion-md-laptop:before, +.ion-md-leaf:before, +.ion-md-link:before, +.ion-md-list:before, +.ion-md-list-box:before, +.ion-md-locate:before, +.ion-md-lock:before, +.ion-md-log-in:before, +.ion-md-log-out:before, +.ion-md-magnet:before, +.ion-md-mail:before, +.ion-md-mail-open:before, +.ion-md-mail-unread:before, +.ion-md-male:before, +.ion-md-man:before, +.ion-md-map:before, +.ion-md-medal:before, +.ion-md-medical:before, +.ion-md-medkit:before, +.ion-md-megaphone:before, +.ion-md-menu:before, +.ion-md-mic:before, +.ion-md-mic-off:before, +.ion-md-microphone:before, +.ion-md-moon:before, +.ion-md-more:before, +.ion-md-move:before, +.ion-md-musical-note:before, +.ion-md-musical-notes:before, +.ion-md-navigate:before, +.ion-md-notifications:before, +.ion-md-notifications-off:before, +.ion-md-notifications-outline:before, +.ion-md-nuclear:before, +.ion-md-nutrition:before, +.ion-md-open:before, +.ion-md-options:before, +.ion-md-outlet:before, +.ion-md-paper:before, +.ion-md-paper-plane:before, +.ion-md-partly-sunny:before, +.ion-md-pause:before, +.ion-md-paw:before, +.ion-md-people:before, +.ion-md-person:before, +.ion-md-person-add:before, +.ion-md-phone-landscape:before, +.ion-md-phone-portrait:before, +.ion-md-photos:before, +.ion-md-pie:before, +.ion-md-pin:before, +.ion-md-pint:before, +.ion-md-pizza:before, +.ion-md-planet:before, +.ion-md-play:before, +.ion-md-play-circle:before, +.ion-md-podium:before, +.ion-md-power:before, +.ion-md-pricetag:before, +.ion-md-pricetags:before, +.ion-md-print:before, +.ion-md-pulse:before, +.ion-md-qr-scanner:before, +.ion-md-quote:before, +.ion-md-radio:before, +.ion-md-radio-button-off:before, +.ion-md-radio-button-on:before, +.ion-md-rainy:before, +.ion-md-recording:before, +.ion-md-redo:before, +.ion-md-refresh:before, +.ion-md-refresh-circle:before, +.ion-md-remove:before, +.ion-md-remove-circle:before, +.ion-md-remove-circle-outline:before, +.ion-md-reorder:before, +.ion-md-repeat:before, +.ion-md-resize:before, +.ion-md-restaurant:before, +.ion-md-return-left:before, +.ion-md-return-right:before, +.ion-md-reverse-camera:before, +.ion-md-rewind:before, +.ion-md-ribbon:before, +.ion-md-rocket:before, +.ion-md-rose:before, +.ion-md-sad:before, +.ion-md-save:before, +.ion-md-school:before, +.ion-md-search:before, +.ion-md-send:before, +.ion-md-settings:before, +.ion-md-share:before, +.ion-md-share-alt:before, +.ion-md-shirt:before, +.ion-md-shuffle:before, +.ion-md-skip-backward:before, +.ion-md-skip-forward:before, +.ion-md-snow:before, +.ion-md-speedometer:before, +.ion-md-square:before, +.ion-md-square-outline:before, +.ion-md-star:before, +.ion-md-star-half:before, +.ion-md-star-outline:before, +.ion-md-stats:before, +.ion-md-stopwatch:before, +.ion-md-subway:before, +.ion-md-sunny:before, +.ion-md-swap:before, +.ion-md-switch:before, +.ion-md-sync:before, +.ion-md-tablet-landscape:before, +.ion-md-tablet-portrait:before, +.ion-md-tennisball:before, +.ion-md-text:before, +.ion-md-thermometer:before, +.ion-md-thumbs-down:before, +.ion-md-thumbs-up:before, +.ion-md-thunderstorm:before, +.ion-md-time:before, +.ion-md-timer:before, +.ion-md-today:before, +.ion-md-train:before, +.ion-md-transgender:before, +.ion-md-trash:before, +.ion-md-trending-down:before, +.ion-md-trending-up:before, +.ion-md-trophy:before, +.ion-md-tv:before, +.ion-md-umbrella:before, +.ion-md-undo:before, +.ion-md-unlock:before, +.ion-md-videocam:before, +.ion-md-volume-high:before, +.ion-md-volume-low:before, +.ion-md-volume-mute:before, +.ion-md-volume-off:before, +.ion-md-walk:before, +.ion-md-wallet:before, +.ion-md-warning:before, +.ion-md-watch:before, +.ion-md-water:before, +.ion-md-wifi:before, +.ion-md-wine:before, +.ion-md-woman:before { + display: inline-block; + font-family: "Ionicons"; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + text-rendering: auto; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.ion-ios-add:before { + content: ""; +} + +.ion-ios-add-circle:before { + content: ""; +} + +.ion-ios-add-circle-outline:before { + content: ""; +} + +.ion-ios-airplane:before { + content: ""; +} + +.ion-ios-alarm:before { + content: ""; +} + +.ion-ios-albums:before { + content: ""; +} + +.ion-ios-alert:before { + content: ""; +} + +.ion-ios-american-football:before { + content: ""; +} + +.ion-ios-analytics:before { + content: ""; +} + +.ion-ios-aperture:before { + content: ""; +} + +.ion-ios-apps:before { + content: ""; +} + +.ion-ios-appstore:before { + content: ""; +} + +.ion-ios-archive:before { + content: ""; +} + +.ion-ios-arrow-back:before { + content: ""; +} + +.ion-ios-arrow-down:before { + content: ""; +} + +.ion-ios-arrow-dropdown:before { + content: ""; +} + +.ion-ios-arrow-dropdown-circle:before { + content: ""; +} + +.ion-ios-arrow-dropleft:before { + content: ""; +} + +.ion-ios-arrow-dropleft-circle:before { + content: ""; +} + +.ion-ios-arrow-dropright:before { + content: ""; +} + +.ion-ios-arrow-dropright-circle:before { + content: ""; +} + +.ion-ios-arrow-dropup:before { + content: ""; +} + +.ion-ios-arrow-dropup-circle:before { + content: ""; +} + +.ion-ios-arrow-forward:before { + content: ""; +} -.ion-alert:before { content: "\f101"; } +.ion-ios-arrow-round-back:before { + content: ""; +} -.ion-alert-circled:before { content: "\f100"; } +.ion-ios-arrow-round-down:before { + content: ""; +} -.ion-android-add:before { content: "\f2c7"; } +.ion-ios-arrow-round-forward:before { + content: ""; +} -.ion-android-add-circle:before { content: "\f359"; } +.ion-ios-arrow-round-up:before { + content: ""; +} -.ion-android-alarm-clock:before { content: "\f35a"; } +.ion-ios-arrow-up:before { + content: ""; +} -.ion-android-alert:before { content: "\f35b"; } +.ion-ios-at:before { + content: ""; +} -.ion-android-apps:before { content: "\f35c"; } +.ion-ios-attach:before { + content: ""; +} -.ion-android-archive:before { content: "\f2c9"; } +.ion-ios-backspace:before { + content: ""; +} -.ion-android-arrow-back:before { content: "\f2ca"; } +.ion-ios-barcode:before { + content: ""; +} -.ion-android-arrow-down:before { content: "\f35d"; } +.ion-ios-baseball:before { + content: ""; +} -.ion-android-arrow-dropdown:before { content: "\f35f"; } +.ion-ios-basket:before { + content: ""; +} -.ion-android-arrow-dropdown-circle:before { content: "\f35e"; } +.ion-ios-basketball:before { + content: ""; +} -.ion-android-arrow-dropleft:before { content: "\f361"; } +.ion-ios-battery-charging:before { + content: ""; +} -.ion-android-arrow-dropleft-circle:before { content: "\f360"; } +.ion-ios-battery-dead:before { + content: ""; +} -.ion-android-arrow-dropright:before { content: "\f363"; } +.ion-ios-battery-full:before { + content: ""; +} -.ion-android-arrow-dropright-circle:before { content: "\f362"; } +.ion-ios-beaker:before { + content: ""; +} -.ion-android-arrow-dropup:before { content: "\f365"; } +.ion-ios-bed:before { + content: ""; +} -.ion-android-arrow-dropup-circle:before { content: "\f364"; } +.ion-ios-beer:before { + content: ""; +} -.ion-android-arrow-forward:before { content: "\f30f"; } +.ion-ios-bicycle:before { + content: ""; +} -.ion-android-arrow-up:before { content: "\f366"; } +.ion-ios-bluetooth:before { + content: ""; +} -.ion-android-attach:before { content: "\f367"; } +.ion-ios-boat:before { + content: ""; +} -.ion-android-bar:before { content: "\f368"; } +.ion-ios-body:before { + content: ""; +} -.ion-android-bicycle:before { content: "\f369"; } +.ion-ios-bonfire:before { + content: ""; +} -.ion-android-boat:before { content: "\f36a"; } +.ion-ios-book:before { + content: ""; +} -.ion-android-bookmark:before { content: "\f36b"; } +.ion-ios-bookmark:before { + content: ""; +} -.ion-android-bulb:before { content: "\f36c"; } +.ion-ios-bookmarks:before { + content: ""; +} -.ion-android-bus:before { content: "\f36d"; } +.ion-ios-bowtie:before { + content: ""; +} -.ion-android-calendar:before { content: "\f2d1"; } +.ion-ios-briefcase:before { + content: ""; +} -.ion-android-call:before { content: "\f2d2"; } +.ion-ios-browsers:before { + content: ""; +} -.ion-android-camera:before { content: "\f2d3"; } +.ion-ios-brush:before { + content: ""; +} -.ion-android-cancel:before { content: "\f36e"; } +.ion-ios-bug:before { + content: ""; +} -.ion-android-car:before { content: "\f36f"; } +.ion-ios-build:before { + content: ""; +} -.ion-android-cart:before { content: "\f370"; } +.ion-ios-bulb:before { + content: ""; +} -.ion-android-chat:before { content: "\f2d4"; } +.ion-ios-bus:before { + content: ""; +} -.ion-android-checkbox:before { content: "\f374"; } +.ion-ios-business:before { + content: ""; +} -.ion-android-checkbox-blank:before { content: "\f371"; } +.ion-ios-cafe:before { + content: ""; +} -.ion-android-checkbox-outline:before { content: "\f373"; } +.ion-ios-calculator:before { + content: ""; +} -.ion-android-checkbox-outline-blank:before { content: "\f372"; } +.ion-ios-calendar:before { + content: ""; +} -.ion-android-checkmark-circle:before { content: "\f375"; } +.ion-ios-call:before { + content: ""; +} -.ion-android-clipboard:before { content: "\f376"; } +.ion-ios-camera:before { + content: ""; +} -.ion-android-close:before { content: "\f2d7"; } +.ion-ios-car:before { + content: ""; +} -.ion-android-cloud:before { content: "\f37a"; } +.ion-ios-card:before { + content: ""; +} -.ion-android-cloud-circle:before { content: "\f377"; } +.ion-ios-cart:before { + content: ""; +} -.ion-android-cloud-done:before { content: "\f378"; } +.ion-ios-cash:before { + content: ""; +} -.ion-android-cloud-outline:before { content: "\f379"; } +.ion-ios-cellular:before { + content: ""; +} -.ion-android-color-palette:before { content: "\f37b"; } +.ion-ios-chatboxes:before { + content: ""; +} -.ion-android-compass:before { content: "\f37c"; } +.ion-ios-chatbubbles:before { + content: ""; +} -.ion-android-contact:before { content: "\f2d8"; } +.ion-ios-checkbox:before { + content: ""; +} -.ion-android-contacts:before { content: "\f2d9"; } +.ion-ios-checkbox-outline:before { + content: ""; +} -.ion-android-contract:before { content: "\f37d"; } +.ion-ios-checkmark:before { + content: ""; +} -.ion-android-create:before { content: "\f37e"; } +.ion-ios-checkmark-circle:before { + content: ""; +} -.ion-android-delete:before { content: "\f37f"; } +.ion-ios-checkmark-circle-outline:before { + content: ""; +} -.ion-android-desktop:before { content: "\f380"; } +.ion-ios-clipboard:before { + content: ""; +} -.ion-android-document:before { content: "\f381"; } +.ion-ios-clock:before { + content: ""; +} -.ion-android-done:before { content: "\f383"; } +.ion-ios-close:before { + content: ""; +} -.ion-android-done-all:before { content: "\f382"; } +.ion-ios-close-circle:before { + content: ""; +} -.ion-android-download:before { content: "\f2dd"; } +.ion-ios-close-circle-outline:before { + content: ""; +} -.ion-android-drafts:before { content: "\f384"; } +.ion-ios-cloud:before { + content: ""; +} -.ion-android-exit:before { content: "\f385"; } +.ion-ios-cloud-circle:before { + content: ""; +} -.ion-android-expand:before { content: "\f386"; } +.ion-ios-cloud-done:before { + content: ""; +} -.ion-android-favorite:before { content: "\f388"; } +.ion-ios-cloud-download:before { + content: ""; +} -.ion-android-favorite-outline:before { content: "\f387"; } +.ion-ios-cloud-outline:before { + content: ""; +} -.ion-android-film:before { content: "\f389"; } +.ion-ios-cloud-upload:before { + content: ""; +} -.ion-android-folder:before { content: "\f2e0"; } +.ion-ios-cloudy:before { + content: ""; +} -.ion-android-folder-open:before { content: "\f38a"; } +.ion-ios-cloudy-night:before { + content: ""; +} -.ion-android-funnel:before { content: "\f38b"; } +.ion-ios-code:before { + content: ""; +} -.ion-android-globe:before { content: "\f38c"; } +.ion-ios-code-download:before { + content: ""; +} -.ion-android-hand:before { content: "\f2e3"; } +.ion-ios-code-working:before { + content: ""; +} -.ion-android-hangout:before { content: "\f38d"; } +.ion-ios-cog:before { + content: ""; +} -.ion-android-happy:before { content: "\f38e"; } +.ion-ios-color-fill:before { + content: ""; +} -.ion-android-home:before { content: "\f38f"; } +.ion-ios-color-filter:before { + content: ""; +} -.ion-android-image:before { content: "\f2e4"; } +.ion-ios-color-palette:before { + content: ""; +} -.ion-android-laptop:before { content: "\f390"; } +.ion-ios-color-wand:before { + content: ""; +} -.ion-android-list:before { content: "\f391"; } +.ion-ios-compass:before { + content: ""; +} -.ion-android-locate:before { content: "\f2e9"; } +.ion-ios-construct:before { + content: ""; +} -.ion-android-lock:before { content: "\f392"; } +.ion-ios-contact:before { + content: ""; +} -.ion-android-mail:before { content: "\f2eb"; } +.ion-ios-contacts:before { + content: ""; +} -.ion-android-map:before { content: "\f393"; } +.ion-ios-contract:before { + content: ""; +} -.ion-android-menu:before { content: "\f394"; } +.ion-ios-contrast:before { + content: ""; +} -.ion-android-microphone:before { content: "\f2ec"; } +.ion-ios-copy:before { + content: ""; +} -.ion-android-microphone-off:before { content: "\f395"; } +.ion-ios-create:before { + content: ""; +} -.ion-android-more-horizontal:before { content: "\f396"; } +.ion-ios-crop:before { + content: ""; +} -.ion-android-more-vertical:before { content: "\f397"; } +.ion-ios-cube:before { + content: ""; +} -.ion-android-navigate:before { content: "\f398"; } +.ion-ios-cut:before { + content: ""; +} -.ion-android-notifications:before { content: "\f39b"; } +.ion-ios-desktop:before { + content: ""; +} -.ion-android-notifications-none:before { content: "\f399"; } +.ion-ios-disc:before { + content: ""; +} -.ion-android-notifications-off:before { content: "\f39a"; } +.ion-ios-document:before { + content: ""; +} -.ion-android-open:before { content: "\f39c"; } +.ion-ios-done-all:before { + content: ""; +} -.ion-android-options:before { content: "\f39d"; } +.ion-ios-download:before { + content: ""; +} -.ion-android-people:before { content: "\f39e"; } +.ion-ios-easel:before { + content: ""; +} -.ion-android-person:before { content: "\f3a0"; } +.ion-ios-egg:before { + content: ""; +} -.ion-android-person-add:before { content: "\f39f"; } +.ion-ios-exit:before { + content: ""; +} -.ion-android-phone-landscape:before { content: "\f3a1"; } +.ion-ios-expand:before { + content: ""; +} -.ion-android-phone-portrait:before { content: "\f3a2"; } +.ion-ios-eye:before { + content: ""; +} -.ion-android-pin:before { content: "\f3a3"; } +.ion-ios-eye-off:before { + content: ""; +} -.ion-android-plane:before { content: "\f3a4"; } +.ion-ios-fastforward:before { + content: ""; +} -.ion-android-playstore:before { content: "\f2f0"; } +.ion-ios-female:before { + content: ""; +} -.ion-android-print:before { content: "\f3a5"; } +.ion-ios-filing:before { + content: ""; +} -.ion-android-radio-button-off:before { content: "\f3a6"; } +.ion-ios-film:before { + content: ""; +} -.ion-android-radio-button-on:before { content: "\f3a7"; } +.ion-ios-finger-print:before { + content: ""; +} -.ion-android-refresh:before { content: "\f3a8"; } +.ion-ios-fitness:before { + content: ""; +} -.ion-android-remove:before { content: "\f2f4"; } +.ion-ios-flag:before { + content: ""; +} -.ion-android-remove-circle:before { content: "\f3a9"; } +.ion-ios-flame:before { + content: ""; +} -.ion-android-restaurant:before { content: "\f3aa"; } +.ion-ios-flash:before { + content: ""; +} -.ion-android-sad:before { content: "\f3ab"; } +.ion-ios-flash-off:before { + content: ""; +} -.ion-android-search:before { content: "\f2f5"; } +.ion-ios-flashlight:before { + content: ""; +} -.ion-android-send:before { content: "\f2f6"; } +.ion-ios-flask:before { + content: ""; +} -.ion-android-settings:before { content: "\f2f7"; } +.ion-ios-flower:before { + content: ""; +} -.ion-android-share:before { content: "\f2f8"; } +.ion-ios-folder:before { + content: ""; +} -.ion-android-share-alt:before { content: "\f3ac"; } +.ion-ios-folder-open:before { + content: ""; +} -.ion-android-star:before { content: "\f2fc"; } +.ion-ios-football:before { + content: ""; +} -.ion-android-star-half:before { content: "\f3ad"; } +.ion-ios-funnel:before { + content: ""; +} -.ion-android-star-outline:before { content: "\f3ae"; } +.ion-ios-gift:before { + content: ""; +} -.ion-android-stopwatch:before { content: "\f2fd"; } +.ion-ios-git-branch:before { + content: ""; +} -.ion-android-subway:before { content: "\f3af"; } +.ion-ios-git-commit:before { + content: ""; +} -.ion-android-sunny:before { content: "\f3b0"; } +.ion-ios-git-compare:before { + content: ""; +} -.ion-android-sync:before { content: "\f3b1"; } +.ion-ios-git-merge:before { + content: ""; +} -.ion-android-textsms:before { content: "\f3b2"; } +.ion-ios-git-network:before { + content: ""; +} -.ion-android-time:before { content: "\f3b3"; } +.ion-ios-git-pull-request:before { + content: ""; +} -.ion-android-train:before { content: "\f3b4"; } +.ion-ios-glasses:before { + content: ""; +} -.ion-android-unlock:before { content: "\f3b5"; } +.ion-ios-globe:before { + content: ""; +} -.ion-android-upload:before { content: "\f3b6"; } +.ion-ios-grid:before { + content: ""; +} -.ion-android-volume-down:before { content: "\f3b7"; } +.ion-ios-hammer:before { + content: ""; +} -.ion-android-volume-mute:before { content: "\f3b8"; } +.ion-ios-hand:before { + content: ""; +} -.ion-android-volume-off:before { content: "\f3b9"; } +.ion-ios-happy:before { + content: ""; +} -.ion-android-volume-up:before { content: "\f3ba"; } +.ion-ios-headset:before { + content: ""; +} -.ion-android-walk:before { content: "\f3bb"; } +.ion-ios-heart:before { + content: ""; +} -.ion-android-warning:before { content: "\f3bc"; } +.ion-ios-heart-dislike:before { + content: ""; +} -.ion-android-watch:before { content: "\f3bd"; } +.ion-ios-heart-empty:before { + content: ""; +} -.ion-android-wifi:before { content: "\f305"; } +.ion-ios-heart-half:before { + content: ""; +} -.ion-aperture:before { content: "\f313"; } +.ion-ios-help:before { + content: ""; +} -.ion-archive:before { content: "\f102"; } +.ion-ios-help-buoy:before { + content: ""; +} -.ion-arrow-down-a:before { content: "\f103"; } +.ion-ios-help-circle:before { + content: ""; +} -.ion-arrow-down-b:before { content: "\f104"; } +.ion-ios-help-circle-outline:before { + content: ""; +} -.ion-arrow-down-c:before { content: "\f105"; } +.ion-ios-home:before { + content: ""; +} -.ion-arrow-expand:before { content: "\f25e"; } +.ion-ios-hourglass:before { + content: ""; +} -.ion-arrow-graph-down-left:before { content: "\f25f"; } +.ion-ios-ice-cream:before { + content: ""; +} -.ion-arrow-graph-down-right:before { content: "\f260"; } +.ion-ios-image:before { + content: ""; +} -.ion-arrow-graph-up-left:before { content: "\f261"; } +.ion-ios-images:before { + content: ""; +} -.ion-arrow-graph-up-right:before { content: "\f262"; } +.ion-ios-infinite:before { + content: ""; +} -.ion-arrow-left-a:before { content: "\f106"; } +.ion-ios-information:before { + content: ""; +} -.ion-arrow-left-b:before { content: "\f107"; } +.ion-ios-information-circle:before { + content: ""; +} -.ion-arrow-left-c:before { content: "\f108"; } +.ion-ios-information-circle-outline:before { + content: ""; +} -.ion-arrow-move:before { content: "\f263"; } +.ion-ios-jet:before { + content: ""; +} -.ion-arrow-resize:before { content: "\f264"; } +.ion-ios-journal:before { + content: ""; +} -.ion-arrow-return-left:before { content: "\f265"; } +.ion-ios-key:before { + content: ""; +} -.ion-arrow-return-right:before { content: "\f266"; } +.ion-ios-keypad:before { + content: ""; +} -.ion-arrow-right-a:before { content: "\f109"; } +.ion-ios-laptop:before { + content: ""; +} -.ion-arrow-right-b:before { content: "\f10a"; } +.ion-ios-leaf:before { + content: ""; +} -.ion-arrow-right-c:before { content: "\f10b"; } +.ion-ios-link:before { + content: ""; +} -.ion-arrow-shrink:before { content: "\f267"; } +.ion-ios-list:before { + content: ""; +} -.ion-arrow-swap:before { content: "\f268"; } +.ion-ios-list-box:before { + content: ""; +} -.ion-arrow-up-a:before { content: "\f10c"; } +.ion-ios-locate:before { + content: ""; +} -.ion-arrow-up-b:before { content: "\f10d"; } +.ion-ios-lock:before { + content: ""; +} -.ion-arrow-up-c:before { content: "\f10e"; } +.ion-ios-log-in:before { + content: ""; +} -.ion-asterisk:before { content: "\f314"; } +.ion-ios-log-out:before { + content: ""; +} -.ion-at:before { content: "\f10f"; } +.ion-ios-magnet:before { + content: ""; +} -.ion-backspace:before { content: "\f3bf"; } +.ion-ios-mail:before { + content: ""; +} -.ion-backspace-outline:before { content: "\f3be"; } +.ion-ios-mail-open:before { + content: ""; +} -.ion-bag:before { content: "\f110"; } +.ion-ios-mail-unread:before { + content: ""; +} -.ion-battery-charging:before { content: "\f111"; } +.ion-ios-male:before { + content: ""; +} -.ion-battery-empty:before { content: "\f112"; } +.ion-ios-man:before { + content: ""; +} -.ion-battery-full:before { content: "\f113"; } +.ion-ios-map:before { + content: ""; +} -.ion-battery-half:before { content: "\f114"; } +.ion-ios-medal:before { + content: ""; +} -.ion-battery-low:before { content: "\f115"; } +.ion-ios-medical:before { + content: ""; +} -.ion-beaker:before { content: "\f269"; } +.ion-ios-medkit:before { + content: ""; +} -.ion-beer:before { content: "\f26a"; } +.ion-ios-megaphone:before { + content: ""; +} -.ion-bluetooth:before { content: "\f116"; } +.ion-ios-menu:before { + content: ""; +} -.ion-bonfire:before { content: "\f315"; } +.ion-ios-mic:before { + content: ""; +} -.ion-bookmark:before { content: "\f26b"; } +.ion-ios-mic-off:before { + content: ""; +} -.ion-bowtie:before { content: "\f3c0"; } +.ion-ios-microphone:before { + content: ""; +} -.ion-briefcase:before { content: "\f26c"; } +.ion-ios-moon:before { + content: ""; +} -.ion-bug:before { content: "\f2be"; } +.ion-ios-more:before { + content: ""; +} -.ion-calculator:before { content: "\f26d"; } +.ion-ios-move:before { + content: ""; +} -.ion-calendar:before { content: "\f117"; } +.ion-ios-musical-note:before { + content: ""; +} -.ion-camera:before { content: "\f118"; } +.ion-ios-musical-notes:before { + content: ""; +} -.ion-card:before { content: "\f119"; } +.ion-ios-navigate:before { + content: ""; +} -.ion-cash:before { content: "\f316"; } +.ion-ios-notifications:before { + content: ""; +} -.ion-chatbox:before { content: "\f11b"; } +.ion-ios-notifications-off:before { + content: ""; +} -.ion-chatbox-working:before { content: "\f11a"; } +.ion-ios-notifications-outline:before { + content: ""; +} -.ion-chatboxes:before { content: "\f11c"; } +.ion-ios-nuclear:before { + content: ""; +} -.ion-chatbubble:before { content: "\f11e"; } +.ion-ios-nutrition:before { + content: ""; +} -.ion-chatbubble-working:before { content: "\f11d"; } +.ion-ios-open:before { + content: ""; +} -.ion-chatbubbles:before { content: "\f11f"; } +.ion-ios-options:before { + content: ""; +} -.ion-checkmark:before { content: "\f122"; } +.ion-ios-outlet:before { + content: ""; +} -.ion-checkmark-circled:before { content: "\f120"; } +.ion-ios-paper:before { + content: ""; +} -.ion-checkmark-round:before { content: "\f121"; } +.ion-ios-paper-plane:before { + content: ""; +} -.ion-chevron-down:before { content: "\f123"; } +.ion-ios-partly-sunny:before { + content: ""; +} -.ion-chevron-left:before { content: "\f124"; } +.ion-ios-pause:before { + content: ""; +} -.ion-chevron-right:before { content: "\f125"; } +.ion-ios-paw:before { + content: ""; +} -.ion-chevron-up:before { content: "\f126"; } +.ion-ios-people:before { + content: ""; +} -.ion-clipboard:before { content: "\f127"; } +.ion-ios-person:before { + content: ""; +} -.ion-clock:before { content: "\f26e"; } +.ion-ios-person-add:before { + content: ""; +} -.ion-close:before { content: "\f12a"; } +.ion-ios-phone-landscape:before { + content: ""; +} -.ion-close-circled:before { content: "\f128"; } +.ion-ios-phone-portrait:before { + content: ""; +} -.ion-close-round:before { content: "\f129"; } +.ion-ios-photos:before { + content: ""; +} -.ion-closed-captioning:before { content: "\f317"; } +.ion-ios-pie:before { + content: ""; +} -.ion-cloud:before { content: "\f12b"; } +.ion-ios-pin:before { + content: ""; +} -.ion-code:before { content: "\f271"; } +.ion-ios-pint:before { + content: ""; +} -.ion-code-download:before { content: "\f26f"; } +.ion-ios-pizza:before { + content: ""; +} -.ion-code-working:before { content: "\f270"; } +.ion-ios-planet:before { + content: ""; +} -.ion-coffee:before { content: "\f272"; } +.ion-ios-play:before { + content: ""; +} -.ion-compass:before { content: "\f273"; } +.ion-ios-play-circle:before { + content: ""; +} -.ion-compose:before { content: "\f12c"; } +.ion-ios-podium:before { + content: ""; +} -.ion-connection-bars:before { content: "\f274"; } +.ion-ios-power:before { + content: ""; +} -.ion-contrast:before { content: "\f275"; } +.ion-ios-pricetag:before { + content: ""; +} -.ion-crop:before { content: "\f3c1"; } +.ion-ios-pricetags:before { + content: ""; +} -.ion-cube:before { content: "\f318"; } +.ion-ios-print:before { + content: ""; +} -.ion-disc:before { content: "\f12d"; } +.ion-ios-pulse:before { + content: ""; +} -.ion-document:before { content: "\f12f"; } +.ion-ios-qr-scanner:before { + content: ""; +} -.ion-document-text:before { content: "\f12e"; } +.ion-ios-quote:before { + content: ""; +} -.ion-drag:before { content: "\f130"; } +.ion-ios-radio:before { + content: ""; +} -.ion-earth:before { content: "\f276"; } +.ion-ios-radio-button-off:before { + content: ""; +} -.ion-easel:before { content: "\f3c2"; } +.ion-ios-radio-button-on:before { + content: ""; +} -.ion-edit:before { content: "\f2bf"; } +.ion-ios-rainy:before { + content: ""; +} -.ion-egg:before { content: "\f277"; } +.ion-ios-recording:before { + content: ""; +} -.ion-eject:before { content: "\f131"; } +.ion-ios-redo:before { + content: ""; +} -.ion-email:before { content: "\f132"; } +.ion-ios-refresh:before { + content: ""; +} -.ion-email-unread:before { content: "\f3c3"; } +.ion-ios-refresh-circle:before { + content: ""; +} -.ion-erlenmeyer-flask:before { content: "\f3c5"; } +.ion-ios-remove:before { + content: ""; +} -.ion-erlenmeyer-flask-bubbles:before { content: "\f3c4"; } +.ion-ios-remove-circle:before { + content: ""; +} -.ion-eye:before { content: "\f133"; } +.ion-ios-remove-circle-outline:before { + content: ""; +} -.ion-eye-disabled:before { content: "\f306"; } +.ion-ios-reorder:before { + content: ""; +} -.ion-female:before { content: "\f278"; } +.ion-ios-repeat:before { + content: ""; +} -.ion-filing:before { content: "\f134"; } +.ion-ios-resize:before { + content: ""; +} -.ion-film-marker:before { content: "\f135"; } +.ion-ios-restaurant:before { + content: ""; +} -.ion-fireball:before { content: "\f319"; } +.ion-ios-return-left:before { + content: ""; +} -.ion-flag:before { content: "\f279"; } +.ion-ios-return-right:before { + content: ""; +} -.ion-flame:before { content: "\f31a"; } +.ion-ios-reverse-camera:before { + content: ""; +} -.ion-flash:before { content: "\f137"; } +.ion-ios-rewind:before { + content: ""; +} -.ion-flash-off:before { content: "\f136"; } +.ion-ios-ribbon:before { + content: ""; +} -.ion-folder:before { content: "\f139"; } +.ion-ios-rocket:before { + content: ""; +} -.ion-fork:before { content: "\f27a"; } +.ion-ios-rose:before { + content: ""; +} -.ion-fork-repo:before { content: "\f2c0"; } +.ion-ios-sad:before { + content: ""; +} -.ion-forward:before { content: "\f13a"; } +.ion-ios-save:before { + content: ""; +} -.ion-funnel:before { content: "\f31b"; } +.ion-ios-school:before { + content: ""; +} -.ion-gear-a:before { content: "\f13d"; } +.ion-ios-search:before { + content: ""; +} -.ion-gear-b:before { content: "\f13e"; } +.ion-ios-send:before { + content: ""; +} -.ion-grid:before { content: "\f13f"; } +.ion-ios-settings:before { + content: ""; +} -.ion-hammer:before { content: "\f27b"; } +.ion-ios-share:before { + content: ""; +} -.ion-happy:before { content: "\f31c"; } +.ion-ios-share-alt:before { + content: ""; +} -.ion-happy-outline:before { content: "\f3c6"; } +.ion-ios-shirt:before { + content: ""; +} -.ion-headphone:before { content: "\f140"; } +.ion-ios-shuffle:before { + content: ""; +} -.ion-heart:before { content: "\f141"; } +.ion-ios-skip-backward:before { + content: ""; +} -.ion-heart-broken:before { content: "\f31d"; } +.ion-ios-skip-forward:before { + content: ""; +} -.ion-help:before { content: "\f143"; } +.ion-ios-snow:before { + content: ""; +} -.ion-help-buoy:before { content: "\f27c"; } +.ion-ios-speedometer:before { + content: ""; +} -.ion-help-circled:before { content: "\f142"; } +.ion-ios-square:before { + content: ""; +} -.ion-home:before { content: "\f144"; } +.ion-ios-square-outline:before { + content: ""; +} -.ion-icecream:before { content: "\f27d"; } +.ion-ios-star:before { + content: ""; +} -.ion-image:before { content: "\f147"; } +.ion-ios-star-half:before { + content: ""; +} -.ion-images:before { content: "\f148"; } +.ion-ios-star-outline:before { + content: ""; +} -.ion-information:before { content: "\f14a"; } +.ion-ios-stats:before { + content: ""; +} -.ion-information-circled:before { content: "\f149"; } +.ion-ios-stopwatch:before { + content: ""; +} -.ion-ionic:before { content: "\f14b"; } +.ion-ios-subway:before { + content: ""; +} -.ion-ios-alarm:before { content: "\f3c8"; } +.ion-ios-sunny:before { + content: ""; +} -.ion-ios-alarm-outline:before { content: "\f3c7"; } +.ion-ios-swap:before { + content: ""; +} -.ion-ios-albums:before { content: "\f3ca"; } +.ion-ios-switch:before { + content: ""; +} -.ion-ios-albums-outline:before { content: "\f3c9"; } +.ion-ios-sync:before { + content: ""; +} -.ion-ios-americanfootball:before { content: "\f3cc"; } +.ion-ios-tablet-landscape:before { + content: ""; +} -.ion-ios-americanfootball-outline:before { content: "\f3cb"; } +.ion-ios-tablet-portrait:before { + content: ""; +} -.ion-ios-analytics:before { content: "\f3ce"; } +.ion-ios-tennisball:before { + content: ""; +} -.ion-ios-analytics-outline:before { content: "\f3cd"; } +.ion-ios-text:before { + content: ""; +} -.ion-ios-arrow-back:before { content: "\f3cf"; } +.ion-ios-thermometer:before { + content: ""; +} -.ion-ios-arrow-down:before { content: "\f3d0"; } +.ion-ios-thumbs-down:before { + content: ""; +} -.ion-ios-arrow-forward:before { content: "\f3d1"; } +.ion-ios-thumbs-up:before { + content: ""; +} -.ion-ios-arrow-left:before { content: "\f3d2"; } +.ion-ios-thunderstorm:before { + content: ""; +} -.ion-ios-arrow-right:before { content: "\f3d3"; } +.ion-ios-time:before { + content: ""; +} -.ion-ios-arrow-thin-down:before { content: "\f3d4"; } +.ion-ios-timer:before { + content: ""; +} -.ion-ios-arrow-thin-left:before { content: "\f3d5"; } +.ion-ios-today:before { + content: ""; +} -.ion-ios-arrow-thin-right:before { content: "\f3d6"; } +.ion-ios-train:before { + content: ""; +} -.ion-ios-arrow-thin-up:before { content: "\f3d7"; } +.ion-ios-transgender:before { + content: ""; +} -.ion-ios-arrow-up:before { content: "\f3d8"; } +.ion-ios-trash:before { + content: ""; +} -.ion-ios-at:before { content: "\f3da"; } +.ion-ios-trending-down:before { + content: ""; +} -.ion-ios-at-outline:before { content: "\f3d9"; } +.ion-ios-trending-up:before { + content: ""; +} -.ion-ios-barcode:before { content: "\f3dc"; } +.ion-ios-trophy:before { + content: ""; +} -.ion-ios-barcode-outline:before { content: "\f3db"; } +.ion-ios-tv:before { + content: ""; +} -.ion-ios-baseball:before { content: "\f3de"; } +.ion-ios-umbrella:before { + content: ""; +} -.ion-ios-baseball-outline:before { content: "\f3dd"; } +.ion-ios-undo:before { + content: ""; +} -.ion-ios-basketball:before { content: "\f3e0"; } +.ion-ios-unlock:before { + content: ""; +} -.ion-ios-basketball-outline:before { content: "\f3df"; } +.ion-ios-videocam:before { + content: ""; +} -.ion-ios-bell:before { content: "\f3e2"; } +.ion-ios-volume-high:before { + content: ""; +} -.ion-ios-bell-outline:before { content: "\f3e1"; } +.ion-ios-volume-low:before { + content: ""; +} -.ion-ios-body:before { content: "\f3e4"; } +.ion-ios-volume-mute:before { + content: ""; +} -.ion-ios-body-outline:before { content: "\f3e3"; } +.ion-ios-volume-off:before { + content: ""; +} -.ion-ios-bolt:before { content: "\f3e6"; } +.ion-ios-walk:before { + content: ""; +} -.ion-ios-bolt-outline:before { content: "\f3e5"; } +.ion-ios-wallet:before { + content: ""; +} -.ion-ios-book:before { content: "\f3e8"; } +.ion-ios-warning:before { + content: ""; +} -.ion-ios-book-outline:before { content: "\f3e7"; } +.ion-ios-watch:before { + content: ""; +} -.ion-ios-bookmarks:before { content: "\f3ea"; } +.ion-ios-water:before { + content: ""; +} -.ion-ios-bookmarks-outline:before { content: "\f3e9"; } +.ion-ios-wifi:before { + content: ""; +} -.ion-ios-box:before { content: "\f3ec"; } +.ion-ios-wine:before { + content: ""; +} -.ion-ios-box-outline:before { content: "\f3eb"; } +.ion-ios-woman:before { + content: ""; +} -.ion-ios-briefcase:before { content: "\f3ee"; } +.ion-logo-android:before { + content: ""; +} -.ion-ios-briefcase-outline:before { content: "\f3ed"; } +.ion-logo-angular:before { + content: ""; +} -.ion-ios-browsers:before { content: "\f3f0"; } +.ion-logo-apple:before { + content: ""; +} -.ion-ios-browsers-outline:before { content: "\f3ef"; } +.ion-logo-bitbucket:before { + content: ""; +} -.ion-ios-calculator:before { content: "\f3f2"; } +.ion-logo-bitcoin:before { + content: ""; +} -.ion-ios-calculator-outline:before { content: "\f3f1"; } +.ion-logo-buffer:before { + content: ""; +} -.ion-ios-calendar:before { content: "\f3f4"; } +.ion-logo-chrome:before { + content: ""; +} -.ion-ios-calendar-outline:before { content: "\f3f3"; } +.ion-logo-closed-captioning:before { + content: ""; +} -.ion-ios-camera:before { content: "\f3f6"; } +.ion-logo-codepen:before { + content: ""; +} -.ion-ios-camera-outline:before { content: "\f3f5"; } +.ion-logo-css3:before { + content: ""; +} -.ion-ios-cart:before { content: "\f3f8"; } +.ion-logo-designernews:before { + content: ""; +} -.ion-ios-cart-outline:before { content: "\f3f7"; } +.ion-logo-dribbble:before { + content: ""; +} -.ion-ios-chatboxes:before { content: "\f3fa"; } +.ion-logo-dropbox:before { + content: ""; +} -.ion-ios-chatboxes-outline:before { content: "\f3f9"; } +.ion-logo-euro:before { + content: ""; +} -.ion-ios-chatbubble:before { content: "\f3fc"; } +.ion-logo-facebook:before { + content: ""; +} -.ion-ios-chatbubble-outline:before { content: "\f3fb"; } +.ion-logo-flickr:before { + content: ""; +} -.ion-ios-checkmark:before { content: "\f3ff"; } +.ion-logo-foursquare:before { + content: ""; +} -.ion-ios-checkmark-empty:before { content: "\f3fd"; } +.ion-logo-freebsd-devil:before { + content: ""; +} -.ion-ios-checkmark-outline:before { content: "\f3fe"; } +.ion-logo-game-controller-a:before { + content: ""; +} -.ion-ios-circle-filled:before { content: "\f400"; } +.ion-logo-game-controller-b:before { + content: ""; +} -.ion-ios-circle-outline:before { content: "\f401"; } +.ion-logo-github:before { + content: ""; +} -.ion-ios-clock:before { content: "\f403"; } +.ion-logo-google:before { + content: ""; +} -.ion-ios-clock-outline:before { content: "\f402"; } +.ion-logo-googleplus:before { + content: ""; +} -.ion-ios-close:before { content: "\f406"; } +.ion-logo-hackernews:before { + content: ""; +} -.ion-ios-close-empty:before { content: "\f404"; } +.ion-logo-html5:before { + content: ""; +} -.ion-ios-close-outline:before { content: "\f405"; } +.ion-logo-instagram:before { + content: ""; +} -.ion-ios-cloud:before { content: "\f40c"; } +.ion-logo-ionic:before { + content: ""; +} -.ion-ios-cloud-download:before { content: "\f408"; } +.ion-logo-ionitron:before { + content: ""; +} -.ion-ios-cloud-download-outline:before { content: "\f407"; } +.ion-logo-javascript:before { + content: ""; +} -.ion-ios-cloud-outline:before { content: "\f409"; } +.ion-logo-linkedin:before { + content: ""; +} -.ion-ios-cloud-upload:before { content: "\f40b"; } +.ion-logo-markdown:before { + content: ""; +} -.ion-ios-cloud-upload-outline:before { content: "\f40a"; } +.ion-logo-model-s:before { + content: ""; +} -.ion-ios-cloudy:before { content: "\f410"; } +.ion-logo-no-smoking:before { + content: ""; +} -.ion-ios-cloudy-night:before { content: "\f40e"; } +.ion-logo-nodejs:before { + content: ""; +} -.ion-ios-cloudy-night-outline:before { content: "\f40d"; } +.ion-logo-npm:before { + content: ""; +} -.ion-ios-cloudy-outline:before { content: "\f40f"; } +.ion-logo-octocat:before { + content: ""; +} -.ion-ios-cog:before { content: "\f412"; } +.ion-logo-pinterest:before { + content: ""; +} -.ion-ios-cog-outline:before { content: "\f411"; } +.ion-logo-playstation:before { + content: ""; +} -.ion-ios-color-filter:before { content: "\f414"; } +.ion-logo-polymer:before { + content: ""; +} -.ion-ios-color-filter-outline:before { content: "\f413"; } +.ion-logo-python:before { + content: ""; +} -.ion-ios-color-wand:before { content: "\f416"; } +.ion-logo-reddit:before { + content: ""; +} -.ion-ios-color-wand-outline:before { content: "\f415"; } +.ion-logo-rss:before { + content: ""; +} -.ion-ios-compose:before { content: "\f418"; } +.ion-logo-sass:before { + content: ""; +} -.ion-ios-compose-outline:before { content: "\f417"; } +.ion-logo-skype:before { + content: ""; +} -.ion-ios-contact:before { content: "\f41a"; } +.ion-logo-slack:before { + content: ""; +} -.ion-ios-contact-outline:before { content: "\f419"; } +.ion-logo-snapchat:before { + content: ""; +} -.ion-ios-copy:before { content: "\f41c"; } +.ion-logo-steam:before { + content: ""; +} -.ion-ios-copy-outline:before { content: "\f41b"; } +.ion-logo-tumblr:before { + content: ""; +} -.ion-ios-crop:before { content: "\f41e"; } +.ion-logo-tux:before { + content: ""; +} -.ion-ios-crop-strong:before { content: "\f41d"; } +.ion-logo-twitch:before { + content: ""; +} -.ion-ios-download:before { content: "\f420"; } +.ion-logo-twitter:before { + content: ""; +} -.ion-ios-download-outline:before { content: "\f41f"; } +.ion-logo-usd:before { + content: ""; +} -.ion-ios-drag:before { content: "\f421"; } +.ion-logo-vimeo:before { + content: ""; +} -.ion-ios-email:before { content: "\f423"; } +.ion-logo-vk:before { + content: ""; +} -.ion-ios-email-outline:before { content: "\f422"; } +.ion-logo-whatsapp:before { + content: ""; +} -.ion-ios-eye:before { content: "\f425"; } +.ion-logo-windows:before { + content: ""; +} -.ion-ios-eye-outline:before { content: "\f424"; } +.ion-logo-wordpress:before { + content: ""; +} -.ion-ios-fastforward:before { content: "\f427"; } +.ion-logo-xbox:before { + content: ""; +} -.ion-ios-fastforward-outline:before { content: "\f426"; } +.ion-logo-xing:before { + content: ""; +} -.ion-ios-filing:before { content: "\f429"; } +.ion-logo-yahoo:before { + content: ""; +} -.ion-ios-filing-outline:before { content: "\f428"; } +.ion-logo-yen:before { + content: ""; +} -.ion-ios-film:before { content: "\f42b"; } +.ion-logo-youtube:before { + content: ""; +} -.ion-ios-film-outline:before { content: "\f42a"; } +.ion-md-add:before { + content: ""; +} -.ion-ios-flag:before { content: "\f42d"; } +.ion-md-add-circle:before { + content: ""; +} -.ion-ios-flag-outline:before { content: "\f42c"; } +.ion-md-add-circle-outline:before { + content: ""; +} -.ion-ios-flame:before { content: "\f42f"; } +.ion-md-airplane:before { + content: ""; +} -.ion-ios-flame-outline:before { content: "\f42e"; } +.ion-md-alarm:before { + content: ""; +} -.ion-ios-flask:before { content: "\f431"; } +.ion-md-albums:before { + content: ""; +} -.ion-ios-flask-outline:before { content: "\f430"; } +.ion-md-alert:before { + content: ""; +} -.ion-ios-flower:before { content: "\f433"; } +.ion-md-american-football:before { + content: ""; +} -.ion-ios-flower-outline:before { content: "\f432"; } +.ion-md-analytics:before { + content: ""; +} -.ion-ios-folder:before { content: "\f435"; } +.ion-md-aperture:before { + content: ""; +} -.ion-ios-folder-outline:before { content: "\f434"; } +.ion-md-apps:before { + content: ""; +} -.ion-ios-football:before { content: "\f437"; } +.ion-md-appstore:before { + content: ""; +} -.ion-ios-football-outline:before { content: "\f436"; } +.ion-md-archive:before { + content: ""; +} -.ion-ios-game-controller-a:before { content: "\f439"; } +.ion-md-arrow-back:before { + content: ""; +} -.ion-ios-game-controller-a-outline:before { content: "\f438"; } +.ion-md-arrow-down:before { + content: ""; +} -.ion-ios-game-controller-b:before { content: "\f43b"; } +.ion-md-arrow-dropdown:before { + content: ""; +} -.ion-ios-game-controller-b-outline:before { content: "\f43a"; } +.ion-md-arrow-dropdown-circle:before { + content: ""; +} -.ion-ios-gear:before { content: "\f43d"; } +.ion-md-arrow-dropleft:before { + content: ""; +} -.ion-ios-gear-outline:before { content: "\f43c"; } +.ion-md-arrow-dropleft-circle:before { + content: ""; +} -.ion-ios-glasses:before { content: "\f43f"; } +.ion-md-arrow-dropright:before { + content: ""; +} -.ion-ios-glasses-outline:before { content: "\f43e"; } +.ion-md-arrow-dropright-circle:before { + content: ""; +} -.ion-ios-grid-view:before { content: "\f441"; } +.ion-md-arrow-dropup:before { + content: ""; +} -.ion-ios-grid-view-outline:before { content: "\f440"; } +.ion-md-arrow-dropup-circle:before { + content: ""; +} -.ion-ios-heart:before { content: "\f443"; } +.ion-md-arrow-forward:before { + content: ""; +} -.ion-ios-heart-outline:before { content: "\f442"; } +.ion-md-arrow-round-back:before { + content: ""; +} -.ion-ios-help:before { content: "\f446"; } +.ion-md-arrow-round-down:before { + content: ""; +} -.ion-ios-help-empty:before { content: "\f444"; } +.ion-md-arrow-round-forward:before { + content: ""; +} -.ion-ios-help-outline:before { content: "\f445"; } +.ion-md-arrow-round-up:before { + content: ""; +} -.ion-ios-home:before { content: "\f448"; } +.ion-md-arrow-up:before { + content: ""; +} -.ion-ios-home-outline:before { content: "\f447"; } +.ion-md-at:before { + content: ""; +} -.ion-ios-infinite:before { content: "\f44a"; } +.ion-md-attach:before { + content: ""; +} -.ion-ios-infinite-outline:before { content: "\f449"; } +.ion-md-backspace:before { + content: ""; +} -.ion-ios-information:before { content: "\f44d"; } +.ion-md-barcode:before { + content: ""; +} -.ion-ios-information-empty:before { content: "\f44b"; } +.ion-md-baseball:before { + content: ""; +} -.ion-ios-information-outline:before { content: "\f44c"; } +.ion-md-basket:before { + content: ""; +} -.ion-ios-ionic-outline:before { content: "\f44e"; } +.ion-md-basketball:before { + content: ""; +} -.ion-ios-keypad:before { content: "\f450"; } +.ion-md-battery-charging:before { + content: ""; +} -.ion-ios-keypad-outline:before { content: "\f44f"; } +.ion-md-battery-dead:before { + content: ""; +} -.ion-ios-lightbulb:before { content: "\f452"; } +.ion-md-battery-full:before { + content: ""; +} -.ion-ios-lightbulb-outline:before { content: "\f451"; } +.ion-md-beaker:before { + content: ""; +} -.ion-ios-list:before { content: "\f454"; } +.ion-md-bed:before { + content: ""; +} -.ion-ios-list-outline:before { content: "\f453"; } +.ion-md-beer:before { + content: ""; +} -.ion-ios-location:before { content: "\f456"; } +.ion-md-bicycle:before { + content: ""; +} -.ion-ios-location-outline:before { content: "\f455"; } +.ion-md-bluetooth:before { + content: ""; +} -.ion-ios-locked:before { content: "\f458"; } +.ion-md-boat:before { + content: ""; +} -.ion-ios-locked-outline:before { content: "\f457"; } +.ion-md-body:before { + content: ""; +} -.ion-ios-loop:before { content: "\f45a"; } +.ion-md-bonfire:before { + content: ""; +} -.ion-ios-loop-strong:before { content: "\f459"; } +.ion-md-book:before { + content: ""; +} -.ion-ios-medical:before { content: "\f45c"; } +.ion-md-bookmark:before { + content: ""; +} -.ion-ios-medical-outline:before { content: "\f45b"; } +.ion-md-bookmarks:before { + content: ""; +} -.ion-ios-medkit:before { content: "\f45e"; } +.ion-md-bowtie:before { + content: ""; +} -.ion-ios-medkit-outline:before { content: "\f45d"; } +.ion-md-briefcase:before { + content: ""; +} -.ion-ios-mic:before { content: "\f461"; } +.ion-md-browsers:before { + content: ""; +} -.ion-ios-mic-off:before { content: "\f45f"; } +.ion-md-brush:before { + content: ""; +} -.ion-ios-mic-outline:before { content: "\f460"; } +.ion-md-bug:before { + content: ""; +} -.ion-ios-minus:before { content: "\f464"; } +.ion-md-build:before { + content: ""; +} -.ion-ios-minus-empty:before { content: "\f462"; } +.ion-md-bulb:before { + content: ""; +} -.ion-ios-minus-outline:before { content: "\f463"; } +.ion-md-bus:before { + content: ""; +} -.ion-ios-monitor:before { content: "\f466"; } +.ion-md-business:before { + content: ""; +} -.ion-ios-monitor-outline:before { content: "\f465"; } +.ion-md-cafe:before { + content: ""; +} -.ion-ios-moon:before { content: "\f468"; } +.ion-md-calculator:before { + content: ""; +} -.ion-ios-moon-outline:before { content: "\f467"; } +.ion-md-calendar:before { + content: ""; +} -.ion-ios-more:before { content: "\f46a"; } +.ion-md-call:before { + content: ""; +} -.ion-ios-more-outline:before { content: "\f469"; } +.ion-md-camera:before { + content: ""; +} -.ion-ios-musical-note:before { content: "\f46b"; } +.ion-md-car:before { + content: ""; +} -.ion-ios-musical-notes:before { content: "\f46c"; } +.ion-md-card:before { + content: ""; +} -.ion-ios-navigate:before { content: "\f46e"; } +.ion-md-cart:before { + content: ""; +} -.ion-ios-navigate-outline:before { content: "\f46d"; } +.ion-md-cash:before { + content: ""; +} -.ion-ios-nutrition:before { content: "\f470"; } +.ion-md-cellular:before { + content: ""; +} -.ion-ios-nutrition-outline:before { content: "\f46f"; } +.ion-md-chatboxes:before { + content: ""; +} -.ion-ios-paper:before { content: "\f472"; } +.ion-md-chatbubbles:before { + content: ""; +} -.ion-ios-paper-outline:before { content: "\f471"; } +.ion-md-checkbox:before { + content: ""; +} -.ion-ios-paperplane:before { content: "\f474"; } +.ion-md-checkbox-outline:before { + content: ""; +} -.ion-ios-paperplane-outline:before { content: "\f473"; } +.ion-md-checkmark:before { + content: ""; +} -.ion-ios-partlysunny:before { content: "\f476"; } +.ion-md-checkmark-circle:before { + content: ""; +} -.ion-ios-partlysunny-outline:before { content: "\f475"; } +.ion-md-checkmark-circle-outline:before { + content: ""; +} -.ion-ios-pause:before { content: "\f478"; } +.ion-md-clipboard:before { + content: ""; +} -.ion-ios-pause-outline:before { content: "\f477"; } +.ion-md-clock:before { + content: ""; +} -.ion-ios-paw:before { content: "\f47a"; } +.ion-md-close:before { + content: ""; +} -.ion-ios-paw-outline:before { content: "\f479"; } +.ion-md-close-circle:before { + content: ""; +} -.ion-ios-people:before { content: "\f47c"; } +.ion-md-close-circle-outline:before { + content: ""; +} -.ion-ios-people-outline:before { content: "\f47b"; } +.ion-md-cloud:before { + content: ""; +} -.ion-ios-person:before { content: "\f47e"; } +.ion-md-cloud-circle:before { + content: ""; +} -.ion-ios-person-outline:before { content: "\f47d"; } +.ion-md-cloud-done:before { + content: ""; +} -.ion-ios-personadd:before { content: "\f480"; } +.ion-md-cloud-download:before { + content: ""; +} -.ion-ios-personadd-outline:before { content: "\f47f"; } +.ion-md-cloud-outline:before { + content: ""; +} -.ion-ios-photos:before { content: "\f482"; } +.ion-md-cloud-upload:before { + content: ""; +} -.ion-ios-photos-outline:before { content: "\f481"; } +.ion-md-cloudy:before { + content: ""; +} -.ion-ios-pie:before { content: "\f484"; } +.ion-md-cloudy-night:before { + content: ""; +} -.ion-ios-pie-outline:before { content: "\f483"; } +.ion-md-code:before { + content: ""; +} -.ion-ios-pint:before { content: "\f486"; } +.ion-md-code-download:before { + content: ""; +} -.ion-ios-pint-outline:before { content: "\f485"; } +.ion-md-code-working:before { + content: ""; +} -.ion-ios-play:before { content: "\f488"; } +.ion-md-cog:before { + content: ""; +} -.ion-ios-play-outline:before { content: "\f487"; } +.ion-md-color-fill:before { + content: ""; +} -.ion-ios-plus:before { content: "\f48b"; } +.ion-md-color-filter:before { + content: ""; +} -.ion-ios-plus-empty:before { content: "\f489"; } +.ion-md-color-palette:before { + content: ""; +} -.ion-ios-plus-outline:before { content: "\f48a"; } +.ion-md-color-wand:before { + content: ""; +} -.ion-ios-pricetag:before { content: "\f48d"; } +.ion-md-compass:before { + content: ""; +} -.ion-ios-pricetag-outline:before { content: "\f48c"; } +.ion-md-construct:before { + content: ""; +} -.ion-ios-pricetags:before { content: "\f48f"; } +.ion-md-contact:before { + content: ""; +} -.ion-ios-pricetags-outline:before { content: "\f48e"; } +.ion-md-contacts:before { + content: ""; +} -.ion-ios-printer:before { content: "\f491"; } +.ion-md-contract:before { + content: ""; +} -.ion-ios-printer-outline:before { content: "\f490"; } +.ion-md-contrast:before { + content: ""; +} -.ion-ios-pulse:before { content: "\f493"; } +.ion-md-copy:before { + content: ""; +} -.ion-ios-pulse-strong:before { content: "\f492"; } +.ion-md-create:before { + content: ""; +} -.ion-ios-rainy:before { content: "\f495"; } +.ion-md-crop:before { + content: ""; +} -.ion-ios-rainy-outline:before { content: "\f494"; } +.ion-md-cube:before { + content: ""; +} -.ion-ios-recording:before { content: "\f497"; } +.ion-md-cut:before { + content: ""; +} -.ion-ios-recording-outline:before { content: "\f496"; } +.ion-md-desktop:before { + content: ""; +} -.ion-ios-redo:before { content: "\f499"; } +.ion-md-disc:before { + content: ""; +} -.ion-ios-redo-outline:before { content: "\f498"; } +.ion-md-document:before { + content: ""; +} -.ion-ios-refresh:before { content: "\f49c"; } +.ion-md-done-all:before { + content: ""; +} -.ion-ios-refresh-empty:before { content: "\f49a"; } +.ion-md-download:before { + content: ""; +} -.ion-ios-refresh-outline:before { content: "\f49b"; } +.ion-md-easel:before { + content: ""; +} -.ion-ios-reload:before { content: "\f49d"; } +.ion-md-egg:before { + content: ""; +} -.ion-ios-reverse-camera:before { content: "\f49f"; } +.ion-md-exit:before { + content: ""; +} -.ion-ios-reverse-camera-outline:before { content: "\f49e"; } +.ion-md-expand:before { + content: ""; +} -.ion-ios-rewind:before { content: "\f4a1"; } +.ion-md-eye:before { + content: ""; +} -.ion-ios-rewind-outline:before { content: "\f4a0"; } +.ion-md-eye-off:before { + content: ""; +} -.ion-ios-rose:before { content: "\f4a3"; } +.ion-md-fastforward:before { + content: ""; +} -.ion-ios-rose-outline:before { content: "\f4a2"; } +.ion-md-female:before { + content: ""; +} -.ion-ios-search:before { content: "\f4a5"; } +.ion-md-filing:before { + content: ""; +} -.ion-ios-search-strong:before { content: "\f4a4"; } +.ion-md-film:before { + content: ""; +} -.ion-ios-settings:before { content: "\f4a7"; } +.ion-md-finger-print:before { + content: ""; +} -.ion-ios-settings-strong:before { content: "\f4a6"; } +.ion-md-fitness:before { + content: ""; +} -.ion-ios-shuffle:before { content: "\f4a9"; } +.ion-md-flag:before { + content: ""; +} -.ion-ios-shuffle-strong:before { content: "\f4a8"; } +.ion-md-flame:before { + content: ""; +} -.ion-ios-skipbackward:before { content: "\f4ab"; } +.ion-md-flash:before { + content: ""; +} -.ion-ios-skipbackward-outline:before { content: "\f4aa"; } +.ion-md-flash-off:before { + content: ""; +} -.ion-ios-skipforward:before { content: "\f4ad"; } +.ion-md-flashlight:before { + content: ""; +} -.ion-ios-skipforward-outline:before { content: "\f4ac"; } +.ion-md-flask:before { + content: ""; +} -.ion-ios-snowy:before { content: "\f4ae"; } +.ion-md-flower:before { + content: ""; +} -.ion-ios-speedometer:before { content: "\f4b0"; } +.ion-md-folder:before { + content: ""; +} -.ion-ios-speedometer-outline:before { content: "\f4af"; } +.ion-md-folder-open:before { + content: ""; +} -.ion-ios-star:before { content: "\f4b3"; } +.ion-md-football:before { + content: ""; +} -.ion-ios-star-half:before { content: "\f4b1"; } +.ion-md-funnel:before { + content: ""; +} -.ion-ios-star-outline:before { content: "\f4b2"; } +.ion-md-gift:before { + content: ""; +} -.ion-ios-stopwatch:before { content: "\f4b5"; } +.ion-md-git-branch:before { + content: ""; +} -.ion-ios-stopwatch-outline:before { content: "\f4b4"; } +.ion-md-git-commit:before { + content: ""; +} -.ion-ios-sunny:before { content: "\f4b7"; } +.ion-md-git-compare:before { + content: ""; +} -.ion-ios-sunny-outline:before { content: "\f4b6"; } +.ion-md-git-merge:before { + content: ""; +} -.ion-ios-telephone:before { content: "\f4b9"; } +.ion-md-git-network:before { + content: ""; +} -.ion-ios-telephone-outline:before { content: "\f4b8"; } +.ion-md-git-pull-request:before { + content: ""; +} -.ion-ios-tennisball:before { content: "\f4bb"; } +.ion-md-glasses:before { + content: ""; +} -.ion-ios-tennisball-outline:before { content: "\f4ba"; } +.ion-md-globe:before { + content: ""; +} -.ion-ios-thunderstorm:before { content: "\f4bd"; } +.ion-md-grid:before { + content: ""; +} -.ion-ios-thunderstorm-outline:before { content: "\f4bc"; } +.ion-md-hammer:before { + content: ""; +} -.ion-ios-time:before { content: "\f4bf"; } +.ion-md-hand:before { + content: ""; +} -.ion-ios-time-outline:before { content: "\f4be"; } +.ion-md-happy:before { + content: ""; +} -.ion-ios-timer:before { content: "\f4c1"; } +.ion-md-headset:before { + content: ""; +} -.ion-ios-timer-outline:before { content: "\f4c0"; } +.ion-md-heart:before { + content: ""; +} -.ion-ios-toggle:before { content: "\f4c3"; } +.ion-md-heart-dislike:before { + content: ""; +} -.ion-ios-toggle-outline:before { content: "\f4c2"; } +.ion-md-heart-empty:before { + content: ""; +} -.ion-ios-trash:before { content: "\f4c5"; } +.ion-md-heart-half:before { + content: ""; +} -.ion-ios-trash-outline:before { content: "\f4c4"; } +.ion-md-help:before { + content: ""; +} -.ion-ios-undo:before { content: "\f4c7"; } +.ion-md-help-buoy:before { + content: ""; +} -.ion-ios-undo-outline:before { content: "\f4c6"; } +.ion-md-help-circle:before { + content: ""; +} -.ion-ios-unlocked:before { content: "\f4c9"; } +.ion-md-help-circle-outline:before { + content: ""; +} -.ion-ios-unlocked-outline:before { content: "\f4c8"; } +.ion-md-home:before { + content: ""; +} -.ion-ios-upload:before { content: "\f4cb"; } +.ion-md-hourglass:before { + content: ""; +} -.ion-ios-upload-outline:before { content: "\f4ca"; } +.ion-md-ice-cream:before { + content: ""; +} -.ion-ios-videocam:before { content: "\f4cd"; } +.ion-md-image:before { + content: ""; +} -.ion-ios-videocam-outline:before { content: "\f4cc"; } +.ion-md-images:before { + content: ""; +} -.ion-ios-volume-high:before { content: "\f4ce"; } +.ion-md-infinite:before { + content: ""; +} -.ion-ios-volume-low:before { content: "\f4cf"; } +.ion-md-information:before { + content: ""; +} -.ion-ios-wineglass:before { content: "\f4d1"; } +.ion-md-information-circle:before { + content: ""; +} -.ion-ios-wineglass-outline:before { content: "\f4d0"; } +.ion-md-information-circle-outline:before { + content: ""; +} -.ion-ios-world:before { content: "\f4d3"; } +.ion-md-jet:before { + content: ""; +} -.ion-ios-world-outline:before { content: "\f4d2"; } +.ion-md-journal:before { + content: ""; +} -.ion-ipad:before { content: "\f1f9"; } +.ion-md-key:before { + content: ""; +} -.ion-iphone:before { content: "\f1fa"; } +.ion-md-keypad:before { + content: ""; +} -.ion-ipod:before { content: "\f1fb"; } +.ion-md-laptop:before { + content: ""; +} -.ion-jet:before { content: "\f295"; } +.ion-md-leaf:before { + content: ""; +} -.ion-key:before { content: "\f296"; } +.ion-md-link:before { + content: ""; +} -.ion-knife:before { content: "\f297"; } +.ion-md-list:before { + content: ""; +} -.ion-laptop:before { content: "\f1fc"; } +.ion-md-list-box:before { + content: ""; +} -.ion-leaf:before { content: "\f1fd"; } +.ion-md-locate:before { + content: ""; +} -.ion-levels:before { content: "\f298"; } +.ion-md-lock:before { + content: ""; +} -.ion-lightbulb:before { content: "\f299"; } +.ion-md-log-in:before { + content: ""; +} -.ion-link:before { content: "\f1fe"; } +.ion-md-log-out:before { + content: ""; +} -.ion-load-a:before { content: "\f29a"; } +.ion-md-magnet:before { + content: ""; +} -.ion-load-b:before { content: "\f29b"; } +.ion-md-mail:before { + content: ""; +} -.ion-load-c:before { content: "\f29c"; } +.ion-md-mail-open:before { + content: ""; +} -.ion-load-d:before { content: "\f29d"; } +.ion-md-mail-unread:before { + content: ""; +} -.ion-location:before { content: "\f1ff"; } +.ion-md-male:before { + content: ""; +} -.ion-lock-combination:before { content: "\f4d4"; } +.ion-md-man:before { + content: ""; +} -.ion-locked:before { content: "\f200"; } +.ion-md-map:before { + content: ""; +} -.ion-log-in:before { content: "\f29e"; } +.ion-md-medal:before { + content: ""; +} -.ion-log-out:before { content: "\f29f"; } +.ion-md-medical:before { + content: ""; +} -.ion-loop:before { content: "\f201"; } +.ion-md-medkit:before { + content: ""; +} -.ion-magnet:before { content: "\f2a0"; } +.ion-md-megaphone:before { + content: ""; +} -.ion-male:before { content: "\f2a1"; } +.ion-md-menu:before { + content: ""; +} -.ion-man:before { content: "\f202"; } +.ion-md-mic:before { + content: ""; +} -.ion-map:before { content: "\f203"; } +.ion-md-mic-off:before { + content: ""; +} -.ion-medkit:before { content: "\f2a2"; } +.ion-md-microphone:before { + content: ""; +} -.ion-merge:before { content: "\f33f"; } +.ion-md-moon:before { + content: ""; +} -.ion-mic-a:before { content: "\f204"; } +.ion-md-more:before { + content: ""; +} -.ion-mic-b:before { content: "\f205"; } +.ion-md-move:before { + content: ""; +} -.ion-mic-c:before { content: "\f206"; } +.ion-md-musical-note:before { + content: ""; +} -.ion-minus:before { content: "\f209"; } +.ion-md-musical-notes:before { + content: ""; +} -.ion-minus-circled:before { content: "\f207"; } +.ion-md-navigate:before { + content: ""; +} -.ion-minus-round:before { content: "\f208"; } +.ion-md-notifications:before { + content: ""; +} -.ion-model-s:before { content: "\f2c1"; } +.ion-md-notifications-off:before { + content: ""; +} -.ion-monitor:before { content: "\f20a"; } +.ion-md-notifications-outline:before { + content: ""; +} -.ion-more:before { content: "\f20b"; } +.ion-md-nuclear:before { + content: ""; +} -.ion-mouse:before { content: "\f340"; } +.ion-md-nutrition:before { + content: ""; +} -.ion-music-note:before { content: "\f20c"; } +.ion-md-open:before { + content: ""; +} -.ion-navicon:before { content: "\f20e"; } +.ion-md-options:before { + content: ""; +} -.ion-navicon-round:before { content: "\f20d"; } +.ion-md-outlet:before { + content: ""; +} -.ion-navigate:before { content: "\f2a3"; } +.ion-md-paper:before { + content: ""; +} -.ion-network:before { content: "\f341"; } +.ion-md-paper-plane:before { + content: ""; +} -.ion-no-smoking:before { content: "\f2c2"; } +.ion-md-partly-sunny:before { + content: ""; +} -.ion-nuclear:before { content: "\f2a4"; } +.ion-md-pause:before { + content: ""; +} -.ion-outlet:before { content: "\f342"; } +.ion-md-paw:before { + content: ""; +} -.ion-paintbrush:before { content: "\f4d5"; } +.ion-md-people:before { + content: ""; +} -.ion-paintbucket:before { content: "\f4d6"; } +.ion-md-person:before { + content: ""; +} -.ion-paper-airplane:before { content: "\f2c3"; } +.ion-md-person-add:before { + content: ""; +} -.ion-paperclip:before { content: "\f20f"; } +.ion-md-phone-landscape:before { + content: ""; +} -.ion-pause:before { content: "\f210"; } +.ion-md-phone-portrait:before { + content: ""; +} -.ion-person:before { content: "\f213"; } +.ion-md-photos:before { + content: ""; +} -.ion-person-add:before { content: "\f211"; } +.ion-md-pie:before { + content: ""; +} -.ion-person-stalker:before { content: "\f212"; } +.ion-md-pin:before { + content: ""; +} -.ion-pie-graph:before { content: "\f2a5"; } +.ion-md-pint:before { + content: ""; +} -.ion-pin:before { content: "\f2a6"; } +.ion-md-pizza:before { + content: ""; +} -.ion-pinpoint:before { content: "\f2a7"; } +.ion-md-planet:before { + content: ""; +} -.ion-pizza:before { content: "\f2a8"; } +.ion-md-play:before { + content: ""; +} -.ion-plane:before { content: "\f214"; } +.ion-md-play-circle:before { + content: ""; +} -.ion-planet:before { content: "\f343"; } +.ion-md-podium:before { + content: ""; +} -.ion-play:before { content: "\f215"; } +.ion-md-power:before { + content: ""; +} -.ion-playstation:before { content: "\f30a"; } +.ion-md-pricetag:before { + content: ""; +} -.ion-plus:before { content: "\f218"; } +.ion-md-pricetags:before { + content: ""; +} -.ion-plus-circled:before { content: "\f216"; } +.ion-md-print:before { + content: ""; +} -.ion-plus-round:before { content: "\f217"; } +.ion-md-pulse:before { + content: ""; +} -.ion-podium:before { content: "\f344"; } +.ion-md-qr-scanner:before { + content: ""; +} -.ion-pound:before { content: "\f219"; } +.ion-md-quote:before { + content: ""; +} -.ion-power:before { content: "\f2a9"; } +.ion-md-radio:before { + content: ""; +} -.ion-pricetag:before { content: "\f2aa"; } +.ion-md-radio-button-off:before { + content: ""; +} -.ion-pricetags:before { content: "\f2ab"; } +.ion-md-radio-button-on:before { + content: ""; +} -.ion-printer:before { content: "\f21a"; } +.ion-md-rainy:before { + content: ""; +} -.ion-pull-request:before { content: "\f345"; } +.ion-md-recording:before { + content: ""; +} -.ion-qr-scanner:before { content: "\f346"; } +.ion-md-redo:before { + content: ""; +} -.ion-quote:before { content: "\f347"; } +.ion-md-refresh:before { + content: ""; +} -.ion-radio-waves:before { content: "\f2ac"; } +.ion-md-refresh-circle:before { + content: ""; +} -.ion-record:before { content: "\f21b"; } +.ion-md-remove:before { + content: ""; +} -.ion-refresh:before { content: "\f21c"; } +.ion-md-remove-circle:before { + content: ""; +} -.ion-reply:before { content: "\f21e"; } +.ion-md-remove-circle-outline:before { + content: ""; +} -.ion-reply-all:before { content: "\f21d"; } +.ion-md-reorder:before { + content: ""; +} -.ion-ribbon-a:before { content: "\f348"; } +.ion-md-repeat:before { + content: ""; +} -.ion-ribbon-b:before { content: "\f349"; } +.ion-md-resize:before { + content: ""; +} -.ion-sad:before { content: "\f34a"; } +.ion-md-restaurant:before { + content: ""; +} -.ion-sad-outline:before { content: "\f4d7"; } +.ion-md-return-left:before { + content: ""; +} -.ion-scissors:before { content: "\f34b"; } +.ion-md-return-right:before { + content: ""; +} -.ion-search:before { content: "\f21f"; } +.ion-md-reverse-camera:before { + content: ""; +} -.ion-settings:before { content: "\f2ad"; } +.ion-md-rewind:before { + content: ""; +} -.ion-share:before { content: "\f220"; } +.ion-md-ribbon:before { + content: ""; +} -.ion-shuffle:before { content: "\f221"; } +.ion-md-rocket:before { + content: ""; +} -.ion-skip-backward:before { content: "\f222"; } +.ion-md-rose:before { + content: ""; +} -.ion-skip-forward:before { content: "\f223"; } +.ion-md-sad:before { + content: ""; +} -.ion-social-android:before { content: "\f225"; } +.ion-md-save:before { + content: ""; +} -.ion-social-android-outline:before { content: "\f224"; } +.ion-md-school:before { + content: ""; +} -.ion-social-angular:before { content: "\f4d9"; } +.ion-md-search:before { + content: ""; +} -.ion-social-angular-outline:before { content: "\f4d8"; } +.ion-md-send:before { + content: ""; +} -.ion-social-apple:before { content: "\f227"; } +.ion-md-settings:before { + content: ""; +} -.ion-social-apple-outline:before { content: "\f226"; } +.ion-md-share:before { + content: ""; +} -.ion-social-bitcoin:before { content: "\f2af"; } +.ion-md-share-alt:before { + content: ""; +} -.ion-social-bitcoin-outline:before { content: "\f2ae"; } +.ion-md-shirt:before { + content: ""; +} -.ion-social-buffer:before { content: "\f229"; } +.ion-md-shuffle:before { + content: ""; +} -.ion-social-buffer-outline:before { content: "\f228"; } +.ion-md-skip-backward:before { + content: ""; +} -.ion-social-chrome:before { content: "\f4db"; } +.ion-md-skip-forward:before { + content: ""; +} -.ion-social-chrome-outline:before { content: "\f4da"; } +.ion-md-snow:before { + content: ""; +} -.ion-social-codepen:before { content: "\f4dd"; } +.ion-md-speedometer:before { + content: ""; +} -.ion-social-codepen-outline:before { content: "\f4dc"; } +.ion-md-square:before { + content: ""; +} -.ion-social-css3:before { content: "\f4df"; } +.ion-md-square-outline:before { + content: ""; +} -.ion-social-css3-outline:before { content: "\f4de"; } +.ion-md-star:before { + content: ""; +} -.ion-social-designernews:before { content: "\f22b"; } +.ion-md-star-half:before { + content: ""; +} -.ion-social-designernews-outline:before { content: "\f22a"; } +.ion-md-star-outline:before { + content: ""; +} -.ion-social-dribbble:before { content: "\f22d"; } +.ion-md-stats:before { + content: ""; +} -.ion-social-dribbble-outline:before { content: "\f22c"; } +.ion-md-stopwatch:before { + content: ""; +} -.ion-social-dropbox:before { content: "\f22f"; } +.ion-md-subway:before { + content: ""; +} -.ion-social-dropbox-outline:before { content: "\f22e"; } +.ion-md-sunny:before { + content: ""; +} -.ion-social-euro:before { content: "\f4e1"; } +.ion-md-swap:before { + content: ""; +} -.ion-social-euro-outline:before { content: "\f4e0"; } +.ion-md-switch:before { + content: ""; +} -.ion-social-facebook:before { content: "\f231"; } +.ion-md-sync:before { + content: ""; +} -.ion-social-facebook-outline:before { content: "\f230"; } +.ion-md-tablet-landscape:before { + content: ""; +} -.ion-social-foursquare:before { content: "\f34d"; } +.ion-md-tablet-portrait:before { + content: ""; +} -.ion-social-foursquare-outline:before { content: "\f34c"; } +.ion-md-tennisball:before { + content: ""; +} -.ion-social-freebsd-devil:before { content: "\f2c4"; } +.ion-md-text:before { + content: ""; +} -.ion-social-github:before { content: "\f233"; } +.ion-md-thermometer:before { + content: ""; +} -.ion-social-github-outline:before { content: "\f232"; } +.ion-md-thumbs-down:before { + content: ""; +} -.ion-social-google:before { content: "\f34f"; } +.ion-md-thumbs-up:before { + content: ""; +} -.ion-social-google-outline:before { content: "\f34e"; } +.ion-md-thunderstorm:before { + content: ""; +} -.ion-social-googleplus:before { content: "\f235"; } +.ion-md-time:before { + content: ""; +} -.ion-social-googleplus-outline:before { content: "\f234"; } +.ion-md-timer:before { + content: ""; +} -.ion-social-hackernews:before { content: "\f237"; } +.ion-md-today:before { + content: ""; +} -.ion-social-hackernews-outline:before { content: "\f236"; } +.ion-md-train:before { + content: ""; +} -.ion-social-html5:before { content: "\f4e3"; } +.ion-md-transgender:before { + content: ""; +} -.ion-social-html5-outline:before { content: "\f4e2"; } +.ion-md-trash:before { + content: ""; +} -.ion-social-instagram:before { content: "\f351"; } +.ion-md-trending-down:before { + content: ""; +} -.ion-social-instagram-outline:before { content: "\f350"; } +.ion-md-trending-up:before { + content: ""; +} -.ion-social-javascript:before { content: "\f4e5"; } +.ion-md-trophy:before { + content: ""; +} -.ion-social-javascript-outline:before { content: "\f4e4"; } +.ion-md-tv:before { + content: ""; +} -.ion-social-linkedin:before { content: "\f239"; } +.ion-md-umbrella:before { + content: ""; +} -.ion-social-linkedin-outline:before { content: "\f238"; } +.ion-md-undo:before { + content: ""; +} -.ion-social-markdown:before { content: "\f4e6"; } +.ion-md-unlock:before { + content: ""; +} -.ion-social-nodejs:before { content: "\f4e7"; } +.ion-md-videocam:before { + content: ""; +} -.ion-social-octocat:before { content: "\f4e8"; } +.ion-md-volume-high:before { + content: ""; +} -.ion-social-pinterest:before { content: "\f2b1"; } +.ion-md-volume-low:before { + content: ""; +} -.ion-social-pinterest-outline:before { content: "\f2b0"; } +.ion-md-volume-mute:before { + content: ""; +} -.ion-social-python:before { content: "\f4e9"; } +.ion-md-volume-off:before { + content: ""; +} -.ion-social-reddit:before { content: "\f23b"; } +.ion-md-walk:before { + content: ""; +} -.ion-social-reddit-outline:before { content: "\f23a"; } +.ion-md-wallet:before { + content: ""; +} -.ion-social-rss:before { content: "\f23d"; } +.ion-md-warning:before { + content: ""; +} -.ion-social-rss-outline:before { content: "\f23c"; } +.ion-md-watch:before { + content: ""; +} -.ion-social-sass:before { content: "\f4ea"; } +.ion-md-water:before { + content: ""; +} -.ion-social-skype:before { content: "\f23f"; } +.ion-md-wifi:before { + content: ""; +} -.ion-social-skype-outline:before { content: "\f23e"; } +.ion-md-wine:before { + content: ""; +} -.ion-social-snapchat:before { content: "\f4ec"; } - -.ion-social-snapchat-outline:before { content: "\f4eb"; } - -.ion-social-tumblr:before { content: "\f241"; } - -.ion-social-tumblr-outline:before { content: "\f240"; } - -.ion-social-tux:before { content: "\f2c5"; } - -.ion-social-twitch:before { content: "\f4ee"; } - -.ion-social-twitch-outline:before { content: "\f4ed"; } - -.ion-social-twitter:before { content: "\f243"; } - -.ion-social-twitter-outline:before { content: "\f242"; } - -.ion-social-usd:before { content: "\f353"; } - -.ion-social-usd-outline:before { content: "\f352"; } - -.ion-social-vimeo:before { content: "\f245"; } - -.ion-social-vimeo-outline:before { content: "\f244"; } - -.ion-social-whatsapp:before { content: "\f4f0"; } - -.ion-social-whatsapp-outline:before { content: "\f4ef"; } - -.ion-social-windows:before { content: "\f247"; } - -.ion-social-windows-outline:before { content: "\f246"; } - -.ion-social-wordpress:before { content: "\f249"; } - -.ion-social-wordpress-outline:before { content: "\f248"; } - -.ion-social-yahoo:before { content: "\f24b"; } - -.ion-social-yahoo-outline:before { content: "\f24a"; } - -.ion-social-yen:before { content: "\f4f2"; } - -.ion-social-yen-outline:before { content: "\f4f1"; } - -.ion-social-youtube:before { content: "\f24d"; } - -.ion-social-youtube-outline:before { content: "\f24c"; } - -.ion-soup-can:before { content: "\f4f4"; } - -.ion-soup-can-outline:before { content: "\f4f3"; } - -.ion-speakerphone:before { content: "\f2b2"; } - -.ion-speedometer:before { content: "\f2b3"; } - -.ion-spoon:before { content: "\f2b4"; } - -.ion-star:before { content: "\f24e"; } - -.ion-stats-bars:before { content: "\f2b5"; } - -.ion-steam:before { content: "\f30b"; } - -.ion-stop:before { content: "\f24f"; } - -.ion-thermometer:before { content: "\f2b6"; } - -.ion-thumbsdown:before { content: "\f250"; } - -.ion-thumbsup:before { content: "\f251"; } - -.ion-toggle:before { content: "\f355"; } - -.ion-toggle-filled:before { content: "\f354"; } - -.ion-transgender:before { content: "\f4f5"; } - -.ion-trash-a:before { content: "\f252"; } - -.ion-trash-b:before { content: "\f253"; } - -.ion-trophy:before { content: "\f356"; } - -.ion-tshirt:before { content: "\f4f7"; } - -.ion-tshirt-outline:before { content: "\f4f6"; } - -.ion-umbrella:before { content: "\f2b7"; } - -.ion-university:before { content: "\f357"; } - -.ion-unlocked:before { content: "\f254"; } - -.ion-upload:before { content: "\f255"; } - -.ion-usb:before { content: "\f2b8"; } - -.ion-videocamera:before { content: "\f256"; } - -.ion-volume-high:before { content: "\f257"; } - -.ion-volume-low:before { content: "\f258"; } - -.ion-volume-medium:before { content: "\f259"; } - -.ion-volume-mute:before { content: "\f25a"; } - -.ion-wand:before { content: "\f358"; } - -.ion-waterdrop:before { content: "\f25b"; } - -.ion-wifi:before { content: "\f25c"; } - -.ion-wineglass:before { content: "\f2b9"; } - -.ion-woman:before { content: "\f25d"; } - -.ion-wrench:before { content: "\f2ba"; } - -.ion-xbox:before { content: "\f30c"; } +.ion-md-woman:before { + content: ""; +} \ No newline at end of file diff --git a/wwwroot/vendor/ionicons.min.css b/wwwroot/vendor/ionicons.min.css index baba9e9..d8b9943 100644 --- a/wwwroot/vendor/ionicons.min.css +++ b/wwwroot/vendor/ionicons.min.css @@ -1,5 +1,5 @@ -@charset "UTF-8";/*! - Ionicons, v2.0.0 +/*! + Ionicons, v4.6.4-1 Created by Ben Sperry for the Ionic Framework, http://ionicons.com/ https://twitter.com/benjsperry https://twitter.com/ionicframework MIT License: https://github.com/driftyco/ionicons @@ -8,4 +8,4 @@ Material Design Icons: https://github.com/google/material-design-icons used under CC BY http://creativecommons.org/licenses/by/4.0/ Modified icons to fit ionicon’s grid from original. -*/@font-face{font-family:"Ionicons";src:url("../fonts/ionicons.eot?v=2.0.0");src:url("../fonts/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"),url("../fonts/ionicons.ttf?v=2.0.0") format("truetype"),url("../fonts/ionicons.woff?v=2.0.0") format("woff"),url("../fonts/ionicons.svg?v=2.0.0#Ionicons") format("svg");font-weight:normal;font-style:normal}.ion,.ionicons,.ion-alert:before,.ion-alert-circled:before,.ion-android-add:before,.ion-android-add-circle:before,.ion-android-alarm-clock:before,.ion-android-alert:before,.ion-android-apps:before,.ion-android-archive:before,.ion-android-arrow-back:before,.ion-android-arrow-down:before,.ion-android-arrow-dropdown:before,.ion-android-arrow-dropdown-circle:before,.ion-android-arrow-dropleft:before,.ion-android-arrow-dropleft-circle:before,.ion-android-arrow-dropright:before,.ion-android-arrow-dropright-circle:before,.ion-android-arrow-dropup:before,.ion-android-arrow-dropup-circle:before,.ion-android-arrow-forward:before,.ion-android-arrow-up:before,.ion-android-attach:before,.ion-android-bar:before,.ion-android-bicycle:before,.ion-android-boat:before,.ion-android-bookmark:before,.ion-android-bulb:before,.ion-android-bus:before,.ion-android-calendar:before,.ion-android-call:before,.ion-android-camera:before,.ion-android-cancel:before,.ion-android-car:before,.ion-android-cart:before,.ion-android-chat:before,.ion-android-checkbox:before,.ion-android-checkbox-blank:before,.ion-android-checkbox-outline:before,.ion-android-checkbox-outline-blank:before,.ion-android-checkmark-circle:before,.ion-android-clipboard:before,.ion-android-close:before,.ion-android-cloud:before,.ion-android-cloud-circle:before,.ion-android-cloud-done:before,.ion-android-cloud-outline:before,.ion-android-color-palette:before,.ion-android-compass:before,.ion-android-contact:before,.ion-android-contacts:before,.ion-android-contract:before,.ion-android-create:before,.ion-android-delete:before,.ion-android-desktop:before,.ion-android-document:before,.ion-android-done:before,.ion-android-done-all:before,.ion-android-download:before,.ion-android-drafts:before,.ion-android-exit:before,.ion-android-expand:before,.ion-android-favorite:before,.ion-android-favorite-outline:before,.ion-android-film:before,.ion-android-folder:before,.ion-android-folder-open:before,.ion-android-funnel:before,.ion-android-globe:before,.ion-android-hand:before,.ion-android-hangout:before,.ion-android-happy:before,.ion-android-home:before,.ion-android-image:before,.ion-android-laptop:before,.ion-android-list:before,.ion-android-locate:before,.ion-android-lock:before,.ion-android-mail:before,.ion-android-map:before,.ion-android-menu:before,.ion-android-microphone:before,.ion-android-microphone-off:before,.ion-android-more-horizontal:before,.ion-android-more-vertical:before,.ion-android-navigate:before,.ion-android-notifications:before,.ion-android-notifications-none:before,.ion-android-notifications-off:before,.ion-android-open:before,.ion-android-options:before,.ion-android-people:before,.ion-android-person:before,.ion-android-person-add:before,.ion-android-phone-landscape:before,.ion-android-phone-portrait:before,.ion-android-pin:before,.ion-android-plane:before,.ion-android-playstore:before,.ion-android-print:before,.ion-android-radio-button-off:before,.ion-android-radio-button-on:before,.ion-android-refresh:before,.ion-android-remove:before,.ion-android-remove-circle:before,.ion-android-restaurant:before,.ion-android-sad:before,.ion-android-search:before,.ion-android-send:before,.ion-android-settings:before,.ion-android-share:before,.ion-android-share-alt:before,.ion-android-star:before,.ion-android-star-half:before,.ion-android-star-outline:before,.ion-android-stopwatch:before,.ion-android-subway:before,.ion-android-sunny:before,.ion-android-sync:before,.ion-android-textsms:before,.ion-android-time:before,.ion-android-train:before,.ion-android-unlock:before,.ion-android-upload:before,.ion-android-volume-down:before,.ion-android-volume-mute:before,.ion-android-volume-off:before,.ion-android-volume-up:before,.ion-android-walk:before,.ion-android-warning:before,.ion-android-watch:before,.ion-android-wifi:before,.ion-aperture:before,.ion-archive:before,.ion-arrow-down-a:before,.ion-arrow-down-b:before,.ion-arrow-down-c:before,.ion-arrow-expand:before,.ion-arrow-graph-down-left:before,.ion-arrow-graph-down-right:before,.ion-arrow-graph-up-left:before,.ion-arrow-graph-up-right:before,.ion-arrow-left-a:before,.ion-arrow-left-b:before,.ion-arrow-left-c:before,.ion-arrow-move:before,.ion-arrow-resize:before,.ion-arrow-return-left:before,.ion-arrow-return-right:before,.ion-arrow-right-a:before,.ion-arrow-right-b:before,.ion-arrow-right-c:before,.ion-arrow-shrink:before,.ion-arrow-swap:before,.ion-arrow-up-a:before,.ion-arrow-up-b:before,.ion-arrow-up-c:before,.ion-asterisk:before,.ion-at:before,.ion-backspace:before,.ion-backspace-outline:before,.ion-bag:before,.ion-battery-charging:before,.ion-battery-empty:before,.ion-battery-full:before,.ion-battery-half:before,.ion-battery-low:before,.ion-beaker:before,.ion-beer:before,.ion-bluetooth:before,.ion-bonfire:before,.ion-bookmark:before,.ion-bowtie:before,.ion-briefcase:before,.ion-bug:before,.ion-calculator:before,.ion-calendar:before,.ion-camera:before,.ion-card:before,.ion-cash:before,.ion-chatbox:before,.ion-chatbox-working:before,.ion-chatboxes:before,.ion-chatbubble:before,.ion-chatbubble-working:before,.ion-chatbubbles:before,.ion-checkmark:before,.ion-checkmark-circled:before,.ion-checkmark-round:before,.ion-chevron-down:before,.ion-chevron-left:before,.ion-chevron-right:before,.ion-chevron-up:before,.ion-clipboard:before,.ion-clock:before,.ion-close:before,.ion-close-circled:before,.ion-close-round:before,.ion-closed-captioning:before,.ion-cloud:before,.ion-code:before,.ion-code-download:before,.ion-code-working:before,.ion-coffee:before,.ion-compass:before,.ion-compose:before,.ion-connection-bars:before,.ion-contrast:before,.ion-crop:before,.ion-cube:before,.ion-disc:before,.ion-document:before,.ion-document-text:before,.ion-drag:before,.ion-earth:before,.ion-easel:before,.ion-edit:before,.ion-egg:before,.ion-eject:before,.ion-email:before,.ion-email-unread:before,.ion-erlenmeyer-flask:before,.ion-erlenmeyer-flask-bubbles:before,.ion-eye:before,.ion-eye-disabled:before,.ion-female:before,.ion-filing:before,.ion-film-marker:before,.ion-fireball:before,.ion-flag:before,.ion-flame:before,.ion-flash:before,.ion-flash-off:before,.ion-folder:before,.ion-fork:before,.ion-fork-repo:before,.ion-forward:before,.ion-funnel:before,.ion-gear-a:before,.ion-gear-b:before,.ion-grid:before,.ion-hammer:before,.ion-happy:before,.ion-happy-outline:before,.ion-headphone:before,.ion-heart:before,.ion-heart-broken:before,.ion-help:before,.ion-help-buoy:before,.ion-help-circled:before,.ion-home:before,.ion-icecream:before,.ion-image:before,.ion-images:before,.ion-information:before,.ion-information-circled:before,.ion-ionic:before,.ion-ios-alarm:before,.ion-ios-alarm-outline:before,.ion-ios-albums:before,.ion-ios-albums-outline:before,.ion-ios-americanfootball:before,.ion-ios-americanfootball-outline:before,.ion-ios-analytics:before,.ion-ios-analytics-outline:before,.ion-ios-arrow-back:before,.ion-ios-arrow-down:before,.ion-ios-arrow-forward:before,.ion-ios-arrow-left:before,.ion-ios-arrow-right:before,.ion-ios-arrow-thin-down:before,.ion-ios-arrow-thin-left:before,.ion-ios-arrow-thin-right:before,.ion-ios-arrow-thin-up:before,.ion-ios-arrow-up:before,.ion-ios-at:before,.ion-ios-at-outline:before,.ion-ios-barcode:before,.ion-ios-barcode-outline:before,.ion-ios-baseball:before,.ion-ios-baseball-outline:before,.ion-ios-basketball:before,.ion-ios-basketball-outline:before,.ion-ios-bell:before,.ion-ios-bell-outline:before,.ion-ios-body:before,.ion-ios-body-outline:before,.ion-ios-bolt:before,.ion-ios-bolt-outline:before,.ion-ios-book:before,.ion-ios-book-outline:before,.ion-ios-bookmarks:before,.ion-ios-bookmarks-outline:before,.ion-ios-box:before,.ion-ios-box-outline:before,.ion-ios-briefcase:before,.ion-ios-briefcase-outline:before,.ion-ios-browsers:before,.ion-ios-browsers-outline:before,.ion-ios-calculator:before,.ion-ios-calculator-outline:before,.ion-ios-calendar:before,.ion-ios-calendar-outline:before,.ion-ios-camera:before,.ion-ios-camera-outline:before,.ion-ios-cart:before,.ion-ios-cart-outline:before,.ion-ios-chatboxes:before,.ion-ios-chatboxes-outline:before,.ion-ios-chatbubble:before,.ion-ios-chatbubble-outline:before,.ion-ios-checkmark:before,.ion-ios-checkmark-empty:before,.ion-ios-checkmark-outline:before,.ion-ios-circle-filled:before,.ion-ios-circle-outline:before,.ion-ios-clock:before,.ion-ios-clock-outline:before,.ion-ios-close:before,.ion-ios-close-empty:before,.ion-ios-close-outline:before,.ion-ios-cloud:before,.ion-ios-cloud-download:before,.ion-ios-cloud-download-outline:before,.ion-ios-cloud-outline:before,.ion-ios-cloud-upload:before,.ion-ios-cloud-upload-outline:before,.ion-ios-cloudy:before,.ion-ios-cloudy-night:before,.ion-ios-cloudy-night-outline:before,.ion-ios-cloudy-outline:before,.ion-ios-cog:before,.ion-ios-cog-outline:before,.ion-ios-color-filter:before,.ion-ios-color-filter-outline:before,.ion-ios-color-wand:before,.ion-ios-color-wand-outline:before,.ion-ios-compose:before,.ion-ios-compose-outline:before,.ion-ios-contact:before,.ion-ios-contact-outline:before,.ion-ios-copy:before,.ion-ios-copy-outline:before,.ion-ios-crop:before,.ion-ios-crop-strong:before,.ion-ios-download:before,.ion-ios-download-outline:before,.ion-ios-drag:before,.ion-ios-email:before,.ion-ios-email-outline:before,.ion-ios-eye:before,.ion-ios-eye-outline:before,.ion-ios-fastforward:before,.ion-ios-fastforward-outline:before,.ion-ios-filing:before,.ion-ios-filing-outline:before,.ion-ios-film:before,.ion-ios-film-outline:before,.ion-ios-flag:before,.ion-ios-flag-outline:before,.ion-ios-flame:before,.ion-ios-flame-outline:before,.ion-ios-flask:before,.ion-ios-flask-outline:before,.ion-ios-flower:before,.ion-ios-flower-outline:before,.ion-ios-folder:before,.ion-ios-folder-outline:before,.ion-ios-football:before,.ion-ios-football-outline:before,.ion-ios-game-controller-a:before,.ion-ios-game-controller-a-outline:before,.ion-ios-game-controller-b:before,.ion-ios-game-controller-b-outline:before,.ion-ios-gear:before,.ion-ios-gear-outline:before,.ion-ios-glasses:before,.ion-ios-glasses-outline:before,.ion-ios-grid-view:before,.ion-ios-grid-view-outline:before,.ion-ios-heart:before,.ion-ios-heart-outline:before,.ion-ios-help:before,.ion-ios-help-empty:before,.ion-ios-help-outline:before,.ion-ios-home:before,.ion-ios-home-outline:before,.ion-ios-infinite:before,.ion-ios-infinite-outline:before,.ion-ios-information:before,.ion-ios-information-empty:before,.ion-ios-information-outline:before,.ion-ios-ionic-outline:before,.ion-ios-keypad:before,.ion-ios-keypad-outline:before,.ion-ios-lightbulb:before,.ion-ios-lightbulb-outline:before,.ion-ios-list:before,.ion-ios-list-outline:before,.ion-ios-location:before,.ion-ios-location-outline:before,.ion-ios-locked:before,.ion-ios-locked-outline:before,.ion-ios-loop:before,.ion-ios-loop-strong:before,.ion-ios-medical:before,.ion-ios-medical-outline:before,.ion-ios-medkit:before,.ion-ios-medkit-outline:before,.ion-ios-mic:before,.ion-ios-mic-off:before,.ion-ios-mic-outline:before,.ion-ios-minus:before,.ion-ios-minus-empty:before,.ion-ios-minus-outline:before,.ion-ios-monitor:before,.ion-ios-monitor-outline:before,.ion-ios-moon:before,.ion-ios-moon-outline:before,.ion-ios-more:before,.ion-ios-more-outline:before,.ion-ios-musical-note:before,.ion-ios-musical-notes:before,.ion-ios-navigate:before,.ion-ios-navigate-outline:before,.ion-ios-nutrition:before,.ion-ios-nutrition-outline:before,.ion-ios-paper:before,.ion-ios-paper-outline:before,.ion-ios-paperplane:before,.ion-ios-paperplane-outline:before,.ion-ios-partlysunny:before,.ion-ios-partlysunny-outline:before,.ion-ios-pause:before,.ion-ios-pause-outline:before,.ion-ios-paw:before,.ion-ios-paw-outline:before,.ion-ios-people:before,.ion-ios-people-outline:before,.ion-ios-person:before,.ion-ios-person-outline:before,.ion-ios-personadd:before,.ion-ios-personadd-outline:before,.ion-ios-photos:before,.ion-ios-photos-outline:before,.ion-ios-pie:before,.ion-ios-pie-outline:before,.ion-ios-pint:before,.ion-ios-pint-outline:before,.ion-ios-play:before,.ion-ios-play-outline:before,.ion-ios-plus:before,.ion-ios-plus-empty:before,.ion-ios-plus-outline:before,.ion-ios-pricetag:before,.ion-ios-pricetag-outline:before,.ion-ios-pricetags:before,.ion-ios-pricetags-outline:before,.ion-ios-printer:before,.ion-ios-printer-outline:before,.ion-ios-pulse:before,.ion-ios-pulse-strong:before,.ion-ios-rainy:before,.ion-ios-rainy-outline:before,.ion-ios-recording:before,.ion-ios-recording-outline:before,.ion-ios-redo:before,.ion-ios-redo-outline:before,.ion-ios-refresh:before,.ion-ios-refresh-empty:before,.ion-ios-refresh-outline:before,.ion-ios-reload:before,.ion-ios-reverse-camera:before,.ion-ios-reverse-camera-outline:before,.ion-ios-rewind:before,.ion-ios-rewind-outline:before,.ion-ios-rose:before,.ion-ios-rose-outline:before,.ion-ios-search:before,.ion-ios-search-strong:before,.ion-ios-settings:before,.ion-ios-settings-strong:before,.ion-ios-shuffle:before,.ion-ios-shuffle-strong:before,.ion-ios-skipbackward:before,.ion-ios-skipbackward-outline:before,.ion-ios-skipforward:before,.ion-ios-skipforward-outline:before,.ion-ios-snowy:before,.ion-ios-speedometer:before,.ion-ios-speedometer-outline:before,.ion-ios-star:before,.ion-ios-star-half:before,.ion-ios-star-outline:before,.ion-ios-stopwatch:before,.ion-ios-stopwatch-outline:before,.ion-ios-sunny:before,.ion-ios-sunny-outline:before,.ion-ios-telephone:before,.ion-ios-telephone-outline:before,.ion-ios-tennisball:before,.ion-ios-tennisball-outline:before,.ion-ios-thunderstorm:before,.ion-ios-thunderstorm-outline:before,.ion-ios-time:before,.ion-ios-time-outline:before,.ion-ios-timer:before,.ion-ios-timer-outline:before,.ion-ios-toggle:before,.ion-ios-toggle-outline:before,.ion-ios-trash:before,.ion-ios-trash-outline:before,.ion-ios-undo:before,.ion-ios-undo-outline:before,.ion-ios-unlocked:before,.ion-ios-unlocked-outline:before,.ion-ios-upload:before,.ion-ios-upload-outline:before,.ion-ios-videocam:before,.ion-ios-videocam-outline:before,.ion-ios-volume-high:before,.ion-ios-volume-low:before,.ion-ios-wineglass:before,.ion-ios-wineglass-outline:before,.ion-ios-world:before,.ion-ios-world-outline:before,.ion-ipad:before,.ion-iphone:before,.ion-ipod:before,.ion-jet:before,.ion-key:before,.ion-knife:before,.ion-laptop:before,.ion-leaf:before,.ion-levels:before,.ion-lightbulb:before,.ion-link:before,.ion-load-a:before,.ion-load-b:before,.ion-load-c:before,.ion-load-d:before,.ion-location:before,.ion-lock-combination:before,.ion-locked:before,.ion-log-in:before,.ion-log-out:before,.ion-loop:before,.ion-magnet:before,.ion-male:before,.ion-man:before,.ion-map:before,.ion-medkit:before,.ion-merge:before,.ion-mic-a:before,.ion-mic-b:before,.ion-mic-c:before,.ion-minus:before,.ion-minus-circled:before,.ion-minus-round:before,.ion-model-s:before,.ion-monitor:before,.ion-more:before,.ion-mouse:before,.ion-music-note:before,.ion-navicon:before,.ion-navicon-round:before,.ion-navigate:before,.ion-network:before,.ion-no-smoking:before,.ion-nuclear:before,.ion-outlet:before,.ion-paintbrush:before,.ion-paintbucket:before,.ion-paper-airplane:before,.ion-paperclip:before,.ion-pause:before,.ion-person:before,.ion-person-add:before,.ion-person-stalker:before,.ion-pie-graph:before,.ion-pin:before,.ion-pinpoint:before,.ion-pizza:before,.ion-plane:before,.ion-planet:before,.ion-play:before,.ion-playstation:before,.ion-plus:before,.ion-plus-circled:before,.ion-plus-round:before,.ion-podium:before,.ion-pound:before,.ion-power:before,.ion-pricetag:before,.ion-pricetags:before,.ion-printer:before,.ion-pull-request:before,.ion-qr-scanner:before,.ion-quote:before,.ion-radio-waves:before,.ion-record:before,.ion-refresh:before,.ion-reply:before,.ion-reply-all:before,.ion-ribbon-a:before,.ion-ribbon-b:before,.ion-sad:before,.ion-sad-outline:before,.ion-scissors:before,.ion-search:before,.ion-settings:before,.ion-share:before,.ion-shuffle:before,.ion-skip-backward:before,.ion-skip-forward:before,.ion-social-android:before,.ion-social-android-outline:before,.ion-social-angular:before,.ion-social-angular-outline:before,.ion-social-apple:before,.ion-social-apple-outline:before,.ion-social-bitcoin:before,.ion-social-bitcoin-outline:before,.ion-social-buffer:before,.ion-social-buffer-outline:before,.ion-social-chrome:before,.ion-social-chrome-outline:before,.ion-social-codepen:before,.ion-social-codepen-outline:before,.ion-social-css3:before,.ion-social-css3-outline:before,.ion-social-designernews:before,.ion-social-designernews-outline:before,.ion-social-dribbble:before,.ion-social-dribbble-outline:before,.ion-social-dropbox:before,.ion-social-dropbox-outline:before,.ion-social-euro:before,.ion-social-euro-outline:before,.ion-social-facebook:before,.ion-social-facebook-outline:before,.ion-social-foursquare:before,.ion-social-foursquare-outline:before,.ion-social-freebsd-devil:before,.ion-social-github:before,.ion-social-github-outline:before,.ion-social-google:before,.ion-social-google-outline:before,.ion-social-googleplus:before,.ion-social-googleplus-outline:before,.ion-social-hackernews:before,.ion-social-hackernews-outline:before,.ion-social-html5:before,.ion-social-html5-outline:before,.ion-social-instagram:before,.ion-social-instagram-outline:before,.ion-social-javascript:before,.ion-social-javascript-outline:before,.ion-social-linkedin:before,.ion-social-linkedin-outline:before,.ion-social-markdown:before,.ion-social-nodejs:before,.ion-social-octocat:before,.ion-social-pinterest:before,.ion-social-pinterest-outline:before,.ion-social-python:before,.ion-social-reddit:before,.ion-social-reddit-outline:before,.ion-social-rss:before,.ion-social-rss-outline:before,.ion-social-sass:before,.ion-social-skype:before,.ion-social-skype-outline:before,.ion-social-snapchat:before,.ion-social-snapchat-outline:before,.ion-social-tumblr:before,.ion-social-tumblr-outline:before,.ion-social-tux:before,.ion-social-twitch:before,.ion-social-twitch-outline:before,.ion-social-twitter:before,.ion-social-twitter-outline:before,.ion-social-usd:before,.ion-social-usd-outline:before,.ion-social-vimeo:before,.ion-social-vimeo-outline:before,.ion-social-whatsapp:before,.ion-social-whatsapp-outline:before,.ion-social-windows:before,.ion-social-windows-outline:before,.ion-social-wordpress:before,.ion-social-wordpress-outline:before,.ion-social-yahoo:before,.ion-social-yahoo-outline:before,.ion-social-yen:before,.ion-social-yen-outline:before,.ion-social-youtube:before,.ion-social-youtube-outline:before,.ion-soup-can:before,.ion-soup-can-outline:before,.ion-speakerphone:before,.ion-speedometer:before,.ion-spoon:before,.ion-star:before,.ion-stats-bars:before,.ion-steam:before,.ion-stop:before,.ion-thermometer:before,.ion-thumbsdown:before,.ion-thumbsup:before,.ion-toggle:before,.ion-toggle-filled:before,.ion-transgender:before,.ion-trash-a:before,.ion-trash-b:before,.ion-trophy:before,.ion-tshirt:before,.ion-tshirt-outline:before,.ion-umbrella:before,.ion-university:before,.ion-unlocked:before,.ion-upload:before,.ion-usb:before,.ion-videocamera:before,.ion-volume-high:before,.ion-volume-low:before,.ion-volume-medium:before,.ion-volume-mute:before,.ion-wand:before,.ion-waterdrop:before,.ion-wifi:before,.ion-wineglass:before,.ion-woman:before,.ion-wrench:before,.ion-xbox:before{display:inline-block;font-family:"Ionicons";speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;text-rendering:auto;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ion-alert:before{content:"\f101"}.ion-alert-circled:before{content:"\f100"}.ion-android-add:before{content:"\f2c7"}.ion-android-add-circle:before{content:"\f359"}.ion-android-alarm-clock:before{content:"\f35a"}.ion-android-alert:before{content:"\f35b"}.ion-android-apps:before{content:"\f35c"}.ion-android-archive:before{content:"\f2c9"}.ion-android-arrow-back:before{content:"\f2ca"}.ion-android-arrow-down:before{content:"\f35d"}.ion-android-arrow-dropdown:before{content:"\f35f"}.ion-android-arrow-dropdown-circle:before{content:"\f35e"}.ion-android-arrow-dropleft:before{content:"\f361"}.ion-android-arrow-dropleft-circle:before{content:"\f360"}.ion-android-arrow-dropright:before{content:"\f363"}.ion-android-arrow-dropright-circle:before{content:"\f362"}.ion-android-arrow-dropup:before{content:"\f365"}.ion-android-arrow-dropup-circle:before{content:"\f364"}.ion-android-arrow-forward:before{content:"\f30f"}.ion-android-arrow-up:before{content:"\f366"}.ion-android-attach:before{content:"\f367"}.ion-android-bar:before{content:"\f368"}.ion-android-bicycle:before{content:"\f369"}.ion-android-boat:before{content:"\f36a"}.ion-android-bookmark:before{content:"\f36b"}.ion-android-bulb:before{content:"\f36c"}.ion-android-bus:before{content:"\f36d"}.ion-android-calendar:before{content:"\f2d1"}.ion-android-call:before{content:"\f2d2"}.ion-android-camera:before{content:"\f2d3"}.ion-android-cancel:before{content:"\f36e"}.ion-android-car:before{content:"\f36f"}.ion-android-cart:before{content:"\f370"}.ion-android-chat:before{content:"\f2d4"}.ion-android-checkbox:before{content:"\f374"}.ion-android-checkbox-blank:before{content:"\f371"}.ion-android-checkbox-outline:before{content:"\f373"}.ion-android-checkbox-outline-blank:before{content:"\f372"}.ion-android-checkmark-circle:before{content:"\f375"}.ion-android-clipboard:before{content:"\f376"}.ion-android-close:before{content:"\f2d7"}.ion-android-cloud:before{content:"\f37a"}.ion-android-cloud-circle:before{content:"\f377"}.ion-android-cloud-done:before{content:"\f378"}.ion-android-cloud-outline:before{content:"\f379"}.ion-android-color-palette:before{content:"\f37b"}.ion-android-compass:before{content:"\f37c"}.ion-android-contact:before{content:"\f2d8"}.ion-android-contacts:before{content:"\f2d9"}.ion-android-contract:before{content:"\f37d"}.ion-android-create:before{content:"\f37e"}.ion-android-delete:before{content:"\f37f"}.ion-android-desktop:before{content:"\f380"}.ion-android-document:before{content:"\f381"}.ion-android-done:before{content:"\f383"}.ion-android-done-all:before{content:"\f382"}.ion-android-download:before{content:"\f2dd"}.ion-android-drafts:before{content:"\f384"}.ion-android-exit:before{content:"\f385"}.ion-android-expand:before{content:"\f386"}.ion-android-favorite:before{content:"\f388"}.ion-android-favorite-outline:before{content:"\f387"}.ion-android-film:before{content:"\f389"}.ion-android-folder:before{content:"\f2e0"}.ion-android-folder-open:before{content:"\f38a"}.ion-android-funnel:before{content:"\f38b"}.ion-android-globe:before{content:"\f38c"}.ion-android-hand:before{content:"\f2e3"}.ion-android-hangout:before{content:"\f38d"}.ion-android-happy:before{content:"\f38e"}.ion-android-home:before{content:"\f38f"}.ion-android-image:before{content:"\f2e4"}.ion-android-laptop:before{content:"\f390"}.ion-android-list:before{content:"\f391"}.ion-android-locate:before{content:"\f2e9"}.ion-android-lock:before{content:"\f392"}.ion-android-mail:before{content:"\f2eb"}.ion-android-map:before{content:"\f393"}.ion-android-menu:before{content:"\f394"}.ion-android-microphone:before{content:"\f2ec"}.ion-android-microphone-off:before{content:"\f395"}.ion-android-more-horizontal:before{content:"\f396"}.ion-android-more-vertical:before{content:"\f397"}.ion-android-navigate:before{content:"\f398"}.ion-android-notifications:before{content:"\f39b"}.ion-android-notifications-none:before{content:"\f399"}.ion-android-notifications-off:before{content:"\f39a"}.ion-android-open:before{content:"\f39c"}.ion-android-options:before{content:"\f39d"}.ion-android-people:before{content:"\f39e"}.ion-android-person:before{content:"\f3a0"}.ion-android-person-add:before{content:"\f39f"}.ion-android-phone-landscape:before{content:"\f3a1"}.ion-android-phone-portrait:before{content:"\f3a2"}.ion-android-pin:before{content:"\f3a3"}.ion-android-plane:before{content:"\f3a4"}.ion-android-playstore:before{content:"\f2f0"}.ion-android-print:before{content:"\f3a5"}.ion-android-radio-button-off:before{content:"\f3a6"}.ion-android-radio-button-on:before{content:"\f3a7"}.ion-android-refresh:before{content:"\f3a8"}.ion-android-remove:before{content:"\f2f4"}.ion-android-remove-circle:before{content:"\f3a9"}.ion-android-restaurant:before{content:"\f3aa"}.ion-android-sad:before{content:"\f3ab"}.ion-android-search:before{content:"\f2f5"}.ion-android-send:before{content:"\f2f6"}.ion-android-settings:before{content:"\f2f7"}.ion-android-share:before{content:"\f2f8"}.ion-android-share-alt:before{content:"\f3ac"}.ion-android-star:before{content:"\f2fc"}.ion-android-star-half:before{content:"\f3ad"}.ion-android-star-outline:before{content:"\f3ae"}.ion-android-stopwatch:before{content:"\f2fd"}.ion-android-subway:before{content:"\f3af"}.ion-android-sunny:before{content:"\f3b0"}.ion-android-sync:before{content:"\f3b1"}.ion-android-textsms:before{content:"\f3b2"}.ion-android-time:before{content:"\f3b3"}.ion-android-train:before{content:"\f3b4"}.ion-android-unlock:before{content:"\f3b5"}.ion-android-upload:before{content:"\f3b6"}.ion-android-volume-down:before{content:"\f3b7"}.ion-android-volume-mute:before{content:"\f3b8"}.ion-android-volume-off:before{content:"\f3b9"}.ion-android-volume-up:before{content:"\f3ba"}.ion-android-walk:before{content:"\f3bb"}.ion-android-warning:before{content:"\f3bc"}.ion-android-watch:before{content:"\f3bd"}.ion-android-wifi:before{content:"\f305"}.ion-aperture:before{content:"\f313"}.ion-archive:before{content:"\f102"}.ion-arrow-down-a:before{content:"\f103"}.ion-arrow-down-b:before{content:"\f104"}.ion-arrow-down-c:before{content:"\f105"}.ion-arrow-expand:before{content:"\f25e"}.ion-arrow-graph-down-left:before{content:"\f25f"}.ion-arrow-graph-down-right:before{content:"\f260"}.ion-arrow-graph-up-left:before{content:"\f261"}.ion-arrow-graph-up-right:before{content:"\f262"}.ion-arrow-left-a:before{content:"\f106"}.ion-arrow-left-b:before{content:"\f107"}.ion-arrow-left-c:before{content:"\f108"}.ion-arrow-move:before{content:"\f263"}.ion-arrow-resize:before{content:"\f264"}.ion-arrow-return-left:before{content:"\f265"}.ion-arrow-return-right:before{content:"\f266"}.ion-arrow-right-a:before{content:"\f109"}.ion-arrow-right-b:before{content:"\f10a"}.ion-arrow-right-c:before{content:"\f10b"}.ion-arrow-shrink:before{content:"\f267"}.ion-arrow-swap:before{content:"\f268"}.ion-arrow-up-a:before{content:"\f10c"}.ion-arrow-up-b:before{content:"\f10d"}.ion-arrow-up-c:before{content:"\f10e"}.ion-asterisk:before{content:"\f314"}.ion-at:before{content:"\f10f"}.ion-backspace:before{content:"\f3bf"}.ion-backspace-outline:before{content:"\f3be"}.ion-bag:before{content:"\f110"}.ion-battery-charging:before{content:"\f111"}.ion-battery-empty:before{content:"\f112"}.ion-battery-full:before{content:"\f113"}.ion-battery-half:before{content:"\f114"}.ion-battery-low:before{content:"\f115"}.ion-beaker:before{content:"\f269"}.ion-beer:before{content:"\f26a"}.ion-bluetooth:before{content:"\f116"}.ion-bonfire:before{content:"\f315"}.ion-bookmark:before{content:"\f26b"}.ion-bowtie:before{content:"\f3c0"}.ion-briefcase:before{content:"\f26c"}.ion-bug:before{content:"\f2be"}.ion-calculator:before{content:"\f26d"}.ion-calendar:before{content:"\f117"}.ion-camera:before{content:"\f118"}.ion-card:before{content:"\f119"}.ion-cash:before{content:"\f316"}.ion-chatbox:before{content:"\f11b"}.ion-chatbox-working:before{content:"\f11a"}.ion-chatboxes:before{content:"\f11c"}.ion-chatbubble:before{content:"\f11e"}.ion-chatbubble-working:before{content:"\f11d"}.ion-chatbubbles:before{content:"\f11f"}.ion-checkmark:before{content:"\f122"}.ion-checkmark-circled:before{content:"\f120"}.ion-checkmark-round:before{content:"\f121"}.ion-chevron-down:before{content:"\f123"}.ion-chevron-left:before{content:"\f124"}.ion-chevron-right:before{content:"\f125"}.ion-chevron-up:before{content:"\f126"}.ion-clipboard:before{content:"\f127"}.ion-clock:before{content:"\f26e"}.ion-close:before{content:"\f12a"}.ion-close-circled:before{content:"\f128"}.ion-close-round:before{content:"\f129"}.ion-closed-captioning:before{content:"\f317"}.ion-cloud:before{content:"\f12b"}.ion-code:before{content:"\f271"}.ion-code-download:before{content:"\f26f"}.ion-code-working:before{content:"\f270"}.ion-coffee:before{content:"\f272"}.ion-compass:before{content:"\f273"}.ion-compose:before{content:"\f12c"}.ion-connection-bars:before{content:"\f274"}.ion-contrast:before{content:"\f275"}.ion-crop:before{content:"\f3c1"}.ion-cube:before{content:"\f318"}.ion-disc:before{content:"\f12d"}.ion-document:before{content:"\f12f"}.ion-document-text:before{content:"\f12e"}.ion-drag:before{content:"\f130"}.ion-earth:before{content:"\f276"}.ion-easel:before{content:"\f3c2"}.ion-edit:before{content:"\f2bf"}.ion-egg:before{content:"\f277"}.ion-eject:before{content:"\f131"}.ion-email:before{content:"\f132"}.ion-email-unread:before{content:"\f3c3"}.ion-erlenmeyer-flask:before{content:"\f3c5"}.ion-erlenmeyer-flask-bubbles:before{content:"\f3c4"}.ion-eye:before{content:"\f133"}.ion-eye-disabled:before{content:"\f306"}.ion-female:before{content:"\f278"}.ion-filing:before{content:"\f134"}.ion-film-marker:before{content:"\f135"}.ion-fireball:before{content:"\f319"}.ion-flag:before{content:"\f279"}.ion-flame:before{content:"\f31a"}.ion-flash:before{content:"\f137"}.ion-flash-off:before{content:"\f136"}.ion-folder:before{content:"\f139"}.ion-fork:before{content:"\f27a"}.ion-fork-repo:before{content:"\f2c0"}.ion-forward:before{content:"\f13a"}.ion-funnel:before{content:"\f31b"}.ion-gear-a:before{content:"\f13d"}.ion-gear-b:before{content:"\f13e"}.ion-grid:before{content:"\f13f"}.ion-hammer:before{content:"\f27b"}.ion-happy:before{content:"\f31c"}.ion-happy-outline:before{content:"\f3c6"}.ion-headphone:before{content:"\f140"}.ion-heart:before{content:"\f141"}.ion-heart-broken:before{content:"\f31d"}.ion-help:before{content:"\f143"}.ion-help-buoy:before{content:"\f27c"}.ion-help-circled:before{content:"\f142"}.ion-home:before{content:"\f144"}.ion-icecream:before{content:"\f27d"}.ion-image:before{content:"\f147"}.ion-images:before{content:"\f148"}.ion-information:before{content:"\f14a"}.ion-information-circled:before{content:"\f149"}.ion-ionic:before{content:"\f14b"}.ion-ios-alarm:before{content:"\f3c8"}.ion-ios-alarm-outline:before{content:"\f3c7"}.ion-ios-albums:before{content:"\f3ca"}.ion-ios-albums-outline:before{content:"\f3c9"}.ion-ios-americanfootball:before{content:"\f3cc"}.ion-ios-americanfootball-outline:before{content:"\f3cb"}.ion-ios-analytics:before{content:"\f3ce"}.ion-ios-analytics-outline:before{content:"\f3cd"}.ion-ios-arrow-back:before{content:"\f3cf"}.ion-ios-arrow-down:before{content:"\f3d0"}.ion-ios-arrow-forward:before{content:"\f3d1"}.ion-ios-arrow-left:before{content:"\f3d2"}.ion-ios-arrow-right:before{content:"\f3d3"}.ion-ios-arrow-thin-down:before{content:"\f3d4"}.ion-ios-arrow-thin-left:before{content:"\f3d5"}.ion-ios-arrow-thin-right:before{content:"\f3d6"}.ion-ios-arrow-thin-up:before{content:"\f3d7"}.ion-ios-arrow-up:before{content:"\f3d8"}.ion-ios-at:before{content:"\f3da"}.ion-ios-at-outline:before{content:"\f3d9"}.ion-ios-barcode:before{content:"\f3dc"}.ion-ios-barcode-outline:before{content:"\f3db"}.ion-ios-baseball:before{content:"\f3de"}.ion-ios-baseball-outline:before{content:"\f3dd"}.ion-ios-basketball:before{content:"\f3e0"}.ion-ios-basketball-outline:before{content:"\f3df"}.ion-ios-bell:before{content:"\f3e2"}.ion-ios-bell-outline:before{content:"\f3e1"}.ion-ios-body:before{content:"\f3e4"}.ion-ios-body-outline:before{content:"\f3e3"}.ion-ios-bolt:before{content:"\f3e6"}.ion-ios-bolt-outline:before{content:"\f3e5"}.ion-ios-book:before{content:"\f3e8"}.ion-ios-book-outline:before{content:"\f3e7"}.ion-ios-bookmarks:before{content:"\f3ea"}.ion-ios-bookmarks-outline:before{content:"\f3e9"}.ion-ios-box:before{content:"\f3ec"}.ion-ios-box-outline:before{content:"\f3eb"}.ion-ios-briefcase:before{content:"\f3ee"}.ion-ios-briefcase-outline:before{content:"\f3ed"}.ion-ios-browsers:before{content:"\f3f0"}.ion-ios-browsers-outline:before{content:"\f3ef"}.ion-ios-calculator:before{content:"\f3f2"}.ion-ios-calculator-outline:before{content:"\f3f1"}.ion-ios-calendar:before{content:"\f3f4"}.ion-ios-calendar-outline:before{content:"\f3f3"}.ion-ios-camera:before{content:"\f3f6"}.ion-ios-camera-outline:before{content:"\f3f5"}.ion-ios-cart:before{content:"\f3f8"}.ion-ios-cart-outline:before{content:"\f3f7"}.ion-ios-chatboxes:before{content:"\f3fa"}.ion-ios-chatboxes-outline:before{content:"\f3f9"}.ion-ios-chatbubble:before{content:"\f3fc"}.ion-ios-chatbubble-outline:before{content:"\f3fb"}.ion-ios-checkmark:before{content:"\f3ff"}.ion-ios-checkmark-empty:before{content:"\f3fd"}.ion-ios-checkmark-outline:before{content:"\f3fe"}.ion-ios-circle-filled:before{content:"\f400"}.ion-ios-circle-outline:before{content:"\f401"}.ion-ios-clock:before{content:"\f403"}.ion-ios-clock-outline:before{content:"\f402"}.ion-ios-close:before{content:"\f406"}.ion-ios-close-empty:before{content:"\f404"}.ion-ios-close-outline:before{content:"\f405"}.ion-ios-cloud:before{content:"\f40c"}.ion-ios-cloud-download:before{content:"\f408"}.ion-ios-cloud-download-outline:before{content:"\f407"}.ion-ios-cloud-outline:before{content:"\f409"}.ion-ios-cloud-upload:before{content:"\f40b"}.ion-ios-cloud-upload-outline:before{content:"\f40a"}.ion-ios-cloudy:before{content:"\f410"}.ion-ios-cloudy-night:before{content:"\f40e"}.ion-ios-cloudy-night-outline:before{content:"\f40d"}.ion-ios-cloudy-outline:before{content:"\f40f"}.ion-ios-cog:before{content:"\f412"}.ion-ios-cog-outline:before{content:"\f411"}.ion-ios-color-filter:before{content:"\f414"}.ion-ios-color-filter-outline:before{content:"\f413"}.ion-ios-color-wand:before{content:"\f416"}.ion-ios-color-wand-outline:before{content:"\f415"}.ion-ios-compose:before{content:"\f418"}.ion-ios-compose-outline:before{content:"\f417"}.ion-ios-contact:before{content:"\f41a"}.ion-ios-contact-outline:before{content:"\f419"}.ion-ios-copy:before{content:"\f41c"}.ion-ios-copy-outline:before{content:"\f41b"}.ion-ios-crop:before{content:"\f41e"}.ion-ios-crop-strong:before{content:"\f41d"}.ion-ios-download:before{content:"\f420"}.ion-ios-download-outline:before{content:"\f41f"}.ion-ios-drag:before{content:"\f421"}.ion-ios-email:before{content:"\f423"}.ion-ios-email-outline:before{content:"\f422"}.ion-ios-eye:before{content:"\f425"}.ion-ios-eye-outline:before{content:"\f424"}.ion-ios-fastforward:before{content:"\f427"}.ion-ios-fastforward-outline:before{content:"\f426"}.ion-ios-filing:before{content:"\f429"}.ion-ios-filing-outline:before{content:"\f428"}.ion-ios-film:before{content:"\f42b"}.ion-ios-film-outline:before{content:"\f42a"}.ion-ios-flag:before{content:"\f42d"}.ion-ios-flag-outline:before{content:"\f42c"}.ion-ios-flame:before{content:"\f42f"}.ion-ios-flame-outline:before{content:"\f42e"}.ion-ios-flask:before{content:"\f431"}.ion-ios-flask-outline:before{content:"\f430"}.ion-ios-flower:before{content:"\f433"}.ion-ios-flower-outline:before{content:"\f432"}.ion-ios-folder:before{content:"\f435"}.ion-ios-folder-outline:before{content:"\f434"}.ion-ios-football:before{content:"\f437"}.ion-ios-football-outline:before{content:"\f436"}.ion-ios-game-controller-a:before{content:"\f439"}.ion-ios-game-controller-a-outline:before{content:"\f438"}.ion-ios-game-controller-b:before{content:"\f43b"}.ion-ios-game-controller-b-outline:before{content:"\f43a"}.ion-ios-gear:before{content:"\f43d"}.ion-ios-gear-outline:before{content:"\f43c"}.ion-ios-glasses:before{content:"\f43f"}.ion-ios-glasses-outline:before{content:"\f43e"}.ion-ios-grid-view:before{content:"\f441"}.ion-ios-grid-view-outline:before{content:"\f440"}.ion-ios-heart:before{content:"\f443"}.ion-ios-heart-outline:before{content:"\f442"}.ion-ios-help:before{content:"\f446"}.ion-ios-help-empty:before{content:"\f444"}.ion-ios-help-outline:before{content:"\f445"}.ion-ios-home:before{content:"\f448"}.ion-ios-home-outline:before{content:"\f447"}.ion-ios-infinite:before{content:"\f44a"}.ion-ios-infinite-outline:before{content:"\f449"}.ion-ios-information:before{content:"\f44d"}.ion-ios-information-empty:before{content:"\f44b"}.ion-ios-information-outline:before{content:"\f44c"}.ion-ios-ionic-outline:before{content:"\f44e"}.ion-ios-keypad:before{content:"\f450"}.ion-ios-keypad-outline:before{content:"\f44f"}.ion-ios-lightbulb:before{content:"\f452"}.ion-ios-lightbulb-outline:before{content:"\f451"}.ion-ios-list:before{content:"\f454"}.ion-ios-list-outline:before{content:"\f453"}.ion-ios-location:before{content:"\f456"}.ion-ios-location-outline:before{content:"\f455"}.ion-ios-locked:before{content:"\f458"}.ion-ios-locked-outline:before{content:"\f457"}.ion-ios-loop:before{content:"\f45a"}.ion-ios-loop-strong:before{content:"\f459"}.ion-ios-medical:before{content:"\f45c"}.ion-ios-medical-outline:before{content:"\f45b"}.ion-ios-medkit:before{content:"\f45e"}.ion-ios-medkit-outline:before{content:"\f45d"}.ion-ios-mic:before{content:"\f461"}.ion-ios-mic-off:before{content:"\f45f"}.ion-ios-mic-outline:before{content:"\f460"}.ion-ios-minus:before{content:"\f464"}.ion-ios-minus-empty:before{content:"\f462"}.ion-ios-minus-outline:before{content:"\f463"}.ion-ios-monitor:before{content:"\f466"}.ion-ios-monitor-outline:before{content:"\f465"}.ion-ios-moon:before{content:"\f468"}.ion-ios-moon-outline:before{content:"\f467"}.ion-ios-more:before{content:"\f46a"}.ion-ios-more-outline:before{content:"\f469"}.ion-ios-musical-note:before{content:"\f46b"}.ion-ios-musical-notes:before{content:"\f46c"}.ion-ios-navigate:before{content:"\f46e"}.ion-ios-navigate-outline:before{content:"\f46d"}.ion-ios-nutrition:before{content:"\f470"}.ion-ios-nutrition-outline:before{content:"\f46f"}.ion-ios-paper:before{content:"\f472"}.ion-ios-paper-outline:before{content:"\f471"}.ion-ios-paperplane:before{content:"\f474"}.ion-ios-paperplane-outline:before{content:"\f473"}.ion-ios-partlysunny:before{content:"\f476"}.ion-ios-partlysunny-outline:before{content:"\f475"}.ion-ios-pause:before{content:"\f478"}.ion-ios-pause-outline:before{content:"\f477"}.ion-ios-paw:before{content:"\f47a"}.ion-ios-paw-outline:before{content:"\f479"}.ion-ios-people:before{content:"\f47c"}.ion-ios-people-outline:before{content:"\f47b"}.ion-ios-person:before{content:"\f47e"}.ion-ios-person-outline:before{content:"\f47d"}.ion-ios-personadd:before{content:"\f480"}.ion-ios-personadd-outline:before{content:"\f47f"}.ion-ios-photos:before{content:"\f482"}.ion-ios-photos-outline:before{content:"\f481"}.ion-ios-pie:before{content:"\f484"}.ion-ios-pie-outline:before{content:"\f483"}.ion-ios-pint:before{content:"\f486"}.ion-ios-pint-outline:before{content:"\f485"}.ion-ios-play:before{content:"\f488"}.ion-ios-play-outline:before{content:"\f487"}.ion-ios-plus:before{content:"\f48b"}.ion-ios-plus-empty:before{content:"\f489"}.ion-ios-plus-outline:before{content:"\f48a"}.ion-ios-pricetag:before{content:"\f48d"}.ion-ios-pricetag-outline:before{content:"\f48c"}.ion-ios-pricetags:before{content:"\f48f"}.ion-ios-pricetags-outline:before{content:"\f48e"}.ion-ios-printer:before{content:"\f491"}.ion-ios-printer-outline:before{content:"\f490"}.ion-ios-pulse:before{content:"\f493"}.ion-ios-pulse-strong:before{content:"\f492"}.ion-ios-rainy:before{content:"\f495"}.ion-ios-rainy-outline:before{content:"\f494"}.ion-ios-recording:before{content:"\f497"}.ion-ios-recording-outline:before{content:"\f496"}.ion-ios-redo:before{content:"\f499"}.ion-ios-redo-outline:before{content:"\f498"}.ion-ios-refresh:before{content:"\f49c"}.ion-ios-refresh-empty:before{content:"\f49a"}.ion-ios-refresh-outline:before{content:"\f49b"}.ion-ios-reload:before{content:"\f49d"}.ion-ios-reverse-camera:before{content:"\f49f"}.ion-ios-reverse-camera-outline:before{content:"\f49e"}.ion-ios-rewind:before{content:"\f4a1"}.ion-ios-rewind-outline:before{content:"\f4a0"}.ion-ios-rose:before{content:"\f4a3"}.ion-ios-rose-outline:before{content:"\f4a2"}.ion-ios-search:before{content:"\f4a5"}.ion-ios-search-strong:before{content:"\f4a4"}.ion-ios-settings:before{content:"\f4a7"}.ion-ios-settings-strong:before{content:"\f4a6"}.ion-ios-shuffle:before{content:"\f4a9"}.ion-ios-shuffle-strong:before{content:"\f4a8"}.ion-ios-skipbackward:before{content:"\f4ab"}.ion-ios-skipbackward-outline:before{content:"\f4aa"}.ion-ios-skipforward:before{content:"\f4ad"}.ion-ios-skipforward-outline:before{content:"\f4ac"}.ion-ios-snowy:before{content:"\f4ae"}.ion-ios-speedometer:before{content:"\f4b0"}.ion-ios-speedometer-outline:before{content:"\f4af"}.ion-ios-star:before{content:"\f4b3"}.ion-ios-star-half:before{content:"\f4b1"}.ion-ios-star-outline:before{content:"\f4b2"}.ion-ios-stopwatch:before{content:"\f4b5"}.ion-ios-stopwatch-outline:before{content:"\f4b4"}.ion-ios-sunny:before{content:"\f4b7"}.ion-ios-sunny-outline:before{content:"\f4b6"}.ion-ios-telephone:before{content:"\f4b9"}.ion-ios-telephone-outline:before{content:"\f4b8"}.ion-ios-tennisball:before{content:"\f4bb"}.ion-ios-tennisball-outline:before{content:"\f4ba"}.ion-ios-thunderstorm:before{content:"\f4bd"}.ion-ios-thunderstorm-outline:before{content:"\f4bc"}.ion-ios-time:before{content:"\f4bf"}.ion-ios-time-outline:before{content:"\f4be"}.ion-ios-timer:before{content:"\f4c1"}.ion-ios-timer-outline:before{content:"\f4c0"}.ion-ios-toggle:before{content:"\f4c3"}.ion-ios-toggle-outline:before{content:"\f4c2"}.ion-ios-trash:before{content:"\f4c5"}.ion-ios-trash-outline:before{content:"\f4c4"}.ion-ios-undo:before{content:"\f4c7"}.ion-ios-undo-outline:before{content:"\f4c6"}.ion-ios-unlocked:before{content:"\f4c9"}.ion-ios-unlocked-outline:before{content:"\f4c8"}.ion-ios-upload:before{content:"\f4cb"}.ion-ios-upload-outline:before{content:"\f4ca"}.ion-ios-videocam:before{content:"\f4cd"}.ion-ios-videocam-outline:before{content:"\f4cc"}.ion-ios-volume-high:before{content:"\f4ce"}.ion-ios-volume-low:before{content:"\f4cf"}.ion-ios-wineglass:before{content:"\f4d1"}.ion-ios-wineglass-outline:before{content:"\f4d0"}.ion-ios-world:before{content:"\f4d3"}.ion-ios-world-outline:before{content:"\f4d2"}.ion-ipad:before{content:"\f1f9"}.ion-iphone:before{content:"\f1fa"}.ion-ipod:before{content:"\f1fb"}.ion-jet:before{content:"\f295"}.ion-key:before{content:"\f296"}.ion-knife:before{content:"\f297"}.ion-laptop:before{content:"\f1fc"}.ion-leaf:before{content:"\f1fd"}.ion-levels:before{content:"\f298"}.ion-lightbulb:before{content:"\f299"}.ion-link:before{content:"\f1fe"}.ion-load-a:before{content:"\f29a"}.ion-load-b:before{content:"\f29b"}.ion-load-c:before{content:"\f29c"}.ion-load-d:before{content:"\f29d"}.ion-location:before{content:"\f1ff"}.ion-lock-combination:before{content:"\f4d4"}.ion-locked:before{content:"\f200"}.ion-log-in:before{content:"\f29e"}.ion-log-out:before{content:"\f29f"}.ion-loop:before{content:"\f201"}.ion-magnet:before{content:"\f2a0"}.ion-male:before{content:"\f2a1"}.ion-man:before{content:"\f202"}.ion-map:before{content:"\f203"}.ion-medkit:before{content:"\f2a2"}.ion-merge:before{content:"\f33f"}.ion-mic-a:before{content:"\f204"}.ion-mic-b:before{content:"\f205"}.ion-mic-c:before{content:"\f206"}.ion-minus:before{content:"\f209"}.ion-minus-circled:before{content:"\f207"}.ion-minus-round:before{content:"\f208"}.ion-model-s:before{content:"\f2c1"}.ion-monitor:before{content:"\f20a"}.ion-more:before{content:"\f20b"}.ion-mouse:before{content:"\f340"}.ion-music-note:before{content:"\f20c"}.ion-navicon:before{content:"\f20e"}.ion-navicon-round:before{content:"\f20d"}.ion-navigate:before{content:"\f2a3"}.ion-network:before{content:"\f341"}.ion-no-smoking:before{content:"\f2c2"}.ion-nuclear:before{content:"\f2a4"}.ion-outlet:before{content:"\f342"}.ion-paintbrush:before{content:"\f4d5"}.ion-paintbucket:before{content:"\f4d6"}.ion-paper-airplane:before{content:"\f2c3"}.ion-paperclip:before{content:"\f20f"}.ion-pause:before{content:"\f210"}.ion-person:before{content:"\f213"}.ion-person-add:before{content:"\f211"}.ion-person-stalker:before{content:"\f212"}.ion-pie-graph:before{content:"\f2a5"}.ion-pin:before{content:"\f2a6"}.ion-pinpoint:before{content:"\f2a7"}.ion-pizza:before{content:"\f2a8"}.ion-plane:before{content:"\f214"}.ion-planet:before{content:"\f343"}.ion-play:before{content:"\f215"}.ion-playstation:before{content:"\f30a"}.ion-plus:before{content:"\f218"}.ion-plus-circled:before{content:"\f216"}.ion-plus-round:before{content:"\f217"}.ion-podium:before{content:"\f344"}.ion-pound:before{content:"\f219"}.ion-power:before{content:"\f2a9"}.ion-pricetag:before{content:"\f2aa"}.ion-pricetags:before{content:"\f2ab"}.ion-printer:before{content:"\f21a"}.ion-pull-request:before{content:"\f345"}.ion-qr-scanner:before{content:"\f346"}.ion-quote:before{content:"\f347"}.ion-radio-waves:before{content:"\f2ac"}.ion-record:before{content:"\f21b"}.ion-refresh:before{content:"\f21c"}.ion-reply:before{content:"\f21e"}.ion-reply-all:before{content:"\f21d"}.ion-ribbon-a:before{content:"\f348"}.ion-ribbon-b:before{content:"\f349"}.ion-sad:before{content:"\f34a"}.ion-sad-outline:before{content:"\f4d7"}.ion-scissors:before{content:"\f34b"}.ion-search:before{content:"\f21f"}.ion-settings:before{content:"\f2ad"}.ion-share:before{content:"\f220"}.ion-shuffle:before{content:"\f221"}.ion-skip-backward:before{content:"\f222"}.ion-skip-forward:before{content:"\f223"}.ion-social-android:before{content:"\f225"}.ion-social-android-outline:before{content:"\f224"}.ion-social-angular:before{content:"\f4d9"}.ion-social-angular-outline:before{content:"\f4d8"}.ion-social-apple:before{content:"\f227"}.ion-social-apple-outline:before{content:"\f226"}.ion-social-bitcoin:before{content:"\f2af"}.ion-social-bitcoin-outline:before{content:"\f2ae"}.ion-social-buffer:before{content:"\f229"}.ion-social-buffer-outline:before{content:"\f228"}.ion-social-chrome:before{content:"\f4db"}.ion-social-chrome-outline:before{content:"\f4da"}.ion-social-codepen:before{content:"\f4dd"}.ion-social-codepen-outline:before{content:"\f4dc"}.ion-social-css3:before{content:"\f4df"}.ion-social-css3-outline:before{content:"\f4de"}.ion-social-designernews:before{content:"\f22b"}.ion-social-designernews-outline:before{content:"\f22a"}.ion-social-dribbble:before{content:"\f22d"}.ion-social-dribbble-outline:before{content:"\f22c"}.ion-social-dropbox:before{content:"\f22f"}.ion-social-dropbox-outline:before{content:"\f22e"}.ion-social-euro:before{content:"\f4e1"}.ion-social-euro-outline:before{content:"\f4e0"}.ion-social-facebook:before{content:"\f231"}.ion-social-facebook-outline:before{content:"\f230"}.ion-social-foursquare:before{content:"\f34d"}.ion-social-foursquare-outline:before{content:"\f34c"}.ion-social-freebsd-devil:before{content:"\f2c4"}.ion-social-github:before{content:"\f233"}.ion-social-github-outline:before{content:"\f232"}.ion-social-google:before{content:"\f34f"}.ion-social-google-outline:before{content:"\f34e"}.ion-social-googleplus:before{content:"\f235"}.ion-social-googleplus-outline:before{content:"\f234"}.ion-social-hackernews:before{content:"\f237"}.ion-social-hackernews-outline:before{content:"\f236"}.ion-social-html5:before{content:"\f4e3"}.ion-social-html5-outline:before{content:"\f4e2"}.ion-social-instagram:before{content:"\f351"}.ion-social-instagram-outline:before{content:"\f350"}.ion-social-javascript:before{content:"\f4e5"}.ion-social-javascript-outline:before{content:"\f4e4"}.ion-social-linkedin:before{content:"\f239"}.ion-social-linkedin-outline:before{content:"\f238"}.ion-social-markdown:before{content:"\f4e6"}.ion-social-nodejs:before{content:"\f4e7"}.ion-social-octocat:before{content:"\f4e8"}.ion-social-pinterest:before{content:"\f2b1"}.ion-social-pinterest-outline:before{content:"\f2b0"}.ion-social-python:before{content:"\f4e9"}.ion-social-reddit:before{content:"\f23b"}.ion-social-reddit-outline:before{content:"\f23a"}.ion-social-rss:before{content:"\f23d"}.ion-social-rss-outline:before{content:"\f23c"}.ion-social-sass:before{content:"\f4ea"}.ion-social-skype:before{content:"\f23f"}.ion-social-skype-outline:before{content:"\f23e"}.ion-social-snapchat:before{content:"\f4ec"}.ion-social-snapchat-outline:before{content:"\f4eb"}.ion-social-tumblr:before{content:"\f241"}.ion-social-tumblr-outline:before{content:"\f240"}.ion-social-tux:before{content:"\f2c5"}.ion-social-twitch:before{content:"\f4ee"}.ion-social-twitch-outline:before{content:"\f4ed"}.ion-social-twitter:before{content:"\f243"}.ion-social-twitter-outline:before{content:"\f242"}.ion-social-usd:before{content:"\f353"}.ion-social-usd-outline:before{content:"\f352"}.ion-social-vimeo:before{content:"\f245"}.ion-social-vimeo-outline:before{content:"\f244"}.ion-social-whatsapp:before{content:"\f4f0"}.ion-social-whatsapp-outline:before{content:"\f4ef"}.ion-social-windows:before{content:"\f247"}.ion-social-windows-outline:before{content:"\f246"}.ion-social-wordpress:before{content:"\f249"}.ion-social-wordpress-outline:before{content:"\f248"}.ion-social-yahoo:before{content:"\f24b"}.ion-social-yahoo-outline:before{content:"\f24a"}.ion-social-yen:before{content:"\f4f2"}.ion-social-yen-outline:before{content:"\f4f1"}.ion-social-youtube:before{content:"\f24d"}.ion-social-youtube-outline:before{content:"\f24c"}.ion-soup-can:before{content:"\f4f4"}.ion-soup-can-outline:before{content:"\f4f3"}.ion-speakerphone:before{content:"\f2b2"}.ion-speedometer:before{content:"\f2b3"}.ion-spoon:before{content:"\f2b4"}.ion-star:before{content:"\f24e"}.ion-stats-bars:before{content:"\f2b5"}.ion-steam:before{content:"\f30b"}.ion-stop:before{content:"\f24f"}.ion-thermometer:before{content:"\f2b6"}.ion-thumbsdown:before{content:"\f250"}.ion-thumbsup:before{content:"\f251"}.ion-toggle:before{content:"\f355"}.ion-toggle-filled:before{content:"\f354"}.ion-transgender:before{content:"\f4f5"}.ion-trash-a:before{content:"\f252"}.ion-trash-b:before{content:"\f253"}.ion-trophy:before{content:"\f356"}.ion-tshirt:before{content:"\f4f7"}.ion-tshirt-outline:before{content:"\f4f6"}.ion-umbrella:before{content:"\f2b7"}.ion-university:before{content:"\f357"}.ion-unlocked:before{content:"\f254"}.ion-upload:before{content:"\f255"}.ion-usb:before{content:"\f2b8"}.ion-videocamera:before{content:"\f256"}.ion-volume-high:before{content:"\f257"}.ion-volume-low:before{content:"\f258"}.ion-volume-medium:before{content:"\f259"}.ion-volume-mute:before{content:"\f25a"}.ion-wand:before{content:"\f358"}.ion-waterdrop:before{content:"\f25b"}.ion-wifi:before{content:"\f25c"}.ion-wineglass:before{content:"\f2b9"}.ion-woman:before{content:"\f25d"}.ion-wrench:before{content:"\f2ba"}.ion-xbox:before{content:"\f30c"} +*/@font-face{font-family:"Ionicons";src:url("../fonts/ionicons.eot?v=4.6.4-1");src:url("../fonts/ionicons.eot?v=4.6.4-1#iefix") format("embedded-opentype"),url("../fonts/ionicons.woff2?v=4.6.4-1") format("woff2"),url("../fonts/ionicons.woff?v=4.6.4-1") format("woff"),url("../fonts/ionicons.ttf?v=4.6.4-1") format("truetype"),url("../fonts/ionicons.svg?v=4.6.4-1#Ionicons") format("svg");font-weight:normal;font-style:normal}.ion,.ionicons,.ion-ios-add:before,.ion-ios-add-circle:before,.ion-ios-add-circle-outline:before,.ion-ios-airplane:before,.ion-ios-alarm:before,.ion-ios-albums:before,.ion-ios-alert:before,.ion-ios-american-football:before,.ion-ios-analytics:before,.ion-ios-aperture:before,.ion-ios-apps:before,.ion-ios-appstore:before,.ion-ios-archive:before,.ion-ios-arrow-back:before,.ion-ios-arrow-down:before,.ion-ios-arrow-dropdown:before,.ion-ios-arrow-dropdown-circle:before,.ion-ios-arrow-dropleft:before,.ion-ios-arrow-dropleft-circle:before,.ion-ios-arrow-dropright:before,.ion-ios-arrow-dropright-circle:before,.ion-ios-arrow-dropup:before,.ion-ios-arrow-dropup-circle:before,.ion-ios-arrow-forward:before,.ion-ios-arrow-round-back:before,.ion-ios-arrow-round-down:before,.ion-ios-arrow-round-forward:before,.ion-ios-arrow-round-up:before,.ion-ios-arrow-up:before,.ion-ios-at:before,.ion-ios-attach:before,.ion-ios-backspace:before,.ion-ios-barcode:before,.ion-ios-baseball:before,.ion-ios-basket:before,.ion-ios-basketball:before,.ion-ios-battery-charging:before,.ion-ios-battery-dead:before,.ion-ios-battery-full:before,.ion-ios-beaker:before,.ion-ios-bed:before,.ion-ios-beer:before,.ion-ios-bicycle:before,.ion-ios-bluetooth:before,.ion-ios-boat:before,.ion-ios-body:before,.ion-ios-bonfire:before,.ion-ios-book:before,.ion-ios-bookmark:before,.ion-ios-bookmarks:before,.ion-ios-bowtie:before,.ion-ios-briefcase:before,.ion-ios-browsers:before,.ion-ios-brush:before,.ion-ios-bug:before,.ion-ios-build:before,.ion-ios-bulb:before,.ion-ios-bus:before,.ion-ios-business:before,.ion-ios-cafe:before,.ion-ios-calculator:before,.ion-ios-calendar:before,.ion-ios-call:before,.ion-ios-camera:before,.ion-ios-car:before,.ion-ios-card:before,.ion-ios-cart:before,.ion-ios-cash:before,.ion-ios-cellular:before,.ion-ios-chatboxes:before,.ion-ios-chatbubbles:before,.ion-ios-checkbox:before,.ion-ios-checkbox-outline:before,.ion-ios-checkmark:before,.ion-ios-checkmark-circle:before,.ion-ios-checkmark-circle-outline:before,.ion-ios-clipboard:before,.ion-ios-clock:before,.ion-ios-close:before,.ion-ios-close-circle:before,.ion-ios-close-circle-outline:before,.ion-ios-cloud:before,.ion-ios-cloud-circle:before,.ion-ios-cloud-done:before,.ion-ios-cloud-download:before,.ion-ios-cloud-outline:before,.ion-ios-cloud-upload:before,.ion-ios-cloudy:before,.ion-ios-cloudy-night:before,.ion-ios-code:before,.ion-ios-code-download:before,.ion-ios-code-working:before,.ion-ios-cog:before,.ion-ios-color-fill:before,.ion-ios-color-filter:before,.ion-ios-color-palette:before,.ion-ios-color-wand:before,.ion-ios-compass:before,.ion-ios-construct:before,.ion-ios-contact:before,.ion-ios-contacts:before,.ion-ios-contract:before,.ion-ios-contrast:before,.ion-ios-copy:before,.ion-ios-create:before,.ion-ios-crop:before,.ion-ios-cube:before,.ion-ios-cut:before,.ion-ios-desktop:before,.ion-ios-disc:before,.ion-ios-document:before,.ion-ios-done-all:before,.ion-ios-download:before,.ion-ios-easel:before,.ion-ios-egg:before,.ion-ios-exit:before,.ion-ios-expand:before,.ion-ios-eye:before,.ion-ios-eye-off:before,.ion-ios-fastforward:before,.ion-ios-female:before,.ion-ios-filing:before,.ion-ios-film:before,.ion-ios-finger-print:before,.ion-ios-fitness:before,.ion-ios-flag:before,.ion-ios-flame:before,.ion-ios-flash:before,.ion-ios-flash-off:before,.ion-ios-flashlight:before,.ion-ios-flask:before,.ion-ios-flower:before,.ion-ios-folder:before,.ion-ios-folder-open:before,.ion-ios-football:before,.ion-ios-funnel:before,.ion-ios-gift:before,.ion-ios-git-branch:before,.ion-ios-git-commit:before,.ion-ios-git-compare:before,.ion-ios-git-merge:before,.ion-ios-git-network:before,.ion-ios-git-pull-request:before,.ion-ios-glasses:before,.ion-ios-globe:before,.ion-ios-grid:before,.ion-ios-hammer:before,.ion-ios-hand:before,.ion-ios-happy:before,.ion-ios-headset:before,.ion-ios-heart:before,.ion-ios-heart-dislike:before,.ion-ios-heart-empty:before,.ion-ios-heart-half:before,.ion-ios-help:before,.ion-ios-help-buoy:before,.ion-ios-help-circle:before,.ion-ios-help-circle-outline:before,.ion-ios-home:before,.ion-ios-hourglass:before,.ion-ios-ice-cream:before,.ion-ios-image:before,.ion-ios-images:before,.ion-ios-infinite:before,.ion-ios-information:before,.ion-ios-information-circle:before,.ion-ios-information-circle-outline:before,.ion-ios-jet:before,.ion-ios-journal:before,.ion-ios-key:before,.ion-ios-keypad:before,.ion-ios-laptop:before,.ion-ios-leaf:before,.ion-ios-link:before,.ion-ios-list:before,.ion-ios-list-box:before,.ion-ios-locate:before,.ion-ios-lock:before,.ion-ios-log-in:before,.ion-ios-log-out:before,.ion-ios-magnet:before,.ion-ios-mail:before,.ion-ios-mail-open:before,.ion-ios-mail-unread:before,.ion-ios-male:before,.ion-ios-man:before,.ion-ios-map:before,.ion-ios-medal:before,.ion-ios-medical:before,.ion-ios-medkit:before,.ion-ios-megaphone:before,.ion-ios-menu:before,.ion-ios-mic:before,.ion-ios-mic-off:before,.ion-ios-microphone:before,.ion-ios-moon:before,.ion-ios-more:before,.ion-ios-move:before,.ion-ios-musical-note:before,.ion-ios-musical-notes:before,.ion-ios-navigate:before,.ion-ios-notifications:before,.ion-ios-notifications-off:before,.ion-ios-notifications-outline:before,.ion-ios-nuclear:before,.ion-ios-nutrition:before,.ion-ios-open:before,.ion-ios-options:before,.ion-ios-outlet:before,.ion-ios-paper:before,.ion-ios-paper-plane:before,.ion-ios-partly-sunny:before,.ion-ios-pause:before,.ion-ios-paw:before,.ion-ios-people:before,.ion-ios-person:before,.ion-ios-person-add:before,.ion-ios-phone-landscape:before,.ion-ios-phone-portrait:before,.ion-ios-photos:before,.ion-ios-pie:before,.ion-ios-pin:before,.ion-ios-pint:before,.ion-ios-pizza:before,.ion-ios-planet:before,.ion-ios-play:before,.ion-ios-play-circle:before,.ion-ios-podium:before,.ion-ios-power:before,.ion-ios-pricetag:before,.ion-ios-pricetags:before,.ion-ios-print:before,.ion-ios-pulse:before,.ion-ios-qr-scanner:before,.ion-ios-quote:before,.ion-ios-radio:before,.ion-ios-radio-button-off:before,.ion-ios-radio-button-on:before,.ion-ios-rainy:before,.ion-ios-recording:before,.ion-ios-redo:before,.ion-ios-refresh:before,.ion-ios-refresh-circle:before,.ion-ios-remove:before,.ion-ios-remove-circle:before,.ion-ios-remove-circle-outline:before,.ion-ios-reorder:before,.ion-ios-repeat:before,.ion-ios-resize:before,.ion-ios-restaurant:before,.ion-ios-return-left:before,.ion-ios-return-right:before,.ion-ios-reverse-camera:before,.ion-ios-rewind:before,.ion-ios-ribbon:before,.ion-ios-rocket:before,.ion-ios-rose:before,.ion-ios-sad:before,.ion-ios-save:before,.ion-ios-school:before,.ion-ios-search:before,.ion-ios-send:before,.ion-ios-settings:before,.ion-ios-share:before,.ion-ios-share-alt:before,.ion-ios-shirt:before,.ion-ios-shuffle:before,.ion-ios-skip-backward:before,.ion-ios-skip-forward:before,.ion-ios-snow:before,.ion-ios-speedometer:before,.ion-ios-square:before,.ion-ios-square-outline:before,.ion-ios-star:before,.ion-ios-star-half:before,.ion-ios-star-outline:before,.ion-ios-stats:before,.ion-ios-stopwatch:before,.ion-ios-subway:before,.ion-ios-sunny:before,.ion-ios-swap:before,.ion-ios-switch:before,.ion-ios-sync:before,.ion-ios-tablet-landscape:before,.ion-ios-tablet-portrait:before,.ion-ios-tennisball:before,.ion-ios-text:before,.ion-ios-thermometer:before,.ion-ios-thumbs-down:before,.ion-ios-thumbs-up:before,.ion-ios-thunderstorm:before,.ion-ios-time:before,.ion-ios-timer:before,.ion-ios-today:before,.ion-ios-train:before,.ion-ios-transgender:before,.ion-ios-trash:before,.ion-ios-trending-down:before,.ion-ios-trending-up:before,.ion-ios-trophy:before,.ion-ios-tv:before,.ion-ios-umbrella:before,.ion-ios-undo:before,.ion-ios-unlock:before,.ion-ios-videocam:before,.ion-ios-volume-high:before,.ion-ios-volume-low:before,.ion-ios-volume-mute:before,.ion-ios-volume-off:before,.ion-ios-walk:before,.ion-ios-wallet:before,.ion-ios-warning:before,.ion-ios-watch:before,.ion-ios-water:before,.ion-ios-wifi:before,.ion-ios-wine:before,.ion-ios-woman:before,.ion-logo-android:before,.ion-logo-angular:before,.ion-logo-apple:before,.ion-logo-bitbucket:before,.ion-logo-bitcoin:before,.ion-logo-buffer:before,.ion-logo-chrome:before,.ion-logo-closed-captioning:before,.ion-logo-codepen:before,.ion-logo-css3:before,.ion-logo-designernews:before,.ion-logo-dribbble:before,.ion-logo-dropbox:before,.ion-logo-euro:before,.ion-logo-facebook:before,.ion-logo-flickr:before,.ion-logo-foursquare:before,.ion-logo-freebsd-devil:before,.ion-logo-game-controller-a:before,.ion-logo-game-controller-b:before,.ion-logo-github:before,.ion-logo-google:before,.ion-logo-googleplus:before,.ion-logo-hackernews:before,.ion-logo-html5:before,.ion-logo-instagram:before,.ion-logo-ionic:before,.ion-logo-ionitron:before,.ion-logo-javascript:before,.ion-logo-linkedin:before,.ion-logo-markdown:before,.ion-logo-model-s:before,.ion-logo-no-smoking:before,.ion-logo-nodejs:before,.ion-logo-npm:before,.ion-logo-octocat:before,.ion-logo-pinterest:before,.ion-logo-playstation:before,.ion-logo-polymer:before,.ion-logo-python:before,.ion-logo-reddit:before,.ion-logo-rss:before,.ion-logo-sass:before,.ion-logo-skype:before,.ion-logo-slack:before,.ion-logo-snapchat:before,.ion-logo-steam:before,.ion-logo-tumblr:before,.ion-logo-tux:before,.ion-logo-twitch:before,.ion-logo-twitter:before,.ion-logo-usd:before,.ion-logo-vimeo:before,.ion-logo-vk:before,.ion-logo-whatsapp:before,.ion-logo-windows:before,.ion-logo-wordpress:before,.ion-logo-xbox:before,.ion-logo-xing:before,.ion-logo-yahoo:before,.ion-logo-yen:before,.ion-logo-youtube:before,.ion-md-add:before,.ion-md-add-circle:before,.ion-md-add-circle-outline:before,.ion-md-airplane:before,.ion-md-alarm:before,.ion-md-albums:before,.ion-md-alert:before,.ion-md-american-football:before,.ion-md-analytics:before,.ion-md-aperture:before,.ion-md-apps:before,.ion-md-appstore:before,.ion-md-archive:before,.ion-md-arrow-back:before,.ion-md-arrow-down:before,.ion-md-arrow-dropdown:before,.ion-md-arrow-dropdown-circle:before,.ion-md-arrow-dropleft:before,.ion-md-arrow-dropleft-circle:before,.ion-md-arrow-dropright:before,.ion-md-arrow-dropright-circle:before,.ion-md-arrow-dropup:before,.ion-md-arrow-dropup-circle:before,.ion-md-arrow-forward:before,.ion-md-arrow-round-back:before,.ion-md-arrow-round-down:before,.ion-md-arrow-round-forward:before,.ion-md-arrow-round-up:before,.ion-md-arrow-up:before,.ion-md-at:before,.ion-md-attach:before,.ion-md-backspace:before,.ion-md-barcode:before,.ion-md-baseball:before,.ion-md-basket:before,.ion-md-basketball:before,.ion-md-battery-charging:before,.ion-md-battery-dead:before,.ion-md-battery-full:before,.ion-md-beaker:before,.ion-md-bed:before,.ion-md-beer:before,.ion-md-bicycle:before,.ion-md-bluetooth:before,.ion-md-boat:before,.ion-md-body:before,.ion-md-bonfire:before,.ion-md-book:before,.ion-md-bookmark:before,.ion-md-bookmarks:before,.ion-md-bowtie:before,.ion-md-briefcase:before,.ion-md-browsers:before,.ion-md-brush:before,.ion-md-bug:before,.ion-md-build:before,.ion-md-bulb:before,.ion-md-bus:before,.ion-md-business:before,.ion-md-cafe:before,.ion-md-calculator:before,.ion-md-calendar:before,.ion-md-call:before,.ion-md-camera:before,.ion-md-car:before,.ion-md-card:before,.ion-md-cart:before,.ion-md-cash:before,.ion-md-cellular:before,.ion-md-chatboxes:before,.ion-md-chatbubbles:before,.ion-md-checkbox:before,.ion-md-checkbox-outline:before,.ion-md-checkmark:before,.ion-md-checkmark-circle:before,.ion-md-checkmark-circle-outline:before,.ion-md-clipboard:before,.ion-md-clock:before,.ion-md-close:before,.ion-md-close-circle:before,.ion-md-close-circle-outline:before,.ion-md-cloud:before,.ion-md-cloud-circle:before,.ion-md-cloud-done:before,.ion-md-cloud-download:before,.ion-md-cloud-outline:before,.ion-md-cloud-upload:before,.ion-md-cloudy:before,.ion-md-cloudy-night:before,.ion-md-code:before,.ion-md-code-download:before,.ion-md-code-working:before,.ion-md-cog:before,.ion-md-color-fill:before,.ion-md-color-filter:before,.ion-md-color-palette:before,.ion-md-color-wand:before,.ion-md-compass:before,.ion-md-construct:before,.ion-md-contact:before,.ion-md-contacts:before,.ion-md-contract:before,.ion-md-contrast:before,.ion-md-copy:before,.ion-md-create:before,.ion-md-crop:before,.ion-md-cube:before,.ion-md-cut:before,.ion-md-desktop:before,.ion-md-disc:before,.ion-md-document:before,.ion-md-done-all:before,.ion-md-download:before,.ion-md-easel:before,.ion-md-egg:before,.ion-md-exit:before,.ion-md-expand:before,.ion-md-eye:before,.ion-md-eye-off:before,.ion-md-fastforward:before,.ion-md-female:before,.ion-md-filing:before,.ion-md-film:before,.ion-md-finger-print:before,.ion-md-fitness:before,.ion-md-flag:before,.ion-md-flame:before,.ion-md-flash:before,.ion-md-flash-off:before,.ion-md-flashlight:before,.ion-md-flask:before,.ion-md-flower:before,.ion-md-folder:before,.ion-md-folder-open:before,.ion-md-football:before,.ion-md-funnel:before,.ion-md-gift:before,.ion-md-git-branch:before,.ion-md-git-commit:before,.ion-md-git-compare:before,.ion-md-git-merge:before,.ion-md-git-network:before,.ion-md-git-pull-request:before,.ion-md-glasses:before,.ion-md-globe:before,.ion-md-grid:before,.ion-md-hammer:before,.ion-md-hand:before,.ion-md-happy:before,.ion-md-headset:before,.ion-md-heart:before,.ion-md-heart-dislike:before,.ion-md-heart-empty:before,.ion-md-heart-half:before,.ion-md-help:before,.ion-md-help-buoy:before,.ion-md-help-circle:before,.ion-md-help-circle-outline:before,.ion-md-home:before,.ion-md-hourglass:before,.ion-md-ice-cream:before,.ion-md-image:before,.ion-md-images:before,.ion-md-infinite:before,.ion-md-information:before,.ion-md-information-circle:before,.ion-md-information-circle-outline:before,.ion-md-jet:before,.ion-md-journal:before,.ion-md-key:before,.ion-md-keypad:before,.ion-md-laptop:before,.ion-md-leaf:before,.ion-md-link:before,.ion-md-list:before,.ion-md-list-box:before,.ion-md-locate:before,.ion-md-lock:before,.ion-md-log-in:before,.ion-md-log-out:before,.ion-md-magnet:before,.ion-md-mail:before,.ion-md-mail-open:before,.ion-md-mail-unread:before,.ion-md-male:before,.ion-md-man:before,.ion-md-map:before,.ion-md-medal:before,.ion-md-medical:before,.ion-md-medkit:before,.ion-md-megaphone:before,.ion-md-menu:before,.ion-md-mic:before,.ion-md-mic-off:before,.ion-md-microphone:before,.ion-md-moon:before,.ion-md-more:before,.ion-md-move:before,.ion-md-musical-note:before,.ion-md-musical-notes:before,.ion-md-navigate:before,.ion-md-notifications:before,.ion-md-notifications-off:before,.ion-md-notifications-outline:before,.ion-md-nuclear:before,.ion-md-nutrition:before,.ion-md-open:before,.ion-md-options:before,.ion-md-outlet:before,.ion-md-paper:before,.ion-md-paper-plane:before,.ion-md-partly-sunny:before,.ion-md-pause:before,.ion-md-paw:before,.ion-md-people:before,.ion-md-person:before,.ion-md-person-add:before,.ion-md-phone-landscape:before,.ion-md-phone-portrait:before,.ion-md-photos:before,.ion-md-pie:before,.ion-md-pin:before,.ion-md-pint:before,.ion-md-pizza:before,.ion-md-planet:before,.ion-md-play:before,.ion-md-play-circle:before,.ion-md-podium:before,.ion-md-power:before,.ion-md-pricetag:before,.ion-md-pricetags:before,.ion-md-print:before,.ion-md-pulse:before,.ion-md-qr-scanner:before,.ion-md-quote:before,.ion-md-radio:before,.ion-md-radio-button-off:before,.ion-md-radio-button-on:before,.ion-md-rainy:before,.ion-md-recording:before,.ion-md-redo:before,.ion-md-refresh:before,.ion-md-refresh-circle:before,.ion-md-remove:before,.ion-md-remove-circle:before,.ion-md-remove-circle-outline:before,.ion-md-reorder:before,.ion-md-repeat:before,.ion-md-resize:before,.ion-md-restaurant:before,.ion-md-return-left:before,.ion-md-return-right:before,.ion-md-reverse-camera:before,.ion-md-rewind:before,.ion-md-ribbon:before,.ion-md-rocket:before,.ion-md-rose:before,.ion-md-sad:before,.ion-md-save:before,.ion-md-school:before,.ion-md-search:before,.ion-md-send:before,.ion-md-settings:before,.ion-md-share:before,.ion-md-share-alt:before,.ion-md-shirt:before,.ion-md-shuffle:before,.ion-md-skip-backward:before,.ion-md-skip-forward:before,.ion-md-snow:before,.ion-md-speedometer:before,.ion-md-square:before,.ion-md-square-outline:before,.ion-md-star:before,.ion-md-star-half:before,.ion-md-star-outline:before,.ion-md-stats:before,.ion-md-stopwatch:before,.ion-md-subway:before,.ion-md-sunny:before,.ion-md-swap:before,.ion-md-switch:before,.ion-md-sync:before,.ion-md-tablet-landscape:before,.ion-md-tablet-portrait:before,.ion-md-tennisball:before,.ion-md-text:before,.ion-md-thermometer:before,.ion-md-thumbs-down:before,.ion-md-thumbs-up:before,.ion-md-thunderstorm:before,.ion-md-time:before,.ion-md-timer:before,.ion-md-today:before,.ion-md-train:before,.ion-md-transgender:before,.ion-md-trash:before,.ion-md-trending-down:before,.ion-md-trending-up:before,.ion-md-trophy:before,.ion-md-tv:before,.ion-md-umbrella:before,.ion-md-undo:before,.ion-md-unlock:before,.ion-md-videocam:before,.ion-md-volume-high:before,.ion-md-volume-low:before,.ion-md-volume-mute:before,.ion-md-volume-off:before,.ion-md-walk:before,.ion-md-wallet:before,.ion-md-warning:before,.ion-md-watch:before,.ion-md-water:before,.ion-md-wifi:before,.ion-md-wine:before,.ion-md-woman:before{display:inline-block;font-family:"Ionicons";speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;text-rendering:auto;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ion-ios-add:before{content:""}.ion-ios-add-circle:before{content:""}.ion-ios-add-circle-outline:before{content:""}.ion-ios-airplane:before{content:""}.ion-ios-alarm:before{content:""}.ion-ios-albums:before{content:""}.ion-ios-alert:before{content:""}.ion-ios-american-football:before{content:""}.ion-ios-analytics:before{content:""}.ion-ios-aperture:before{content:""}.ion-ios-apps:before{content:""}.ion-ios-appstore:before{content:""}.ion-ios-archive:before{content:""}.ion-ios-arrow-back:before{content:""}.ion-ios-arrow-down:before{content:""}.ion-ios-arrow-dropdown:before{content:""}.ion-ios-arrow-dropdown-circle:before{content:""}.ion-ios-arrow-dropleft:before{content:""}.ion-ios-arrow-dropleft-circle:before{content:""}.ion-ios-arrow-dropright:before{content:""}.ion-ios-arrow-dropright-circle:before{content:""}.ion-ios-arrow-dropup:before{content:""}.ion-ios-arrow-dropup-circle:before{content:""}.ion-ios-arrow-forward:before{content:""}.ion-ios-arrow-round-back:before{content:""}.ion-ios-arrow-round-down:before{content:""}.ion-ios-arrow-round-forward:before{content:""}.ion-ios-arrow-round-up:before{content:""}.ion-ios-arrow-up:before{content:""}.ion-ios-at:before{content:""}.ion-ios-attach:before{content:""}.ion-ios-backspace:before{content:""}.ion-ios-barcode:before{content:""}.ion-ios-baseball:before{content:""}.ion-ios-basket:before{content:""}.ion-ios-basketball:before{content:""}.ion-ios-battery-charging:before{content:""}.ion-ios-battery-dead:before{content:""}.ion-ios-battery-full:before{content:""}.ion-ios-beaker:before{content:""}.ion-ios-bed:before{content:""}.ion-ios-beer:before{content:""}.ion-ios-bicycle:before{content:""}.ion-ios-bluetooth:before{content:""}.ion-ios-boat:before{content:""}.ion-ios-body:before{content:""}.ion-ios-bonfire:before{content:""}.ion-ios-book:before{content:""}.ion-ios-bookmark:before{content:""}.ion-ios-bookmarks:before{content:""}.ion-ios-bowtie:before{content:""}.ion-ios-briefcase:before{content:""}.ion-ios-browsers:before{content:""}.ion-ios-brush:before{content:""}.ion-ios-bug:before{content:""}.ion-ios-build:before{content:""}.ion-ios-bulb:before{content:""}.ion-ios-bus:before{content:""}.ion-ios-business:before{content:""}.ion-ios-cafe:before{content:""}.ion-ios-calculator:before{content:""}.ion-ios-calendar:before{content:""}.ion-ios-call:before{content:""}.ion-ios-camera:before{content:""}.ion-ios-car:before{content:""}.ion-ios-card:before{content:""}.ion-ios-cart:before{content:""}.ion-ios-cash:before{content:""}.ion-ios-cellular:before{content:""}.ion-ios-chatboxes:before{content:""}.ion-ios-chatbubbles:before{content:""}.ion-ios-checkbox:before{content:""}.ion-ios-checkbox-outline:before{content:""}.ion-ios-checkmark:before{content:""}.ion-ios-checkmark-circle:before{content:""}.ion-ios-checkmark-circle-outline:before{content:""}.ion-ios-clipboard:before{content:""}.ion-ios-clock:before{content:""}.ion-ios-close:before{content:""}.ion-ios-close-circle:before{content:""}.ion-ios-close-circle-outline:before{content:""}.ion-ios-cloud:before{content:""}.ion-ios-cloud-circle:before{content:""}.ion-ios-cloud-done:before{content:""}.ion-ios-cloud-download:before{content:""}.ion-ios-cloud-outline:before{content:""}.ion-ios-cloud-upload:before{content:""}.ion-ios-cloudy:before{content:""}.ion-ios-cloudy-night:before{content:""}.ion-ios-code:before{content:""}.ion-ios-code-download:before{content:""}.ion-ios-code-working:before{content:""}.ion-ios-cog:before{content:""}.ion-ios-color-fill:before{content:""}.ion-ios-color-filter:before{content:""}.ion-ios-color-palette:before{content:""}.ion-ios-color-wand:before{content:""}.ion-ios-compass:before{content:""}.ion-ios-construct:before{content:""}.ion-ios-contact:before{content:""}.ion-ios-contacts:before{content:""}.ion-ios-contract:before{content:""}.ion-ios-contrast:before{content:""}.ion-ios-copy:before{content:""}.ion-ios-create:before{content:""}.ion-ios-crop:before{content:""}.ion-ios-cube:before{content:""}.ion-ios-cut:before{content:""}.ion-ios-desktop:before{content:""}.ion-ios-disc:before{content:""}.ion-ios-document:before{content:""}.ion-ios-done-all:before{content:""}.ion-ios-download:before{content:""}.ion-ios-easel:before{content:""}.ion-ios-egg:before{content:""}.ion-ios-exit:before{content:""}.ion-ios-expand:before{content:""}.ion-ios-eye:before{content:""}.ion-ios-eye-off:before{content:""}.ion-ios-fastforward:before{content:""}.ion-ios-female:before{content:""}.ion-ios-filing:before{content:""}.ion-ios-film:before{content:""}.ion-ios-finger-print:before{content:""}.ion-ios-fitness:before{content:""}.ion-ios-flag:before{content:""}.ion-ios-flame:before{content:""}.ion-ios-flash:before{content:""}.ion-ios-flash-off:before{content:""}.ion-ios-flashlight:before{content:""}.ion-ios-flask:before{content:""}.ion-ios-flower:before{content:""}.ion-ios-folder:before{content:""}.ion-ios-folder-open:before{content:""}.ion-ios-football:before{content:""}.ion-ios-funnel:before{content:""}.ion-ios-gift:before{content:""}.ion-ios-git-branch:before{content:""}.ion-ios-git-commit:before{content:""}.ion-ios-git-compare:before{content:""}.ion-ios-git-merge:before{content:""}.ion-ios-git-network:before{content:""}.ion-ios-git-pull-request:before{content:""}.ion-ios-glasses:before{content:""}.ion-ios-globe:before{content:""}.ion-ios-grid:before{content:""}.ion-ios-hammer:before{content:""}.ion-ios-hand:before{content:""}.ion-ios-happy:before{content:""}.ion-ios-headset:before{content:""}.ion-ios-heart:before{content:""}.ion-ios-heart-dislike:before{content:""}.ion-ios-heart-empty:before{content:""}.ion-ios-heart-half:before{content:""}.ion-ios-help:before{content:""}.ion-ios-help-buoy:before{content:""}.ion-ios-help-circle:before{content:""}.ion-ios-help-circle-outline:before{content:""}.ion-ios-home:before{content:""}.ion-ios-hourglass:before{content:""}.ion-ios-ice-cream:before{content:""}.ion-ios-image:before{content:""}.ion-ios-images:before{content:""}.ion-ios-infinite:before{content:""}.ion-ios-information:before{content:""}.ion-ios-information-circle:before{content:""}.ion-ios-information-circle-outline:before{content:""}.ion-ios-jet:before{content:""}.ion-ios-journal:before{content:""}.ion-ios-key:before{content:""}.ion-ios-keypad:before{content:""}.ion-ios-laptop:before{content:""}.ion-ios-leaf:before{content:""}.ion-ios-link:before{content:""}.ion-ios-list:before{content:""}.ion-ios-list-box:before{content:""}.ion-ios-locate:before{content:""}.ion-ios-lock:before{content:""}.ion-ios-log-in:before{content:""}.ion-ios-log-out:before{content:""}.ion-ios-magnet:before{content:""}.ion-ios-mail:before{content:""}.ion-ios-mail-open:before{content:""}.ion-ios-mail-unread:before{content:""}.ion-ios-male:before{content:""}.ion-ios-man:before{content:""}.ion-ios-map:before{content:""}.ion-ios-medal:before{content:""}.ion-ios-medical:before{content:""}.ion-ios-medkit:before{content:""}.ion-ios-megaphone:before{content:""}.ion-ios-menu:before{content:""}.ion-ios-mic:before{content:""}.ion-ios-mic-off:before{content:""}.ion-ios-microphone:before{content:""}.ion-ios-moon:before{content:""}.ion-ios-more:before{content:""}.ion-ios-move:before{content:""}.ion-ios-musical-note:before{content:""}.ion-ios-musical-notes:before{content:""}.ion-ios-navigate:before{content:""}.ion-ios-notifications:before{content:""}.ion-ios-notifications-off:before{content:""}.ion-ios-notifications-outline:before{content:""}.ion-ios-nuclear:before{content:""}.ion-ios-nutrition:before{content:""}.ion-ios-open:before{content:""}.ion-ios-options:before{content:""}.ion-ios-outlet:before{content:""}.ion-ios-paper:before{content:""}.ion-ios-paper-plane:before{content:""}.ion-ios-partly-sunny:before{content:""}.ion-ios-pause:before{content:""}.ion-ios-paw:before{content:""}.ion-ios-people:before{content:""}.ion-ios-person:before{content:""}.ion-ios-person-add:before{content:""}.ion-ios-phone-landscape:before{content:""}.ion-ios-phone-portrait:before{content:""}.ion-ios-photos:before{content:""}.ion-ios-pie:before{content:""}.ion-ios-pin:before{content:""}.ion-ios-pint:before{content:""}.ion-ios-pizza:before{content:""}.ion-ios-planet:before{content:""}.ion-ios-play:before{content:""}.ion-ios-play-circle:before{content:""}.ion-ios-podium:before{content:""}.ion-ios-power:before{content:""}.ion-ios-pricetag:before{content:""}.ion-ios-pricetags:before{content:""}.ion-ios-print:before{content:""}.ion-ios-pulse:before{content:""}.ion-ios-qr-scanner:before{content:""}.ion-ios-quote:before{content:""}.ion-ios-radio:before{content:""}.ion-ios-radio-button-off:before{content:""}.ion-ios-radio-button-on:before{content:""}.ion-ios-rainy:before{content:""}.ion-ios-recording:before{content:""}.ion-ios-redo:before{content:""}.ion-ios-refresh:before{content:""}.ion-ios-refresh-circle:before{content:""}.ion-ios-remove:before{content:""}.ion-ios-remove-circle:before{content:""}.ion-ios-remove-circle-outline:before{content:""}.ion-ios-reorder:before{content:""}.ion-ios-repeat:before{content:""}.ion-ios-resize:before{content:""}.ion-ios-restaurant:before{content:""}.ion-ios-return-left:before{content:""}.ion-ios-return-right:before{content:""}.ion-ios-reverse-camera:before{content:""}.ion-ios-rewind:before{content:""}.ion-ios-ribbon:before{content:""}.ion-ios-rocket:before{content:""}.ion-ios-rose:before{content:""}.ion-ios-sad:before{content:""}.ion-ios-save:before{content:""}.ion-ios-school:before{content:""}.ion-ios-search:before{content:""}.ion-ios-send:before{content:""}.ion-ios-settings:before{content:""}.ion-ios-share:before{content:""}.ion-ios-share-alt:before{content:""}.ion-ios-shirt:before{content:""}.ion-ios-shuffle:before{content:""}.ion-ios-skip-backward:before{content:""}.ion-ios-skip-forward:before{content:""}.ion-ios-snow:before{content:""}.ion-ios-speedometer:before{content:""}.ion-ios-square:before{content:""}.ion-ios-square-outline:before{content:""}.ion-ios-star:before{content:""}.ion-ios-star-half:before{content:""}.ion-ios-star-outline:before{content:""}.ion-ios-stats:before{content:""}.ion-ios-stopwatch:before{content:""}.ion-ios-subway:before{content:""}.ion-ios-sunny:before{content:""}.ion-ios-swap:before{content:""}.ion-ios-switch:before{content:""}.ion-ios-sync:before{content:""}.ion-ios-tablet-landscape:before{content:""}.ion-ios-tablet-portrait:before{content:""}.ion-ios-tennisball:before{content:""}.ion-ios-text:before{content:""}.ion-ios-thermometer:before{content:""}.ion-ios-thumbs-down:before{content:""}.ion-ios-thumbs-up:before{content:""}.ion-ios-thunderstorm:before{content:""}.ion-ios-time:before{content:""}.ion-ios-timer:before{content:""}.ion-ios-today:before{content:""}.ion-ios-train:before{content:""}.ion-ios-transgender:before{content:""}.ion-ios-trash:before{content:""}.ion-ios-trending-down:before{content:""}.ion-ios-trending-up:before{content:""}.ion-ios-trophy:before{content:""}.ion-ios-tv:before{content:""}.ion-ios-umbrella:before{content:""}.ion-ios-undo:before{content:""}.ion-ios-unlock:before{content:""}.ion-ios-videocam:before{content:""}.ion-ios-volume-high:before{content:""}.ion-ios-volume-low:before{content:""}.ion-ios-volume-mute:before{content:""}.ion-ios-volume-off:before{content:""}.ion-ios-walk:before{content:""}.ion-ios-wallet:before{content:""}.ion-ios-warning:before{content:""}.ion-ios-watch:before{content:""}.ion-ios-water:before{content:""}.ion-ios-wifi:before{content:""}.ion-ios-wine:before{content:""}.ion-ios-woman:before{content:""}.ion-logo-android:before{content:""}.ion-logo-angular:before{content:""}.ion-logo-apple:before{content:""}.ion-logo-bitbucket:before{content:""}.ion-logo-bitcoin:before{content:""}.ion-logo-buffer:before{content:""}.ion-logo-chrome:before{content:""}.ion-logo-closed-captioning:before{content:""}.ion-logo-codepen:before{content:""}.ion-logo-css3:before{content:""}.ion-logo-designernews:before{content:""}.ion-logo-dribbble:before{content:""}.ion-logo-dropbox:before{content:""}.ion-logo-euro:before{content:""}.ion-logo-facebook:before{content:""}.ion-logo-flickr:before{content:""}.ion-logo-foursquare:before{content:""}.ion-logo-freebsd-devil:before{content:""}.ion-logo-game-controller-a:before{content:""}.ion-logo-game-controller-b:before{content:""}.ion-logo-github:before{content:""}.ion-logo-google:before{content:""}.ion-logo-googleplus:before{content:""}.ion-logo-hackernews:before{content:""}.ion-logo-html5:before{content:""}.ion-logo-instagram:before{content:""}.ion-logo-ionic:before{content:""}.ion-logo-ionitron:before{content:""}.ion-logo-javascript:before{content:""}.ion-logo-linkedin:before{content:""}.ion-logo-markdown:before{content:""}.ion-logo-model-s:before{content:""}.ion-logo-no-smoking:before{content:""}.ion-logo-nodejs:before{content:""}.ion-logo-npm:before{content:""}.ion-logo-octocat:before{content:""}.ion-logo-pinterest:before{content:""}.ion-logo-playstation:before{content:""}.ion-logo-polymer:before{content:""}.ion-logo-python:before{content:""}.ion-logo-reddit:before{content:""}.ion-logo-rss:before{content:""}.ion-logo-sass:before{content:""}.ion-logo-skype:before{content:""}.ion-logo-slack:before{content:""}.ion-logo-snapchat:before{content:""}.ion-logo-steam:before{content:""}.ion-logo-tumblr:before{content:""}.ion-logo-tux:before{content:""}.ion-logo-twitch:before{content:""}.ion-logo-twitter:before{content:""}.ion-logo-usd:before{content:""}.ion-logo-vimeo:before{content:""}.ion-logo-vk:before{content:""}.ion-logo-whatsapp:before{content:""}.ion-logo-windows:before{content:""}.ion-logo-wordpress:before{content:""}.ion-logo-xbox:before{content:""}.ion-logo-xing:before{content:""}.ion-logo-yahoo:before{content:""}.ion-logo-yen:before{content:""}.ion-logo-youtube:before{content:""}.ion-md-add:before{content:""}.ion-md-add-circle:before{content:""}.ion-md-add-circle-outline:before{content:""}.ion-md-airplane:before{content:""}.ion-md-alarm:before{content:""}.ion-md-albums:before{content:""}.ion-md-alert:before{content:""}.ion-md-american-football:before{content:""}.ion-md-analytics:before{content:""}.ion-md-aperture:before{content:""}.ion-md-apps:before{content:""}.ion-md-appstore:before{content:""}.ion-md-archive:before{content:""}.ion-md-arrow-back:before{content:""}.ion-md-arrow-down:before{content:""}.ion-md-arrow-dropdown:before{content:""}.ion-md-arrow-dropdown-circle:before{content:""}.ion-md-arrow-dropleft:before{content:""}.ion-md-arrow-dropleft-circle:before{content:""}.ion-md-arrow-dropright:before{content:""}.ion-md-arrow-dropright-circle:before{content:""}.ion-md-arrow-dropup:before{content:""}.ion-md-arrow-dropup-circle:before{content:""}.ion-md-arrow-forward:before{content:""}.ion-md-arrow-round-back:before{content:""}.ion-md-arrow-round-down:before{content:""}.ion-md-arrow-round-forward:before{content:""}.ion-md-arrow-round-up:before{content:""}.ion-md-arrow-up:before{content:""}.ion-md-at:before{content:""}.ion-md-attach:before{content:""}.ion-md-backspace:before{content:""}.ion-md-barcode:before{content:""}.ion-md-baseball:before{content:""}.ion-md-basket:before{content:""}.ion-md-basketball:before{content:""}.ion-md-battery-charging:before{content:""}.ion-md-battery-dead:before{content:""}.ion-md-battery-full:before{content:""}.ion-md-beaker:before{content:""}.ion-md-bed:before{content:""}.ion-md-beer:before{content:""}.ion-md-bicycle:before{content:""}.ion-md-bluetooth:before{content:""}.ion-md-boat:before{content:""}.ion-md-body:before{content:""}.ion-md-bonfire:before{content:""}.ion-md-book:before{content:""}.ion-md-bookmark:before{content:""}.ion-md-bookmarks:before{content:""}.ion-md-bowtie:before{content:""}.ion-md-briefcase:before{content:""}.ion-md-browsers:before{content:""}.ion-md-brush:before{content:""}.ion-md-bug:before{content:""}.ion-md-build:before{content:""}.ion-md-bulb:before{content:""}.ion-md-bus:before{content:""}.ion-md-business:before{content:""}.ion-md-cafe:before{content:""}.ion-md-calculator:before{content:""}.ion-md-calendar:before{content:""}.ion-md-call:before{content:""}.ion-md-camera:before{content:""}.ion-md-car:before{content:""}.ion-md-card:before{content:""}.ion-md-cart:before{content:""}.ion-md-cash:before{content:""}.ion-md-cellular:before{content:""}.ion-md-chatboxes:before{content:""}.ion-md-chatbubbles:before{content:""}.ion-md-checkbox:before{content:""}.ion-md-checkbox-outline:before{content:""}.ion-md-checkmark:before{content:""}.ion-md-checkmark-circle:before{content:""}.ion-md-checkmark-circle-outline:before{content:""}.ion-md-clipboard:before{content:""}.ion-md-clock:before{content:""}.ion-md-close:before{content:""}.ion-md-close-circle:before{content:""}.ion-md-close-circle-outline:before{content:""}.ion-md-cloud:before{content:""}.ion-md-cloud-circle:before{content:""}.ion-md-cloud-done:before{content:""}.ion-md-cloud-download:before{content:""}.ion-md-cloud-outline:before{content:""}.ion-md-cloud-upload:before{content:""}.ion-md-cloudy:before{content:""}.ion-md-cloudy-night:before{content:""}.ion-md-code:before{content:""}.ion-md-code-download:before{content:""}.ion-md-code-working:before{content:""}.ion-md-cog:before{content:""}.ion-md-color-fill:before{content:""}.ion-md-color-filter:before{content:""}.ion-md-color-palette:before{content:""}.ion-md-color-wand:before{content:""}.ion-md-compass:before{content:""}.ion-md-construct:before{content:""}.ion-md-contact:before{content:""}.ion-md-contacts:before{content:""}.ion-md-contract:before{content:""}.ion-md-contrast:before{content:""}.ion-md-copy:before{content:""}.ion-md-create:before{content:""}.ion-md-crop:before{content:""}.ion-md-cube:before{content:""}.ion-md-cut:before{content:""}.ion-md-desktop:before{content:""}.ion-md-disc:before{content:""}.ion-md-document:before{content:""}.ion-md-done-all:before{content:""}.ion-md-download:before{content:""}.ion-md-easel:before{content:""}.ion-md-egg:before{content:""}.ion-md-exit:before{content:""}.ion-md-expand:before{content:""}.ion-md-eye:before{content:""}.ion-md-eye-off:before{content:""}.ion-md-fastforward:before{content:""}.ion-md-female:before{content:""}.ion-md-filing:before{content:""}.ion-md-film:before{content:""}.ion-md-finger-print:before{content:""}.ion-md-fitness:before{content:""}.ion-md-flag:before{content:""}.ion-md-flame:before{content:""}.ion-md-flash:before{content:""}.ion-md-flash-off:before{content:""}.ion-md-flashlight:before{content:""}.ion-md-flask:before{content:""}.ion-md-flower:before{content:""}.ion-md-folder:before{content:""}.ion-md-folder-open:before{content:""}.ion-md-football:before{content:""}.ion-md-funnel:before{content:""}.ion-md-gift:before{content:""}.ion-md-git-branch:before{content:""}.ion-md-git-commit:before{content:""}.ion-md-git-compare:before{content:""}.ion-md-git-merge:before{content:""}.ion-md-git-network:before{content:""}.ion-md-git-pull-request:before{content:""}.ion-md-glasses:before{content:""}.ion-md-globe:before{content:""}.ion-md-grid:before{content:""}.ion-md-hammer:before{content:""}.ion-md-hand:before{content:""}.ion-md-happy:before{content:""}.ion-md-headset:before{content:""}.ion-md-heart:before{content:""}.ion-md-heart-dislike:before{content:""}.ion-md-heart-empty:before{content:""}.ion-md-heart-half:before{content:""}.ion-md-help:before{content:""}.ion-md-help-buoy:before{content:""}.ion-md-help-circle:before{content:""}.ion-md-help-circle-outline:before{content:""}.ion-md-home:before{content:""}.ion-md-hourglass:before{content:""}.ion-md-ice-cream:before{content:""}.ion-md-image:before{content:""}.ion-md-images:before{content:""}.ion-md-infinite:before{content:""}.ion-md-information:before{content:""}.ion-md-information-circle:before{content:""}.ion-md-information-circle-outline:before{content:""}.ion-md-jet:before{content:""}.ion-md-journal:before{content:""}.ion-md-key:before{content:""}.ion-md-keypad:before{content:""}.ion-md-laptop:before{content:""}.ion-md-leaf:before{content:""}.ion-md-link:before{content:""}.ion-md-list:before{content:""}.ion-md-list-box:before{content:""}.ion-md-locate:before{content:""}.ion-md-lock:before{content:""}.ion-md-log-in:before{content:""}.ion-md-log-out:before{content:""}.ion-md-magnet:before{content:""}.ion-md-mail:before{content:""}.ion-md-mail-open:before{content:""}.ion-md-mail-unread:before{content:""}.ion-md-male:before{content:""}.ion-md-man:before{content:""}.ion-md-map:before{content:""}.ion-md-medal:before{content:""}.ion-md-medical:before{content:""}.ion-md-medkit:before{content:""}.ion-md-megaphone:before{content:""}.ion-md-menu:before{content:""}.ion-md-mic:before{content:""}.ion-md-mic-off:before{content:""}.ion-md-microphone:before{content:""}.ion-md-moon:before{content:""}.ion-md-more:before{content:""}.ion-md-move:before{content:""}.ion-md-musical-note:before{content:""}.ion-md-musical-notes:before{content:""}.ion-md-navigate:before{content:""}.ion-md-notifications:before{content:""}.ion-md-notifications-off:before{content:""}.ion-md-notifications-outline:before{content:""}.ion-md-nuclear:before{content:""}.ion-md-nutrition:before{content:""}.ion-md-open:before{content:""}.ion-md-options:before{content:""}.ion-md-outlet:before{content:""}.ion-md-paper:before{content:""}.ion-md-paper-plane:before{content:""}.ion-md-partly-sunny:before{content:""}.ion-md-pause:before{content:""}.ion-md-paw:before{content:""}.ion-md-people:before{content:""}.ion-md-person:before{content:""}.ion-md-person-add:before{content:""}.ion-md-phone-landscape:before{content:""}.ion-md-phone-portrait:before{content:""}.ion-md-photos:before{content:""}.ion-md-pie:before{content:""}.ion-md-pin:before{content:""}.ion-md-pint:before{content:""}.ion-md-pizza:before{content:""}.ion-md-planet:before{content:""}.ion-md-play:before{content:""}.ion-md-play-circle:before{content:""}.ion-md-podium:before{content:""}.ion-md-power:before{content:""}.ion-md-pricetag:before{content:""}.ion-md-pricetags:before{content:""}.ion-md-print:before{content:""}.ion-md-pulse:before{content:""}.ion-md-qr-scanner:before{content:""}.ion-md-quote:before{content:""}.ion-md-radio:before{content:""}.ion-md-radio-button-off:before{content:""}.ion-md-radio-button-on:before{content:""}.ion-md-rainy:before{content:""}.ion-md-recording:before{content:""}.ion-md-redo:before{content:""}.ion-md-refresh:before{content:""}.ion-md-refresh-circle:before{content:""}.ion-md-remove:before{content:""}.ion-md-remove-circle:before{content:""}.ion-md-remove-circle-outline:before{content:""}.ion-md-reorder:before{content:""}.ion-md-repeat:before{content:""}.ion-md-resize:before{content:""}.ion-md-restaurant:before{content:""}.ion-md-return-left:before{content:""}.ion-md-return-right:before{content:""}.ion-md-reverse-camera:before{content:""}.ion-md-rewind:before{content:""}.ion-md-ribbon:before{content:""}.ion-md-rocket:before{content:""}.ion-md-rose:before{content:""}.ion-md-sad:before{content:""}.ion-md-save:before{content:""}.ion-md-school:before{content:""}.ion-md-search:before{content:""}.ion-md-send:before{content:""}.ion-md-settings:before{content:""}.ion-md-share:before{content:""}.ion-md-share-alt:before{content:""}.ion-md-shirt:before{content:""}.ion-md-shuffle:before{content:""}.ion-md-skip-backward:before{content:""}.ion-md-skip-forward:before{content:""}.ion-md-snow:before{content:""}.ion-md-speedometer:before{content:""}.ion-md-square:before{content:""}.ion-md-square-outline:before{content:""}.ion-md-star:before{content:""}.ion-md-star-half:before{content:""}.ion-md-star-outline:before{content:""}.ion-md-stats:before{content:""}.ion-md-stopwatch:before{content:""}.ion-md-subway:before{content:""}.ion-md-sunny:before{content:""}.ion-md-swap:before{content:""}.ion-md-switch:before{content:""}.ion-md-sync:before{content:""}.ion-md-tablet-landscape:before{content:""}.ion-md-tablet-portrait:before{content:""}.ion-md-tennisball:before{content:""}.ion-md-text:before{content:""}.ion-md-thermometer:before{content:""}.ion-md-thumbs-down:before{content:""}.ion-md-thumbs-up:before{content:""}.ion-md-thunderstorm:before{content:""}.ion-md-time:before{content:""}.ion-md-timer:before{content:""}.ion-md-today:before{content:""}.ion-md-train:before{content:""}.ion-md-transgender:before{content:""}.ion-md-trash:before{content:""}.ion-md-trending-down:before{content:""}.ion-md-trending-up:before{content:""}.ion-md-trophy:before{content:""}.ion-md-tv:before{content:""}.ion-md-umbrella:before{content:""}.ion-md-undo:before{content:""}.ion-md-unlock:before{content:""}.ion-md-videocam:before{content:""}.ion-md-volume-high:before{content:""}.ion-md-volume-low:before{content:""}.ion-md-volume-mute:before{content:""}.ion-md-volume-off:before{content:""}.ion-md-walk:before{content:""}.ion-md-wallet:before{content:""}.ion-md-warning:before{content:""}.ion-md-watch:before{content:""}.ion-md-water:before{content:""}.ion-md-wifi:before{content:""}.ion-md-wine:before{content:""}.ion-md-woman:before{content:""} \ No newline at end of file diff --git a/wwwroot/vendor/solid.css b/wwwroot/vendor/solid.css index 604e755..7962826 100644 --- a/wwwroot/vendor/solid.css +++ b/wwwroot/vendor/solid.css @@ -1,14 +1,10 @@ -/*! - * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - */ @font-face { font-family: 'Font Awesome 5 Free'; font-style: normal; font-weight: 900; font-display: block; src: url("../webfonts/fa-solid-900.eot"); - src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg"); } + src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } .fa, .fas { diff --git a/wwwroot/vendor/tailwind.css b/wwwroot/vendor/tailwind.css index 3a4b157..735095f 100644 --- a/wwwroot/vendor/tailwind.css +++ b/wwwroot/vendor/tailwind.css @@ -1,115 +1,988 @@ -.static { - position: static +/* ! tailwindcss v3.0.18 | MIT License | https://tailwindcss.com */ + +*, +::before, +::after{ + box-sizing:border-box; + border-width:0; + border-style:solid; + border-color:#e5e7eb; } -.table { - display: table +::before, +::after{ + --tw-content:''; } -@-webkit-keyframes spin { - to { - transform: rotate(360deg) - } +html{ + line-height:1.5; + -webkit-text-size-adjust:100%; + -moz-tab-size:4; + -o-tab-size:4; + tab-size:4; + font-family:ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; } -@keyframes spin { - to { - transform: rotate(360deg) - } +body{ + margin:0; + line-height:inherit; } -@-webkit-keyframes ping { - 75%, 100% { - transform: scale(2); - opacity: 0 - } +hr{ + height:0; + color:inherit; + border-top-width:1px; } -@keyframes ping { - 75%, 100% { - transform: scale(2); - opacity: 0 - } +abbr:where([title]){ + -webkit-text-decoration:underline dotted; + text-decoration:underline dotted; } -@-webkit-keyframes pulse { - 50% { - opacity: .5 - } +h1, +h2, +h3, +h4, +h5, +h6{ + font-size:inherit; + font-weight:inherit; } -@keyframes pulse { - 50% { - opacity: .5 - } +a{ + color:inherit; + text-decoration:inherit; } -@-webkit-keyframes bounce { - 0%, 100% { - transform: translateY(-25%); - -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1); - animation-timing-function: cubic-bezier(0.8,0,1,1) +b, +strong{ + font-weight:bolder; +} + +code, +kbd, +samp, +pre{ + font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + font-size:1em; +} + +small{ + font-size:80%; +} + +sub, +sup{ + font-size:75%; + line-height:0; + position:relative; + vertical-align:baseline; +} + +sub{ + bottom:-0.25em; +} + +sup{ + top:-0.5em; +} + +table{ + text-indent:0; + border-color:inherit; + border-collapse:collapse; +} + +button, +input, +optgroup, +select, +textarea{ + font-family:inherit; + font-size:100%; + line-height:inherit; + color:inherit; + margin:0; + padding:0; +} + +button, +select{ + text-transform:none; +} + +button, +[type='button'], +[type='reset'], +[type='submit']{ + -webkit-appearance:button; + background-color:transparent; + background-image:none; +} + +:-moz-focusring{ + outline:auto; +} + +:-moz-ui-invalid{ + box-shadow:none; +} + +progress{ + vertical-align:baseline; +} + +::-webkit-inner-spin-button, +::-webkit-outer-spin-button{ + height:auto; +} + +[type='search']{ + -webkit-appearance:textfield; + outline-offset:-2px; +} + +::-webkit-search-decoration{ + -webkit-appearance:none; +} + +::-webkit-file-upload-button{ + -webkit-appearance:button; + font:inherit; +} + +summary{ + display:list-item; +} + +blockquote, +dl, +dd, +h1, +h2, +h3, +h4, +h5, +h6, +hr, +figure, +p, +pre{ + margin:0; +} + +fieldset{ + margin:0; + padding:0; +} + +legend{ + padding:0; +} + +ol, +ul, +menu{ + list-style:none; + margin:0; + padding:0; +} + +textarea{ + resize:vertical; +} + +input::-moz-placeholder, textarea::-moz-placeholder{ + opacity:1; + color:#9ca3af; +} + +input:-ms-input-placeholder, textarea:-ms-input-placeholder{ + opacity:1; + color:#9ca3af; +} + +input::placeholder, +textarea::placeholder{ + opacity:1; + color:#9ca3af; +} + +button, +[role="button"]{ + cursor:pointer; +} +:disabled{ + cursor:default; +} + +img, +svg, +video, +canvas, +audio, +iframe, +embed, +object{ + display:block; + vertical-align:middle; +} + +img, +video{ + max-width:100%; + height:auto; +} + +[hidden]{ + display:none; +} + +*, ::before, ::after{ + --tw-translate-x:0; + --tw-translate-y:0; + --tw-rotate:0; + --tw-skew-x:0; + --tw-skew-y:0; + --tw-scale-x:1; + --tw-scale-y:1; + --tw-pan-x: ; + --tw-pan-y: ; + --tw-pinch-zoom: ; + --tw-scroll-snap-strictness:proximity; + --tw-ordinal: ; + --tw-slashed-zero: ; + --tw-numeric-figure: ; + --tw-numeric-spacing: ; + --tw-numeric-fraction: ; + --tw-ring-inset: ; + --tw-ring-offset-width:0px; + --tw-ring-offset-color:#fff; + --tw-ring-color:rgb(59 130 246 / 0.5); + --tw-ring-offset-shadow:0 0 #0000; + --tw-ring-shadow:0 0 #0000; + --tw-shadow:0 0 #0000; + --tw-shadow-colored:0 0 #0000; + --tw-blur: ; + --tw-brightness: ; + --tw-contrast: ; + --tw-grayscale: ; + --tw-hue-rotate: ; + --tw-invert: ; + --tw-saturate: ; + --tw-sepia: ; + --tw-drop-shadow: ; + --tw-backdrop-blur: ; + --tw-backdrop-brightness: ; + --tw-backdrop-contrast: ; + --tw-backdrop-grayscale: ; + --tw-backdrop-hue-rotate: ; + --tw-backdrop-invert: ; + --tw-backdrop-opacity: ; + --tw-backdrop-saturate: ; + --tw-backdrop-sepia: ; +} +.static{ + position:static; +} +.absolute{ + position:absolute; +} +.relative{ + position:relative; +} +.right-2{ + right:0.5rem; +} +.bottom-1{ + bottom:0.25rem; +} +.top-full{ + top:100%; +} +.z-50{ + z-index:50; +} +.mx-auto{ + margin-left:auto; + margin-right:auto; +} +.my-auto{ + margin-top:auto; + margin-bottom:auto; +} +.mt-3{ + margin-top:0.75rem; +} +.mb-3{ + margin-bottom:0.75rem; +} +.mt-1{ + margin-top:0.25rem; +} +.mr-0{ + margin-right:0px; +} +.ml-5{ + margin-left:1.25rem; +} +.ml-6{ + margin-left:1.5rem; +} +.mt-2{ + margin-top:0.5rem; +} +.mb-0{ + margin-bottom:0px; +} +.ml-0{ + margin-left:0px; +} +.mt-4{ + margin-top:1rem; +} +.mt-8{ + margin-top:2rem; +} +.ml-2{ + margin-left:0.5rem; +} +.mt-0{ + margin-top:0px; +} +.block{ + display:block; +} +.flex{ + display:flex; +} +.inline-flex{ + display:inline-flex; +} +.grid{ + display:grid; +} +.hidden{ + display:none; +} +.aspect-video{ + aspect-ratio:16 / 9; +} +.h-12{ + height:3rem; +} +.h-\[30px\]{ + height:30px; +} +.h-full{ + height:100%; +} +.h-8{ + height:2rem; +} +.h-screen{ + height:100vh; +} +.h-24{ + height:6rem; +} +.max-h-\[30vh\]{ + max-height:30vh; +} +.max-h-\[50vh\]{ + max-height:50vh; +} +.max-h-8{ + max-height:2rem; +} +.max-h-24{ + max-height:6rem; +} +.w-full{ + width:100%; +} +.w-12{ + width:3rem; +} +.w-auto{ + width:auto; +} +.w-52{ + width:13rem; +} +.w-8{ + width:2rem; +} +.w-\[30px\]{ + width:30px; +} +.min-w-0{ + min-width:0px; +} +.min-w-full{ + min-width:100%; +} +.max-w-\[80\%\]{ + max-width:80%; +} +.max-w-\[6rem\]{ + max-width:6rem; +} +.max-w-xl{ + max-width:36rem; +} +.max-w-md{ + max-width:28rem; +} +.max-w-4xl{ + max-width:56rem; +} +.flex-none{ + flex:none; +} +.flex-1{ + flex:1 1 0%; +} +.shrink{ + flex-shrink:1; +} +.cursor-not-allowed{ + cursor:not-allowed; +} +.cursor-pointer{ + cursor:pointer; +} +.auto-cols-auto{ + grid-auto-columns:auto; +} +.grid-flow-col-dense{ + grid-auto-flow:column dense; +} +.grid-cols-1{ + grid-template-columns:repeat(1, minmax(0, 1fr)); +} +.grid-cols-2{ + grid-template-columns:repeat(2, minmax(0, 1fr)); +} +.grid-rows-1{ + grid-template-rows:repeat(1, minmax(0, 1fr)); +} +.flex-row{ + flex-direction:row; +} +.flex-col{ + flex-direction:column; +} +.flex-col-reverse{ + flex-direction:column-reverse; +} +.items-start{ + align-items:flex-start; +} +.items-center{ + align-items:center; +} +.justify-between{ + justify-content:space-between; +} +.gap-4{ + gap:1rem; +} +.gap-6{ + gap:1.5rem; +} +.space-y-4 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse:0; + margin-top:calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom:calc(1rem * var(--tw-space-y-reverse)); +} +.space-x-3 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse:0; + margin-right:calc(0.75rem * var(--tw-space-x-reverse)); + margin-left:calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); +} +.space-y-3 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse:0; + margin-top:calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom:calc(0.75rem * var(--tw-space-y-reverse)); +} +.space-y-1 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse:0; + margin-top:calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom:calc(0.25rem * var(--tw-space-y-reverse)); +} +.space-x-2 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse:0; + margin-right:calc(0.5rem * var(--tw-space-x-reverse)); + margin-left:calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); +} +.space-x-1 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse:0; + margin-right:calc(0.25rem * var(--tw-space-x-reverse)); + margin-left:calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); +} +.space-y-2 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse:0; + margin-top:calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom:calc(0.5rem * var(--tw-space-y-reverse)); +} +.space-x-4 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse:0; + margin-right:calc(1rem * var(--tw-space-x-reverse)); + margin-left:calc(1rem * calc(1 - var(--tw-space-x-reverse))); +} +.divide-y > :not([hidden]) ~ :not([hidden]){ + --tw-divide-y-reverse:0; + border-top-width:calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width:calc(1px * var(--tw-divide-y-reverse)); +} +.self-start{ + align-self:flex-start; +} +.self-center{ + align-self:center; +} +.overflow-visible{ + overflow:visible; +} +.overflow-y-auto{ + overflow-y:auto; +} +.truncate{ + overflow:hidden; + text-overflow:ellipsis; + white-space:nowrap; +} +.break-all{ + word-break:break-all; +} +.rounded-xl{ + border-radius:0.75rem; +} +.rounded-full{ + border-radius:9999px; +} +.rounded-lg{ + border-radius:0.5rem; +} +.\!rounded-lg{ + border-radius:0.5rem !important; +} +.rounded-md{ + border-radius:0.375rem; +} +.rounded{ + border-radius:0.25rem; +} +.rounded-l-xl{ + border-top-left-radius:0.75rem; + border-bottom-left-radius:0.75rem; +} +.rounded-t-\[1\.4rem\]{ + border-top-left-radius:1.4rem; + border-top-right-radius:1.4rem; +} +.rounded-b-lg{ + border-bottom-right-radius:0.5rem; + border-bottom-left-radius:0.5rem; +} +.rounded-b-\[1\.4rem\]{ + border-bottom-right-radius:1.4rem; + border-bottom-left-radius:1.4rem; +} +.rounded-t-lg{ + border-top-left-radius:0.5rem; + border-top-right-radius:0.5rem; +} +.border-0{ + border-width:0px; +} +.border-2{ + border-width:2px; +} +.border-b-2{ + border-bottom-width:2px; +} +.border-gray-300{ + --tw-border-opacity:1; + border-color:rgb(209 213 219 / var(--tw-border-opacity)); +} +.border-gray-200{ + --tw-border-opacity:1; + border-color:rgb(229 231 235 / var(--tw-border-opacity)); +} +.border-transparent{ + border-color:transparent; +} +.bg-gray-100{ + --tw-bg-opacity:1; + background-color:rgb(243 244 246 / var(--tw-bg-opacity)); +} +.bg-gray-200{ + --tw-bg-opacity:1; + background-color:rgb(229 231 235 / var(--tw-bg-opacity)); +} +.bg-cover{ + background-size:cover; +} +.bg-center{ + background-position:center; +} +.bg-right{ + background-position:right; +} +.bg-no-repeat{ + background-repeat:no-repeat; +} +.object-cover{ + -o-object-fit:cover; + object-fit:cover; +} +.p-3{ + padding:0.75rem; +} +.p-1{ + padding:0.25rem; +} +.p-4{ + padding:1rem; +} +.py-3{ + padding-top:0.75rem; + padding-bottom:0.75rem; +} +.px-8{ + padding-left:2rem; + padding-right:2rem; +} +.px-2{ + padding-left:0.5rem; + padding-right:0.5rem; +} +.py-1{ + padding-top:0.25rem; + padding-bottom:0.25rem; +} +.py-2{ + padding-top:0.5rem; + padding-bottom:0.5rem; +} +.px-3{ + padding-left:0.75rem; + padding-right:0.75rem; +} +.px-6{ + padding-left:1.5rem; + padding-right:1.5rem; +} +.py-12{ + padding-top:3rem; + padding-bottom:3rem; +} +.py-8{ + padding-top:2rem; + padding-bottom:2rem; +} +.px-0\.5{ + padding-left:0.125rem; + padding-right:0.125rem; +} +.px-0{ + padding-left:0px; + padding-right:0px; +} +.pl-3{ + padding-left:0.75rem; +} +.pr-3{ + padding-right:0.75rem; +} +.pt-2{ + padding-top:0.5rem; +} +.pt-3{ + padding-top:0.75rem; +} +.text-center{ + text-align:center; +} +.text-right{ + text-align:right; +} +.text-xs{ + font-size:0.75rem; + line-height:1rem; +} +.text-sm{ + font-size:0.875rem; + line-height:1.25rem; +} +.text-2xl{ + font-size:1.5rem; + line-height:2rem; +} +.text-base{ + font-size:1rem; + line-height:1.5rem; +} +.text-lg{ + font-size:1.125rem; + line-height:1.75rem; +} +.text-4xl{ + font-size:2.25rem; + line-height:2.5rem; +} +.font-bold{ + font-weight:700; +} +.text-pink-300{ + --tw-text-opacity:1; + color:rgb(249 168 212 / var(--tw-text-opacity)); +} +.text-red-400{ + --tw-text-opacity:1; + color:rgb(248 113 113 / var(--tw-text-opacity)); +} +.text-gray-900{ + --tw-text-opacity:1; + color:rgb(17 24 39 / var(--tw-text-opacity)); +} +.text-gray-600{ + --tw-text-opacity:1; + color:rgb(75 85 99 / var(--tw-text-opacity)); +} +.text-gray-700{ + --tw-text-opacity:1; + color:rgb(55 65 81 / var(--tw-text-opacity)); +} +.text-indigo-600{ + --tw-text-opacity:1; + color:rgb(79 70 229 / var(--tw-text-opacity)); +} +.text-black{ + --tw-text-opacity:1; + color:rgb(0 0 0 / var(--tw-text-opacity)); +} +.text-gray-500{ + --tw-text-opacity:1; + color:rgb(107 114 128 / var(--tw-text-opacity)); +} +.underline{ + -webkit-text-decoration-line:underline; + text-decoration-line:underline; +} +.antialiased{ + -webkit-font-smoothing:antialiased; + -moz-osx-font-smoothing:grayscale; +} +.opacity-50{ + opacity:0.5; +} +.shadow-sm{ + --tw-shadow:0 1px 2px 0 rgb(0 0 0 / 0.05); + --tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color); + box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} +.drop-shadow{ + --tw-drop-shadow:drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06)); + filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); +} +.focus\:border-indigo-300:focus{ + --tw-border-opacity:1; + border-color:rgb(165 180 252 / var(--tw-border-opacity)); +} +.focus\:border-black:focus{ + --tw-border-opacity:1; + border-color:rgb(0 0 0 / var(--tw-border-opacity)); +} +.focus\:border-gray-300:focus{ + --tw-border-opacity:1; + border-color:rgb(209 213 219 / var(--tw-border-opacity)); +} +.focus\:border-gray-500:focus{ + --tw-border-opacity:1; + border-color:rgb(107 114 128 / var(--tw-border-opacity)); +} +.focus\:border-transparent:focus{ + border-color:transparent; +} +.focus\:bg-white:focus{ + --tw-bg-opacity:1; + background-color:rgb(255 255 255 / var(--tw-bg-opacity)); +} +.focus\:bg-gray-200:focus{ + --tw-bg-opacity:1; + background-color:rgb(229 231 235 / var(--tw-bg-opacity)); +} +.focus\:ring:focus{ + --tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} +.focus\:ring-0:focus{ + --tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} +.focus\:ring-1:focus{ + --tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} +.focus\:ring-indigo-200:focus{ + --tw-ring-opacity:1; + --tw-ring-color:rgb(199 210 254 / var(--tw-ring-opacity)); +} +.focus\:ring-black:focus{ + --tw-ring-opacity:1; + --tw-ring-color:rgb(0 0 0 / var(--tw-ring-opacity)); +} +.focus\:ring-gray-500:focus{ + --tw-ring-opacity:1; + --tw-ring-color:rgb(107 114 128 / var(--tw-ring-opacity)); +} +.focus\:ring-opacity-50:focus{ + --tw-ring-opacity:0.5; +} +.focus\:ring-offset-0:focus{ + --tw-ring-offset-width:0px; +} +.focus\:ring-offset-2:focus{ + --tw-ring-offset-width:2px; +} +@media (min-width: 768px){ + + .md\:relative{ + position:relative; } - 50% { - transform: none; - -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1); - animation-timing-function: cubic-bezier(0,0,0.2,1) - } -} - -@keyframes bounce { - 0%, 100% { - transform: translateY(-25%); - -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1); - animation-timing-function: cubic-bezier(0.8,0,1,1) + .md\:top-auto{ + top:auto; } - 50% { - transform: none; - -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1); - animation-timing-function: cubic-bezier(0,0,0.2,1) + .md\:ml-10{ + margin-left:2.5rem; } -} -.px-3 { - padding-left: 0.75rem; - padding-right: 0.75rem -} + .md\:block{ + display:block; + } -.px-4 { - padding-left: 1rem; - padding-right: 1rem -} + .md\:hidden{ + display:none; + } -.text-center { - text-align: center -} + .md\:h-16{ + height:4rem; + } -*, ::before, ::after { - --tw-shadow: 0 0 #0000 -} + .md\:h-12{ + height:3rem; + } -*, ::before, ::after { - --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); - --tw-ring-offset-width: 0px; - --tw-ring-offset-color: #fff; - --tw-ring-color: rgba(59, 130, 246, 0.5); - --tw-ring-offset-shadow: 0 0 #0000; - --tw-ring-shadow: 0 0 #0000 -} + .md\:max-h-40{ + max-height:10rem; + } -@media (min-width: 640px) { -} + .md\:w-16{ + width:4rem; + } -@media (min-width: 768px) { -} + .md\:w-52{ + width:13rem; + } -@media (min-width: 1024px) { -} + .md\:w-full{ + width:100%; + } -@media (min-width: 1280px) { -} + .md\:w-12{ + width:3rem; + } -@media (min-width: 1536px) { + .md\:max-w-\[12rem\]{ + max-width:12rem; + } + + .md\:max-w-4xl{ + max-width:56rem; + } + + .md\:grid-cols-2{ + grid-template-columns:repeat(2, minmax(0, 1fr)); + } + + .md\:flex-row{ + flex-direction:row; + } + + .md\:p-4{ + padding:1rem; + } + + .md\:p-2{ + padding:0.5rem; + } + + .md\:p-5{ + padding:1.25rem; + } + + .md\:p-0{ + padding:0px; + } + + .md\:py-4{ + padding-top:1rem; + padding-bottom:1rem; + } + + .md\:px-3{ + padding-left:0.75rem; + padding-right:0.75rem; + } + + .md\:py-2{ + padding-top:0.5rem; + padding-bottom:0.5rem; + } + + .md\:py-3{ + padding-top:0.75rem; + padding-bottom:0.75rem; + } + + .md\:px-4{ + padding-left:1rem; + padding-right:1rem; + } + + .md\:pl-4{ + padding-left:1rem; + } + + .md\:pr-4{ + padding-right:1rem; + } + + .md\:pl-2{ + padding-left:0.5rem; + } + + .md\:text-sm{ + font-size:0.875rem; + line-height:1.25rem; + } + + .md\:text-base{ + font-size:1rem; + line-height:1.5rem; + } + + .md\:shadow-none{ + --tw-shadow:0 0 #0000; + --tw-shadow-colored:0 0 #0000; + box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } } \ No newline at end of file diff --git a/wwwroot/vendor/toggle-dark-light-mode.css b/wwwroot/vendor/toggle-dark-light-mode.css index e69de29..c95179e 100644 --- a/wwwroot/vendor/toggle-dark-light-mode.css +++ b/wwwroot/vendor/toggle-dark-light-mode.css @@ -0,0 +1,80 @@ +.toggle-checkbox { + position: absolute; + opacity: 0; + cursor: pointer; + height: 0; + width: 0; +} + +.toggle-slot { + position: relative; + height: 2em; + width: 3em; + border: none; + border-radius: 10em; + background-color: white; + transition: background-color 250ms; +} + +.toggle-checkbox:checked ~ .toggle-slot { + background-color: #374151; +} + +.toggle-button { + transform: translate(1.6em, 0.5em); + position: absolute; + height: 1em; + width: 1em; + border-radius: 50%; + background-color: #ffeccf; + transition: background-color 250ms, border-color 250ms, transform 500ms cubic-bezier(.26, 2, .46, .71); +} + +.toggle-checkbox:checked ~ .toggle-slot .toggle-button { + background-color: #485367; + transform: translate(0.5em, 0.5em); +} + +.sun-icon { + position: absolute; + height: 1em; + width: 1em; + color: #ffbb52; +} + +.sun-icon-wrapper { + position: absolute; + height: 1em; + width: 1em; + opacity: 1; + transform: translate(0.55em, 0.25em) rotate(15deg); + transform-origin: 50% 50%; + transition: opacity 150ms, transform 500ms cubic-bezier(.26, 2, .46, .71); +} + +.toggle-checkbox:checked ~ .toggle-slot .sun-icon-wrapper { + opacity: 0; + transform: translate(1.6em, 0.5em) rotate(0deg); +} + +.moon-icon { + position: absolute; + height: 1em; + width: 1em; + color: white; +} + +.moon-icon-wrapper { + position: absolute; + height: 1em; + width: 1em; + opacity: 0; + transform: translate(1.6em, .5em) rotate(0deg); + transform-origin: 50% 50%; + transition: opacity 150ms, transform 500ms cubic-bezier(.26, 2.5, .46, .71); +} + +.toggle-checkbox:checked ~ .toggle-slot .moon-icon-wrapper { + opacity: 1; + transform: translate(1.85em, 0.15em) rotate(-15deg); +} \ No newline at end of file