diff --git a/TSC2.Client/Layout/MainLayout.razor b/TSC2.Client/Layout/MainLayout.razor new file mode 100644 index 0000000..f7c54f1 --- /dev/null +++ b/TSC2.Client/Layout/MainLayout.razor @@ -0,0 +1,119 @@ +@inherits LayoutComponentBase + + + + + @Body + +
+ An unhandled error has occurred. + Reload + 🗙 +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/TSC2.Client/Layout/MainLayout.razor.css b/TSC2.Client/Layout/MainLayout.razor.css new file mode 100644 index 0000000..038baf1 --- /dev/null +++ b/TSC2.Client/Layout/MainLayout.razor.css @@ -0,0 +1,96 @@ +.page { + position: relative; + display: flex; + flex-direction: column; +} + +main { + flex: 1; +} + +.sidebar { + background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); +} + +.top-row { + background-color: #f7f7f7; + border-bottom: 1px solid #d6d5d5; + justify-content: flex-end; + height: 3.5rem; + display: flex; + align-items: center; +} + + .top-row ::deep a, .top-row ::deep .btn-link { + white-space: nowrap; + margin-left: 1.5rem; + text-decoration: none; + } + + .top-row ::deep a:hover, .top-row ::deep .btn-link:hover { + text-decoration: underline; + } + + .top-row ::deep a:first-child { + overflow: hidden; + text-overflow: ellipsis; + } + +@media (max-width: 640.98px) { + .top-row { + justify-content: space-between; + } + + .top-row ::deep a, .top-row ::deep .btn-link { + margin-left: 0; + } +} + +@media (min-width: 641px) { + .page { + flex-direction: row; + } + + .sidebar { + width: 250px; + height: 100vh; + position: sticky; + top: 0; + } + + .top-row { + position: sticky; + top: 0; + z-index: 1; + } + + .top-row.auth ::deep a:first-child { + flex: 1; + text-align: right; + width: 0; + } + + .top-row, article { + padding-left: 2rem !important; + padding-right: 1.5rem !important; + } +} + +#blazor-error-ui { + background: lightyellow; + bottom: 0; + box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); + display: none; + left: 0; + padding: 0.6rem 1.25rem 0.7rem 1.25rem; + position: fixed; + width: 100%; + z-index: 1000; +} + + #blazor-error-ui .dismiss { + cursor: pointer; + position: absolute; + right: 0.75rem; + top: 0.5rem; + } diff --git a/TSC2.Client/Layout/_NavMenu.razor b/TSC2.Client/Layout/_NavMenu.razor new file mode 100644 index 0000000..98dc977 --- /dev/null +++ b/TSC2.Client/Layout/_NavMenu.razor @@ -0,0 +1,29 @@ + + + + + diff --git a/TSC2.Client/Layout/_NavMenu.razor.css b/TSC2.Client/Layout/_NavMenu.razor.css new file mode 100644 index 0000000..95fcc36 --- /dev/null +++ b/TSC2.Client/Layout/_NavMenu.razor.css @@ -0,0 +1,102 @@ +.navbar-toggler { + appearance: none; + cursor: pointer; + width: 3.5rem; + height: 2.5rem; + color: white; + position: absolute; + top: 0.5rem; + right: 1rem; + border: 1px solid rgba(255, 255, 255, 0.1); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1); +} + +.navbar-toggler:checked { + background-color: rgba(255, 255, 255, 0.5); +} + +.top-row { + height: 3.5rem; + background-color: rgba(0,0,0,0.4); +} + +.navbar-brand { + font-size: 1.1rem; +} + +.bi { + display: inline-block; + position: relative; + width: 1.25rem; + height: 1.25rem; + margin-right: 0.75rem; + top: -1px; + background-size: cover; +} + +.bi-house-door-fill { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E"); +} + +.bi-plus-square-fill { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E"); +} + +.bi-list-nested { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E"); +} + +.nav-item { + font-size: 0.9rem; + padding-bottom: 0.5rem; +} + + .nav-item:first-of-type { + padding-top: 1rem; + } + + .nav-item:last-of-type { + padding-bottom: 1rem; + } + + .nav-item ::deep a { + color: #d7d7d7; + border-radius: 4px; + height: 3rem; + display: flex; + align-items: center; + line-height: 3rem; + } + +.nav-item ::deep a.active { + background-color: rgba(255,255,255,0.37); + color: white; +} + +.nav-item ::deep a:hover { + background-color: rgba(255,255,255,0.1); + color: white; +} + +.nav-scrollable { + display: none; +} + +.navbar-toggler:checked ~ .nav-scrollable { + display: block; +} + +@media (min-width: 641px) { + .navbar-toggler { + display: none; + } + + .nav-scrollable { + /* Never collapse the sidebar for wide screens */ + display: block; + + /* Allow sidebar to scroll for tall menus */ + height: calc(100vh - 3.5rem); + overflow-y: auto; + } +} diff --git a/TSC2.Client/Pages/Counter.razor b/TSC2.Client/Pages/Counter.razor new file mode 100644 index 0000000..ef23cb3 --- /dev/null +++ b/TSC2.Client/Pages/Counter.razor @@ -0,0 +1,18 @@ +@page "/counter" + +Counter + +

Counter

+ +

Current count: @currentCount

+ + + +@code { + private int currentCount = 0; + + private void IncrementCount() + { + currentCount++; + } +} diff --git a/TSC2.Client/Pages/Home.razor b/TSC2.Client/Pages/Home.razor new file mode 100644 index 0000000..47bda00 --- /dev/null +++ b/TSC2.Client/Pages/Home.razor @@ -0,0 +1,500 @@ +@page "/" +@using System.Net.Http.Headers +@using System.Text.Json +@using Newtonsoft.Json + + + + + + + + + + + Dealers - Car | Canvas + + + + + + + + +
+ + +
+ +
+ +
+ +
+ + Canvas Logo + +

It has always been, and will always be, about quality. We're passionate about ethically sourcing the finest coffee beans, roasting them with great care. We'd like to hear your message!

+ +
+ +

Quick Contact

+
+
+
+
+
+
+
+ + + + + + +
+ +
+ + +
+ +
+ +
+ + +
+ + +
+
+
+
+ + + + + + + + + + @code { + TelerikMap? MapRef { get; set; } + public double Zoom { get; set; } = 1; + public static double[] Center = [40.68, 74.04]; + public string MapHeight { get; set; } = "800px"; + + public string[] Subdomains { get; set; } = new string[] { "a", "b", "c" }; + public string UrlTemplate { get; set; } = "https://#= subdomain #.tile.openstreetmap.org/#= zoom #/#= x #/#= y #.png"; + public string Attribution { get; set; } = "© OpenStreetMap contributors"; + + protected override async Task OnInitializedAsync() + { + HttpClient client = new(); + var ip = await client.GetStringAsync("https://api.ipify.org"); // Free API to get public IP of user + + var response = await client.GetStringAsync(String.Format("https://ipapi.co/{0}/json/", ip)); + Console.WriteLine(response); + LocationDetails? json = JsonConvert.DeserializeObject(response); + if (json != null) + { + Center = [json.latitude, json.longitude]; + Zoom = 13; + } + + InitializeMapMarkers(Center); + if (MapRef != null) + MapRef.Refresh(); + } + + public async void OnMarkerClick(MapMarkerClickEventArgs args) + { + var dataItem = args.DataItem as MarkerModel; + UpdateDrawer(); + await ToggleDrawer(); + Console.WriteLine(dataItem.Title); + } + + public List MapMarkers { get; set; } = new List() + { + new MarkerModel() + { + Title = "" + } + }; + + private void InitializeMapMarkers(double[] coords) + { + // Server call to load map markers into a list of tuples + List<(double[], string)> localMarkers = MapDriver.InitializeMarkers(coords); + foreach (var current in localMarkers) + { + MapMarkers.Add(new MarkerModel() + { + LatLng = current.Item1, + Title = current.Item2 + }); + } + } + + public class MarkerModel + { + public double[] LatLng { get; set; } = [42.4649, -83.3684]; + public string Title { get; set; } = ""; + } + private class LocationDetails + { + public string ip { get; set; } = ""; + public string network { get; set; } = ""; + public string version { get; set; } = ""; + public string city { get; set; } = ""; + public string region { get; set; } = ""; + public string region_code { get; set; } = ""; + public string country { get; set; } = ""; + public string country_code { get; set; } = ""; + public string country_code_iso3 { get; set; } = ""; + public string country_capital { get; set; } = ""; + public string country_tld { get; set; } = ""; + public string continent_code { get; set; } = ""; + public bool in_eu { get; set; } = false; + public string postal { get; set; } = ""; + public double latitude { get; set; } = -1; + public double longitude { get; set; } = -1; + public string timezone { get; set; } = ""; + public string utc_offset { get; set; } = ""; + public string country_calling_code { get; set; } = ""; + public string currency { get; set; } = ""; + public string currency_name { get; set; } = ""; + public string languages { get; set; } = ""; + public string country_area { get; set; } = ""; + public string country_population { get; set; } = ""; + public string asn { get; set; } = ""; + public string org { get; set; } = ""; + } + } +
+ +
+
+
+

Find Your Shop:

+
+
+
+ + + + +
+ +
+ + +
+
+ +
+
+
+
+
+
+ +
+ + + + +
+ +
+ @code{ + public TelerikDrawer? Drawer { get; set; } + public DrawerMode Mode { get; set; } + public IEnumerable Data { get; set; } = new List(); + public DrawerPosition Position = DrawerPosition.End; + public class DrawerItem { + public string? Text { get; set; } + public ISvgIcon? Icon { get; set; } + public bool Separator { get; set; } + } + + public void UpdateDrawer() + { + Data = new List + { + new DrawerItem { Text = "HelloWorld"}, + new DrawerItem { Text = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."}, + }; + } + public async Task ToggleDrawer() => await Drawer.ToggleAsync(); + } +
+ +
+
+
+ + +
+ +
+ +
+
+
+
+
+
+ +
+
+

Long Battery Life

+

Canvas provides support for Native HTML5 Videos that can be added to a Background.

+
+
+
+
+
+
+ +
+
+

24x7 Service

+

Complete control on each & every element that provides endless customization.

+
+
+
+
+
+
+ +
+
+

Petrol, Diesel & LPG

+

Change your Website's Primary Scheme instantly by simply adding the dark class.

+
+
+
+
+
+
+ +
+
+

Powerful Dashboard

+

Canvas provides support for Native HTML5 Videos that can be added to a Background.

+
+
+
+
+
+
+ +
+
+

Differnt Color Options

+

Complete control on each & every element that provides endless customization.

+
+
+
+
+
+
+ +
+
+

All wheel Drive

+

Change your Website's Primary Scheme instantly by simply adding the dark class.

+
+
+
+
+
+
+
+
+ + +
+
+
+

Popular Cars

+
+ + +
+ +
+ +
+
+ +
+
+ + + +
+ +
+ + +
+ + + + + + \ No newline at end of file diff --git a/TSC2.Client/Pages/Weather.razor b/TSC2.Client/Pages/Weather.razor new file mode 100644 index 0000000..8eca4cc --- /dev/null +++ b/TSC2.Client/Pages/Weather.razor @@ -0,0 +1,63 @@ +@page "/weather" + +Weather + +

Weather

+ +

This component demonstrates showing data.

+ +@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() + { + // Simulate asynchronous loading to demonstrate a loading indicator + await Task.Delay(500); + + var startDate = DateOnly.FromDateTime(DateTime.Now); + var summaries = new[] { "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" }; + forecasts = Enumerable.Range(1, 5).Select(index => new WeatherForecast + { + Date = startDate.AddDays(index), + TemperatureC = Random.Shared.Next(-20, 55), + Summary = summaries[Random.Shared.Next(summaries.Length)] + }).ToArray(); + } + + private class WeatherForecast + { + public DateOnly Date { get; set; } + public int TemperatureC { get; set; } + public string? Summary { get; set; } + public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); + } +} diff --git a/TSC2.Client/Program.cs b/TSC2.Client/Program.cs new file mode 100644 index 0000000..c11414a --- /dev/null +++ b/TSC2.Client/Program.cs @@ -0,0 +1,7 @@ +using Microsoft.AspNetCore.Components.WebAssembly.Hosting; + +var builder = WebAssemblyHostBuilder.CreateDefault(args); + +builder.Services.AddTelerikBlazor(); + +await builder.Build().RunAsync(); diff --git a/TSC2.Client/Routes.razor b/TSC2.Client/Routes.razor new file mode 100644 index 0000000..d0df781 --- /dev/null +++ b/TSC2.Client/Routes.razor @@ -0,0 +1,6 @@ + + + + + + diff --git a/TSC2.Client/TSC2.Client.csproj b/TSC2.Client/TSC2.Client.csproj new file mode 100644 index 0000000..15aaf64 --- /dev/null +++ b/TSC2.Client/TSC2.Client.csproj @@ -0,0 +1,25 @@ + + + + net8.0 + enable + enable + true + Default + + + + + + + + + + + + + + + + + diff --git a/TSC2.Client/_Imports.razor b/TSC2.Client/_Imports.razor new file mode 100644 index 0000000..e92bdfe --- /dev/null +++ b/TSC2.Client/_Imports.razor @@ -0,0 +1,12 @@ +@using System.Net.Http +@using System.Net.Http.Json +@using Microsoft.AspNetCore.Components.Forms +@using Microsoft.AspNetCore.Components.Routing +@using Microsoft.AspNetCore.Components.Web +@using Microsoft.AspNetCore.Components.Web.Virtualization +@using Microsoft.JSInterop +@using TSC2.Client +@using TSC2.Server +@using Telerik.Blazor +@using Telerik.Blazor.Components +@using Telerik.SvgIcons \ No newline at end of file diff --git a/TSC2.Client/wwwroot/appsettings.Development.json b/TSC2.Client/wwwroot/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/TSC2.Client/wwwroot/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/TSC2.Client/wwwroot/appsettings.json b/TSC2.Client/wwwroot/appsettings.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/TSC2.Client/wwwroot/appsettings.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/TSC2.Client/wwwroot/css/animate.css b/TSC2.Client/wwwroot/css/animate.css new file mode 100644 index 0000000..4f9e7e9 --- /dev/null +++ b/TSC2.Client/wwwroot/css/animate.css @@ -0,0 +1,4076 @@ +@charset "UTF-8";/*! + * animate.css - https://animate.style/ + * Version - 4.1.1 + * Licensed under the MIT license - http://opensource.org/licenses/MIT + * + * Copyright (c) 2020 Animate.css + */ +:root { + --animate-duration: 1s; + --animate-delay: 1s; + --animate-repeat: 1; +} + +.not-animated, +[data-animate]:not(.animated) { opacity: 0; } + +.animated { + -webkit-animation-duration: 1s; + animation-duration: 1s; + -webkit-animation-duration: var(--animate-duration); + animation-duration: var(--animate-duration); + -webkit-animation-fill-mode: both; + animation-fill-mode: both; +} +.animated.infinite { + -webkit-animation-iteration-count: infinite; + animation-iteration-count: infinite; +} +.animated.repeat-1 { + -webkit-animation-iteration-count: 1; + animation-iteration-count: 1; + -webkit-animation-iteration-count: var(--animate-repeat); + animation-iteration-count: var(--animate-repeat); +} +.animated.repeat-2 { + -webkit-animation-iteration-count: calc(1 * 2); + animation-iteration-count: calc(1 * 2); + -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2); + animation-iteration-count: calc(var(--animate-repeat) * 2); +} +.animated.repeat-3 { + -webkit-animation-iteration-count: calc(1 * 3); + animation-iteration-count: calc(1 * 3); + -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3); + animation-iteration-count: calc(var(--animate-repeat) * 3); +} +.animated.delay-1s { + -webkit-animation-delay: 1s; + animation-delay: 1s; + -webkit-animation-delay: var(--animate-delay); + animation-delay: var(--animate-delay); +} +.animated.delay-2s { + -webkit-animation-delay: calc(1s * 2); + animation-delay: calc(1s * 2); + -webkit-animation-delay: calc(var(--animate-delay) * 2); + animation-delay: calc(var(--animate-delay) * 2); +} +.animated.delay-3s { + -webkit-animation-delay: calc(1s * 3); + animation-delay: calc(1s * 3); + -webkit-animation-delay: calc(var(--animate-delay) * 3); + animation-delay: calc(var(--animate-delay) * 3); +} +.animated.delay-4s { + -webkit-animation-delay: calc(1s * 4); + animation-delay: calc(1s * 4); + -webkit-animation-delay: calc(var(--animate-delay) * 4); + animation-delay: calc(var(--animate-delay) * 4); +} +.animated.delay-5s { + -webkit-animation-delay: calc(1s * 5); + animation-delay: calc(1s * 5); + -webkit-animation-delay: calc(var(--animate-delay) * 5); + animation-delay: calc(var(--animate-delay) * 5); +} +.animated.faster { + -webkit-animation-duration: calc(1s / 2); + animation-duration: calc(1s / 2); + -webkit-animation-duration: calc(var(--animate-duration) / 2); + animation-duration: calc(var(--animate-duration) / 2); +} +.animated.fast { + -webkit-animation-duration: calc(1s * 0.8); + animation-duration: calc(1s * 0.8); + -webkit-animation-duration: calc(var(--animate-duration) * 0.8); + animation-duration: calc(var(--animate-duration) * 0.8); +} +.animated.slow { + -webkit-animation-duration: calc(1s * 2); + animation-duration: calc(1s * 2); + -webkit-animation-duration: calc(var(--animate-duration) * 2); + animation-duration: calc(var(--animate-duration) * 2); +} +.animated.slower { + -webkit-animation-duration: calc(1s * 3); + animation-duration: calc(1s * 3); + -webkit-animation-duration: calc(var(--animate-duration) * 3); + animation-duration: calc(var(--animate-duration) * 3); +} +@media print, (prefers-reduced-motion: reduce) { + .animated { + -webkit-animation-duration: 1ms !important; + animation-duration: 1ms !important; + -webkit-transition-duration: 1ms !important; + transition-duration: 1ms !important; + -webkit-animation-iteration-count: 1 !important; + animation-iteration-count: 1 !important; + } + + .animated[class*='Out'] { + opacity: 0; + } +} +/* Attention seekers */ +@-webkit-keyframes bounce { + from, + 20%, + 53%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 40%, + 43% { + -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1); + transform: translate3d(0, -30px, 0) scaleY(1.1); + } + + 70% { + -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05); + transform: translate3d(0, -15px, 0) scaleY(1.05); + } + + 80% { + -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + -webkit-transform: translate3d(0, 0, 0) scaleY(0.95); + transform: translate3d(0, 0, 0) scaleY(0.95); + } + + 90% { + -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02); + transform: translate3d(0, -4px, 0) scaleY(1.02); + } +} +@keyframes bounce { + from, + 20%, + 53%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 40%, + 43% { + -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1); + transform: translate3d(0, -30px, 0) scaleY(1.1); + } + + 70% { + -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05); + transform: translate3d(0, -15px, 0) scaleY(1.05); + } + + 80% { + -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + -webkit-transform: translate3d(0, 0, 0) scaleY(0.95); + transform: translate3d(0, 0, 0) scaleY(0.95); + } + + 90% { + -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02); + transform: translate3d(0, -4px, 0) scaleY(1.02); + } +} +.bounce { + -webkit-animation-name: bounce; + animation-name: bounce; + -webkit-transform-origin: center bottom; + transform-origin: center bottom; +} +@-webkit-keyframes flash { + from, + 50%, + to { + opacity: 1; + } + + 25%, + 75% { + opacity: 0; + } +} +@keyframes flash { + from, + 50%, + to { + opacity: 1; + } + + 25%, + 75% { + opacity: 0; + } +} +.flash { + -webkit-animation-name: flash; + animation-name: flash; +} +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ +@-webkit-keyframes pulse { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 50% { + -webkit-transform: scale3d(1.05, 1.05, 1.05); + transform: scale3d(1.05, 1.05, 1.05); + } + + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} +@keyframes pulse { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 50% { + -webkit-transform: scale3d(1.05, 1.05, 1.05); + transform: scale3d(1.05, 1.05, 1.05); + } + + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} +.pulse { + -webkit-animation-name: pulse; + animation-name: pulse; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; +} +@-webkit-keyframes rubberBand { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 30% { + -webkit-transform: scale3d(1.25, 0.75, 1); + transform: scale3d(1.25, 0.75, 1); + } + + 40% { + -webkit-transform: scale3d(0.75, 1.25, 1); + transform: scale3d(0.75, 1.25, 1); + } + + 50% { + -webkit-transform: scale3d(1.15, 0.85, 1); + transform: scale3d(1.15, 0.85, 1); + } + + 65% { + -webkit-transform: scale3d(0.95, 1.05, 1); + transform: scale3d(0.95, 1.05, 1); + } + + 75% { + -webkit-transform: scale3d(1.05, 0.95, 1); + transform: scale3d(1.05, 0.95, 1); + } + + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} +@keyframes rubberBand { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 30% { + -webkit-transform: scale3d(1.25, 0.75, 1); + transform: scale3d(1.25, 0.75, 1); + } + + 40% { + -webkit-transform: scale3d(0.75, 1.25, 1); + transform: scale3d(0.75, 1.25, 1); + } + + 50% { + -webkit-transform: scale3d(1.15, 0.85, 1); + transform: scale3d(1.15, 0.85, 1); + } + + 65% { + -webkit-transform: scale3d(0.95, 1.05, 1); + transform: scale3d(0.95, 1.05, 1); + } + + 75% { + -webkit-transform: scale3d(1.05, 0.95, 1); + transform: scale3d(1.05, 0.95, 1); + } + + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} +.rubberBand { + -webkit-animation-name: rubberBand; + animation-name: rubberBand; +} +@-webkit-keyframes shakeX { + from, + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 10%, + 30%, + 50%, + 70%, + 90% { + -webkit-transform: translate3d(-10px, 0, 0); + transform: translate3d(-10px, 0, 0); + } + + 20%, + 40%, + 60%, + 80% { + -webkit-transform: translate3d(10px, 0, 0); + transform: translate3d(10px, 0, 0); + } +} +@keyframes shakeX { + from, + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 10%, + 30%, + 50%, + 70%, + 90% { + -webkit-transform: translate3d(-10px, 0, 0); + transform: translate3d(-10px, 0, 0); + } + + 20%, + 40%, + 60%, + 80% { + -webkit-transform: translate3d(10px, 0, 0); + transform: translate3d(10px, 0, 0); + } +} +.shakeX { + -webkit-animation-name: shakeX; + animation-name: shakeX; +} +@-webkit-keyframes shakeY { + from, + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 10%, + 30%, + 50%, + 70%, + 90% { + -webkit-transform: translate3d(0, -10px, 0); + transform: translate3d(0, -10px, 0); + } + + 20%, + 40%, + 60%, + 80% { + -webkit-transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0); + } +} +@keyframes shakeY { + from, + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 10%, + 30%, + 50%, + 70%, + 90% { + -webkit-transform: translate3d(0, -10px, 0); + transform: translate3d(0, -10px, 0); + } + + 20%, + 40%, + 60%, + 80% { + -webkit-transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0); + } +} +.shakeY { + -webkit-animation-name: shakeY; + animation-name: shakeY; +} +@-webkit-keyframes headShake { + 0% { + -webkit-transform: translateX(0); + transform: translateX(0); + } + + 6.5% { + -webkit-transform: translateX(-6px) rotateY(-9deg); + transform: translateX(-6px) rotateY(-9deg); + } + + 18.5% { + -webkit-transform: translateX(5px) rotateY(7deg); + transform: translateX(5px) rotateY(7deg); + } + + 31.5% { + -webkit-transform: translateX(-3px) rotateY(-5deg); + transform: translateX(-3px) rotateY(-5deg); + } + + 43.5% { + -webkit-transform: translateX(2px) rotateY(3deg); + transform: translateX(2px) rotateY(3deg); + } + + 50% { + -webkit-transform: translateX(0); + transform: translateX(0); + } +} +@keyframes headShake { + 0% { + -webkit-transform: translateX(0); + transform: translateX(0); + } + + 6.5% { + -webkit-transform: translateX(-6px) rotateY(-9deg); + transform: translateX(-6px) rotateY(-9deg); + } + + 18.5% { + -webkit-transform: translateX(5px) rotateY(7deg); + transform: translateX(5px) rotateY(7deg); + } + + 31.5% { + -webkit-transform: translateX(-3px) rotateY(-5deg); + transform: translateX(-3px) rotateY(-5deg); + } + + 43.5% { + -webkit-transform: translateX(2px) rotateY(3deg); + transform: translateX(2px) rotateY(3deg); + } + + 50% { + -webkit-transform: translateX(0); + transform: translateX(0); + } +} +.headShake { + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + -webkit-animation-name: headShake; + animation-name: headShake; +} +@-webkit-keyframes swing { + 20% { + -webkit-transform: rotate3d(0, 0, 1, 15deg); + transform: rotate3d(0, 0, 1, 15deg); + } + + 40% { + -webkit-transform: rotate3d(0, 0, 1, -10deg); + transform: rotate3d(0, 0, 1, -10deg); + } + + 60% { + -webkit-transform: rotate3d(0, 0, 1, 5deg); + transform: rotate3d(0, 0, 1, 5deg); + } + + 80% { + -webkit-transform: rotate3d(0, 0, 1, -5deg); + transform: rotate3d(0, 0, 1, -5deg); + } + + to { + -webkit-transform: rotate3d(0, 0, 1, 0deg); + transform: rotate3d(0, 0, 1, 0deg); + } +} +@keyframes swing { + 20% { + -webkit-transform: rotate3d(0, 0, 1, 15deg); + transform: rotate3d(0, 0, 1, 15deg); + } + + 40% { + -webkit-transform: rotate3d(0, 0, 1, -10deg); + transform: rotate3d(0, 0, 1, -10deg); + } + + 60% { + -webkit-transform: rotate3d(0, 0, 1, 5deg); + transform: rotate3d(0, 0, 1, 5deg); + } + + 80% { + -webkit-transform: rotate3d(0, 0, 1, -5deg); + transform: rotate3d(0, 0, 1, -5deg); + } + + to { + -webkit-transform: rotate3d(0, 0, 1, 0deg); + transform: rotate3d(0, 0, 1, 0deg); + } +} +.swing { + -webkit-transform-origin: top center; + transform-origin: top center; + -webkit-animation-name: swing; + animation-name: swing; +} +@-webkit-keyframes tada { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 10%, + 20% { + -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); + transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); + } + + 30%, + 50%, + 70%, + 90% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); + } + + 40%, + 60%, + 80% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); + } + + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} +@keyframes tada { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 10%, + 20% { + -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); + transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); + } + + 30%, + 50%, + 70%, + 90% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); + } + + 40%, + 60%, + 80% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); + } + + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} +.tada { + -webkit-animation-name: tada; + animation-name: tada; +} +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ +@-webkit-keyframes wobble { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 15% { + -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); + transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); + } + + 30% { + -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); + transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); + } + + 45% { + -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); + transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); + } + + 60% { + -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); + transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); + } + + 75% { + -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); + transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +@keyframes wobble { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 15% { + -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); + transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); + } + + 30% { + -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); + transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); + } + + 45% { + -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); + transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); + } + + 60% { + -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); + transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); + } + + 75% { + -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); + transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.wobble { + -webkit-animation-name: wobble; + animation-name: wobble; +} +@-webkit-keyframes jello { + from, + 11.1%, + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 22.2% { + -webkit-transform: skewX(-12.5deg) skewY(-12.5deg); + transform: skewX(-12.5deg) skewY(-12.5deg); + } + + 33.3% { + -webkit-transform: skewX(6.25deg) skewY(6.25deg); + transform: skewX(6.25deg) skewY(6.25deg); + } + + 44.4% { + -webkit-transform: skewX(-3.125deg) skewY(-3.125deg); + transform: skewX(-3.125deg) skewY(-3.125deg); + } + + 55.5% { + -webkit-transform: skewX(1.5625deg) skewY(1.5625deg); + transform: skewX(1.5625deg) skewY(1.5625deg); + } + + 66.6% { + -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg); + transform: skewX(-0.78125deg) skewY(-0.78125deg); + } + + 77.7% { + -webkit-transform: skewX(0.390625deg) skewY(0.390625deg); + transform: skewX(0.390625deg) skewY(0.390625deg); + } + + 88.8% { + -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg); + transform: skewX(-0.1953125deg) skewY(-0.1953125deg); + } +} +@keyframes jello { + from, + 11.1%, + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 22.2% { + -webkit-transform: skewX(-12.5deg) skewY(-12.5deg); + transform: skewX(-12.5deg) skewY(-12.5deg); + } + + 33.3% { + -webkit-transform: skewX(6.25deg) skewY(6.25deg); + transform: skewX(6.25deg) skewY(6.25deg); + } + + 44.4% { + -webkit-transform: skewX(-3.125deg) skewY(-3.125deg); + transform: skewX(-3.125deg) skewY(-3.125deg); + } + + 55.5% { + -webkit-transform: skewX(1.5625deg) skewY(1.5625deg); + transform: skewX(1.5625deg) skewY(1.5625deg); + } + + 66.6% { + -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg); + transform: skewX(-0.78125deg) skewY(-0.78125deg); + } + + 77.7% { + -webkit-transform: skewX(0.390625deg) skewY(0.390625deg); + transform: skewX(0.390625deg) skewY(0.390625deg); + } + + 88.8% { + -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg); + transform: skewX(-0.1953125deg) skewY(-0.1953125deg); + } +} +.jello { + -webkit-animation-name: jello; + animation-name: jello; + -webkit-transform-origin: center; + transform-origin: center; +} +@-webkit-keyframes heartBeat { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + } + + 14% { + -webkit-transform: scale(1.3); + transform: scale(1.3); + } + + 28% { + -webkit-transform: scale(1); + transform: scale(1); + } + + 42% { + -webkit-transform: scale(1.3); + transform: scale(1.3); + } + + 70% { + -webkit-transform: scale(1); + transform: scale(1); + } +} +@keyframes heartBeat { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + } + + 14% { + -webkit-transform: scale(1.3); + transform: scale(1.3); + } + + 28% { + -webkit-transform: scale(1); + transform: scale(1); + } + + 42% { + -webkit-transform: scale(1.3); + transform: scale(1.3); + } + + 70% { + -webkit-transform: scale(1); + transform: scale(1); + } +} +.heartBeat { + -webkit-animation-name: heartBeat; + animation-name: heartBeat; + -webkit-animation-duration: calc(1s * 1.3); + animation-duration: calc(1s * 1.3); + -webkit-animation-duration: calc(var(--animate-duration) * 1.3); + animation-duration: calc(var(--animate-duration) * 1.3); + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; +} +/* Back entrances */ +@-webkit-keyframes backInDown { + 0% { + -webkit-transform: translateY(-1200px) scale(0.7); + transform: translateY(-1200px) scale(0.7); + opacity: 0.7; + } + + 80% { + -webkit-transform: translateY(0px) scale(0.7); + transform: translateY(0px) scale(0.7); + opacity: 0.7; + } + + 100% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 1; + } +} +@keyframes backInDown { + 0% { + -webkit-transform: translateY(-1200px) scale(0.7); + transform: translateY(-1200px) scale(0.7); + opacity: 0.7; + } + + 80% { + -webkit-transform: translateY(0px) scale(0.7); + transform: translateY(0px) scale(0.7); + opacity: 0.7; + } + + 100% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 1; + } +} +.backInDown { + -webkit-animation-name: backInDown; + animation-name: backInDown; +} +@-webkit-keyframes backInLeft { + 0% { + -webkit-transform: translateX(-2000px) scale(0.7); + transform: translateX(-2000px) scale(0.7); + opacity: 0.7; + } + + 80% { + -webkit-transform: translateX(0px) scale(0.7); + transform: translateX(0px) scale(0.7); + opacity: 0.7; + } + + 100% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 1; + } +} +@keyframes backInLeft { + 0% { + -webkit-transform: translateX(-2000px) scale(0.7); + transform: translateX(-2000px) scale(0.7); + opacity: 0.7; + } + + 80% { + -webkit-transform: translateX(0px) scale(0.7); + transform: translateX(0px) scale(0.7); + opacity: 0.7; + } + + 100% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 1; + } +} +.backInLeft { + -webkit-animation-name: backInLeft; + animation-name: backInLeft; +} +@-webkit-keyframes backInRight { + 0% { + -webkit-transform: translateX(2000px) scale(0.7); + transform: translateX(2000px) scale(0.7); + opacity: 0.7; + } + + 80% { + -webkit-transform: translateX(0px) scale(0.7); + transform: translateX(0px) scale(0.7); + opacity: 0.7; + } + + 100% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 1; + } +} +@keyframes backInRight { + 0% { + -webkit-transform: translateX(2000px) scale(0.7); + transform: translateX(2000px) scale(0.7); + opacity: 0.7; + } + + 80% { + -webkit-transform: translateX(0px) scale(0.7); + transform: translateX(0px) scale(0.7); + opacity: 0.7; + } + + 100% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 1; + } +} +.backInRight { + -webkit-animation-name: backInRight; + animation-name: backInRight; +} +@-webkit-keyframes backInUp { + 0% { + -webkit-transform: translateY(1200px) scale(0.7); + transform: translateY(1200px) scale(0.7); + opacity: 0.7; + } + + 80% { + -webkit-transform: translateY(0px) scale(0.7); + transform: translateY(0px) scale(0.7); + opacity: 0.7; + } + + 100% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 1; + } +} +@keyframes backInUp { + 0% { + -webkit-transform: translateY(1200px) scale(0.7); + transform: translateY(1200px) scale(0.7); + opacity: 0.7; + } + + 80% { + -webkit-transform: translateY(0px) scale(0.7); + transform: translateY(0px) scale(0.7); + opacity: 0.7; + } + + 100% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 1; + } +} +.backInUp { + -webkit-animation-name: backInUp; + animation-name: backInUp; +} +/* Back exits */ +@-webkit-keyframes backOutDown { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 1; + } + + 20% { + -webkit-transform: translateY(0px) scale(0.7); + transform: translateY(0px) scale(0.7); + opacity: 0.7; + } + + 100% { + -webkit-transform: translateY(700px) scale(0.7); + transform: translateY(700px) scale(0.7); + opacity: 0.7; + } +} +@keyframes backOutDown { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 1; + } + + 20% { + -webkit-transform: translateY(0px) scale(0.7); + transform: translateY(0px) scale(0.7); + opacity: 0.7; + } + + 100% { + -webkit-transform: translateY(700px) scale(0.7); + transform: translateY(700px) scale(0.7); + opacity: 0.7; + } +} +.backOutDown { + -webkit-animation-name: backOutDown; + animation-name: backOutDown; +} +@-webkit-keyframes backOutLeft { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 1; + } + + 20% { + -webkit-transform: translateX(0px) scale(0.7); + transform: translateX(0px) scale(0.7); + opacity: 0.7; + } + + 100% { + -webkit-transform: translateX(-2000px) scale(0.7); + transform: translateX(-2000px) scale(0.7); + opacity: 0.7; + } +} +@keyframes backOutLeft { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 1; + } + + 20% { + -webkit-transform: translateX(0px) scale(0.7); + transform: translateX(0px) scale(0.7); + opacity: 0.7; + } + + 100% { + -webkit-transform: translateX(-2000px) scale(0.7); + transform: translateX(-2000px) scale(0.7); + opacity: 0.7; + } +} +.backOutLeft { + -webkit-animation-name: backOutLeft; + animation-name: backOutLeft; +} +@-webkit-keyframes backOutRight { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 1; + } + + 20% { + -webkit-transform: translateX(0px) scale(0.7); + transform: translateX(0px) scale(0.7); + opacity: 0.7; + } + + 100% { + -webkit-transform: translateX(2000px) scale(0.7); + transform: translateX(2000px) scale(0.7); + opacity: 0.7; + } +} +@keyframes backOutRight { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 1; + } + + 20% { + -webkit-transform: translateX(0px) scale(0.7); + transform: translateX(0px) scale(0.7); + opacity: 0.7; + } + + 100% { + -webkit-transform: translateX(2000px) scale(0.7); + transform: translateX(2000px) scale(0.7); + opacity: 0.7; + } +} +.backOutRight { + -webkit-animation-name: backOutRight; + animation-name: backOutRight; +} +@-webkit-keyframes backOutUp { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 1; + } + + 20% { + -webkit-transform: translateY(0px) scale(0.7); + transform: translateY(0px) scale(0.7); + opacity: 0.7; + } + + 100% { + -webkit-transform: translateY(-700px) scale(0.7); + transform: translateY(-700px) scale(0.7); + opacity: 0.7; + } +} +@keyframes backOutUp { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 1; + } + + 20% { + -webkit-transform: translateY(0px) scale(0.7); + transform: translateY(0px) scale(0.7); + opacity: 0.7; + } + + 100% { + -webkit-transform: translateY(-700px) scale(0.7); + transform: translateY(-700px) scale(0.7); + opacity: 0.7; + } +} +.backOutUp { + -webkit-animation-name: backOutUp; + animation-name: backOutUp; +} +/* Bouncing entrances */ +@-webkit-keyframes bounceIn { + from, + 20%, + 40%, + 60%, + 80%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + 0% { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } + + 20% { + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1); + } + + 40% { + -webkit-transform: scale3d(0.9, 0.9, 0.9); + transform: scale3d(0.9, 0.9, 0.9); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(1.03, 1.03, 1.03); + transform: scale3d(1.03, 1.03, 1.03); + } + + 80% { + -webkit-transform: scale3d(0.97, 0.97, 0.97); + transform: scale3d(0.97, 0.97, 0.97); + } + + to { + opacity: 1; + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} +@keyframes bounceIn { + from, + 20%, + 40%, + 60%, + 80%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + 0% { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } + + 20% { + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1); + } + + 40% { + -webkit-transform: scale3d(0.9, 0.9, 0.9); + transform: scale3d(0.9, 0.9, 0.9); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(1.03, 1.03, 1.03); + transform: scale3d(1.03, 1.03, 1.03); + } + + 80% { + -webkit-transform: scale3d(0.97, 0.97, 0.97); + transform: scale3d(0.97, 0.97, 0.97); + } + + to { + opacity: 1; + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} +.bounceIn { + -webkit-animation-duration: calc(1s * 0.75); + animation-duration: calc(1s * 0.75); + -webkit-animation-duration: calc(var(--animate-duration) * 0.75); + animation-duration: calc(var(--animate-duration) * 0.75); + -webkit-animation-name: bounceIn; + animation-name: bounceIn; +} +@-webkit-keyframes bounceInDown { + from, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + 0% { + opacity: 0; + -webkit-transform: translate3d(0, -3000px, 0) scaleY(3); + transform: translate3d(0, -3000px, 0) scaleY(3); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9); + transform: translate3d(0, 25px, 0) scaleY(0.9); + } + + 75% { + -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95); + transform: translate3d(0, -10px, 0) scaleY(0.95); + } + + 90% { + -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985); + transform: translate3d(0, 5px, 0) scaleY(0.985); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +@keyframes bounceInDown { + from, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + 0% { + opacity: 0; + -webkit-transform: translate3d(0, -3000px, 0) scaleY(3); + transform: translate3d(0, -3000px, 0) scaleY(3); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9); + transform: translate3d(0, 25px, 0) scaleY(0.9); + } + + 75% { + -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95); + transform: translate3d(0, -10px, 0) scaleY(0.95); + } + + 90% { + -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985); + transform: translate3d(0, 5px, 0) scaleY(0.985); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.bounceInDown { + -webkit-animation-name: bounceInDown; + animation-name: bounceInDown; +} +@-webkit-keyframes bounceInLeft { + from, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + 0% { + opacity: 0; + -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3); + transform: translate3d(-3000px, 0, 0) scaleX(3); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(25px, 0, 0) scaleX(1); + transform: translate3d(25px, 0, 0) scaleX(1); + } + + 75% { + -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98); + transform: translate3d(-10px, 0, 0) scaleX(0.98); + } + + 90% { + -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995); + transform: translate3d(5px, 0, 0) scaleX(0.995); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +@keyframes bounceInLeft { + from, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + 0% { + opacity: 0; + -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3); + transform: translate3d(-3000px, 0, 0) scaleX(3); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(25px, 0, 0) scaleX(1); + transform: translate3d(25px, 0, 0) scaleX(1); + } + + 75% { + -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98); + transform: translate3d(-10px, 0, 0) scaleX(0.98); + } + + 90% { + -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995); + transform: translate3d(5px, 0, 0) scaleX(0.995); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.bounceInLeft { + -webkit-animation-name: bounceInLeft; + animation-name: bounceInLeft; +} +@-webkit-keyframes bounceInRight { + from, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + from { + opacity: 0; + -webkit-transform: translate3d(3000px, 0, 0) scaleX(3); + transform: translate3d(3000px, 0, 0) scaleX(3); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(-25px, 0, 0) scaleX(1); + transform: translate3d(-25px, 0, 0) scaleX(1); + } + + 75% { + -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98); + transform: translate3d(10px, 0, 0) scaleX(0.98); + } + + 90% { + -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995); + transform: translate3d(-5px, 0, 0) scaleX(0.995); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +@keyframes bounceInRight { + from, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + from { + opacity: 0; + -webkit-transform: translate3d(3000px, 0, 0) scaleX(3); + transform: translate3d(3000px, 0, 0) scaleX(3); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(-25px, 0, 0) scaleX(1); + transform: translate3d(-25px, 0, 0) scaleX(1); + } + + 75% { + -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98); + transform: translate3d(10px, 0, 0) scaleX(0.98); + } + + 90% { + -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995); + transform: translate3d(-5px, 0, 0) scaleX(0.995); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.bounceInRight { + -webkit-animation-name: bounceInRight; + animation-name: bounceInRight; +} +@-webkit-keyframes bounceInUp { + from, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + from { + opacity: 0; + -webkit-transform: translate3d(0, 3000px, 0) scaleY(5); + transform: translate3d(0, 3000px, 0) scaleY(5); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9); + transform: translate3d(0, -20px, 0) scaleY(0.9); + } + + 75% { + -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95); + transform: translate3d(0, 10px, 0) scaleY(0.95); + } + + 90% { + -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985); + transform: translate3d(0, -5px, 0) scaleY(0.985); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +@keyframes bounceInUp { + from, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + from { + opacity: 0; + -webkit-transform: translate3d(0, 3000px, 0) scaleY(5); + transform: translate3d(0, 3000px, 0) scaleY(5); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9); + transform: translate3d(0, -20px, 0) scaleY(0.9); + } + + 75% { + -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95); + transform: translate3d(0, 10px, 0) scaleY(0.95); + } + + 90% { + -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985); + transform: translate3d(0, -5px, 0) scaleY(0.985); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.bounceInUp { + -webkit-animation-name: bounceInUp; + animation-name: bounceInUp; +} +/* Bouncing exits */ +@-webkit-keyframes bounceOut { + 20% { + -webkit-transform: scale3d(0.9, 0.9, 0.9); + transform: scale3d(0.9, 0.9, 0.9); + } + + 50%, + 55% { + opacity: 1; + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1); + } + + to { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } +} +@keyframes bounceOut { + 20% { + -webkit-transform: scale3d(0.9, 0.9, 0.9); + transform: scale3d(0.9, 0.9, 0.9); + } + + 50%, + 55% { + opacity: 1; + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1); + } + + to { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } +} +.bounceOut { + -webkit-animation-duration: calc(1s * 0.75); + animation-duration: calc(1s * 0.75); + -webkit-animation-duration: calc(var(--animate-duration) * 0.75); + animation-duration: calc(var(--animate-duration) * 0.75); + -webkit-animation-name: bounceOut; + animation-name: bounceOut; +} +@-webkit-keyframes bounceOutDown { + 20% { + -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985); + transform: translate3d(0, 10px, 0) scaleY(0.985); + } + + 40%, + 45% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9); + transform: translate3d(0, -20px, 0) scaleY(0.9); + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0) scaleY(3); + transform: translate3d(0, 2000px, 0) scaleY(3); + } +} +@keyframes bounceOutDown { + 20% { + -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985); + transform: translate3d(0, 10px, 0) scaleY(0.985); + } + + 40%, + 45% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9); + transform: translate3d(0, -20px, 0) scaleY(0.9); + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0) scaleY(3); + transform: translate3d(0, 2000px, 0) scaleY(3); + } +} +.bounceOutDown { + -webkit-animation-name: bounceOutDown; + animation-name: bounceOutDown; +} +@-webkit-keyframes bounceOutLeft { + 20% { + opacity: 1; + -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9); + transform: translate3d(20px, 0, 0) scaleX(0.9); + } + + to { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2); + transform: translate3d(-2000px, 0, 0) scaleX(2); + } +} +@keyframes bounceOutLeft { + 20% { + opacity: 1; + -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9); + transform: translate3d(20px, 0, 0) scaleX(0.9); + } + + to { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2); + transform: translate3d(-2000px, 0, 0) scaleX(2); + } +} +.bounceOutLeft { + -webkit-animation-name: bounceOutLeft; + animation-name: bounceOutLeft; +} +@-webkit-keyframes bounceOutRight { + 20% { + opacity: 1; + -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9); + transform: translate3d(-20px, 0, 0) scaleX(0.9); + } + + to { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0) scaleX(2); + transform: translate3d(2000px, 0, 0) scaleX(2); + } +} +@keyframes bounceOutRight { + 20% { + opacity: 1; + -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9); + transform: translate3d(-20px, 0, 0) scaleX(0.9); + } + + to { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0) scaleX(2); + transform: translate3d(2000px, 0, 0) scaleX(2); + } +} +.bounceOutRight { + -webkit-animation-name: bounceOutRight; + animation-name: bounceOutRight; +} +@-webkit-keyframes bounceOutUp { + 20% { + -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985); + transform: translate3d(0, -10px, 0) scaleY(0.985); + } + + 40%, + 45% { + opacity: 1; + -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9); + transform: translate3d(0, 20px, 0) scaleY(0.9); + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0) scaleY(3); + transform: translate3d(0, -2000px, 0) scaleY(3); + } +} +@keyframes bounceOutUp { + 20% { + -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985); + transform: translate3d(0, -10px, 0) scaleY(0.985); + } + + 40%, + 45% { + opacity: 1; + -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9); + transform: translate3d(0, 20px, 0) scaleY(0.9); + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0) scaleY(3); + transform: translate3d(0, -2000px, 0) scaleY(3); + } +} +.bounceOutUp { + -webkit-animation-name: bounceOutUp; + animation-name: bounceOutUp; +} +/* Fading entrances */ +@-webkit-keyframes fadeIn { + from { + opacity: 0; + } + + to { + opacity: 1; + } +} +@keyframes fadeIn { + from { + opacity: 0; + } + + to { + opacity: 1; + } +} +.fadeIn { + -webkit-animation-name: fadeIn; + animation-name: fadeIn; +} +@-webkit-keyframes fadeInDown { + from { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +@keyframes fadeInDown { + from { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.fadeInDown { + -webkit-animation-name: fadeInDown; + animation-name: fadeInDown; +} +@-webkit-keyframes fadeInDownBig { + from { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +@keyframes fadeInDownBig { + from { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.fadeInDownBig { + -webkit-animation-name: fadeInDownBig; + animation-name: fadeInDownBig; +} +@-webkit-keyframes fadeInLeft { + from { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +@keyframes fadeInLeft { + from { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.fadeInLeft { + -webkit-animation-name: fadeInLeft; + animation-name: fadeInLeft; +} +@-webkit-keyframes fadeInLeftBig { + from { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +@keyframes fadeInLeftBig { + from { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.fadeInLeftBig { + -webkit-animation-name: fadeInLeftBig; + animation-name: fadeInLeftBig; +} +@-webkit-keyframes fadeInRight { + from { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +@keyframes fadeInRight { + from { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.fadeInRight { + -webkit-animation-name: fadeInRight; + animation-name: fadeInRight; +} +@-webkit-keyframes fadeInRightBig { + from { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +@keyframes fadeInRightBig { + from { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.fadeInRightBig { + -webkit-animation-name: fadeInRightBig; + animation-name: fadeInRightBig; +} +@-webkit-keyframes fadeInUp { + from { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +@keyframes fadeInUp { + from { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.fadeInUp { + -webkit-animation-name: fadeInUp; + animation-name: fadeInUp; +} +@-webkit-keyframes fadeInUpBig { + from { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +@keyframes fadeInUpBig { + from { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.fadeInUpBig { + -webkit-animation-name: fadeInUpBig; + animation-name: fadeInUpBig; +} +@-webkit-keyframes fadeInTopLeft { + from { + opacity: 0; + -webkit-transform: translate3d(-100%, -100%, 0); + transform: translate3d(-100%, -100%, 0); + } + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +@keyframes fadeInTopLeft { + from { + opacity: 0; + -webkit-transform: translate3d(-100%, -100%, 0); + transform: translate3d(-100%, -100%, 0); + } + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.fadeInTopLeft { + -webkit-animation-name: fadeInTopLeft; + animation-name: fadeInTopLeft; +} +@-webkit-keyframes fadeInTopRight { + from { + opacity: 0; + -webkit-transform: translate3d(100%, -100%, 0); + transform: translate3d(100%, -100%, 0); + } + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +@keyframes fadeInTopRight { + from { + opacity: 0; + -webkit-transform: translate3d(100%, -100%, 0); + transform: translate3d(100%, -100%, 0); + } + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.fadeInTopRight { + -webkit-animation-name: fadeInTopRight; + animation-name: fadeInTopRight; +} +@-webkit-keyframes fadeInBottomLeft { + from { + opacity: 0; + -webkit-transform: translate3d(-100%, 100%, 0); + transform: translate3d(-100%, 100%, 0); + } + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +@keyframes fadeInBottomLeft { + from { + opacity: 0; + -webkit-transform: translate3d(-100%, 100%, 0); + transform: translate3d(-100%, 100%, 0); + } + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.fadeInBottomLeft { + -webkit-animation-name: fadeInBottomLeft; + animation-name: fadeInBottomLeft; +} +@-webkit-keyframes fadeInBottomRight { + from { + opacity: 0; + -webkit-transform: translate3d(100%, 100%, 0); + transform: translate3d(100%, 100%, 0); + } + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +@keyframes fadeInBottomRight { + from { + opacity: 0; + -webkit-transform: translate3d(100%, 100%, 0); + transform: translate3d(100%, 100%, 0); + } + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.fadeInBottomRight { + -webkit-animation-name: fadeInBottomRight; + animation-name: fadeInBottomRight; +} +/* Fading exits */ +@-webkit-keyframes fadeOut { + from { + opacity: 1; + } + + to { + opacity: 0; + } +} +@keyframes fadeOut { + from { + opacity: 1; + } + + to { + opacity: 0; + } +} +.fadeOut { + -webkit-animation-name: fadeOut; + animation-name: fadeOut; +} +@-webkit-keyframes fadeOutDown { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } +} +@keyframes fadeOutDown { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } +} +.fadeOutDown { + -webkit-animation-name: fadeOutDown; + animation-name: fadeOutDown; +} +@-webkit-keyframes fadeOutDownBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } +} +@keyframes fadeOutDownBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } +} +.fadeOutDownBig { + -webkit-animation-name: fadeOutDownBig; + animation-name: fadeOutDownBig; +} +@-webkit-keyframes fadeOutLeft { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } +} +@keyframes fadeOutLeft { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } +} +.fadeOutLeft { + -webkit-animation-name: fadeOutLeft; + animation-name: fadeOutLeft; +} +@-webkit-keyframes fadeOutLeftBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } +} +@keyframes fadeOutLeftBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } +} +.fadeOutLeftBig { + -webkit-animation-name: fadeOutLeftBig; + animation-name: fadeOutLeftBig; +} +@-webkit-keyframes fadeOutRight { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } +} +@keyframes fadeOutRight { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } +} +.fadeOutRight { + -webkit-animation-name: fadeOutRight; + animation-name: fadeOutRight; +} +@-webkit-keyframes fadeOutRightBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } +} +@keyframes fadeOutRightBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } +} +.fadeOutRightBig { + -webkit-animation-name: fadeOutRightBig; + animation-name: fadeOutRightBig; +} +@-webkit-keyframes fadeOutUp { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } +} +@keyframes fadeOutUp { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } +} +.fadeOutUp { + -webkit-animation-name: fadeOutUp; + animation-name: fadeOutUp; +} +@-webkit-keyframes fadeOutUpBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } +} +@keyframes fadeOutUpBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } +} +.fadeOutUpBig { + -webkit-animation-name: fadeOutUpBig; + animation-name: fadeOutUpBig; +} +@-webkit-keyframes fadeOutTopLeft { + from { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + to { + opacity: 0; + -webkit-transform: translate3d(-100%, -100%, 0); + transform: translate3d(-100%, -100%, 0); + } +} +@keyframes fadeOutTopLeft { + from { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + to { + opacity: 0; + -webkit-transform: translate3d(-100%, -100%, 0); + transform: translate3d(-100%, -100%, 0); + } +} +.fadeOutTopLeft { + -webkit-animation-name: fadeOutTopLeft; + animation-name: fadeOutTopLeft; +} +@-webkit-keyframes fadeOutTopRight { + from { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + to { + opacity: 0; + -webkit-transform: translate3d(100%, -100%, 0); + transform: translate3d(100%, -100%, 0); + } +} +@keyframes fadeOutTopRight { + from { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + to { + opacity: 0; + -webkit-transform: translate3d(100%, -100%, 0); + transform: translate3d(100%, -100%, 0); + } +} +.fadeOutTopRight { + -webkit-animation-name: fadeOutTopRight; + animation-name: fadeOutTopRight; +} +@-webkit-keyframes fadeOutBottomRight { + from { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + to { + opacity: 0; + -webkit-transform: translate3d(100%, 100%, 0); + transform: translate3d(100%, 100%, 0); + } +} +@keyframes fadeOutBottomRight { + from { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + to { + opacity: 0; + -webkit-transform: translate3d(100%, 100%, 0); + transform: translate3d(100%, 100%, 0); + } +} +.fadeOutBottomRight { + -webkit-animation-name: fadeOutBottomRight; + animation-name: fadeOutBottomRight; +} +@-webkit-keyframes fadeOutBottomLeft { + from { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + to { + opacity: 0; + -webkit-transform: translate3d(-100%, 100%, 0); + transform: translate3d(-100%, 100%, 0); + } +} +@keyframes fadeOutBottomLeft { + from { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + to { + opacity: 0; + -webkit-transform: translate3d(-100%, 100%, 0); + transform: translate3d(-100%, 100%, 0); + } +} +.fadeOutBottomLeft { + -webkit-animation-name: fadeOutBottomLeft; + animation-name: fadeOutBottomLeft; +} +/* Flippers */ +@-webkit-keyframes flip { + from { + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg); + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + + 40% { + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) + rotate3d(0, 1, 0, -190deg); + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) + rotate3d(0, 1, 0, -190deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + + 50% { + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) + rotate3d(0, 1, 0, -170deg); + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) + rotate3d(0, 1, 0, -170deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 80% { + -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) + rotate3d(0, 1, 0, 0deg); + transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) + rotate3d(0, 1, 0, 0deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + to { + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg); + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } +} +@keyframes flip { + from { + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg); + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + + 40% { + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) + rotate3d(0, 1, 0, -190deg); + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) + rotate3d(0, 1, 0, -190deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + + 50% { + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) + rotate3d(0, 1, 0, -170deg); + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) + rotate3d(0, 1, 0, -170deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 80% { + -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) + rotate3d(0, 1, 0, 0deg); + transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) + rotate3d(0, 1, 0, 0deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + to { + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg); + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } +} +.animated.flip { + -webkit-backface-visibility: visible; + backface-visibility: visible; + -webkit-animation-name: flip; + animation-name: flip; +} +@-webkit-keyframes flipInX { + from { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0; + } + + 40% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 60% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); + transform: perspective(400px) rotate3d(1, 0, 0, 10deg); + opacity: 1; + } + + 80% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); + transform: perspective(400px) rotate3d(1, 0, 0, -5deg); + } + + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } +} +@keyframes flipInX { + from { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0; + } + + 40% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 60% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); + transform: perspective(400px) rotate3d(1, 0, 0, 10deg); + opacity: 1; + } + + 80% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); + transform: perspective(400px) rotate3d(1, 0, 0, -5deg); + } + + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } +} +.flipInX { + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; + -webkit-animation-name: flipInX; + animation-name: flipInX; +} +@-webkit-keyframes flipInY { + from { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0; + } + + 40% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg); + transform: perspective(400px) rotate3d(0, 1, 0, -20deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 60% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg); + transform: perspective(400px) rotate3d(0, 1, 0, 10deg); + opacity: 1; + } + + 80% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg); + transform: perspective(400px) rotate3d(0, 1, 0, -5deg); + } + + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } +} +@keyframes flipInY { + from { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0; + } + + 40% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg); + transform: perspective(400px) rotate3d(0, 1, 0, -20deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 60% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg); + transform: perspective(400px) rotate3d(0, 1, 0, 10deg); + opacity: 1; + } + + 80% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg); + transform: perspective(400px) rotate3d(0, 1, 0, -5deg); + } + + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } +} +.flipInY { + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; + -webkit-animation-name: flipInY; + animation-name: flipInY; +} +@-webkit-keyframes flipOutX { + from { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } + + 30% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + opacity: 1; + } + + to { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + opacity: 0; + } +} +@keyframes flipOutX { + from { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } + + 30% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + opacity: 1; + } + + to { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + opacity: 0; + } +} +.flipOutX { + -webkit-animation-duration: calc(1s * 0.75); + animation-duration: calc(1s * 0.75); + -webkit-animation-duration: calc(var(--animate-duration) * 0.75); + animation-duration: calc(var(--animate-duration) * 0.75); + -webkit-animation-name: flipOutX; + animation-name: flipOutX; + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; +} +@-webkit-keyframes flipOutY { + from { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } + + 30% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg); + transform: perspective(400px) rotate3d(0, 1, 0, -15deg); + opacity: 1; + } + + to { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + opacity: 0; + } +} +@keyframes flipOutY { + from { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } + + 30% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg); + transform: perspective(400px) rotate3d(0, 1, 0, -15deg); + opacity: 1; + } + + to { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + opacity: 0; + } +} +.flipOutY { + -webkit-animation-duration: calc(1s * 0.75); + animation-duration: calc(1s * 0.75); + -webkit-animation-duration: calc(var(--animate-duration) * 0.75); + animation-duration: calc(var(--animate-duration) * 0.75); + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; + -webkit-animation-name: flipOutY; + animation-name: flipOutY; +} +/* Lightspeed */ +@-webkit-keyframes lightSpeedInRight { + from { + -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); + transform: translate3d(100%, 0, 0) skewX(-30deg); + opacity: 0; + } + + 60% { + -webkit-transform: skewX(20deg); + transform: skewX(20deg); + opacity: 1; + } + + 80% { + -webkit-transform: skewX(-5deg); + transform: skewX(-5deg); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +@keyframes lightSpeedInRight { + from { + -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); + transform: translate3d(100%, 0, 0) skewX(-30deg); + opacity: 0; + } + + 60% { + -webkit-transform: skewX(20deg); + transform: skewX(20deg); + opacity: 1; + } + + 80% { + -webkit-transform: skewX(-5deg); + transform: skewX(-5deg); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.lightSpeedInRight { + -webkit-animation-name: lightSpeedInRight; + animation-name: lightSpeedInRight; + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; +} +@-webkit-keyframes lightSpeedInLeft { + from { + -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg); + transform: translate3d(-100%, 0, 0) skewX(30deg); + opacity: 0; + } + + 60% { + -webkit-transform: skewX(-20deg); + transform: skewX(-20deg); + opacity: 1; + } + + 80% { + -webkit-transform: skewX(5deg); + transform: skewX(5deg); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +@keyframes lightSpeedInLeft { + from { + -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg); + transform: translate3d(-100%, 0, 0) skewX(30deg); + opacity: 0; + } + + 60% { + -webkit-transform: skewX(-20deg); + transform: skewX(-20deg); + opacity: 1; + } + + 80% { + -webkit-transform: skewX(5deg); + transform: skewX(5deg); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.lightSpeedInLeft { + -webkit-animation-name: lightSpeedInLeft; + animation-name: lightSpeedInLeft; + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; +} +@-webkit-keyframes lightSpeedOutRight { + from { + opacity: 1; + } + + to { + -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); + transform: translate3d(100%, 0, 0) skewX(30deg); + opacity: 0; + } +} +@keyframes lightSpeedOutRight { + from { + opacity: 1; + } + + to { + -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); + transform: translate3d(100%, 0, 0) skewX(30deg); + opacity: 0; + } +} +.lightSpeedOutRight { + -webkit-animation-name: lightSpeedOutRight; + animation-name: lightSpeedOutRight; + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; +} +@-webkit-keyframes lightSpeedOutLeft { + from { + opacity: 1; + } + + to { + -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg); + transform: translate3d(-100%, 0, 0) skewX(-30deg); + opacity: 0; + } +} +@keyframes lightSpeedOutLeft { + from { + opacity: 1; + } + + to { + -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg); + transform: translate3d(-100%, 0, 0) skewX(-30deg); + opacity: 0; + } +} +.lightSpeedOutLeft { + -webkit-animation-name: lightSpeedOutLeft; + animation-name: lightSpeedOutLeft; + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; +} +/* Rotating entrances */ +@-webkit-keyframes rotateIn { + from { + -webkit-transform: rotate3d(0, 0, 1, -200deg); + transform: rotate3d(0, 0, 1, -200deg); + opacity: 0; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} +@keyframes rotateIn { + from { + -webkit-transform: rotate3d(0, 0, 1, -200deg); + transform: rotate3d(0, 0, 1, -200deg); + opacity: 0; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} +.rotateIn { + -webkit-animation-name: rotateIn; + animation-name: rotateIn; + -webkit-transform-origin: center; + transform-origin: center; +} +@-webkit-keyframes rotateInDownLeft { + from { + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} +@keyframes rotateInDownLeft { + from { + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} +.rotateInDownLeft { + -webkit-animation-name: rotateInDownLeft; + animation-name: rotateInDownLeft; + -webkit-transform-origin: left bottom; + transform-origin: left bottom; +} +@-webkit-keyframes rotateInDownRight { + from { + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} +@keyframes rotateInDownRight { + from { + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} +.rotateInDownRight { + -webkit-animation-name: rotateInDownRight; + animation-name: rotateInDownRight; + -webkit-transform-origin: right bottom; + transform-origin: right bottom; +} +@-webkit-keyframes rotateInUpLeft { + from { + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} +@keyframes rotateInUpLeft { + from { + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} +.rotateInUpLeft { + -webkit-animation-name: rotateInUpLeft; + animation-name: rotateInUpLeft; + -webkit-transform-origin: left bottom; + transform-origin: left bottom; +} +@-webkit-keyframes rotateInUpRight { + from { + -webkit-transform: rotate3d(0, 0, 1, -90deg); + transform: rotate3d(0, 0, 1, -90deg); + opacity: 0; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} +@keyframes rotateInUpRight { + from { + -webkit-transform: rotate3d(0, 0, 1, -90deg); + transform: rotate3d(0, 0, 1, -90deg); + opacity: 0; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} +.rotateInUpRight { + -webkit-animation-name: rotateInUpRight; + animation-name: rotateInUpRight; + -webkit-transform-origin: right bottom; + transform-origin: right bottom; +} +/* Rotating exits */ +@-webkit-keyframes rotateOut { + from { + opacity: 1; + } + + to { + -webkit-transform: rotate3d(0, 0, 1, 200deg); + transform: rotate3d(0, 0, 1, 200deg); + opacity: 0; + } +} +@keyframes rotateOut { + from { + opacity: 1; + } + + to { + -webkit-transform: rotate3d(0, 0, 1, 200deg); + transform: rotate3d(0, 0, 1, 200deg); + opacity: 0; + } +} +.rotateOut { + -webkit-animation-name: rotateOut; + animation-name: rotateOut; + -webkit-transform-origin: center; + transform-origin: center; +} +@-webkit-keyframes rotateOutDownLeft { + from { + opacity: 1; + } + + to { + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } +} +@keyframes rotateOutDownLeft { + from { + opacity: 1; + } + + to { + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } +} +.rotateOutDownLeft { + -webkit-animation-name: rotateOutDownLeft; + animation-name: rotateOutDownLeft; + -webkit-transform-origin: left bottom; + transform-origin: left bottom; +} +@-webkit-keyframes rotateOutDownRight { + from { + opacity: 1; + } + + to { + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } +} +@keyframes rotateOutDownRight { + from { + opacity: 1; + } + + to { + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } +} +.rotateOutDownRight { + -webkit-animation-name: rotateOutDownRight; + animation-name: rotateOutDownRight; + -webkit-transform-origin: right bottom; + transform-origin: right bottom; +} +@-webkit-keyframes rotateOutUpLeft { + from { + opacity: 1; + } + + to { + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } +} +@keyframes rotateOutUpLeft { + from { + opacity: 1; + } + + to { + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } +} +.rotateOutUpLeft { + -webkit-animation-name: rotateOutUpLeft; + animation-name: rotateOutUpLeft; + -webkit-transform-origin: left bottom; + transform-origin: left bottom; +} +@-webkit-keyframes rotateOutUpRight { + from { + opacity: 1; + } + + to { + -webkit-transform: rotate3d(0, 0, 1, 90deg); + transform: rotate3d(0, 0, 1, 90deg); + opacity: 0; + } +} +@keyframes rotateOutUpRight { + from { + opacity: 1; + } + + to { + -webkit-transform: rotate3d(0, 0, 1, 90deg); + transform: rotate3d(0, 0, 1, 90deg); + opacity: 0; + } +} +.rotateOutUpRight { + -webkit-animation-name: rotateOutUpRight; + animation-name: rotateOutUpRight; + -webkit-transform-origin: right bottom; + transform-origin: right bottom; +} +/* Specials */ +@-webkit-keyframes hinge { + 0% { + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + + 20%, + 60% { + -webkit-transform: rotate3d(0, 0, 1, 80deg); + transform: rotate3d(0, 0, 1, 80deg); + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + + 40%, + 80% { + -webkit-transform: rotate3d(0, 0, 1, 60deg); + transform: rotate3d(0, 0, 1, 60deg); + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + opacity: 1; + } + + to { + -webkit-transform: translate3d(0, 700px, 0); + transform: translate3d(0, 700px, 0); + opacity: 0; + } +} +@keyframes hinge { + 0% { + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + + 20%, + 60% { + -webkit-transform: rotate3d(0, 0, 1, 80deg); + transform: rotate3d(0, 0, 1, 80deg); + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + + 40%, + 80% { + -webkit-transform: rotate3d(0, 0, 1, 60deg); + transform: rotate3d(0, 0, 1, 60deg); + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + opacity: 1; + } + + to { + -webkit-transform: translate3d(0, 700px, 0); + transform: translate3d(0, 700px, 0); + opacity: 0; + } +} +.hinge { + -webkit-animation-duration: calc(1s * 2); + animation-duration: calc(1s * 2); + -webkit-animation-duration: calc(var(--animate-duration) * 2); + animation-duration: calc(var(--animate-duration) * 2); + -webkit-animation-name: hinge; + animation-name: hinge; + -webkit-transform-origin: top left; + transform-origin: top left; +} +@-webkit-keyframes jackInTheBox { + from { + opacity: 0; + -webkit-transform: scale(0.1) rotate(30deg); + transform: scale(0.1) rotate(30deg); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + } + + 50% { + -webkit-transform: rotate(-10deg); + transform: rotate(-10deg); + } + + 70% { + -webkit-transform: rotate(3deg); + transform: rotate(3deg); + } + + to { + opacity: 1; + -webkit-transform: scale(1); + transform: scale(1); + } +} +@keyframes jackInTheBox { + from { + opacity: 0; + -webkit-transform: scale(0.1) rotate(30deg); + transform: scale(0.1) rotate(30deg); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + } + + 50% { + -webkit-transform: rotate(-10deg); + transform: rotate(-10deg); + } + + 70% { + -webkit-transform: rotate(3deg); + transform: rotate(3deg); + } + + to { + opacity: 1; + -webkit-transform: scale(1); + transform: scale(1); + } +} +.jackInTheBox { + -webkit-animation-name: jackInTheBox; + animation-name: jackInTheBox; +} +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ +@-webkit-keyframes rollIn { + from { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); + transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +@keyframes rollIn { + from { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); + transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.rollIn { + -webkit-animation-name: rollIn; + animation-name: rollIn; +} +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ +@-webkit-keyframes rollOut { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); + transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); + } +} +@keyframes rollOut { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); + transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); + } +} +.rollOut { + -webkit-animation-name: rollOut; + animation-name: rollOut; +} +/* Zooming entrances */ +@-webkit-keyframes zoomIn { + from { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } + + 50% { + opacity: 1; + } +} +@keyframes zoomIn { + from { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } + + 50% { + opacity: 1; + } +} +.zoomIn { + -webkit-animation-name: zoomIn; + animation-name: zoomIn; +} +@-webkit-keyframes zoomInDown { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} +@keyframes zoomInDown { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} +.zoomInDown { + -webkit-animation-name: zoomInDown; + animation-name: zoomInDown; +} +@-webkit-keyframes zoomInLeft { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} +@keyframes zoomInLeft { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} +.zoomInLeft { + -webkit-animation-name: zoomInLeft; + animation-name: zoomInLeft; +} +@-webkit-keyframes zoomInRight { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} +@keyframes zoomInRight { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} +.zoomInRight { + -webkit-animation-name: zoomInRight; + animation-name: zoomInRight; +} +@-webkit-keyframes zoomInUp { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} +@keyframes zoomInUp { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} +.zoomInUp { + -webkit-animation-name: zoomInUp; + animation-name: zoomInUp; +} +/* Zooming exits */ +@-webkit-keyframes zoomOut { + from { + opacity: 1; + } + + 50% { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } + + to { + opacity: 0; + } +} +@keyframes zoomOut { + from { + opacity: 1; + } + + 50% { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } + + to { + opacity: 0; + } +} +.zoomOut { + -webkit-animation-name: zoomOut; + animation-name: zoomOut; +} +@-webkit-keyframes zoomOutDown { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + to { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} +@keyframes zoomOutDown { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + to { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} +.zoomOutDown { + -webkit-animation-name: zoomOutDown; + animation-name: zoomOutDown; + -webkit-transform-origin: center bottom; + transform-origin: center bottom; +} +@-webkit-keyframes zoomOutLeft { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0); + transform: scale(0.1) translate3d(-2000px, 0, 0); + } +} +@keyframes zoomOutLeft { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0); + transform: scale(0.1) translate3d(-2000px, 0, 0); + } +} +.zoomOutLeft { + -webkit-animation-name: zoomOutLeft; + animation-name: zoomOutLeft; + -webkit-transform-origin: left center; + transform-origin: left center; +} +@-webkit-keyframes zoomOutRight { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: scale(0.1) translate3d(2000px, 0, 0); + transform: scale(0.1) translate3d(2000px, 0, 0); + } +} +@keyframes zoomOutRight { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: scale(0.1) translate3d(2000px, 0, 0); + transform: scale(0.1) translate3d(2000px, 0, 0); + } +} +.zoomOutRight { + -webkit-animation-name: zoomOutRight; + animation-name: zoomOutRight; + -webkit-transform-origin: right center; + transform-origin: right center; +} +@-webkit-keyframes zoomOutUp { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + to { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} +@keyframes zoomOutUp { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + to { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} +.zoomOutUp { + -webkit-animation-name: zoomOutUp; + animation-name: zoomOutUp; + -webkit-transform-origin: center bottom; + transform-origin: center bottom; +} +/* Sliding entrances */ +@-webkit-keyframes slideInDown { + from { + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +@keyframes slideInDown { + from { + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.slideInDown { + -webkit-animation-name: slideInDown; + animation-name: slideInDown; +} +@-webkit-keyframes slideInLeft { + from { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +@keyframes slideInLeft { + from { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.slideInLeft { + -webkit-animation-name: slideInLeft; + animation-name: slideInLeft; +} +@-webkit-keyframes slideInRight { + from { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +@keyframes slideInRight { + from { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.slideInRight { + -webkit-animation-name: slideInRight; + animation-name: slideInRight; +} +@-webkit-keyframes slideInUp { + from { + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +@keyframes slideInUp { + from { + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.slideInUp { + -webkit-animation-name: slideInUp; + animation-name: slideInUp; +} +/* Sliding exits */ +@-webkit-keyframes slideOutDown { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } +} +@keyframes slideOutDown { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } +} +.slideOutDown { + -webkit-animation-name: slideOutDown; + animation-name: slideOutDown; +} +@-webkit-keyframes slideOutLeft { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } +} +@keyframes slideOutLeft { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } +} +.slideOutLeft { + -webkit-animation-name: slideOutLeft; + animation-name: slideOutLeft; +} +@-webkit-keyframes slideOutRight { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } +} +@keyframes slideOutRight { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } +} +.slideOutRight { + -webkit-animation-name: slideOutRight; + animation-name: slideOutRight; +} +@-webkit-keyframes slideOutUp { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } +} +@keyframes slideOutUp { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } +} +.slideOutUp { + -webkit-animation-name: slideOutUp; + animation-name: slideOutUp; +} \ No newline at end of file diff --git a/TSC2.Client/wwwroot/css/calendar.css b/TSC2.Client/wwwroot/css/calendar.css new file mode 100644 index 0000000..cd69862 --- /dev/null +++ b/TSC2.Client/wwwroot/css/calendar.css @@ -0,0 +1,518 @@ +.fc-calendar-container { + position: relative; + width: 100%; + height: auto; +} + +.fc-calendar { + width: 100%; + height: 100%; +} + +.fc-calendar .fc-head { + background: #ccc; + color: #fff; +} + +.fc-calendar .fc-body { + position: relative; + width: 100%; + height: 100%; + height: -moz-calc(100% - 30px); + height: -webkit-calc(100% - 30px); + height: calc(100% - 30px); + border: 1px solid #ddd; +} + +.fc-calendar .fc-row { + width: 100%; + border-bottom: 1px solid #ddd; +} + +.fc-four-rows .fc-row { + height: 25%; +} + +.fc-five-rows .fc-row { + height: 20%; +} + +.fc-six-rows .fc-row { + height: 16.66%; + height: -moz-calc(100%/6); + height: -webkit-calc(100%/6); + height: calc(100%/6); +} + +.fc-calendar .fc-row > div, +.fc-calendar .fc-head > div { + display: inline-block; + height: 100%; + width: 14.28%; /* 100% / 7 */ + width: -moz-calc(100%/7); + width: -webkit-calc(100%/7); + width: calc(100%/7); + position: relative; +} + +/* IE 9 is rounding up the calc it seems */ +.ie9 .fc-calendar .fc-row > div, +.ie9 .fc-calendar .fc-head > div { + width: 14.2%; +} + +.fc-calendar .fc-row > div { + border-right: 1px solid #ddd; + padding: 4px; + overflow: hidden; + position: relative; + vertical-align: middle; +} + +.fc-calendar .fc-head > div { + text-align: center; +} + +.fc-calendar .fc-row > div > span.fc-date { + width: 30px; + height: 20px; + font-size: 20px; + line-height: 20px; + font-weight: 700; + color: #ddd; + text-shadow: 0 -1px 0 rgba(255,255,255,0.8); + bottom: 5px; + right: 5px; + text-align: right; +} + +.fc-calendar .fc-starttime, +.fc-calendar .fc-endtime { + display: none; +} + +.fc-calendar .fc-row > div > span.fc-weekday { + padding-left: 5px; + display: none; +} + +.fc-calendar .fc-row > div.fc-today { + background: #fff4c3; +} + +.fc-calendar .fc-row > div.fc-out { + opacity: 0.6; +} + +.fc-calendar .fc-row > div:last-child, +.fc-calendar .fc-head > div:last-child { + border-right: none; +} + +.fc-calendar .fc-row:last-child { + border-bottom: none; +} + +/* Custom Events Calendar +-----------------------------------------------------------------*/ + +.events-calendar { + position: relative; + width: 100%; + height: auto; +} + +.fc-calendar-container { + height: auto; + bottom: 0px; + width: 100%; +} + +.events-calendar-header { + height: 50px; + position: relative; +} + +.events-calendar-header h2, +.events-calendar-header h3 { + float: left; + text-shadow: none; + margin-bottom: 0; +} + +.events-calendar-header h2 { + width: 60%; +} + +.events-calendar-header h2 a, +.events-calendar-header h2 span { + font-size: 18px; + white-space: nowrap; +} + +.events-calendar-header h3 { + width: 40%; + color: #666; + font-size: 20px; + text-align: right; + padding-top: 7px; + padding-right: 130px; +} + +.events-calendar-header h3 span { color: #666; } + +.events-calendar-header nav { + position: absolute; + right: 0; + top: 5px; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.events-calendar-header nav span { + float: left; + width: 30px; + height: 30px; + line-height: 30px; + position: relative; + color: transparent; + cursor: pointer; + background: #444; + margin: 0 1px; + font-size: 14px; + border-radius: 0 3px 3px 0; + box-shadow: none; +} + +.events-calendar-header nav span:first-child { + border-radius: 3px 0 0 3px; +} + +.events-calendar-header nav span:hover { + background: #222; +} + +.events-calendar-header span i { + color: #FFF; + text-align: center; + width: 100%; +} + +.events-calendar-header nav span:last-child { + margin-left: 20px; + border-radius: 3px; +} + +.fc-calendar { + background: #F5F5F5; + width: 100%; + height: auto; + margin-top: 10px; + border-radius: 5px; +} + +.fc-calendar .fc-head { + background: #444; + color: rgba(255,255,255,0.9); + box-shadow: inset 0 1px 0 rgba(255,255,255,0.2); + border-radius: 5px 5px 0 0; + height: 40px; + line-height: 40px; + padding: 0 20px; +} + +.fc-calendar .fc-head > div { + font-weight: 300; + text-transform: uppercase; + font-size: 14px; + letter-spacing: 2px; + text-shadow: 0 1px 1px rgba(0,0,0,0.4); +} + +.fc-calendar .fc-row > div > span.fc-date { + position: absolute; + color: #333; + text-shadow: none; + font-size: 28px; + font-weight: 300; + bottom: auto; + right: auto; + top: 10px; + left: 8px; + text-align: left; + text-shadow: none; +} + +.fc-calendar .fc-body { + border: none; + height: 568px; + padding: 20px; +} + +.fc-calendar .fc-row { + box-shadow: inset 0 -1px 0 #E5E5E5; + border: none; +} + +.fc-calendar .fc-row:last-child { + box-shadow: none !important; +} + +.fc-calendar .fc-row:first-child > div:first-child { + border-radius: 5px 0 0 0; +} + +.fc-calendar .fc-row:first-child > div:last-child { + border-radius: 0 5px 0 0; +} + +.fc-calendar .fc-row:last-child > div:first-child { + border-radius: 0 0 0 5px; +} + +.fc-calendar .fc-row:last-child > div:last-child { + border-radius: 0 0 5px 0; +} + +.fc-calendar .fc-row > div { + box-shadow: -1px 0 0 #E5E5E5; + border: none; + padding: 10px; +} + +.fc-calendar .fc-row > div:first-child{ + box-shadow: none !important; +} + +.fc-calendar .fc-row > div.fc-today { + background: #1E73BE; + box-shadow: inset 0 0 100px rgba(255,255,255,0.2); +} + +.fc-calendar .fc-row > div.fc-today > span.fc-date { + color: #FFF; + text-shadow: 1px 1px 1px rgba(0,0,0,0.2); +} + +.fc-calendar .fc-row > div.fc-today:after { + content: ''; + display: block; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + opacity: 0.2; + background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255, 255, 255, 0.15)), to(rgba(0, 0, 0, 0.25))), -webkit-gradient(linear, left top, right bottom, color-stop(0, rgba(255, 255, 255, 0)), color-stop(0.5, rgba(255, 255, 255, .15)), color-stop(0.501, rgba(255, 255, 255, 0)), color-stop(1, rgba(255, 255, 255, 0))); + background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.25)), -moz-linear-gradient(left top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0)); + background: -o-linear-gradient(top, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.25)), -o-llinear-gradient(left top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0)); + background: -ms-linear-gradient(top, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.25)), -ms-linear-gradient(left top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0)); + background: linear-gradient(top, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.25)), linear-gradient(left top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0)); +} + +.fc-calendar .fc-row > div > div { + margin-top: 35px; +} + +.fc-calendar .fc-row > div > div a, +.fc-calendar .fc-row > div > div span { + position: relative; + z-index: 1; + color: #FFF; + text-shadow: 1px 1px 1px rgba(0,0,0,0.1); + font-size: 12px; + display: inline-block; + padding: 3px 5px; + border-radius: 2px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 100%; + margin-bottom: 1px; + background: #1E73BE; + -webkit-transition: background-color .3s ease-in-out; + -moz-transition: background-color .3s ease-in-out; + -ms-transition: background-color .3s ease-in-out; + -o-transition: background-color .3s ease-in-out; + transition: background-color .3s ease-in-out; +} + +.fc-calendar .fc-row > div > div a:hover { background: #444 !important; } + +.fc-calendar .fc-row > div.fc-today > div a, +.fc-calendar .fc-row > div.fc-today > div span { + color: #FFF; + background: rgba(255,255,255,0.2); +} + +.dark .events-calendar-header h2, +.dark .events-calendar-header h3 { + text-shadow: 1px 1px 0 rgba(0,0,0,0.1); +} + +.dark .events-calendar-header h2 { color: #FFF; } + +.dark .events-calendar-header h2 a, +.dark .events-calendar-header h2 span { color: rgba(255,255,255,0.3); } + +.dark .events-calendar-header h2 a { color: rgba(255,255,255,0.5); } + +.dark .events-calendar-header h2 a:hover { color: rgba(255,255,255,0.9); } + +.dark .events-calendar-header h3 { + color: #CCC; + color: rgba(255,255,255,0.6); +} + +.dark .events-calendar-header h3 span { color: #CCC; } + +.dark .events-calendar-header nav span { + background: rgba(255,255,255,0.3); + box-shadow: inset 0 1px rgba(255,255,255,0.2); +} + +.dark .events-calendar-header nav span:hover { background: rgba(255,255,255,0.5); } + +.dark .events-calendar-header span i { color: #FFF; } + +.dark .fc-calendar { background: rgba(255,255,255,0.1); } + +.dark .fc-calendar .fc-head { + background: rgba(255,255,255,0.2); + color: rgba(255,255,255,0.9); + box-shadow: inset 0 1px 0 rgba(255,255,255,0.2); +} + +.dark .fc-calendar .fc-head > div { text-shadow: 0 1px 1px rgba(0,0,0,0.4); } + +.dark .fc-calendar .fc-row > div > span.fc-date { + color: rgba(255,255,255,0.9); + text-shadow: 0 1px 1px rgba(0,0,0,0.3); +} + +.dark .fc-calendar .fc-row { box-shadow: inset 0 -1px 0 rgba(255,255,255,0.10); } + +.dark .fc-calendar .fc-row > div { box-shadow: -1px 0 0 rgba(255, 255, 255, 0.10); } + +.dark .fc-calendar .fc-row > div.fc-today { + background: transparent; + box-shadow: inset 0 0 100px rgba(255,255,255,0.2); +} + +.dark .fc-calendar .fc-row > div > div a, +.dark .fc-calendar .fc-row > div > div span { + color: rgba(255,255,255,0.7); + text-shadow: 1px 1px 1px rgba(0,0,0,0.1); + background: rgba(255,255,255,0.1); +} + +.dark .fc-calendar .fc-row > div > div a:hover { background: rgba(255,255,255,0.3) !important; } + + +@media screen and (max-width: 991px) { + + .events-calendar-header, + .events-calendar-header nav, + .events-calendar, + .fc-calendar-container, + .fc-calendar, + .fc-calendar .fc-head, + .fc-calendar .fc-row > div > span.fc-date { + position: relative; + top: auto; + left: auto; + bottom: auto; + right: auto; + height: auto; + width: auto; + } + + .fc-calendar .fc-body { height: auto; } + + .fc-calendar { margin: 20px 0; } + + .events-calendar-header h2, + .events-calendar-header h3 { + float: none; + width: auto; + text-align: left; + padding: 0; + } + + .fc-calendar .fc-row, + .ie9 .fc-calendar .fc-row > div, + .fc-calendar .fc-row > div { + height: auto; + width: 100%; + border: none; + } + + .fc-calendar .fc-row > div { + float: none; + min-height: 50px; + box-shadow: inset 0 -1px #E5E5E5 !important; + border-radius: 0px !important; + } + + .fc-calendar .fc-row > div:first-child { box-shadow: inset 0 -1px #E5E5E5 !important; } + + .fc-calendar .fc-row > div:empty{ + min-height: 0; + height: 0; + box-shadow: none !important; + padding: 0; + } + + .fc-calendar .fc-row { + box-shadow: none; + } + + .fc-calendar .fc-head { + display: none; + } + + .fc-calendar .fc-row > div > div { + margin-top: 0px; + padding-left: 10px; + max-width: 68%; + display: inline-block; + } + + .fc-calendar .fc-row > div.fc-today { + background: #1E73BE; + } + + .fc-calendar .fc-row > div.fc-today:after { + display: none; + } + + .fc-calendar .fc-row > div > span.fc-date { + width: 30px; + display: inline-block; + text-align: right; + } + + .fc-calendar .fc-row > div > span.fc-weekday { + display: inline-block; + width: 40px; + color: #999; + font-size: 10px; + text-transform: uppercase; + } + + + .dark .fc-calendar .fc-row > div { box-shadow: inset 0 -1px rgba(255,255,255,0.2) !important; } + + .dark .fc-calendar .fc-row > div.fc-today { background: rgba(255, 255, 255, 0.2); } + + .dark .fc-calendar .fc-row > div > span.fc-weekday, + .fc-calendar .fc-row > div.fc-today > span.fc-weekday { + color: #fff; + color: rgba(255,255,255,0.7); + } + +} \ No newline at end of file diff --git a/TSC2.Client/wwwroot/css/components/bs-datatable.css b/TSC2.Client/wwwroot/css/components/bs-datatable.css new file mode 100644 index 0000000..7ccaac6 --- /dev/null +++ b/TSC2.Client/wwwroot/css/components/bs-datatable.css @@ -0,0 +1,18 @@ +/* + * This combined file was created by the DataTables downloader builder: + * https://datatables.net/download + * + * To rebuild or modify this file with the latest versions of the included + * software please visit: + * https://datatables.net/download/#bs5/dt-1.13.6 + * + * Included libraries: + * DataTables 1.13.6 + */ + + :root{--dt-row-selected: 13, 110, 253;--dt-row-selected-text: 255, 255, 255;--dt-row-selected-link: 9, 10, 11;--dt-row-stripe: 0, 0, 0;--dt-row-hover: 0, 0, 0;--dt-column-ordering: 0, 0, 0;--dt-html-background: white}:root.dark{--dt-html-background: rgb(33, 37, 41)}table.dataTable td.dt-control{text-align:center;cursor:pointer}table.dataTable td.dt-control:before{display:inline-block;color:rgba(0, 0, 0, 0.5);content:"►"}table.dataTable tr.dt-hasChild td.dt-control:before{content:"▼"}html.dark table.dataTable td.dt-control:before{color:rgba(255, 255, 255, 0.5)}html.dark table.dataTable tr.dt-hasChild td.dt-control:before{color:rgba(255, 255, 255, 0.5)}table.dataTable thead>tr>th.sorting,table.dataTable thead>tr>th.sorting_asc,table.dataTable thead>tr>th.sorting_desc,table.dataTable thead>tr>th.sorting_asc_disabled,table.dataTable thead>tr>th.sorting_desc_disabled,table.dataTable thead>tr>td.sorting,table.dataTable thead>tr>td.sorting_asc,table.dataTable thead>tr>td.sorting_desc,table.dataTable thead>tr>td.sorting_asc_disabled,table.dataTable thead>tr>td.sorting_desc_disabled{cursor:pointer;position:relative;padding-right:26px}table.dataTable thead>tr>th.sorting:before,table.dataTable thead>tr>th.sorting:after,table.dataTable thead>tr>th.sorting_asc:before,table.dataTable thead>tr>th.sorting_asc:after,table.dataTable thead>tr>th.sorting_desc:before,table.dataTable thead>tr>th.sorting_desc:after,table.dataTable thead>tr>th.sorting_asc_disabled:before,table.dataTable thead>tr>th.sorting_asc_disabled:after,table.dataTable thead>tr>th.sorting_desc_disabled:before,table.dataTable thead>tr>th.sorting_desc_disabled:after,table.dataTable thead>tr>td.sorting:before,table.dataTable thead>tr>td.sorting:after,table.dataTable thead>tr>td.sorting_asc:before,table.dataTable thead>tr>td.sorting_asc:after,table.dataTable thead>tr>td.sorting_desc:before,table.dataTable thead>tr>td.sorting_desc:after,table.dataTable thead>tr>td.sorting_asc_disabled:before,table.dataTable thead>tr>td.sorting_asc_disabled:after,table.dataTable thead>tr>td.sorting_desc_disabled:before,table.dataTable thead>tr>td.sorting_desc_disabled:after{position:absolute;display:block;opacity:.125;right:10px;line-height:9px;font-size:.8em}table.dataTable thead>tr>th.sorting:before,table.dataTable thead>tr>th.sorting_asc:before,table.dataTable thead>tr>th.sorting_desc:before,table.dataTable thead>tr>th.sorting_asc_disabled:before,table.dataTable thead>tr>th.sorting_desc_disabled:before,table.dataTable thead>tr>td.sorting:before,table.dataTable thead>tr>td.sorting_asc:before,table.dataTable thead>tr>td.sorting_desc:before,table.dataTable thead>tr>td.sorting_asc_disabled:before,table.dataTable thead>tr>td.sorting_desc_disabled:before{bottom:50%;content:"▲";content:"▲"/""}table.dataTable thead>tr>th.sorting:after,table.dataTable thead>tr>th.sorting_asc:after,table.dataTable thead>tr>th.sorting_desc:after,table.dataTable thead>tr>th.sorting_asc_disabled:after,table.dataTable thead>tr>th.sorting_desc_disabled:after,table.dataTable thead>tr>td.sorting:after,table.dataTable thead>tr>td.sorting_asc:after,table.dataTable thead>tr>td.sorting_desc:after,table.dataTable thead>tr>td.sorting_asc_disabled:after,table.dataTable thead>tr>td.sorting_desc_disabled:after{top:50%;content:"▼";content:"▼"/""}table.dataTable thead>tr>th.sorting_asc:before,table.dataTable thead>tr>th.sorting_desc:after,table.dataTable thead>tr>td.sorting_asc:before,table.dataTable thead>tr>td.sorting_desc:after{opacity:.6}table.dataTable thead>tr>th.sorting_desc_disabled:after,table.dataTable thead>tr>th.sorting_asc_disabled:before,table.dataTable thead>tr>td.sorting_desc_disabled:after,table.dataTable thead>tr>td.sorting_asc_disabled:before{display:none}table.dataTable thead>tr>th:active,table.dataTable thead>tr>td:active{outline:none}div.dataTables_scrollBody>table.dataTable>thead>tr>th:before,div.dataTables_scrollBody>table.dataTable>thead>tr>th:after,div.dataTables_scrollBody>table.dataTable>thead>tr>td:before,div.dataTables_scrollBody>table.dataTable>thead>tr>td:after{display:none}div.dataTables_processing{position:absolute;top:50%;left:50%;width:200px;margin-left:-100px;margin-top:-26px;text-align:center;padding:2px}div.dataTables_processing>div:last-child{position:relative;width:80px;height:15px;margin:1em auto}div.dataTables_processing>div:last-child>div{position:absolute;top:0;width:13px;height:13px;border-radius:50%;background:rgb(13, 110, 253);background:rgb(var(--dt-row-selected));animation-timing-function:cubic-bezier(0, 1, 1, 0)}div.dataTables_processing>div:last-child>div:nth-child(1){left:8px;animation:datatables-loader-1 .6s infinite}div.dataTables_processing>div:last-child>div:nth-child(2){left:8px;animation:datatables-loader-2 .6s infinite}div.dataTables_processing>div:last-child>div:nth-child(3){left:32px;animation:datatables-loader-2 .6s infinite}div.dataTables_processing>div:last-child>div:nth-child(4){left:56px;animation:datatables-loader-3 .6s infinite}@keyframes datatables-loader-1{0%{transform:scale(0)}100%{transform:scale(1)}}@keyframes datatables-loader-3{0%{transform:scale(1)}100%{transform:scale(0)}}@keyframes datatables-loader-2{0%{transform:translate(0, 0)}100%{transform:translate(24px, 0)}}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}table.dataTable th.dt-left,table.dataTable td.dt-left{text-align:left}table.dataTable th.dt-center,table.dataTable td.dt-center,table.dataTable td.dataTables_empty{text-align:center}table.dataTable th.dt-right,table.dataTable td.dt-right{text-align:right}table.dataTable th.dt-justify,table.dataTable td.dt-justify{text-align:justify}table.dataTable th.dt-nowrap,table.dataTable td.dt-nowrap{white-space:nowrap}table.dataTable thead th,table.dataTable thead td,table.dataTable tfoot th,table.dataTable tfoot td{text-align:left}table.dataTable thead th.dt-head-left,table.dataTable thead td.dt-head-left,table.dataTable tfoot th.dt-head-left,table.dataTable tfoot td.dt-head-left{text-align:left}table.dataTable thead th.dt-head-center,table.dataTable thead td.dt-head-center,table.dataTable tfoot th.dt-head-center,table.dataTable tfoot td.dt-head-center{text-align:center}table.dataTable thead th.dt-head-right,table.dataTable thead td.dt-head-right,table.dataTable tfoot th.dt-head-right,table.dataTable tfoot td.dt-head-right{text-align:right}table.dataTable thead th.dt-head-justify,table.dataTable thead td.dt-head-justify,table.dataTable tfoot th.dt-head-justify,table.dataTable tfoot td.dt-head-justify{text-align:justify}table.dataTable thead th.dt-head-nowrap,table.dataTable thead td.dt-head-nowrap,table.dataTable tfoot th.dt-head-nowrap,table.dataTable tfoot td.dt-head-nowrap{white-space:nowrap}table.dataTable tbody th.dt-body-left,table.dataTable tbody td.dt-body-left{text-align:left}table.dataTable tbody th.dt-body-center,table.dataTable tbody td.dt-body-center{text-align:center}table.dataTable tbody th.dt-body-right,table.dataTable tbody td.dt-body-right{text-align:right}table.dataTable tbody th.dt-body-justify,table.dataTable tbody td.dt-body-justify{text-align:justify}table.dataTable tbody th.dt-body-nowrap,table.dataTable tbody td.dt-body-nowrap{white-space:nowrap}/*! Bootstrap 5 integration for DataTables + * + * ©2020 SpryMedia Ltd, all rights reserved. + * License: MIT datatables.net/license/mit + */table.dataTable{clear:both;margin-top:6px !important;margin-bottom:6px !important;max-width:none !important;border-collapse:separate !important;border-spacing:0}table.dataTable td,table.dataTable th{-webkit-box-sizing:content-box;box-sizing:content-box}table.dataTable td.dataTables_empty,table.dataTable th.dataTables_empty{text-align:center}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}table.dataTable.table-striped>tbody>tr:nth-of-type(2n+1)>*{box-shadow:none}table.dataTable>tbody>tr{background-color:transparent}table.dataTable>tbody>tr.selected>*{box-shadow:inset 0 0 0 9999px rgb(13, 110, 253);box-shadow:inset 0 0 0 9999px rgb(var(--dt-row-selected));color:rgb(255, 255, 255);color:rgb(var(--dt-row-selected-text))}table.dataTable>tbody>tr.selected a{color:rgb(9, 10, 11);color:rgb(var(--dt-row-selected-link))}table.dataTable.table-striped>tbody>tr.odd>*{box-shadow:inset 0 0 0 9999px rgba(var(--dt-row-stripe), 0.05)}table.dataTable.table-striped>tbody>tr.odd.selected>*{box-shadow:inset 0 0 0 9999px rgba(13, 110, 253, 0.95);box-shadow:inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.95)}table.dataTable.table-hover>tbody>tr:hover>*{box-shadow:inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.075)}table.dataTable.table-hover>tbody>tr.selected:hover>*{box-shadow:inset 0 0 0 9999px rgba(13, 110, 253, 0.975);box-shadow:inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.975)}div.dataTables_wrapper div.dataTables_length label{font-weight:normal;text-align:left;white-space:nowrap}div.dataTables_wrapper div.dataTables_length select{width:auto;display:inline-block}div.dataTables_wrapper div.dataTables_filter{text-align:right}div.dataTables_wrapper div.dataTables_filter label{font-weight:normal;white-space:nowrap;text-align:left}div.dataTables_wrapper div.dataTables_filter input{margin-left:.5em;display:inline-block;width:auto}div.dataTables_wrapper div.dataTables_info{padding-top:.85em}div.dataTables_wrapper div.dataTables_paginate{margin:0;white-space:nowrap;text-align:right}div.dataTables_wrapper div.dataTables_paginate ul.pagination{margin:2px 0;white-space:nowrap;justify-content:flex-end}div.dataTables_wrapper div.dt-row{position:relative}div.dataTables_scrollHead table.dataTable{margin-bottom:0 !important}div.dataTables_scrollBody>table{border-top:none;margin-top:0 !important;margin-bottom:0 !important}div.dataTables_scrollBody>table>thead .sorting:before,div.dataTables_scrollBody>table>thead .sorting_asc:before,div.dataTables_scrollBody>table>thead .sorting_desc:before,div.dataTables_scrollBody>table>thead .sorting:after,div.dataTables_scrollBody>table>thead .sorting_asc:after,div.dataTables_scrollBody>table>thead .sorting_desc:after{display:none}div.dataTables_scrollBody>table>tbody tr:first-child th,div.dataTables_scrollBody>table>tbody tr:first-child td{border-top:none}div.dataTables_scrollFoot>.dataTables_scrollFootInner{box-sizing:content-box}div.dataTables_scrollFoot>.dataTables_scrollFootInner>table{margin-top:0 !important;border-top:none}@media screen and (max-width: 767px){div.dataTables_wrapper div.dataTables_length,div.dataTables_wrapper div.dataTables_filter,div.dataTables_wrapper div.dataTables_info,div.dataTables_wrapper div.dataTables_paginate{text-align:center}div.dataTables_wrapper div.dataTables_paginate ul.pagination{justify-content:center !important}}table.dataTable.table-sm>thead>tr>th:not(.sorting_disabled){padding-right:20px}table.table-bordered.dataTable{border-right-width:0}table.table-bordered.dataTable thead tr:first-child th,table.table-bordered.dataTable thead tr:first-child td{border-top-width:1px}table.table-bordered.dataTable th,table.table-bordered.dataTable td{border-left-width:0}table.table-bordered.dataTable th:first-child,table.table-bordered.dataTable th:first-child,table.table-bordered.dataTable td:first-child,table.table-bordered.dataTable td:first-child{border-left-width:1px}table.table-bordered.dataTable th:last-child,table.table-bordered.dataTable th:last-child,table.table-bordered.dataTable td:last-child,table.table-bordered.dataTable td:last-child{border-right-width:1px}table.table-bordered.dataTable th,table.table-bordered.dataTable td{border-bottom-width:1px}div.dataTables_scrollHead table.table-bordered{border-bottom-width:0}div.table-responsive>div.dataTables_wrapper>div.row{margin:0}div.table-responsive>div.dataTables_wrapper>div.row>div[class^=col-]:first-child{padding-left:0}div.table-responsive>div.dataTables_wrapper>div.row>div[class^=col-]:last-child{padding-right:0}:root[data-bs-theme=dark]{--dt-row-hover: 255, 255, 255;--dt-row-stripe: 255, 255, 255;--dt-column-ordering: 255, 255, 255} + diff --git a/TSC2.Client/wwwroot/css/components/bs-filestyle.css b/TSC2.Client/wwwroot/css/components/bs-filestyle.css new file mode 100644 index 0000000..cbf8dca --- /dev/null +++ b/TSC2.Client/wwwroot/css/components/bs-filestyle.css @@ -0,0 +1,12 @@ +/*! + * bootstrap-fileinput v5.5.2 + * http://plugins.krajee.com/file-input + * + * Krajee default styling for bootstrap-fileinput. + * + * Author: Kartik Visweswaran + * Copyright: 2014 - 2022, Kartik Visweswaran, Krajee.com + * + * Licensed under the BSD-3-Clause + * https://github.com/kartik-v/bootstrap-fileinput/blob/master/LICENSE.md + */.btn-file input[type=file],.file-caption-icon,.file-no-browse,.file-preview .fileinput-remove,.file-zoom-dialog .btn-navigate,.file-zoom-dialog .floating-buttons,.krajee-default .file-thumb-progress{position:absolute}.file-loading input[type=file],input[type=file].file-loading{width:0;height:0}.file-no-browse{left:50%;bottom:20%;width:1px;height:1px;font-size:0;opacity:0;border:none;background:0 0;outline:0;box-shadow:none}.btn-kv-rotate,.file-caption-icon,.file-input-ajax-new .fileinput-remove-button,.file-input-ajax-new .fileinput-upload-button,.file-input-ajax-new .no-browse .input-group-btn,.file-input-new .close,.file-input-new .file-preview,.file-input-new .fileinput-remove-button,.file-input-new .fileinput-upload-button,.file-input-new .glyphicon-file,.file-input-new .no-browse .input-group-btn,.file-preview .kv-zoom-cache,.file-zoom-dialog .modal-header:after,.file-zoom-dialog .modal-header:before,.hide-content .kv-file-content,.is-locked .fileinput-remove-button,.is-locked .fileinput-upload-button,.kv-file-rotate,.kv-hidden{display:none}.file-caption .input-group{align-items:center}.btn-file,.file-caption,.file-input,.file-loading:before,.file-preview,.file-zoom-dialog .modal-dialog,.krajee-default .file-thumbnail-footer,.krajee-default.file-preview-frame{position:relative}.file-caption-icon .kv-caption-icon{line-height:inherit}.file-error-message pre,.file-error-message ul,.krajee-default .file-actions,.krajee-default .file-other-error{text-align:left}.file-error-message pre,.file-error-message ul{margin:0}.krajee-default .file-drag-handle,.krajee-default .file-upload-indicator{float:left;margin-top:10px;width:16px;height:16px}.file-thumb-progress .progress,.file-thumb-progress .progress-bar{font-family:Verdana,Helvetica,sans-serif;font-size:.7rem}.krajee-default .file-thumb-progress .progress,.kv-upload-progress .progress{background-color:#ccc}.krajee-default .file-caption-info,.krajee-default .file-size-info{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:160px;height:15px;margin:auto}.file-caption.icon-visible .file-caption-icon,.file-loading:before,.rotatable:not(.hide-rotate) .btn-kv-rotate,.rotatable:not(.hide-rotate) .kv-file-rotate{display:inline-block}.file-zoom-content>.file-object.type-flash,.file-zoom-content>.file-object.type-image,.file-zoom-content>.file-object.type-video{max-width:100%;max-height:100%;width:auto}.file-zoom-content>.file-object.type-flash,.file-zoom-content>.file-object.type-video{height:100%}.file-zoom-content>.file-object.type-default,.file-zoom-content>.file-object.type-html,.file-zoom-content>.file-object.type-pdf,.file-zoom-content>.file-object.type-text{width:100%}.file-loading:before{content:" Loading...";padding-left:20px;line-height:16px;font-size:13px;font-variant:small-caps;color:#999;background:url(../../images/preloader.gif) top left no-repeat}.file-object{margin:0 0 -5px;padding:0}.btn-file,.kv-overflow-hidden{overflow:hidden}.btn-file input[type=file]{top:0;left:0;min-width:100%;min-height:100%;text-align:right;opacity:0;background:none;cursor:inherit;display:block}.btn-file ::-ms-browse{font-size:10000px;width:100%;height:100%}.file-caption.icon-visible .file-caption-name{padding-left:25px}.file-caption.icon-visible>.input-group-lg .file-caption-name{padding-left:30px}.file-caption.icon-visible>.input-group-sm .file-caption-name{padding-left:22px}.file-caption-name:not(.file-caption-disabled){background-color:transparent}.file-caption-name.file-processing{font-style:italic;border-color:#bbb;opacity:.5}.file-caption-icon{padding:7px 5px;left:4px}.input-group-lg .file-caption-icon{font-size:1.25rem}.input-group-sm .file-caption-icon{font-size:.875rem;padding:.25rem}.file-error-message{color:#a94442;background-color:#f2dede;margin:5px;border:1px solid #ebccd1;border-radius:4px;padding:15px}.file-error-message pre{margin:5px 0}.file-caption-disabled{background-color:#eee;cursor:not-allowed;opacity:1}.file-preview{border-radius:5px;border:1px solid #ddd;padding:8px;width:100%;margin-bottom:5px}.file-preview .btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.file-preview .fileinput-remove{top:1px;right:1px;line-height:10px}.clickable .file-drop-zone-title,.file-preview .clickable{cursor:pointer}.file-preview-image{font:40px Impact,Charcoal,sans-serif;color:green;width:auto;height:auto;max-width:100%;max-height:100%}.krajee-default.file-preview-frame{margin:8px;border:1px solid rgba(0,0,0,.2);box-shadow:0 0 10px 0 rgba(0,0,0,.2);padding:6px;float:left;text-align:center}.krajee-default.file-preview-frame .kv-file-content{width:213px;height:160px}.krajee-default.file-preview-frame .kv-file-content.kv-pdf-rendered{width:400px}.krajee-default.file-preview-frame[data-template=audio] .kv-file-content{width:240px;height:55px}.krajee-default.file-preview-frame .file-thumbnail-footer{height:70px}.krajee-default.file-preview-frame:not(.file-preview-error):hover{border:1px solid rgba(0,0,0,.3);box-shadow:0 0 10px 0 rgba(0,0,0,.4)}.krajee-default .file-preview-text{color:#428bca;border:1px solid #ddd;outline:0;resize:none}.krajee-default .file-preview-html{border:1px solid #ddd}.krajee-default .file-other-icon{font-size:6em;line-height:1}.krajee-default .file-footer-buttons{float:right}.krajee-default .file-footer-caption{display:block;text-align:center;padding-top:4px;font-size:11px;color:#999;margin-bottom:30px}.file-upload-stats{font-size:10px;text-align:center;width:100%}.kv-upload-progress .file-upload-stats{font-size:12px;margin:-10px 0 5px}.krajee-default .file-preview-error{opacity:.65;box-shadow:none}.krajee-default .file-thumb-progress{top:37px;left:0;right:0}.krajee-default.kvsortable-ghost{background:#e1edf7;border:2px solid #a1abff}.krajee-default .file-preview-other:hover{opacity:.8}.krajee-default .file-preview-frame:not(.file-preview-error) .file-footer-caption:hover{color:#000}.kv-upload-progress .progress{height:20px;margin:10px 0;overflow:hidden}.kv-upload-progress .progress-bar{height:20px;font-family:Verdana,Helvetica,sans-serif}.file-zoom-dialog .file-other-icon{font-size:50vmin}.btn-navigate *,.file-zoom-dialog .modal-dialog{width:auto}.file-zoom-dialog .modal-header{display:flex;align-items:center;justify-content:space-between}.file-zoom-dialog .btn-navigate{margin:0 .1rem;padding:0;font-size:1.2rem;width:2.4rem;height:2.4rem;top:50%;border-radius:50%;text-align:center}.file-zoom-dialog .floating-buttons{top:5px;right:10px}.file-zoom-dialog .btn-kv-prev{left:0}.file-zoom-dialog .btn-kv-next{right:0}.file-zoom-dialog .kv-zoom-header{padding:.5rem}.file-zoom-dialog .kv-zoom-body{padding:.25rem}.file-zoom-dialog .kv-zoom-description{position:absolute;opacity:.8;font-size:.8rem;background-color:#1a1a1a;padding:1rem;text-align:center;border-radius:.5rem;color:#fff;left:15%;right:15%;bottom:15%}.file-zoom-dialog .kv-desc-hide{float:right;color:#fff;padding:0 .1rem;background:0 0;border:none}.file-sortable .file-drag-handle:hover,.file-zoom-dialog .kv-desc-hide:hover{opacity:.7}.file-zoom-dialog .kv-desc-hide:focus{opacity:.9}.file-input-ajax-new .no-browse .form-control,.file-input-new .no-browse .form-control{border-top-right-radius:4px;border-bottom-right-radius:4px}.file-caption{width:100%}.file-thumb-loading{background:url(../../images/preloader.gif) center center no-repeat content-box!important}.file-drop-zone{border:1px dashed #aaa;min-height:260px;border-radius:4px;text-align:center;vertical-align:middle;margin:12px 15px 12px 12px;padding:5px}.file-drop-zone.clickable:hover{border:2px dashed #999}.file-drop-zone.clickable:focus{border:2px solid #5acde2}.file-drop-zone .file-preview-thumbnails{cursor:default}.file-drop-zone-title{color:#aaa;font-size:1.6em;text-align:center;padding:85px 10px;cursor:default}.file-highlighted{border:2px dashed #999!important;background-color:#eee}.file-uploading{background:url(../../images/preloader.gif) center bottom 10px no-repeat;opacity:.65}.file-zoom-fullscreen .modal-dialog{min-width:100%;margin:0}.file-zoom-fullscreen .modal-content{border-radius:0;box-shadow:none;min-height:100vh}.file-zoom-fullscreen .kv-zoom-body{overflow-y:auto}.floating-buttons{z-index:3000}.floating-buttons .btn-kv{margin-left:3px;z-index:3000}.kv-zoom-actions{min-width:140px}.kv-zoom-actions .btn-kv{margin-left:3px}.file-zoom-content{text-align:center;white-space:nowrap;min-height:300px}.file-zoom-content:hover{background:0 0}.file-zoom-content .file-preview-image,.file-zoom-content .file-preview-video{max-height:100%}.file-zoom-content>.file-object.type-image{height:auto;min-height:inherit}.file-zoom-content>.file-object.type-audio{width:auto;height:30px}@media (min-width:576px){.file-zoom-dialog .modal-dialog{max-width:500px}}@media (min-width:992px){.file-zoom-dialog .modal-lg{max-width:800px}}@media (max-width:767px){.file-preview-thumbnails{display:flex;justify-content:center;align-items:center;flex-direction:column}.file-zoom-dialog .modal-header{flex-direction:column}}@media (max-width:350px){.krajee-default.file-preview-frame:not([data-template=audio]) .kv-file-content{width:160px}}@media (max-width:420px){.krajee-default.file-preview-frame .kv-file-content.kv-pdf-rendered{width:100%}}.file-loading[dir=rtl]:before{background:url(../../images/preloader.gif) top right no-repeat;padding-left:0;padding-right:20px}.file-sortable .file-drag-handle{cursor:grab;opacity:1}.file-grabbing,.file-grabbing *{cursor:not-allowed!important}.file-grabbing .file-preview-thumbnails *{cursor:grabbing!important}.file-preview-frame.sortable-chosen{background-color:#d9edf7;border-color:#17a2b8;box-shadow:none!important}.file-preview-object,.file-preview-other-frame,.kv-file-content,.kv-zoom-body{display:flex;align-items:center;justify-content:center}.rotatable .file-zoom-detail,.rotatable .kv-file-content,.rotatable .kv-file-content>:first-child{transform-origin:center center}.rotate-animate{transition:transform .3s} \ No newline at end of file diff --git a/TSC2.Client/wwwroot/css/components/bs-rating.css b/TSC2.Client/wwwroot/css/components/bs-rating.css new file mode 100644 index 0000000..dfe9d78 --- /dev/null +++ b/TSC2.Client/wwwroot/css/components/bs-rating.css @@ -0,0 +1,11 @@ +/*! + * bootstrap-star-rating v4.1.0 + * http://plugins.krajee.com/star-rating + * + * Author: Kartik Visweswaran + * Copyright: 2013 - 2021, Kartik Visweswaran, Krajee.com + * + * Licensed under the BSD 3-Clause + * https://github.com/kartik-v/bootstrap-star-rating/blob/master/LICENSE.md + */ +.rating-loading{width:25px;height:25px;font-size:0;color:#fff;background:top left no-repeat;border:none}.rating-container .rating-stars{position:relative;cursor:pointer;vertical-align:middle;display:inline-block;overflow:hidden;white-space:nowrap}.rating-container .rating-stars:focus{outline:dotted 1px}.rating-input{display:absolute;cursor:pointer;width:100%;height:1px;bottom:0;left:0;font-size:1px;border:none;background:0 0;opacity:0;padding:0;margin:0}.caption-badge,.rating-container .caption .label{line-height:1;text-align:center;border-radius:.25rem}.rating-container.is-display-only .rating-stars{cursor:default}.rating-disabled .rating-stars{cursor:not-allowed}.rating-container .star{display:inline-block;margin:0 2px;text-align:center}.rating-container .empty-stars{color:#aaa}.rating-container .filled-stars{position:absolute;left:0;top:0;margin:auto;color:#fde16d;white-space:nowrap;overflow:hidden;-webkit-text-stroke:1px #777;text-shadow:1px 1px #999}.rating-rtl{float:right}.rating-animate .filled-stars{transition:width .25s ease}.rating-rtl .filled-stars{left:auto;right:0;transition:none;-webkit-transform:matrix(-1,0,0,1,0,0);transform:matrix(-1,0,0,1,0,0)}.rating-rtl.is-star .filled-stars{right:.06em}.rating-rtl.is-heart .empty-stars{margin-right:.07em}.rating-container .clear-rating{color:#aaa;cursor:not-allowed;display:inline-block;vertical-align:middle;font-size:60%;padding-right:5px}.clear-rating-active{cursor:pointer!important}.clear-rating-active:hover{color:#843534}.rating-container .caption .label{display:inline-block;padding:.25em .4em;vertical-align:baseline}.rating-container .caption{color:#999;display:inline-block;vertical-align:middle;line-height:1;margin-left:5px;margin-right:0}.rating-rtl .caption{margin-right:5px;margin-left:0}@media print{.rating-container .clear-rating{display:none}}.rating-xl{font-size:48px}.rating-lg{font-size:40px}.rating-md{font-size:32px}.rating-sm{font-size:24px}.rating-xs{font-size:16px}.rating-xl .caption{font-size:20px}.rating-lg .caption{font-size:18px}.rating-md .caption{font-size:16px}.rating-sm .caption{font-size:14px}.rating-xs .caption{font-size:12px}.caption-badge{font-family:Arial,Helvetica,sans-serif;display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;color:#fff;white-space:nowrap;vertical-align:baseline}.caption-secondary{background-color:#6c757d}.caption-danger{background-color:#dc3545}.caption-warning{background-color:#ffc107;color:#212529}.caption-info{background-color:#0dcaf0;color:#212529}.caption-primary{background-color:#0d6efd}.caption-success{background-color:#198754} diff --git a/TSC2.Client/wwwroot/css/components/bs-select.css b/TSC2.Client/wwwroot/css/components/bs-select.css new file mode 100644 index 0000000..f5dc072 --- /dev/null +++ b/TSC2.Client/wwwroot/css/components/bs-select.css @@ -0,0 +1,6 @@ +/*! + * Bootstrap-select v1.14.0-beta2 (https://developer.snapappointments.com/bootstrap-select) + * + * Copyright 2012-2021 SnapAppointments, LLC + * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) + */@-webkit-keyframes bs-notify-fadeOut{0%{opacity:.9}100%{opacity:0}}@-o-keyframes bs-notify-fadeOut{0%{opacity:.9}100%{opacity:0}}@keyframes bs-notify-fadeOut{0%{opacity:.9}100%{opacity:0}}.bootstrap-select>select.bs-select-hidden,select.bs-select-hidden,select.selectpicker{display:none!important}.bootstrap-select{width:100%;vertical-align:middle}.bootstrap-select>.dropdown-toggle{position:relative;width:100%;text-align:right;white-space:nowrap;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.bootstrap-select>.dropdown-toggle:after{margin-top:-1px}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:#999}.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:hover{color:rgba(255,255,255,.5)}.bootstrap-select>select{position:absolute!important;bottom:0;left:50%;display:block!important;width:.5px!important;height:100%!important;padding:0!important;opacity:0!important;border:none;z-index:0!important}.bootstrap-select>select.mobile-device{top:0;left:0;display:block!important;width:100%!important;z-index:2!important}.bootstrap-select.is-invalid .dropdown-toggle,.error .bootstrap-select .dropdown-toggle,.has-error .bootstrap-select .dropdown-toggle,.was-validated .bootstrap-select select:invalid+.dropdown-toggle{border-color:#b94a48}.bootstrap-select.is-valid .dropdown-toggle,.was-validated .bootstrap-select select:valid+.dropdown-toggle{border-color:#28a745}.bootstrap-select.fit-width{width:auto!important}.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:100%}.bootstrap-select .dropdown-toggle:focus,.bootstrap-select>select.mobile-device:focus+.dropdown-toggle{outline:thin dotted #333!important;outline:5px auto -webkit-focus-ring-color!important;outline-offset:-2px}.bootstrap-select.form-control{margin-bottom:0;padding:0;border:none;height:auto}:not(.input-group)>.bootstrap-select.form-control:not([class*=col-]){width:100%}.bootstrap-select.form-control.input-group-btn{float:none;z-index:auto}.form-inline .bootstrap-select,.form-inline .bootstrap-select.form-control:not([class*=col-]){width:auto}.bootstrap-select:not(.input-group-btn),.bootstrap-select[class*=col-]{float:none;display:inline-block;margin-left:0}.bootstrap-select.dropdown-menu-right,.bootstrap-select[class*=col-].dropdown-menu-right,.row .bootstrap-select[class*=col-].dropdown-menu-right{float:right}.form-group .bootstrap-select,.form-horizontal .bootstrap-select,.form-inline .bootstrap-select{margin-bottom:0}.form-group-lg .bootstrap-select.form-control,.form-group-sm .bootstrap-select.form-control{padding:0}.form-group-lg .bootstrap-select.form-control .dropdown-toggle,.form-group-sm .bootstrap-select.form-control .dropdown-toggle{height:100%;font-size:inherit;line-height:inherit;border-radius:inherit}.bootstrap-select.form-control-lg .dropdown-toggle,.bootstrap-select.form-control-sm .dropdown-toggle{font-size:inherit;line-height:inherit;border-radius:inherit}.bootstrap-select.form-control-sm .dropdown-toggle{padding:.25rem .5rem}.bootstrap-select.form-control-lg .dropdown-toggle{padding:.5rem 1rem}.form-inline .bootstrap-select .form-control{width:100%}.bootstrap-select.disabled,.bootstrap-select>.disabled{cursor:not-allowed}.bootstrap-select.disabled:focus,.bootstrap-select>.disabled:focus{outline:0!important}.bootstrap-select.bs-container{position:absolute;top:0;left:0;height:0!important;padding:0!important}.bootstrap-select.bs-container .dropdown-menu{z-index:1060}.bootstrap-select .dropdown-toggle .filter-option{position:static;top:0;left:0;float:left;height:100%;width:100%;text-align:left;overflow:hidden;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}.bs3.bootstrap-select .dropdown-toggle .filter-option{padding-right:inherit}.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option{position:absolute;padding-top:inherit;padding-bottom:inherit;padding-left:inherit;float:none}.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option .filter-option-inner{padding-right:inherit}.bootstrap-select .dropdown-toggle .filter-option-inner-inner{overflow:hidden}.bootstrap-select .dropdown-toggle .filter-expand{width:0!important;float:left;opacity:0!important;overflow:hidden}.bootstrap-select .dropdown-toggle .caret{position:absolute;top:50%;right:12px;margin-top:-2px;vertical-align:middle}.bootstrap-select .dropdown-toggle .bs-select-clear-selected{position:relative;display:block;margin-right:5px;text-align:center}.bs3.bootstrap-select .dropdown-toggle .bs-select-clear-selected{padding-right:inherit}.bootstrap-select .dropdown-toggle .bs-select-clear-selected span{position:relative;top:-webkit-calc(((-1em / 1.5) + 1ex)/ 2);top:calc(((-1em / 1.5) + 1ex)/ 2);pointer-events:none}.bs3.bootstrap-select .dropdown-toggle .bs-select-clear-selected span{top:auto}.bootstrap-select .dropdown-toggle.bs-placeholder .bs-select-clear-selected{display:none}.input-group .bootstrap-select.form-control .dropdown-toggle{border-radius:inherit}.bootstrap-select[class*=col-] .dropdown-toggle{width:100%}.bootstrap-select .dropdown-menu{min-width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select .dropdown-menu>.inner:focus{outline:0!important}.bootstrap-select .dropdown-menu.inner{position:static;float:none;border:0;padding:0;margin:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.bootstrap-select .dropdown-menu li{position:relative}.bootstrap-select .dropdown-menu li.active small{color:rgba(255,255,255,.5)!important}.bootstrap-select .dropdown-menu li.disabled a{cursor:not-allowed}.bootstrap-select .dropdown-menu li a{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.bootstrap-select .dropdown-menu li a.opt{position:relative;padding-left:2.25em}.bootstrap-select .dropdown-menu li a span.check-mark{display:none}.bootstrap-select .dropdown-menu li a span.text{display:inline-block}.bootstrap-select .dropdown-menu li small{padding-left:.5em}.bootstrap-select .dropdown-menu .notify{position:absolute;bottom:5px;width:96%;margin:0 2%;min-height:26px;padding:3px 5px;background:#f5f5f5;border:1px solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);pointer-events:none;opacity:.9;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select .dropdown-menu .notify.fadeOut{-webkit-animation:.3s linear 750ms forwards bs-notify-fadeOut;-o-animation:.3s linear 750ms forwards bs-notify-fadeOut;animation:.3s linear 750ms forwards bs-notify-fadeOut}.bootstrap-select .no-results{padding:3px;background:#f5f5f5;margin:0 5px;white-space:nowrap}.bootstrap-select.fit-width .dropdown-toggle .filter-option{position:static;display:inline;padding:0}.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner,.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner{display:inline}.bootstrap-select.fit-width .dropdown-toggle .bs-caret:before{content:'\00a0'}.bootstrap-select.fit-width .dropdown-toggle .caret{position:static;top:auto;margin-top:-1px}.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark{position:absolute;display:inline-block;right:15px;top:5px}.bootstrap-select.show-tick .dropdown-menu li a span.text{margin-right:34px}.bootstrap-select .bs-ok-default:after{content:'';display:block;width:.5em;height:1em;border-style:solid;border-width:0 .26em .26em 0;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle{z-index:1061}.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before{content:'';border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(204,204,204,.2);position:absolute;bottom:-4px;left:9px;display:none}.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after{content:'';border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;bottom:-4px;left:10px;display:none}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:before{bottom:auto;top:-4px;border-top:7px solid rgba(204,204,204,.2);border-bottom:0}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after{bottom:auto;top:-4px;border-top:6px solid #fff;border-bottom:0}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:before{right:12px;left:auto}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:after{right:13px;left:auto}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:after,.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:before,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:after,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:before{display:block}.bs-actionsbox,.bs-donebutton,.bs-searchbox{padding:4px 8px}.bs-actionsbox{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-actionsbox .btn-group{display:block}.bs-actionsbox .btn-group button{width:50%}.bs-donebutton{float:left;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-donebutton .btn-group{display:block}.bs-donebutton .btn-group button{width:100%}.bs-searchbox+.bs-actionsbox{padding:0 8px 4px}.bs-searchbox .form-control{margin-bottom:0;width:100%;float:none} diff --git a/TSC2.Client/wwwroot/css/components/bs-switches-vars.css b/TSC2.Client/wwwroot/css/components/bs-switches-vars.css new file mode 100644 index 0000000..7e20e87 --- /dev/null +++ b/TSC2.Client/wwwroot/css/components/bs-switches-vars.css @@ -0,0 +1,520 @@ +/* ======================================================================== + * bootstrap-switch - v3.3.2 + * ====================================================================== */ + +.bootstrap-switch { + display: inline-block; + direction: ltr; + cursor: pointer; + border-radius: 2px; + border: 1px solid; + border-color: #CCC; + position: relative; + text-align: left; + overflow: hidden; + line-height: 8px; + z-index: 0; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + vertical-align: middle; + -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; + -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; + transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; +} +.bootstrap-switch .bootstrap-switch-container { + display: inline-block; + top: 0; + border-radius: 2px; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); +} +.bootstrap-switch .bootstrap-switch-handle-on, +.bootstrap-switch .bootstrap-switch-handle-off, +.bootstrap-switch .bootstrap-switch-label { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + cursor: pointer; + display: inline-block !important; + height: 100%; + padding: 6px 12px; + font-size: 14px; + line-height: 20px; +} +.bootstrap-switch .bootstrap-switch-handle-on, +.bootstrap-switch .bootstrap-switch-handle-off { + text-align: center; + z-index: 1; +} + +.bootstrap-switch .bootstrap-switch-handle-on i, +.bootstrap-switch .bootstrap-switch-handle-off i { + position: relative; + font-size: 16px; + left: -1px; +} +.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary, +.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary { + color: #fff; + background: #337ab7; +} +.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info, +.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info { + color: #fff; + background: #5bc0de; +} +.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success, +.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success { + color: #fff; + background: #5cb85c; +} +.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning, +.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning { + background: #f0ad4e; + color: #fff; +} +.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger, +.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger { + color: #fff; + background: #d9534f; +} +.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default, +.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default { + color: #000; + background: #eeeeee; +} + +.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-themecolor, +.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-themecolor { + color: #FFF; + background: #1ABC9C; + background: var(--themecolor); +} + +.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-black, +.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-black { + color: #FFF; + background: #000; +} + +.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-white, +.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-white { + color: #000; + background: #F5F5F5; +} + +.bootstrap-switch .bootstrap-switch-label { + text-align: center; + margin-top: -1px; + margin-bottom: -1px; + z-index: 100; + color: #333333; + background: #ffffff; +} +.bootstrap-switch .bootstrap-switch-handle-on { + border-bottom-left-radius: 1px; + border-top-left-radius: 1px; +} +.bootstrap-switch .bootstrap-switch-handle-off { + border-bottom-right-radius: 1px; + border-top-right-radius: 1px; +} +.bootstrap-switch input[type='radio'], +.bootstrap-switch input[type='checkbox'] { + position: absolute !important; + top: 0; + left: 0; + margin: 0; + z-index: -1; + opacity: 0; + filter: alpha(opacity=0); +} +.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on, +.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off, +.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label { + padding: 1px 5px; + font-size: 12px; + line-height: 1.5; +} +.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on, +.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off, +.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label { + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; +} +.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on, +.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off, +.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label { + padding: 6px 16px; + font-size: 18px; + line-height: 1.3333333; +} +.bootstrap-switch.bootstrap-switch-disabled, +.bootstrap-switch.bootstrap-switch-readonly, +.bootstrap-switch.bootstrap-switch-indeterminate { cursor: default !important; } +.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on, +.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on, +.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on, +.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off, +.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off, +.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off, +.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label, +.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label, +.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label { + opacity: 0.5; + filter: alpha(opacity=50); + cursor: default !important; +} +.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container { + -webkit-transition: margin-left 0.2s ease; + -o-transition: margin-left 0.2s ease; + transition: margin-left 0.2s ease; +} +.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on { + border-bottom-left-radius: 0; + border-top-left-radius: 0; + border-bottom-right-radius: 1px; + border-top-right-radius: 1px; +} +.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off { + border-bottom-right-radius: 0; + border-top-right-radius: 0; + border-bottom-left-radius: 1px; + border-top-left-radius: 1px; +} +.bootstrap-switch.bootstrap-switch-focused { + outline: 0; +} +.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label, +.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label { + border-bottom-right-radius: 1px; + border-top-right-radius: 1px; +} +.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label, +.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label { + border-bottom-left-radius: 1px; + border-top-left-radius: 1px; +} + +.bootstrap-switch-label:after { + content: ''; + position: absolute; + top: 50%; + left: 50%; + width: 10px; + height: 3px; + margin-top: -2px; + margin-left: -5px; + display: inline-block; + border-top: 1px solid #DDD; + border-bottom: 1px solid #DDD; +} + + + + + + +/* -------------------------------------------------------------- + SWITCH +-------------------------------------------------------------- */ +.switch-toggle { + position: absolute; + margin-left: -9999px; + visibility: hidden; +} + +.switch-toggle + label { + display: block; + position: relative; + cursor: pointer; + outline: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +/* -------------------------------------------------------------- + SWITCH 1 - ROUND +----------------------------------------------------------------- */ +input.switch-toggle-round + label { + padding: 2px; + width: 60px; + height: 30px; + background-color: #DDD; + -webkit-border-radius: 15px; + -o-border-radius: 15px; + border-radius: 15px; +} + +input.switch-toggle-round + label:before, +input.switch-toggle-round + label:after { + display: block; + position: absolute; + top: 1px; + left: 1px; + bottom: 1px; + content: ""; +} + +input.switch-toggle-round + label:before { + right: 1px; + background-color: #F1F1F1; + -webkit-border-radius: 15px; + -o-border-radius: 15px; + border-radius: 15px; + -webkit-transition: background 0.4s; + -moz-transition: background 0.4s; + -o-transition: background 0.4s; + transition: background 0.4s; +} + +input.switch-toggle-round + label:after { + width: 28px; + background-color: #FFF; + -webkit-border-radius: 100%; + -o-border-radius: 100%; + border-radius: 100%; + -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); + -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); + -webkit-transition: margin 0.4s; + -moz-transition: margin 0.4s; + -o-transition: margin 0.4s; + transition: margin 0.4s; +} + +input.switch-toggle-round:checked + label:before { + background-color: #1ABC9C; + background-color: var(--themecolor); +} +input.switch-toggle-round:checked + label:after { margin-left: 30px; } + +/* -------------------------------------------------------------- + SWITCH 1 - ROUND- MINI +----------------------------------------------------------------- */ +input.switch-rounded-mini.switch-toggle-round + label { + padding: 1px; + width: 32px; + height: 16px; + -webkit-border-radius: 8px; + -o-border-radius: 8px; + border-radius: 8px; +} + +input.switch-rounded-mini.switch-toggle-round + label:before { + -webkit-border-radius: 8px; + -o-border-radius: 8px; + border-radius: 8px; +} + +input.switch-rounded-mini.switch-toggle-round + label:after { width: 15px; } +input.switch-rounded-mini.switch-toggle-round:checked + label:after { margin-left: 15px; } + +/* -------------------------------------------------------------- + SWITCH 1 - ROUND- LARGE +----------------------------------------------------------------- */ +input.switch-rounded-large.switch-toggle-round + label { + width: 90px; + height: 45px; + -webkit-border-radius: 45px; + -o-border-radius: 45px; + border-radius: 45px; +} + +input.switch-rounded-large.switch-toggle-round + label:before { + -webkit-border-radius: 45px; + -o-border-radius: 45px; + border-radius: 45px; +} + +input.switch-rounded-large.switch-toggle-round + label:after { width: 43px; } +input.switch-rounded-large.switch-toggle-round:checked + label:after { margin-left: 45px; } + + +/* -------------------------------------------------------------- + SWITCH 1 - ROUND- XLARGE +----------------------------------------------------------------- */ +input.switch-rounded-xlarge.switch-toggle-round + label { + width: 120px; + height: 60px; + -webkit-border-radius: 60px; + -o-border-radius: 60px; + border-radius: 60px; +} + +input.switch-rounded-xlarge.switch-toggle-round + label:before { + -webkit-border-radius: 60px; + -o-border-radius: 60px; + border-radius: 60px; +} + +input.switch-rounded-xlarge.switch-toggle-round + label:after { width: 58px; } +input.switch-rounded-xlarge.switch-toggle-round:checked + label:after { margin-left: 60px; } + + +/* ----------------------------------------------------------- + SWITCH 2 - ROUND FLAT +-------------------------------------------------------------- */ +input.switch-toggle-flat + label { + padding: 2px; + width: 60px; + height: 30px; + background-color: #DDD; + -webkit-border-radius: 30px; + -moz-border-radius: 30px; + -ms-border-radius: 30px; + -o-border-radius: 30px; + border-radius: 30px; + -webkit-transition: background 0.4s; + -moz-transition: background 0.4s; + -o-transition: background 0.4s; + transition: background 0.4s; +} + +input.switch-toggle-flat + label:before, +input.switch-toggle-flat + label:after { + display: block; + position: absolute; + content: ""; +} + +input.switch-toggle-flat + label:before { + top: 2px; + left: 2px; + bottom: 2px; + right: 2px; + background-color: #FFF; + -webkit-border-radius: 30px; + -moz-border-radius: 30px; + -ms-border-radius: 30px; + -o-border-radius: 30px; + border-radius: 30px; + -webkit-transition: background 0.4s; + -moz-transition: background 0.4s; + -o-transition: background 0.4s; + transition: background 0.4s; +} + +input.switch-toggle-flat + label:after { + top: 4px; + left: 4px; + bottom: 4px; + width: 22px; + background-color: #DDD; + -webkit-border-radius: 22px; + -moz-border-radius: 22px; + -ms-border-radius: 22px; + -o-border-radius: 22px; + border-radius: 22px; + -webkit-transition: margin 0.4s, background 0.4s; + -moz-transition: margin 0.4s, background 0.4s; + -o-transition: margin 0.4s, background 0.4s; + transition: margin 0.4s, background 0.4s; +} + +input.switch-toggle-flat:checked + label { + background-color: #1ABC9C; + background-color: var(--themecolor); +} + +input.switch-toggle-flat:checked + label:after { + margin-left: 30px; + background-color: #1ABC9C; + background-color: var(--themecolor); +} + + +/* ----------------------------------------------------------- + SWITCH 2 - FLAT - MINI +-------------------------------------------------------------- */ +input.switch-flat-mini.switch-toggle-flat + label { + padding: 1px; + width: 32px; + height: 16px; + -webkit-border-radius: 16px; + -o-border-radius: 16px; + border-radius: 16px; +} + +input.switch-flat-mini.switch-toggle-flat + label:before { + top: 1px; + left: 1px; + bottom: 1px; + right: 1px; + -webkit-border-radius: 16px; + -o-border-radius: 16px; + border-radius: 16px; +} + +input.switch-flat-mini.switch-toggle-flat + label:after { + top: 2px; + left: 2px; + bottom: 2px; + width: 12px; + -webkit-border-radius: 12px; + -o-border-radius: 12px; + border-radius: 12px; +} + +input.switch-flat-mini.switch-toggle-flat:checked + label:after { margin-left: 16px; } + + +/* ----------------------------------------------------------- + SWITCH 2 - FLAT - LARGE +-------------------------------------------------------------- */ +input.switch-flat-large.switch-toggle-flat + label { + width: 90px; + height: 45px; + -webkit-border-radius: 45px; + -o-border-radius: 45px; + border-radius: 45px; +} + +input.switch-flat-large.switch-toggle-flat + label:before { + -webkit-border-radius: 45px; + -o-border-radius: 45px; + border-radius: 45px; +} + +input.switch-flat-large.switch-toggle-flat + label:after { + width: 37px; + -webkit-border-radius: 37px; + -o-border-radius: 37px; + border-radius: 37px; +} + +input.switch-flat-large.switch-toggle-flat:checked + label:after { margin-left: 45px; } + + + +/* ----------------------------------------------------------- + SWITCH 2 - FLAT - XLARGE +-------------------------------------------------------------- */ +input.switch-flat-xlarge.switch-toggle-flat + label { + padding: 2px; + width: 120px; + height: 60px; + -webkit-border-radius: 60px; + -o-border-radius: 60px; + border-radius: 60px; +} + +input.switch-flat-xlarge.switch-toggle-flat + label:before { + -webkit-border-radius: 60px; + -o-border-radius: 60px; + border-radius: 60px; +} +input.switch-flat-xlarge.switch-toggle-flat + label:after { + width: 52px; + -webkit-border-radius: 52px; + -o-border-radius: 52px; + border-radius: 52px; +} + +input.switch-flat-xlarge.switch-toggle-flat:checked + label:after { margin-left: 60px; } + diff --git a/TSC2.Client/wwwroot/css/components/bs-switches.css b/TSC2.Client/wwwroot/css/components/bs-switches.css new file mode 100644 index 0000000..392a2e9 --- /dev/null +++ b/TSC2.Client/wwwroot/css/components/bs-switches.css @@ -0,0 +1,184 @@ +/** +* bootstrap-switch - Turn checkboxes and radio buttons into toggle switches. +* +* @version v3.4 for Bootstrap 4.x +* @homepage https://bttstrp.github.io/bootstrap-switch +* @author Mattia Larentis (http://larentis.eu) +* & djibe +* @license Apache-2.0 +*/ +.bootstrap-switch { + display: inline-block; + direction: ltr; + cursor: pointer; + border-radius: 4px; + border: 1px solid #ccc; + position: relative; + text-align: left; + overflow: hidden; + line-height: 8px; + z-index: 0; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + vertical-align: middle; + -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; + transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; + transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; + transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; +} +.bootstrap-switch .bootstrap-switch-container { + display: inline-block; + top: 0; + border-radius: 4px; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); +} +.bootstrap-switch .bootstrap-switch-handle-on, +.bootstrap-switch .bootstrap-switch-handle-off, +.bootstrap-switch .bootstrap-switch-label { + -webkit-box-sizing: border-box; + box-sizing: border-box; + cursor: pointer; + display: table-cell; + vertical-align: middle; + padding: 6px 12px; + font-size: 14px; + line-height: 20px; + font-weight: 500; +} +.bootstrap-switch .bootstrap-switch-handle-on, +.bootstrap-switch .bootstrap-switch-handle-off { + text-align: center; + z-index: 1; +} +.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary, +.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary { + background: #007bff; + color: #fff; +} +.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default, +.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default { + background: #eee; + color: rgba(0, 0, 0, 0.87); +} +.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-secondary, +.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-secondary { + background: #6c757d; + color: #fff; +} +.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info, +.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info { + background: #17a2b8; + color: #fff; +} +.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success, +.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success { + background: #28a745; + color: #fff; +} +.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning, +.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning { + background: #ffc107; + color: #fff; +} +.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger, +.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger { + background: #dc3545; + color: #fff; +} + +.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-themecolor, +.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-themecolor { + color: #FFF; + background: var(--cnvs-themecolor); + border-color: transparent !important; + outline: 0 !important; + -webkit-box-shadow: none !important; + box-shadow: none !important; +} +.bootstrap-switch .bootstrap-switch-label { + text-align: center; + margin-top: -1px; + margin-bottom: -1px; + z-index: 100; + color: #333; + background: #fff; + padding: 8px 12px; +} +.bootstrap-switch span::before { + content: "\200b"; +} +.bootstrap-switch .bootstrap-switch-handle-on { + border-bottom-left-radius: 3px; + border-top-left-radius: 3px; +} +.bootstrap-switch .bootstrap-switch-handle-off { + border-bottom-right-radius: 3px; + border-top-right-radius: 3px; +} +.bootstrap-switch input[type='radio'], +.bootstrap-switch input[type='checkbox'] { + position: absolute !important; + top: 0; + left: 0; + margin: 0; + z-index: -1; + opacity: 0; + filter: alpha(opacity=0); + visibility: hidden; +} +.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on, +.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off, +.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label { + padding: 1px 5px; + font-size: 12px; + line-height: 1.5; +} +.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on, +.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off, +.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label { + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; +} +.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on, +.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off, +.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label { + padding: 6px 16px; + font-size: 18px; + line-height: 1.3333333; +} +.bootstrap-switch.bootstrap-switch-disabled, .bootstrap-switch.bootstrap-switch-readonly, .bootstrap-switch.bootstrap-switch-indeterminate { + cursor: default !important; +} +.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on, .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on, .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on, .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off, .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off, .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off, .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label, .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label, .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label { + opacity: 0.5; + filter: alpha(opacity=50); + cursor: default !important; +} +.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container { + -webkit-transition: margin-left 0.5s; + transition: margin-left 0.5s; +} +.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on { + border-radius: 0 3px 3px 0; +} +.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off { + border-radius: 3px 0 0 3px; +} +.bootstrap-switch.bootstrap-switch-focused { + border-color: #66afe9; + outline: 0; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); +} +.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label, .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label { + border-bottom-right-radius: 3px; + border-top-right-radius: 3px; +} +.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label, .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label { + border-bottom-left-radius: 3px; + border-top-left-radius: 3px; +} \ No newline at end of file diff --git a/TSC2.Client/wwwroot/css/components/dark-components.css b/TSC2.Client/wwwroot/css/components/dark-components.css new file mode 100644 index 0000000..c5221cc --- /dev/null +++ b/TSC2.Client/wwwroot/css/components/dark-components.css @@ -0,0 +1,341 @@ + +/* ======================================================================== + Dark - timepicker.css +======================================================================== */ +.dark .bootstrap-datetimepicker-widget.dropdown-menu.bottom:before { border-bottom: 7px solid #444; } +.dark .bootstrap-datetimepicker-widget.dropdown-menu.bottom:after { border-bottom-color: #222; } +.dark .bootstrap-datetimepicker-widget.dropdown-menu.top:before { border-top-color: #DDD; } +.dark .bootstrap-datetimepicker-widget.dropdown-menu.top:after { border-top-color: #222; } +.dark .bootstrap-datetimepicker-widget table th.disabled, +.dark .bootstrap-datetimepicker-widget table th.disabled:hover { color: #AAA; } +.dark .bootstrap-datetimepicker-widget table thead tr:first-child th:hover { background: #444; } +.dark .bootstrap-datetimepicker-widget table td.cw { color: #AAA; } +.dark .bootstrap-datetimepicker-widget table td.day:hover, +.dark .bootstrap-datetimepicker-widget table td.hour:hover, +.dark .bootstrap-datetimepicker-widget table td.minute:hover, +.dark .bootstrap-datetimepicker-widget table td.second:hover { background: #444; } +.dark .bootstrap-datetimepicker-widget table td.old, +.dark .bootstrap-datetimepicker-widget table td.new { color: #AAA; } +.dark .bootstrap-datetimepicker-widget table td.active, +.dark .bootstrap-datetimepicker-widget table td.active:hover { color: #222; } +.dark .bootstrap-datetimepicker-widget table td.active.today:before { border-bottom-color: #222; } +.dark .bootstrap-datetimepicker-widget table td.disabled, +.dark .bootstrap-datetimepicker-widget table td.disabled:hover { color: #AAA; } +.dark .bootstrap-datetimepicker-widget table td span:hover { background: #444; } +.dark .bootstrap-datetimepicker-widget table td span.active { color: #222; } +.dark .bootstrap-datetimepicker-widget table td span.old { color: #AAA; } +.dark .bootstrap-datetimepicker-widget table td span.disabled, +.dark .bootstrap-datetimepicker-widget table td span.disabled:hover { color: #AAA; } + + + + +/* ======================================================================== + select-boxes.css +======================================================================== */ +.dark .select2-dropdown { + background-color: #333; + border-color: #555; +} +.dark .select2-close-mask { background-color: #333; } + +.dark .select2-container--default .select2-selection--single { + background-color: #333; + border-color: #555; +} +.dark .select2-container--default .select2-selection--single .select2-selection__rendered { color: #EEE; } +.dark .select2-container--default .select2-selection--single .select2-selection__placeholder { color: #999; } + +.dark .select2-container--default .select2-selection--multiple { + background-color: #333; + border-color: #555; +} +.dark .select2-container--default .select2-selection--multiple .select2-selection__placeholder { color: #999; } +.dark .select2-container--default .select2-selection--multiple .select2-selection__choice { + background-color: #444; + border-color: #555; +} +.dark .select2-container--default .select2-selection--multiple .select2-selection__choice__remove { color: #999; } +.dark .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover { color: #EEE; } + +.dark .select2-container--default.select2-container--disabled .select2-selection--multiple { background-color: #444; } + +.dark .select2-container--default .select2-search--dropdown .select2-search__field { + border-color: #555; + background-color: #555; + color: #EEE; +} + +.dark .select2-container--default .select2-results__option[aria-disabled=true] { color: #999; } + +.dark .select2-container--default .select2-results__option[aria-selected=true] { background-color: #444; } + +.dark .select2-container--default .select2-results__option--highlighted[aria-selected] { + background-color: #5897fb; + color: #EEE; } + +.dark .select2-container--classic .select2-selection--single { + background-color: #444; + border-color: #555; + background-image: -webkit-linear-gradient(top, white 50%, #444 100%); + background-image: -o-linear-gradient(top, white 50%, #444 100%); + background-image: linear-gradient(to bottom, white 50%, #444 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#44444444', endColorstr='#44EEEEEE', GradientType=0); +} +.dark .select2-container--classic .select2-selection--single:focus { border: 1px solid #5897fb; } +.dark .select2-container--classic .select2-selection--single .select2-selection__rendered { color: #444; } +.dark .select2-container--classic .select2-selection--single .select2-selection__placeholder { color: #999; } +.dark .select2-container--classic .select2-selection--single .select2-selection__arrow { + background-color: #444; + border-left-color: #555; + background-image: -webkit-linear-gradient(top, #444 50%, #444 100%); + background-image: -o-linear-gradient(top, #444 50%, #444 100%); + background-image: linear-gradient(to bottom, #444 50%, #444 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#44EEEEEE', endColorstr='#44CCCCCC', GradientType=0); +} + +.dark .select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow { border-right-color: #555; } + +.dark .select2-container--classic.select2-container--open.select2-container--above .select2-selection--single { + background-image: -webkit-linear-gradient(top, white 0%, #444 50%); + background-image: -o-linear-gradient(top, white 0%, #444 50%); + background-image: linear-gradient(to bottom, white 0%, #444 50%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#44444444', endColorstr='#44EEEEEE', GradientType=0); +} + +.dark .select2-container--classic.select2-container--open.select2-container--below .select2-selection--single { + background-image: -webkit-linear-gradient(top, #444 50%, white 100%); + background-image: -o-linear-gradient(top, #444 50%, white 100%); + background-image: linear-gradient(to bottom, #444 50%, white 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#44EEEEEE', endColorstr='#444', GradientType=0); +} + +.dark .select2-container--classic .select2-selection--multiple { + background-color: #333; + border-color: #555; +} + +.dark .select2-container--classic .select2-selection--multiple:focus { border-color: #5897fb; } +.dark .select2-container--classic .select2-selection--multiple .select2-selection__choice { + background-color: #444; + border-color: #555; +} +.dark .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover { color: #EEE; } + +.dark .select2-container--classic .select2-search--dropdown .select2-search__field { border-color: #555; } + +.dark .select2-container--classic .select2-dropdown { background-color: #333;} + +.dark .select2-container--classic .select2-results__option[aria-disabled=true] { color: #444; } + +.dark .select2-container--classic .select2-results__option--highlighted[aria-selected] { color: #333; } + +.dark .select2-container--default.select2-container--disabled .select2-selection--single { background-color: rgba(255,255,255,0.1); } + + + + + + +/* ======================================================================== + radio-checkbox.css +======================================================================== */ + +.dark .checkbox-style-1-label:before, +.dark .radio-style-1-label:before, +.dark .checkbox-style-2-label:before, +.dark .radio-style-2-label:before, +.dark .checkbox-style-3-label:before, +.dark .radio-style-3-label:before { + background: #333; + border-color: #444; +} + +.dark .radio-style:checked + .radio-style-1-label:before { background: #CCC; } + +/* Checkbox-small + Radio-small */ +.dark .checkbox-style-1-label.checkbox-small:before, +.dark .radio-style-1-label.radio-small:before, +.dark .checkbox-style-2-label.checkbox-small:before, +.dark .radio-style-2-label.radio-small:before, +.dark .checkbox-style-3-label.checkbox-small:before, +.dark .radio-style-3-label.radio-small:before { border-color: #444; } + +/* Style-2 */ +.dark .checkbox-style:checked + .checkbox-style-2-label:before { box-shadow: inset 0px 0px 0px 4px #000; } + +.dark .radio-style:checked + .radio-style-2-label:before { + background: #CCC; + box-shadow: inset 0px 0px 0px 4px #333; +} + +.dark .checkbox-style:checked + .checkbox-style-2-label.checkbox-small:before { box-shadow: inset 0px 0px 0px 2px #000; } +.dark .radio-style:checked + .radio-style-2-label.radio-small:before { box-shadow: inset 0px 0px 0px 2px #000; } + +/* style-3 */ +.dark .checkbox-style:checked + .checkbox-style-3-label:before, +.dark .radio-style:checked + .radio-style-3-label:before { color: #222; } +.dark .radio-style:checked + .radio-style-3-label:before { + color: #CCC; + border-color: #CCC; +} + +/* style-3 - Small */ +.dark .checkbox-style + .checkbox-style-3-label.checkbox-small:before, +.dark .radio-style + .radio-style-3-label.radio-small:before { border-color: #555; } + + + + + + + +/* ======================================================================== + ion.rangeslider.css +======================================================================== */ +.dark .irs-bar-edge, +.dark .irs-line-mid, +.dark .irs-line-left, +.dark .irs-line-right { background-color: #444; } + + + + +/*======================================================================== + daterangepicker.css + ======================================================================== */ +.dark .daterangepicker { background: #222; } + +.dark .daterangepicker.opensleft:before { + border-bottom-color: #444; + border-bottom-color: rgba(255, 255, 255, 0.2); +} + +.dark .daterangepicker.opensleft:after { + border-bottom-color: #555; + border-left-color: transparent; +} + +.dark .daterangepicker.openscenter:before { + border-bottom-color: #444; + border-left-color: transparent; + border-bottom-color: rgba(0, 0, 0, 0.2); +} + +.dark .daterangepicker.openscenter:after { + border-bottom-color: #222; + border-left-color: transparent; +} + +.dark .daterangepicker.opensright:before { + border-bottom-color: #444; + border-left-color: transparent; + border-bottom-color: rgba(0, 0, 0, 0.2); +} + +.dark .daterangepicker.opensright:after { + border-bottom-color: #222; + border-left-color: transparent; +} + +.dark .daterangepicker.dropup:before{ border-top-color: #444; } + +.dark .daterangepicker.dropup:after{ border-top-color: #222; } + +.dark .daterangepicker .calendar-table { + border-color: #444; + background: #222; +} + +.dark .daterangepicker td.off, .dark .daterangepicker td.off.in-range, .dark .daterangepicker td.off.start-date, .dark .daterangepicker td.off.end-date { + color: #999; + background: #222; +} + +.dark .daterangepicker td.disabled, .dark .daterangepicker option.disabled { color: #999; } + +.dark .daterangepicker td.available:hover, .dark .daterangepicker th.available:hover { background: #555; } + +.dark .daterangepicker td.in-range { + background: #444; + border-radius: 0; +} + +.dark .daterangepicker td.active, .dark .daterangepicker td.active:hover { + background-color: #357ebd; + border-color: #3071a9; + color: #EEE; +} + +.dark .daterangepicker td.week, .dark .daterangepicker th.week { color: #444; } + +.dark .reportrange { border-color: #444 !important; } + +/* Text Input Above Each Calendar */ +.dark .daterangepicker .input-mini { + border-color: #444; + color: #555; +} + +.dark .daterangepicker .input-mini.active { border-color: #357ebd; } + +.dark .daterangepicker .calendar-time select.disabled { color: #444; } + +.daterangepicker .daterangepicker_input i { color: #333; } + + /* Predefined Ranges */ +.dark .daterangepicker .ranges li { + background: #333; + border-color: #333; + color: #EEE; +} + +.dark .daterangepicker .ranges li.active, .dark .daterangepicker .ranges li:hover { + background: #08c; + border-color: #08c; + color: #EEE; +} + +.dark .input-daterange .input-group-addon { + background-color: #222; + border-color: #111; + text-shadow: none; +} + + + + +/* ======================================================================== +* bs-switches.css +* ====================================================================== */ + +.dark .bootstrap-switch { border-color: #444; } + +.dark .bootstrap-switch .bootstrap-switch-label { + color: #EEE; + background: #222; +} + +.dark .bootstrap-switch-label:after { + border-top-color: #444; + border-bottom-color: #444; +} + +/* Switches +-------------------------------------------------------------- */ +.dark input.switch-toggle-round + label { background-color: #444; } + +.dark input.switch-toggle-round + label:before, +.dark input.switch-toggle-flat + label:before { background-color: #222; } + +.dark input.switch-toggle-flat + label, +.dark input.switch-toggle-flat + label:after { background-color: #AAA; } + +.dark input.switch-toggle-round + label:after { + background-color: #AAA; + -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8); + -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8); + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8); +} + diff --git a/TSC2.Client/wwwroot/css/components/datepicker.css b/TSC2.Client/wwwroot/css/components/datepicker.css new file mode 100644 index 0000000..cdd09ae --- /dev/null +++ b/TSC2.Client/wwwroot/css/components/datepicker.css @@ -0,0 +1,7 @@ +/*! + * Datepicker for Bootstrap v1.10.0 (https://github.com/uxsolutions/bootstrap-datepicker) + * + * Licensed under the Apache License v2.0 (https://www.apache.org/licenses/LICENSE-2.0) + */ + + .datepicker{padding:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;direction:ltr}.datepicker-inline{width:220px}.datepicker-rtl{direction:rtl}.datepicker-rtl.dropdown-menu{left:auto}.datepicker-rtl table tr td span{float:right}.datepicker-dropdown{top:0;left:0}.datepicker-dropdown:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #999;border-top:0;border-bottom-color:rgba(0,0,0,.2);position:absolute}.datepicker-dropdown:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;border-top:0;position:absolute}.datepicker-dropdown.datepicker-orient-left:before{left:6px}.datepicker-dropdown.datepicker-orient-left:after{left:7px}.datepicker-dropdown.datepicker-orient-right:before{right:6px}.datepicker-dropdown.datepicker-orient-right:after{right:7px}.datepicker-dropdown.datepicker-orient-bottom:before{top:-7px}.datepicker-dropdown.datepicker-orient-bottom:after{top:-6px}.datepicker-dropdown.datepicker-orient-top:before{bottom:-7px;border-bottom:0;border-top:7px solid #999}.datepicker-dropdown.datepicker-orient-top:after{bottom:-6px;border-bottom:0;border-top:6px solid #fff}.datepicker table{margin:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.datepicker td,.datepicker th{text-align:center;width:20px;height:20px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;border:none}.table-striped .datepicker table tr td,.table-striped .datepicker table tr th{background-color:transparent}.datepicker table tr td.day.focused,.datepicker table tr td.day:hover{background:#eee;cursor:pointer}.datepicker table tr td.new,.datepicker table tr td.old{color:#999}.datepicker table tr td.disabled,.datepicker table tr td.disabled:hover{background:0 0;color:#999;cursor:default}.datepicker table tr td.highlighted{background:#d9edf7;border-radius:0}.datepicker table tr td.today,.datepicker table tr td.today.disabled,.datepicker table tr td.today.disabled:hover,.datepicker table tr td.today:hover{background-color:#fde19a;background-image:-moz-linear-gradient(to bottom,#fdd49a,#fdf59a);background-image:-ms-linear-gradient(to bottom,#fdd49a,#fdf59a);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fdd49a),to(#fdf59a));background-image:-webkit-linear-gradient(to bottom,#fdd49a,#fdf59a);background-image:-o-linear-gradient(to bottom,#fdd49a,#fdf59a);background-image:linear-gradient(to bottom,#fdd49a,#fdf59a);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);border-color:#fdf59a #fdf59a #fbed50;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#000}.datepicker table tr td.today.active,.datepicker table tr td.today.disabled,.datepicker table tr td.today.disabled.active,.datepicker table tr td.today.disabled.disabled,.datepicker table tr td.today.disabled:active,.datepicker table tr td.today.disabled:hover,.datepicker table tr td.today.disabled:hover.active,.datepicker table tr td.today.disabled:hover.disabled,.datepicker table tr td.today.disabled:hover:active,.datepicker table tr td.today.disabled:hover:hover,.datepicker table tr td.today.disabled:hover[disabled],.datepicker table tr td.today.disabled[disabled],.datepicker table tr td.today:active,.datepicker table tr td.today:hover,.datepicker table tr td.today:hover.active,.datepicker table tr td.today:hover.disabled,.datepicker table tr td.today:hover:active,.datepicker table tr td.today:hover:hover,.datepicker table tr td.today:hover[disabled],.datepicker table tr td.today[disabled]{background-color:#fdf59a}.datepicker table tr td.today.active,.datepicker table tr td.today.disabled.active,.datepicker table tr td.today.disabled:active,.datepicker table tr td.today.disabled:hover.active,.datepicker table tr td.today.disabled:hover:active,.datepicker table tr td.today:active,.datepicker table tr td.today:hover.active,.datepicker table tr td.today:hover:active{background-color:#fbf069\9}.datepicker table tr td.today:hover:hover{color:#000}.datepicker table tr td.today.active:hover{color:#fff}.datepicker table tr td.range,.datepicker table tr td.range.disabled,.datepicker table tr td.range.disabled:hover,.datepicker table tr td.range:hover{background:#eee;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.datepicker table tr td.range.today,.datepicker table tr td.range.today.disabled,.datepicker table tr td.range.today.disabled:hover,.datepicker table tr td.range.today:hover{background-color:#f3d17a;background-image:-moz-linear-gradient(to bottom,#f3c17a,#f3e97a);background-image:-ms-linear-gradient(to bottom,#f3c17a,#f3e97a);background-image:-webkit-gradient(linear,0 0,0 100%,from(#f3c17a),to(#f3e97a));background-image:-webkit-linear-gradient(to bottom,#f3c17a,#f3e97a);background-image:-o-linear-gradient(to bottom,#f3c17a,#f3e97a);background-image:linear-gradient(to bottom,#f3c17a,#f3e97a);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a', endColorstr='#f3e97a', GradientType=0);border-color:#f3e97a #f3e97a #edde34;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.datepicker table tr td.range.today.active,.datepicker table tr td.range.today.disabled,.datepicker table tr td.range.today.disabled.active,.datepicker table tr td.range.today.disabled.disabled,.datepicker table tr td.range.today.disabled:active,.datepicker table tr td.range.today.disabled:hover,.datepicker table tr td.range.today.disabled:hover.active,.datepicker table tr td.range.today.disabled:hover.disabled,.datepicker table tr td.range.today.disabled:hover:active,.datepicker table tr td.range.today.disabled:hover:hover,.datepicker table tr td.range.today.disabled:hover[disabled],.datepicker table tr td.range.today.disabled[disabled],.datepicker table tr td.range.today:active,.datepicker table tr td.range.today:hover,.datepicker table tr td.range.today:hover.active,.datepicker table tr td.range.today:hover.disabled,.datepicker table tr td.range.today:hover:active,.datepicker table tr td.range.today:hover:hover,.datepicker table tr td.range.today:hover[disabled],.datepicker table tr td.range.today[disabled]{background-color:#f3e97a}.datepicker table tr td.range.today.active,.datepicker table tr td.range.today.disabled.active,.datepicker table tr td.range.today.disabled:active,.datepicker table tr td.range.today.disabled:hover.active,.datepicker table tr td.range.today.disabled:hover:active,.datepicker table tr td.range.today:active,.datepicker table tr td.range.today:hover.active,.datepicker table tr td.range.today:hover:active{background-color:#efe24b\9}.datepicker table tr td.selected,.datepicker table tr td.selected.disabled,.datepicker table tr td.selected.disabled:hover,.datepicker table tr td.selected:hover{background-color:#9e9e9e;background-image:-moz-linear-gradient(to bottom,#b3b3b3,grey);background-image:-ms-linear-gradient(to bottom,#b3b3b3,grey);background-image:-webkit-gradient(linear,0 0,0 100%,from(#b3b3b3),to(grey));background-image:-webkit-linear-gradient(to bottom,#b3b3b3,grey);background-image:-o-linear-gradient(to bottom,#b3b3b3,grey);background-image:linear-gradient(to bottom,#b3b3b3,grey);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#808080', GradientType=0);border-color:grey grey #595959;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.datepicker table tr td.selected.active,.datepicker table tr td.selected.disabled,.datepicker table tr td.selected.disabled.active,.datepicker table tr td.selected.disabled.disabled,.datepicker table tr td.selected.disabled:active,.datepicker table tr td.selected.disabled:hover,.datepicker table tr td.selected.disabled:hover.active,.datepicker table tr td.selected.disabled:hover.disabled,.datepicker table tr td.selected.disabled:hover:active,.datepicker table tr td.selected.disabled:hover:hover,.datepicker table tr td.selected.disabled:hover[disabled],.datepicker table tr td.selected.disabled[disabled],.datepicker table tr td.selected:active,.datepicker table tr td.selected:hover,.datepicker table tr td.selected:hover.active,.datepicker table tr td.selected:hover.disabled,.datepicker table tr td.selected:hover:active,.datepicker table tr td.selected:hover:hover,.datepicker table tr td.selected:hover[disabled],.datepicker table tr td.selected[disabled]{background-color:grey}.datepicker table tr td.selected.active,.datepicker table tr td.selected.disabled.active,.datepicker table tr td.selected.disabled:active,.datepicker table tr td.selected.disabled:hover.active,.datepicker table tr td.selected.disabled:hover:active,.datepicker table tr td.selected:active,.datepicker table tr td.selected:hover.active,.datepicker table tr td.selected:hover:active{background-color:#666\9}.datepicker table tr td.active,.datepicker table tr td.active.disabled,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active:hover{background-color:#006dcc;background-image:-moz-linear-gradient(to bottom,#08c,#04c);background-image:-ms-linear-gradient(to bottom,#08c,#04c);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#04c));background-image:-webkit-linear-gradient(to bottom,#08c,#04c);background-image:-o-linear-gradient(to bottom,#08c,#04c);background-image:linear-gradient(to bottom,#08c,#04c);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.datepicker table tr td.active.active,.datepicker table tr td.active.disabled,.datepicker table tr td.active.disabled.active,.datepicker table tr td.active.disabled.disabled,.datepicker table tr td.active.disabled:active,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active.disabled:hover.active,.datepicker table tr td.active.disabled:hover.disabled,.datepicker table tr td.active.disabled:hover:active,.datepicker table tr td.active.disabled:hover:hover,.datepicker table tr td.active.disabled:hover[disabled],.datepicker table tr td.active.disabled[disabled],.datepicker table tr td.active:active,.datepicker table tr td.active:hover,.datepicker table tr td.active:hover.active,.datepicker table tr td.active:hover.disabled,.datepicker table tr td.active:hover:active,.datepicker table tr td.active:hover:hover,.datepicker table tr td.active:hover[disabled],.datepicker table tr td.active[disabled]{background-color:#04c}.datepicker table tr td.active.active,.datepicker table tr td.active.disabled.active,.datepicker table tr td.active.disabled:active,.datepicker table tr td.active.disabled:hover.active,.datepicker table tr td.active.disabled:hover:active,.datepicker table tr td.active:active,.datepicker table tr td.active:hover.active,.datepicker table tr td.active:hover:active{background-color:#039\9}.datepicker table tr td span{display:block;width:23%;height:54px;line-height:54px;float:left;margin:1%;cursor:pointer;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.datepicker table tr td span.focused,.datepicker table tr td span:hover{background:#eee}.datepicker table tr td span.disabled,.datepicker table tr td span.disabled:hover{background:0 0;color:#999;cursor:default}.datepicker table tr td span.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active:hover{background-color:#006dcc;background-image:-moz-linear-gradient(to bottom,#08c,#04c);background-image:-ms-linear-gradient(to bottom,#08c,#04c);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#04c));background-image:-webkit-linear-gradient(to bottom,#08c,#04c);background-image:-o-linear-gradient(to bottom,#08c,#04c);background-image:linear-gradient(to bottom,#08c,#04c);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.datepicker table tr td span.active.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled.disabled,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active.disabled:hover.active,.datepicker table tr td span.active.disabled:hover.disabled,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active.disabled:hover:hover,.datepicker table tr td span.active.disabled:hover[disabled],.datepicker table tr td span.active.disabled[disabled],.datepicker table tr td span.active:active,.datepicker table tr td span.active:hover,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active:hover.disabled,.datepicker table tr td span.active:hover:active,.datepicker table tr td span.active:hover:hover,.datepicker table tr td span.active:hover[disabled],.datepicker table tr td span.active[disabled]{background-color:#04c}.datepicker table tr td span.active.active,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:hover.active,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active:active,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active:hover:active{background-color:#039\9}.datepicker table tr td span.new,.datepicker table tr td span.old{color:#999}.datepicker .datepicker-switch{width:145px}.datepicker .datepicker-switch,.datepicker .next,.datepicker .prev,.datepicker tfoot tr th{cursor:pointer}.datepicker .datepicker-switch:hover,.datepicker .next:hover,.datepicker .prev:hover,.datepicker tfoot tr th:hover{background:#eee}.datepicker .next.disabled,.datepicker .prev.disabled{visibility:hidden}.datepicker .cw{font-size:10px;width:12px;padding:0 2px 0 5px;vertical-align:middle}.input-append.date .add-on,.input-prepend.date .add-on{cursor:pointer}.input-append.date .add-on i,.input-prepend.date .add-on i{margin-top:3px}.input-daterange input{text-align:center}.input-daterange input:first-child{-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.input-daterange input:last-child{-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}.input-daterange .add-on{display:inline-block;width:auto;min-width:16px;height:18px;padding:4px 5px;font-weight:400;line-height:18px;text-align:center;text-shadow:0 1px 0 #fff;vertical-align:middle;background-color:#eee;border:1px solid #ccc;margin-left:-5px;margin-right:-5px} \ No newline at end of file diff --git a/TSC2.Client/wwwroot/css/components/daterangepicker.css b/TSC2.Client/wwwroot/css/components/daterangepicker.css new file mode 100644 index 0000000..b19d201 --- /dev/null +++ b/TSC2.Client/wwwroot/css/components/daterangepicker.css @@ -0,0 +1,410 @@ +.daterangepicker { + position: absolute; + color: inherit; + background-color: #fff; + border-radius: 4px; + border: 1px solid #ddd; + width: 278px; + max-width: none; + padding: 0; + margin-top: 7px; + top: 100px; + left: 20px; + z-index: 3001; + display: none; + font-family: arial; + font-size: 15px; + line-height: 1em; +} + +.daterangepicker:before, .daterangepicker:after { + position: absolute; + display: inline-block; + border-bottom-color: rgba(0, 0, 0, 0.2); + content: ''; +} + +.daterangepicker:before { + top: -7px; + border-right: 7px solid transparent; + border-left: 7px solid transparent; + border-bottom: 7px solid #ccc; +} + +.daterangepicker:after { + top: -6px; + border-right: 6px solid transparent; + border-bottom: 6px solid #fff; + border-left: 6px solid transparent; +} + +.daterangepicker.opensleft:before { + right: 9px; +} + +.daterangepicker.opensleft:after { + right: 10px; +} + +.daterangepicker.openscenter:before { + left: 0; + right: 0; + width: 0; + margin-left: auto; + margin-right: auto; +} + +.daterangepicker.openscenter:after { + left: 0; + right: 0; + width: 0; + margin-left: auto; + margin-right: auto; +} + +.daterangepicker.opensright:before { + left: 9px; +} + +.daterangepicker.opensright:after { + left: 10px; +} + +.daterangepicker.drop-up { + margin-top: -7px; +} + +.daterangepicker.drop-up:before { + top: initial; + bottom: -7px; + border-bottom: initial; + border-top: 7px solid #ccc; +} + +.daterangepicker.drop-up:after { + top: initial; + bottom: -6px; + border-bottom: initial; + border-top: 6px solid #fff; +} + +.daterangepicker.single .daterangepicker .ranges, .daterangepicker.single .drp-calendar { + float: none; +} + +.daterangepicker.single .drp-selected { + display: none; +} + +.daterangepicker.show-calendar .drp-calendar { + display: block; +} + +.daterangepicker.show-calendar .drp-buttons { + display: block; +} + +.daterangepicker.auto-apply .drp-buttons { + display: none; +} + +.daterangepicker .drp-calendar { + display: none; + max-width: 270px; +} + +.daterangepicker .drp-calendar.left { + padding: 8px 0 8px 8px; +} + +.daterangepicker .drp-calendar.right { + padding: 8px; +} + +.daterangepicker .drp-calendar.single .calendar-table { + border: none; +} + +.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span { + color: #fff; + border: solid black; + border-width: 0 2px 2px 0; + border-radius: 0; + display: inline-block; + padding: 3px; +} + +.daterangepicker .calendar-table .next span { + transform: rotate(-45deg); + -webkit-transform: rotate(-45deg); +} + +.daterangepicker .calendar-table .prev span { + transform: rotate(135deg); + -webkit-transform: rotate(135deg); +} + +.daterangepicker .calendar-table th, .daterangepicker .calendar-table td { + white-space: nowrap; + text-align: center; + vertical-align: middle; + min-width: 32px; + width: 32px; + height: 24px; + line-height: 24px; + font-size: 12px; + border-radius: 4px; + border: 1px solid transparent; + white-space: nowrap; + cursor: pointer; +} + +.daterangepicker .calendar-table { + border: 1px solid #fff; + border-radius: 4px; + background-color: #fff; +} + +.daterangepicker .calendar-table table { + width: 100%; + margin: 0; + border-spacing: 0; + border-collapse: collapse; +} + +.daterangepicker td.available:hover, .daterangepicker th.available:hover { + background-color: #eee; + border-color: transparent; + color: inherit; +} + +.daterangepicker td.week, .daterangepicker th.week { + font-size: 80%; + color: #ccc; +} + +.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date { + background-color: #fff; + border-color: transparent; + color: #999; +} + +.daterangepicker td.in-range { + background-color: #ebf4f8; + border-color: transparent; + color: #000; + border-radius: 0; +} + +.daterangepicker td.start-date { + border-radius: 4px 0 0 4px; +} + +.daterangepicker td.end-date { + border-radius: 0 4px 4px 0; +} + +.daterangepicker td.start-date.end-date { + border-radius: 4px; +} + +.daterangepicker td.active, .daterangepicker td.active:hover { + background-color: #357ebd; + border-color: transparent; + color: #fff; +} + +.daterangepicker th.month { + width: auto; +} + +.daterangepicker td.disabled, .daterangepicker option.disabled { + color: #999; + cursor: not-allowed; + text-decoration: line-through; +} + +.daterangepicker select.monthselect, .daterangepicker select.yearselect { + font-size: 12px; + padding: 1px; + height: auto; + margin: 0; + cursor: default; +} + +.daterangepicker select.monthselect { + margin-right: 2%; + width: 56%; +} + +.daterangepicker select.yearselect { + width: 40%; +} + +.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect { + width: 50px; + margin: 0 auto; + background: #eee; + border: 1px solid #eee; + padding: 2px; + outline: 0; + font-size: 12px; +} + +.daterangepicker .calendar-time { + text-align: center; + margin: 4px auto 0 auto; + line-height: 30px; + position: relative; +} + +.daterangepicker .calendar-time select.disabled { + color: #ccc; + cursor: not-allowed; +} + +.daterangepicker .drp-buttons { + clear: both; + text-align: right; + padding: 8px; + border-top: 1px solid #ddd; + display: none; + line-height: 12px; + vertical-align: middle; +} + +.daterangepicker .drp-selected { + display: inline-block; + font-size: 12px; + padding-right: 8px; +} + +.daterangepicker .drp-buttons .btn { + margin-left: 8px; + font-size: 12px; + font-weight: bold; + padding: 4px 8px; +} + +.daterangepicker.show-ranges.single.rtl .drp-calendar.left { + border-right: 1px solid #ddd; +} + +.daterangepicker.show-ranges.single.ltr .drp-calendar.left { + border-left: 1px solid #ddd; +} + +.daterangepicker.show-ranges.rtl .drp-calendar.right { + border-right: 1px solid #ddd; +} + +.daterangepicker.show-ranges.ltr .drp-calendar.left { + border-left: 1px solid #ddd; +} + +.daterangepicker .ranges { + float: none; + text-align: left; + margin: 0; +} + +.daterangepicker.show-calendar .ranges { + margin-top: 8px; +} + +.daterangepicker .ranges ul { + list-style: none; + margin: 0 auto; + padding: 0; + width: 100%; +} + +.daterangepicker .ranges li { + font-size: 12px; + padding: 8px 12px; + cursor: pointer; +} + +.daterangepicker .ranges li:hover { + background-color: #eee; +} + +.daterangepicker .ranges li.active { + background-color: #08c; + color: #fff; +} + +/* Larger Screen Styling */ +@media (min-width: 564px) { + .daterangepicker { + width: auto; + } + + .daterangepicker .ranges ul { + width: 140px; + } + + .daterangepicker.single .ranges ul { + width: 100%; + } + + .daterangepicker.single .drp-calendar.left { + clear: none; + } + + .daterangepicker.single .ranges, .daterangepicker.single .drp-calendar { + float: left; + } + + .daterangepicker { + direction: ltr; + text-align: left; + } + + .daterangepicker .drp-calendar.left { + clear: left; + margin-right: 0; + } + + .daterangepicker .drp-calendar.left .calendar-table { + border-right: none; + border-top-right-radius: 0; + border-bottom-right-radius: 0; + } + + .daterangepicker .drp-calendar.right { + margin-left: 0; + } + + .daterangepicker .drp-calendar.right .calendar-table { + border-left: none; + border-top-left-radius: 0; + border-bottom-left-radius: 0; + } + + .daterangepicker .drp-calendar.left .calendar-table { + padding-right: 8px; + } + + .daterangepicker .ranges, .daterangepicker .drp-calendar { + float: left; + } +} + +@media (min-width: 730px) { + .daterangepicker .ranges { + width: auto; + } + + .daterangepicker .ranges { + float: left; + } + + .daterangepicker.rtl .ranges { + float: right; + } + + .daterangepicker .drp-calendar.left { + clear: none !important; + } +} \ No newline at end of file diff --git a/TSC2.Client/wwwroot/css/components/ion.rangeslider-vars.css b/TSC2.Client/wwwroot/css/components/ion.rangeslider-vars.css new file mode 100644 index 0000000..e3d0a42 --- /dev/null +++ b/TSC2.Client/wwwroot/css/components/ion.rangeslider-vars.css @@ -0,0 +1,269 @@ +/* Ion.RangeSlider +// css version 2.0.3 +// © 2013-2014 Denis Ineshin | IonDen.com +// ===================================================================================================================*/ + +/* ===================================================================================================================== +// RangeSlider */ + +.irs { + position: relative; display: block; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + .irs-line { + position: relative; display: block; + overflow: hidden; + outline: none !important; + } + .irs-line-left, .irs-line-mid, .irs-line-right { + position: absolute; display: block; + top: 0; + } + .irs-line-left { + left: 0; width: 11%; + } + .irs-line-mid { + left: 9%; width: 82%; + } + .irs-line-right { + right: 0; width: 11%; + } + + .irs-bar { + position: absolute; display: block; + left: 0; width: 0; + } + .irs-bar-edge { + position: absolute; display: block; + top: 0; left: 0; + } + + .irs-shadow { + position: absolute; display: none; + left: 0; width: 0; + } + + .irs-slider { + position: absolute; display: block; + cursor: pointer; + z-index: 1; + } + .irs-slider.single { + + } + .irs-slider.from { + + } + .irs-slider.to { + + } + .irs-slider.type_last { + z-index: 2; + } + + .irs-min { + position: absolute; display: block; + left: 0; + cursor: default; + } + .irs-max { + position: absolute; display: block; + right: 0; + cursor: default; + } + + .irs-from, .irs-to, .irs-single { + position: absolute; display: block; + top: 0; left: 0; + cursor: default; + white-space: nowrap; + } + +.irs-grid { + position: absolute; display: none; + bottom: 0; left: 0; + width: 100%; height: 20px; +} +.irs-with-grid .irs-grid { + display: block; +} + .irs-grid-pol { + position: absolute; + top: 0; left: 0; + width: 1px; height: 8px; + background: #000; + } + .irs-grid-pol.small { + height: 4px; + } + .irs-grid-text { + position: absolute; + bottom: 0; left: 0; + white-space: nowrap; + text-align: center; + font-size: 9px; line-height: 9px; + padding: 0 3px; + color: #000; + } + +.irs-disable-mask { + position: absolute; display: block; + top: 0; left: -1%; + width: 102%; height: 100%; + cursor: default; + background: rgba(0,0,0,0.0); + z-index: 2; +} +.lt-ie9 .irs-disable-mask { + background: #000; + filter: alpha(opacity=0); + cursor: not-allowed; +} + +.irs-disabled { + opacity: 0.4; +} + + +.irs-hidden-input { + position: absolute !important; + display: block !important; + top: 0 !important; + left: 0 !important; + width: 0 !important; + height: 0 !important; + font-size: 0 !important; + line-height: 0 !important; + padding: 0 !important; + margin: 0 !important; + outline: none !important; + z-index: -9999 !important; + background: none !important; + border-style: solid !important; + border-color: transparent !important; +} + + +/* Ion.RangeSlider, Nice Skin +// css version 2.0.3 +// © Denis Ineshin, 2014 https://github.com/IonDen +// ===================================================================================================================*/ + +/* ===================================================================================================================== +// Skin details */ + +.irs-slider { + background: url(rangeslider/sprite-skin-nice.png) repeat-x; +} + +.irs-bar-edge, +.irs-line-mid, +.irs-line-left, +.irs-line-right { + background-color: #EEE; + border-radius: 100px; +} + +.irs { + height: 40px; +} +.irs-with-grid { + height: 60px; +} +.irs-line { + height: 8px; top: 25px; +} + .irs-line-left { + height: 8px; + background-position: 0 -30px; + } + .irs-line-mid { + height: 8px; + background-position: 0 0; + } + .irs-line-right { + height: 8px; + background-position: 100% -30px; + } + +.irs-bar { + height: 8px; + top: 25px; + background-color: #1ABC9C; + background-color: var(--themecolor); + border-radius: 100px +} + .irs-bar-edge { + top: 25px; + height: 8px; + width: 11px; + background-position: 0 -90px; + } + +.irs-shadow { + height: 8px; + top: 25px; + background: rgba(0,0,0,0.9); + opacity: 0.15; +} +.lt-ie9 .irs-shadow { + filter: alpha(opacity=15); +} + +.irs-slider { + width: 22px; height: 22px; + top: 17px; + background-position: 0 -120px; +} + +.irs-min, .irs-max { + color: #999; + font-size: 11px; + line-height: 1.333; + text-shadow: none; + top: -8px; + padding: 3px; + background: rgba(0,0,0,0.05); + -moz-border-radius: 2px; + border-radius: 2px; +} + +.irs-from, .irs-to, .irs-single { + color: #FFF; + top: -8px; + font-size: 11px; + line-height: 1.333; + text-shadow: none; + padding: 3px; + background: #1ABC9C; + background: var(--themecolor); + -moz-border-radius: 2px; + border-radius: 2px; +} + +.irs-from:after, .irs-single:after, .irs-to:after { + content: ""; + position: absolute; + display: block; + bottom: -6px; + left: 50%; + width: 0; + height: 0; + margin-left: -3px; + overflow: hidden; + border: 3px solid transparent; + border-top-color: #1ABC9C; + border-top-color: var(--themecolor); +} + +.lt-ie9 .irs-from, .lt-ie9 .irs-to, .lt-ie9 .irs-single { background: #DDD; } + +.irs-grid-pol { background: #AAA; } +.irs-grid-text { color: #AAA } + +.irs-disabled { } diff --git a/TSC2.Client/wwwroot/css/components/ion.rangeslider.css b/TSC2.Client/wwwroot/css/components/ion.rangeslider.css new file mode 100644 index 0000000..289f041 --- /dev/null +++ b/TSC2.Client/wwwroot/css/components/ion.rangeslider.css @@ -0,0 +1,691 @@ +@charset "UTF-8"; +/** +Ion.RangeSlider, 2.3.1 +© Denis Ineshin, 2010 - 2019, IonDen.com +Build date: 2019-12-19 16:51:02 +*/ +.irs { + --cnvs-range-slider-top: 25px; + --cnvs-range-slider-bottom: 16px; + --cnvs-range-slider-line_height: 12px; + --cnvs-range-slider-handle_width: 16px; + --cnvs-range-slider-handle_height: 18px; + --cnvs-range-slider-custom_radius: 4px; + --cnvs-range-slider-line_color: var(--cnvs-contrast-200); + --cnvs-range-slider-bar_color: var(--cnvs-themecolor); + --cnvs-range-slider-handle_color_1: var(--cnvs-range-slider-bar_color); + --cnvs-range-slider-handle_color_2: var(--cnvs-contrast-500); + --cnvs-range-slider-minmax_text_color: var(--cnvs-contrast-600); + --cnvs-range-slider-minmax_bg_color: var(--cnvs-range-slider-line_color); + --cnvs-range-slider-label_color_1: var(--cnvs-range-slider-bar_color); + --cnvs-range-slider-label_color_2: white; + --cnvs-range-slider-grid_color_1: var(--cnvs-range-slider-line_color); + --cnvs-range-slider-grid_color_2: var(--cnvs-range-slider-minmax_text_color); + position: relative; + display: block; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + font-size: 12px; + font-family: Arial, sans-serif; +} +.irs-line { + position: relative; + display: block; + overflow: hidden; + outline: none !important; +} +.irs-bar { + position: absolute; + display: block; + left: 0; + width: 0; +} +.irs-shadow { + position: absolute; + display: none; + left: 0; + width: 0; +} +.irs-handle { + position: absolute; + display: block; + box-sizing: border-box; + cursor: default; + z-index: 1; +} +.irs-handle.type_last { + z-index: 2; +} +.irs-min, .irs-max { + position: absolute; + display: block; + cursor: default; +} +.irs-min { + left: 0; +} +.irs-max { + right: 0; +} +.irs-from, .irs-to, .irs-single { + position: absolute; + display: block; + top: 0; + left: 0; + cursor: default; + white-space: nowrap; +} +.irs-grid { + position: absolute; + display: none; + bottom: 0; + left: 0; + width: 100%; + height: 20px; +} +.irs-with-grid .irs-grid { + display: block; +} +.irs-grid-pol { + position: absolute; + top: 0; + left: 0; + width: 1px; + height: 8px; + background: #000; +} +.irs-grid-pol.small { + height: 4px; +} +.irs-grid-text { + position: absolute; + bottom: 0; + left: 0; + white-space: nowrap; + text-align: center; + font-size: 9px; + line-height: 9px; + padding: 0 3px; + color: #000; +} +.irs-disable-mask { + position: absolute; + display: block; + top: 0; + left: -1%; + width: 102%; + height: 100%; + cursor: default; + background: rgba(0, 0, 0, 0); + z-index: 2; +} +.lt-ie9 .irs-disable-mask { + background: #000; + filter: alpha(opacity=0); + cursor: not-allowed; +} +.irs-disabled { + opacity: 0.4; +} +.irs-hidden-input { + position: absolute !important; + display: block !important; + top: 0 !important; + left: 0 !important; + width: 0 !important; + height: 0 !important; + font-size: 0 !important; + line-height: 0 !important; + padding: 0 !important; + margin: 0 !important; + overflow: hidden; + outline: none !important; + z-index: -9999 !important; + background: none !important; + border-style: solid !important; + border-color: transparent !important; +} + +.irs--flat { + height: 40px; +} +.irs--flat.irs-with-grid { + height: 60px; +} +.irs--flat .irs-line { + top: var(--cnvs-range-slider-top); + height: var(--cnvs-range-slider-line_height); + background-color: var(--cnvs-range-slider-line_color); + border-radius: var(--cnvs-range-slider-custom_radius); +} +.irs--flat .irs-bar { + top: var(--cnvs-range-slider-top); + height: var(--cnvs-range-slider-line_height); + background-color: var(--cnvs-range-slider-bar_color); +} +.irs--flat .irs-bar--single { + border-radius: var(--cnvs-range-slider-custom_radius) 0 0 var(--cnvs-range-slider-custom_radius); +} +.irs--flat .irs-shadow { + height: 1px; + bottom: var(--cnvs-range-slider-bottom); + background-color: var(--cnvs-range-slider-line_color); +} +.irs--flat .irs-handle { + top: 22px; + width: var(--cnvs-range-slider-handle_width); + height: var(--cnvs-range-slider-handle_height); + background-color: transparent; +} +.irs--flat .irs-handle > i:first-child { + position: absolute; + display: block; + top: 0; + left: 50%; + width: 2px; + height: 100%; + margin-left: -1px; + background-color: var(--cnvs-range-slider-handle_color_1); +} +.irs--flat .irs-handle.state_hover > i:first-child, .irs--flat .irs-handle:hover > i:first-child { + background-color: var(--cnvs-range-slider-handle_color_2); +} +.irs--flat .irs-min, +.irs--flat .irs-max { + top: 0; + padding: 1px 3px; + color: var(--cnvs-range-slider-minmax_text_color); + font-size: 10px; + line-height: 1.333; + text-shadow: none; + background-color: var(--cnvs-range-slider-minmax_bg_color); + border-radius: var(--cnvs-range-slider-custom_radius); +} +.irs--flat .irs-from, +.irs--flat .irs-to, +.irs--flat .irs-single { + color: var(--cnvs-range-slider-label_color_2); + font-size: 10px; + line-height: 1.333; + text-shadow: none; + padding: 1px 5px; + background-color: var(--cnvs-range-slider-label_color_1); + border-radius: var(--cnvs-range-slider-custom_radius); +} +.irs--flat .irs-from:before, +.irs--flat .irs-to:before, +.irs--flat .irs-single:before { + position: absolute; + display: block; + content: ""; + bottom: -6px; + left: 50%; + width: 0; + height: 0; + margin-left: -3px; + overflow: hidden; + border: 3px solid transparent; + border-top-color: var(--cnvs-range-slider-label_color_1); +} +.irs--flat .irs-grid-pol { + background-color: var(--cnvs-range-slider-grid_color_1); +} +.irs--flat .irs-grid-text { + color: var(--cnvs-range-slider-grid_color_2); +} +.irs--big { + height: 55px; +} +.irs--big.irs-with-grid { + height: 70px; +} +.irs--big .irs-line { + top: 33px; + height: 12px; + background-color: white; + background: linear-gradient(to bottom, #ddd -50%, white 150%); + border: 1px solid #ccc; + border-radius: 12px; +} +.irs--big .irs-bar { + top: 33px; + height: 12px; + background-color: #92bce0; + border: 1px solid #428bca; + background: linear-gradient(to bottom, #ffffff 0%, #428bca 30%, #b9d4ec 100%); + box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.5); +} +.irs--big .irs-bar--single { + border-radius: 12px 0 0 12px; +} +.irs--big .irs-shadow { + height: 1px; + bottom: 16px; + background-color: rgba(66, 139, 202, 0.5); +} +.irs--big .irs-handle { + top: 25px; + width: 30px; + height: 30px; + border: 1px solid rgba(0, 0, 0, 0.3); + background-color: #cbcfd5; + background: linear-gradient(to bottom, white 0%, #B4B9BE 30%, white 100%); + box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 0 3px 1px white; + border-radius: 30px; +} +.irs--big .irs-handle.state_hover, +.irs--big .irs-handle:hover { + border-color: rgba(0, 0, 0, 0.45); + background-color: #939ba7; + background: linear-gradient(to bottom, white 0%, #919BA5 30%, white 100%); +} +.irs--big .irs-min, +.irs--big .irs-max { + top: 0; + padding: 1px 5px; + color: white; + text-shadow: none; + background-color: #9f9f9f; + border-radius: 3px; +} +.irs--big .irs-from, +.irs--big .irs-to, +.irs--big .irs-single { + color: white; + text-shadow: none; + padding: 1px 5px; + background-color: #428bca; + background: linear-gradient(to bottom, #428bca 0%, #3071a9 100%); + border-radius: 3px; +} +.irs--big .irs-grid-pol { + background-color: #428bca; +} +.irs--big .irs-grid-text { + color: #428bca; +} +.irs--modern { + height: 55px; +} +.irs--modern.irs-with-grid { + height: 55px; +} +.irs--modern .irs-line { + top: 25px; + height: 5px; + background-color: #d1d6e0; + background: linear-gradient(to bottom, #e0e4ea 0%, #d1d6e0 100%); + border: 1px solid #a3adc1; + border-bottom-width: 0; + border-radius: 5px; +} +.irs--modern .irs-bar { + top: 25px; + height: 5px; + background: #20b426; + background: linear-gradient(to bottom, #20b426 0%, #18891d 100%); +} +.irs--modern .irs-bar--single { + border-radius: 5px 0 0 5px; +} +.irs--modern .irs-shadow { + height: 1px; + bottom: 21px; + background-color: rgba(209, 214, 224, 0.5); +} +.irs--modern .irs-handle { + top: 37px; + width: 12px; + height: 13px; + border: 1px solid #a3adc1; + border-top-width: 0; + box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1); + border-radius: 0 0 3px 3px; +} +.irs--modern .irs-handle > i:nth-child(1) { + position: absolute; + display: block; + top: -4px; + left: 1px; + width: 6px; + height: 6px; + border: 1px solid #a3adc1; + background: white; + transform: rotate(45deg); +} +.irs--modern .irs-handle > i:nth-child(2) { + position: absolute; + display: block; + box-sizing: border-box; + top: 0; + left: 0; + width: 10px; + height: 12px; + background: #e9e6e6; + background: linear-gradient(to bottom, white 0%, #e9e6e6 100%); + border-radius: 0 0 3px 3px; +} +.irs--modern .irs-handle > i:nth-child(3) { + position: absolute; + display: block; + box-sizing: border-box; + top: 3px; + left: 3px; + width: 4px; + height: 5px; + border-left: 1px solid #a3adc1; + border-right: 1px solid #a3adc1; +} +.irs--modern .irs-handle.state_hover, +.irs--modern .irs-handle:hover { + border-color: #7685a2; + background: #c3c7cd; + background: linear-gradient(to bottom, #ffffff 0%, #919ba5 30%, #ffffff 100%); +} +.irs--modern .irs-handle.state_hover > i:nth-child(1), +.irs--modern .irs-handle:hover > i:nth-child(1) { + border-color: #7685a2; +} +.irs--modern .irs-handle.state_hover > i:nth-child(3), +.irs--modern .irs-handle:hover > i:nth-child(3) { + border-color: #48536a; +} +.irs--modern .irs-min, +.irs--modern .irs-max { + top: 0; + font-size: 10px; + line-height: 1.333; + text-shadow: none; + padding: 1px 5px; + color: white; + background-color: #d1d6e0; + border-radius: 5px; +} +.irs--modern .irs-from, +.irs--modern .irs-to, +.irs--modern .irs-single { + font-size: 10px; + line-height: 1.333; + text-shadow: none; + padding: 1px 5px; + background-color: #20b426; + color: white; + border-radius: 5px; +} +.irs--modern .irs-from:before, +.irs--modern .irs-to:before, +.irs--modern .irs-single:before { + position: absolute; + display: block; + content: ""; + bottom: -6px; + left: 50%; + width: 0; + height: 0; + margin-left: -3px; + overflow: hidden; + border: 3px solid transparent; + border-top-color: #20b426; +} +.irs--modern .irs-grid { + height: 25px; +} +.irs--modern .irs-grid-pol { + background-color: #dedede; +} +.irs--modern .irs-grid-text { + color: silver; + font-size: 13px; +} +.irs--sharp { + height: 50px; + font-size: 12px; + line-height: 1; +} +.irs--sharp.irs-with-grid { + height: 57px; +} +.irs--sharp .irs-line { + top: 30px; + height: 2px; + background-color: black; + border-radius: 2px; +} +.irs--sharp .irs-bar { + top: 30px; + height: 2px; + background-color: #ee22fa; +} +.irs--sharp .irs-bar--single { + border-radius: 2px 0 0 2px; +} +.irs--sharp .irs-shadow { + height: 1px; + bottom: 21px; + background-color: rgba(0, 0, 0, 0.5); +} +.irs--sharp .irs-handle { + top: 25px; + width: 10px; + height: 10px; + background-color: #a804b2; +} +.irs--sharp .irs-handle > i:first-child { + position: absolute; + display: block; + top: 100%; + left: 0; + width: 0; + height: 0; + border: 5px solid transparent; + border-top-color: #a804b2; +} +.irs--sharp .irs-handle.state_hover, +.irs--sharp .irs-handle:hover { + background-color: black; +} +.irs--sharp .irs-handle.state_hover > i:first-child, +.irs--sharp .irs-handle:hover > i:first-child { + border-top-color: black; +} +.irs--sharp .irs-min, +.irs--sharp .irs-max { + color: white; + font-size: 14px; + line-height: 1; + top: 0; + padding: 3px 4px; + opacity: 0.4; + background-color: #a804b2; + border-radius: 2px; +} +.irs--sharp .irs-from, +.irs--sharp .irs-to, +.irs--sharp .irs-single { + font-size: 14px; + line-height: 1; + text-shadow: none; + padding: 3px 4px; + background-color: #a804b2; + color: white; + border-radius: 2px; +} +.irs--sharp .irs-from:before, +.irs--sharp .irs-to:before, +.irs--sharp .irs-single:before { + position: absolute; + display: block; + content: ""; + bottom: -6px; + left: 50%; + width: 0; + height: 0; + margin-left: -3px; + overflow: hidden; + border: 3px solid transparent; + border-top-color: #a804b2; +} +.irs--sharp .irs-grid { + height: 25px; +} +.irs--sharp .irs-grid-pol { + background-color: #dedede; +} +.irs--sharp .irs-grid-text { + color: silver; + font-size: 13px; +} +.irs--round { + height: 50px; +} +.irs--round.irs-with-grid { + height: 65px; +} +.irs--round .irs-line { + top: 36px; + height: 4px; + background-color: var(--cnvs-range-slider-bar_color); + border-radius: 4px; +} +.irs--round .irs-bar { + top: 36px; + height: 4px; + background-color: var(--cnvs-range-slider-bar_color); +} +.irs--round .irs-bar--single { + border-radius: 4px 0 0 4px; +} +.irs--round .irs-shadow { + height: 4px; + bottom: 21px; + background-color: rgba(222, 228, 236, 0.5); +} +.irs--round .irs-handle { + top: 26px; + width: 24px; + height: 24px; + border: 4px solid var(--cnvs-range-slider-bar_color); + background-color: white; + border-radius: 24px; + box-shadow: 0 1px 3px rgba(0, 0, 255, 0.3); +} +.irs--round .irs-handle.state_hover, +.irs--round .irs-handle:hover { + background-color: #f0f6ff; +} +.irs--round .irs-min, +.irs--round .irs-max { + color: #333; + font-size: 14px; + line-height: 1; + top: 0; + padding: 3px 5px; + background-color: rgba(0, 0, 0, 0.1); + border-radius: 4px; +} +.irs--round .irs-from, +.irs--round .irs-to, +.irs--round .irs-single { + font-size: 14px; + line-height: 1; + text-shadow: none; + padding: 3px 5px; + background-color: var(--cnvs-range-slider-bar_color); + color: white; + border-radius: 4px; +} +.irs--round .irs-from:before, +.irs--round .irs-to:before, +.irs--round .irs-single:before { + position: absolute; + display: block; + content: ""; + bottom: -6px; + left: 50%; + width: 0; + height: 0; + margin-left: -3px; + overflow: hidden; + border: 3px solid transparent; + border-top-color: var(--cnvs-range-slider-bar_color); +} +.irs--round .irs-grid { + height: 25px; +} +.irs--round .irs-grid-pol { + background-color: #dedede; +} +.irs--round .irs-grid-text { + color: silver; + font-size: 13px; +} +.irs--square { + height: 50px; +} +.irs--square.irs-with-grid { + height: 60px; +} +.irs--square .irs-line { + top: 31px; + height: 4px; + background-color: #dedede; +} +.irs--square .irs-bar { + top: 31px; + height: 4px; + background-color: black; +} +.irs--square .irs-shadow { + height: 2px; + bottom: 21px; + background-color: #dedede; +} +.irs--square .irs-handle { + top: 25px; + width: 16px; + height: 16px; + border: 3px solid black; + background-color: white; + -webkit-transform: rotate(45deg); + -ms-transform: rotate(45deg); + transform: rotate(45deg); +} +.irs--square .irs-handle.state_hover, +.irs--square .irs-handle:hover { + background-color: #f0f6ff; +} +.irs--square .irs-min, +.irs--square .irs-max { + color: #333; + font-size: 14px; + line-height: 1; + top: 0; + padding: 3px 5px; + background-color: rgba(0, 0, 0, 0.1); +} +.irs--square .irs-from, +.irs--square .irs-to, +.irs--square .irs-single { + font-size: 14px; + line-height: 1; + text-shadow: none; + padding: 3px 5px; + background-color: black; + color: white; +} +.irs--square .irs-grid { + height: 25px; +} +.irs--square .irs-grid-pol { + background-color: #dedede; +} +.irs--square .irs-grid-text { + color: silver; + font-size: 11px; +} + +/*# sourceMappingURL=ion.rangeslider.css.map */ diff --git a/TSC2.Client/wwwroot/css/components/ion.rangeslider.css.map b/TSC2.Client/wwwroot/css/components/ion.rangeslider.css.map new file mode 100644 index 0000000..c4a44de --- /dev/null +++ b/TSC2.Client/wwwroot/css/components/ion.rangeslider.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["ion.rangeslider.scss"],"names":[],"mappings":";AAAA;AAAA;AAAA;AAAA;AAAA;AAMA;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEH;EACG;EACH;EACG;EACA;EACA;EACA;EACA;EACH;EACA;;AAEA;EACC;EACM;EACN;EACA;;AAGD;EACC;EACM;EACN;EACA;;AAGD;EACC;EACA;EACA;EACA;;AAGD;EACC;EACM;EACN;EACA;EACA;;AACA;EACC;;AAIF;EAEC;EACM;EACN;;AAGD;EACC;;AAGD;EACC;;AAGD;EAGC;EACM;EACN;EACA;EACA;EACA;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;;AAIF;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIF;EACC;EACM;EACN;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;EACA;;AAIF;EACC;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAKF;EACC;;AAEA;EACC;;AAGD;EACC;EACA;EACA;EACA;;AAGD;EACC;EACA;EACA;;AAEA;EACC;;AAIF;EACC;EACA;EACA;;AAGD;EACC;EACA;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAKA;EACC;;AAKH;AAAA;EAEC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGD;AAAA;AAAA;EAGC;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;AAAA;AAAA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAKD;EACC;;AAGD;EACC","file":"ion.rangeslider.css","sourcesContent":["/**\nIon.RangeSlider, 2.3.1\n© Denis Ineshin, 2010 - 2019, IonDen.com\nBuild date: 2019-12-19 16:51:02\n*/\n\n.irs {\n //Flat Theme\n --cnvs-range-slider-top: 25px;\n --cnvs-range-slider-bottom: 16px;\n --cnvs-range-slider-line_height: 12px;\n --cnvs-range-slider-handle_width: 16px;\n --cnvs-range-slider-handle_height: 18px;\n --cnvs-range-slider-custom_radius: 4px;\n --cnvs-range-slider-line_color: var(--cnvs-contrast-200);\n --cnvs-range-slider-bar_color: var(--cnvs-themecolor);\n --cnvs-range-slider-handle_color_1: var(--cnvs-range-slider-bar_color);\n --cnvs-range-slider-handle_color_2: var(--cnvs-contrast-500);\n --cnvs-range-slider-minmax_text_color: var(--cnvs-contrast-600);\n --cnvs-range-slider-minmax_bg_color: var(--cnvs-range-slider-line_color);\n --cnvs-range-slider-label_color_1: var(--cnvs-range-slider-bar_color);\n --cnvs-range-slider-label_color_2: white;\n --cnvs-range-slider-grid_color_1: var(--cnvs-range-slider-line_color);\n --cnvs-range-slider-grid_color_2: var(--cnvs-range-slider-minmax_text_color);\n\n\tposition: relative;\n display: block;\n\t-webkit-touch-callout: none;\n -webkit-user-select: none;\n -khtml-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n\tfont-size: 12px;\n\tfont-family: Arial, sans-serif;\n\n\t&-line {\n\t\tposition: relative;\n display: block;\n\t\toverflow: hidden;\n\t\toutline: none !important;\n\t}\n\n\t&-bar {\n\t\tposition: absolute;\n display: block;\n\t\tleft: 0;\n\t\twidth: 0;\n\t}\n\n\t&-shadow {\n\t\tposition: absolute;\n\t\tdisplay: none;\n\t\tleft: 0;\n\t\twidth: 0;\n\t}\n\n\t&-handle {\n\t\tposition: absolute;\n display: block;\n\t\tbox-sizing: border-box;\n\t\tcursor: default;\n\t\tz-index: 1;\n\t\t&.type_last {\n\t\t\tz-index: 2;\n\t\t}\n\t}\n\n\t&-min,\n\t&-max {\n\t\tposition: absolute;\n display: block;\n\t\tcursor: default;\n\t}\n\n\t&-min {\n\t\tleft: 0;\n\t}\n\n\t&-max {\n\t\tright: 0;\n\t}\n\n\t&-from,\n\t&-to,\n\t&-single {\n\t\tposition: absolute;\n display: block;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tcursor: default;\n\t\twhite-space: nowrap;\n\t}\n\n\t&-grid {\n\t\tposition: absolute;\n\t\tdisplay: none;\n\t\tbottom: 0;\n\t\tleft: 0;\n\t\twidth: 100%;\n\t\theight: 20px;\n\n\t\t.irs-with-grid & {\n\t\t\tdisplay: block;\n\t\t}\n\n\t\t&-pol {\n\t\t\tposition: absolute;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\twidth: 1px;\n\t\t\theight: 8px;\n\t\t\tbackground: #000;\n\n\t\t\t&.small {\n\t\t\t\theight: 4px;\n\t\t\t}\n\t\t}\n\n\t\t&-text {\n\t\t\tposition: absolute;\n\t\t\tbottom: 0;\n\t\t\tleft: 0;\n\t\t\twhite-space: nowrap;\n\t\t\ttext-align: center;\n\t\t\tfont-size: 9px;\n\t\t\tline-height: 9px;\n\t\t\tpadding: 0 3px;\n\t\t\tcolor: #000;\n\t\t}\n\t}\n\n\t&-disable-mask {\n\t\tposition: absolute;\n display: block;\n\t\ttop: 0;\n\t\tleft: -1%;\n\t\twidth: 102%;\n\t\theight: 100%;\n\t\tcursor: default;\n\t\tbackground: rgba(0, 0, 0, 0.0);\n\t\tz-index: 2;\n\n\t\t.lt-ie9 & {\n\t\t\tbackground: #000;\n\t\t\tfilter: alpha(opacity=0);\n\t\t\tcursor: not-allowed;\n\t\t}\n\t}\n\n\t&-disabled {\n\t\topacity: 0.4;\n\t}\n\n\t&-hidden-input {\n\t\tposition: absolute !important;\n\t\tdisplay: block !important;\n\t\ttop: 0 !important;\n\t\tleft: 0 !important;\n\t\twidth: 0 !important;\n\t\theight: 0 !important;\n\t\tfont-size: 0 !important;\n\t\tline-height: 0 !important;\n\t\tpadding: 0 !important;\n\t\tmargin: 0 !important;\n\t\toverflow: hidden;\n\t\toutline: none !important;\n\t\tz-index: -9999 !important;\n\t\tbackground: none !important;\n\t\tborder-style: solid !important;\n\t\tborder-color: transparent !important;\n\t}\n}\n\n\n.irs--flat {\n\theight: 40px;\n\n\t&.irs-with-grid {\n\t\theight: 60px;\n\t}\n\n\t.irs-line {\n\t\ttop: var(--cnvs-range-slider-top);\n\t\theight: var(--cnvs-range-slider-line_height);\n\t\tbackground-color: var(--cnvs-range-slider-line_color);\n\t\tborder-radius: var(--cnvs-range-slider-custom_radius);\n\t}\n\n\t.irs-bar {\n\t\ttop: var(--cnvs-range-slider-top);\n\t\theight: var(--cnvs-range-slider-line_height);\n\t\tbackground-color: var(--cnvs-range-slider-bar_color);\n\n\t\t&--single {\n\t\t\tborder-radius: var(--cnvs-range-slider-custom_radius) 0 0 var(--cnvs-range-slider-custom_radius);\n\t\t}\n\t}\n\n\t.irs-shadow {\n\t\theight: 1px;\n\t\tbottom: var(--cnvs-range-slider-bottom);\n\t\tbackground-color: var(--cnvs-range-slider-line_color);\n\t}\n\n\t.irs-handle {\n\t\ttop: 22px;\n\t\twidth: var(--cnvs-range-slider-handle_width);\n\t\theight: var(--cnvs-range-slider-handle_height);\n\t\tbackground-color: transparent;\n\n\t\t&>i:first-child {\n\t\t\tposition: absolute;\n\t\t\tdisplay: block;\n\t\t\ttop: 0;\n\t\t\tleft: 50%;\n\t\t\twidth: 2px;\n\t\t\theight: 100%;\n\t\t\tmargin-left: -1px;\n\t\t\tbackground-color: var(--cnvs-range-slider-handle_color_1);\n\t\t}\n\n\t\t&.state_hover,\n\t\t&:hover {\n\t\t\t&>i:first-child {\n\t\t\t\tbackground-color: var(--cnvs-range-slider-handle_color_2);\n\t\t\t}\n\t\t}\n\t}\n\n\t.irs-min,\n\t.irs-max {\n\t\ttop: 0;\n\t\tpadding: 1px 3px;\n\t\tcolor: var(--cnvs-range-slider-minmax_text_color);\n\t\tfont-size: 10px;\n\t\tline-height: 1.333;\n\t\ttext-shadow: none;\n\t\tbackground-color: var(--cnvs-range-slider-minmax_bg_color);\n\t\tborder-radius: var(--cnvs-range-slider-custom_radius);\n\t}\n\n\t.irs-from,\n\t.irs-to,\n\t.irs-single {\n\t\tcolor: var(--cnvs-range-slider-label_color_2);\n\t\tfont-size: 10px;\n\t\tline-height: 1.333;\n\t\ttext-shadow: none;\n\t\tpadding: 1px 5px;\n\t\tbackground-color: var(--cnvs-range-slider-label_color_1);\n\t\tborder-radius: var(--cnvs-range-slider-custom_radius);\n\n\t\t&:before {\n\t\t\tposition: absolute;\n\t\t\tdisplay: block;\n\t\t\tcontent: \"\";\n\t\t\tbottom: -6px;\n\t\t\tleft: 50%;\n\t\t\twidth: 0;\n\t\t\theight: 0;\n\t\t\tmargin-left: -3px;\n\t\t\toverflow: hidden;\n\t\t\tborder: 3px solid transparent;\n\t\t\tborder-top-color: var(--cnvs-range-slider-label_color_1);\n\t\t}\n\t}\n\n\t.irs-grid {\n\t\t&-pol {\n\t\t\tbackground-color: var(--cnvs-range-slider-grid_color_1);\n\t\t}\n\n\t\t&-text {\n\t\t\tcolor: var(--cnvs-range-slider-grid_color_2);\n\t\t}\n\t}\n}"]} \ No newline at end of file diff --git a/TSC2.Client/wwwroot/css/components/pricing-table.css b/TSC2.Client/wwwroot/css/components/pricing-table.css new file mode 100644 index 0000000..d26b02f --- /dev/null +++ b/TSC2.Client/wwwroot/css/components/pricing-table.css @@ -0,0 +1,1165 @@ +/* Common styles */ + +.pricing { + display: -webkit-flex; + display: flex; + -webkit-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-justify-content: center; + justify-content: center; + width: 100%; + margin: 0 auto 3em; +} + +.pricing--item { + position: relative; + display: -webkit-flex; + display: flex; + -webkit-flex-direction: column; + flex-direction: column; + -webkit-align-items: stretch; + align-items: stretch; + text-align: center; + -webkit-flex: 0 1 330px; + flex: 0 1 330px; +} + +.pricing--feature-list { + text-align: left; +} + +.pricing--action { + color: inherit; + border: none; + background: none; +} + +.pricing--action:focus { + outline: none; +} + +/* Individual styles */ + +/* Sonam */ +.pricing--sonam .pricing--item { + margin: 1em; + padding: 2em; + cursor: default; + border-radius: 10px; + background: #1F1F1F; + box-shadow: 0 5px 20px rgba(0,0,0,0.05), 0 15px 30px -10px rgba(0,0,0,0.3); + -webkit-transition: background 0.3s; + transition: background 0.3s; +} + +.pricing--sonam .pricing--item:hover { + background: #141315; +} + +.pricing--sonam .pricing--title { + font-size: 2em; + width: 100%; + margin: 0 0 0.25em; + padding: 0 0 0.5em; + border-bottom: 3px solid rgb(27, 26, 28); +} + +.pricing--sonam .pricing--price { + color: #E06060; + font-size: 1.75em; + padding: 1em 0 0.75em; +} + +.pricing--sonam .pricing--sentence { + font-weight: bold; +} + +.pricing--sonam .pricing--feature-list { + margin: 0; + padding: 1em 1.25em 2em; +} + +.pricing--sonam .pricing--action { + font-weight: bold; + margin-top: auto; + padding: 0.75em 2em; + border-radius: 5px; + background: #E06060; + -webkit-transition: background 0.3s; + transition: background 0.3s; +} + +.pricing--sonam .pricing--action:hover, +.pricing--sonam .pricing--action:focus { + background: #BD3C3C; +} + +/* Jinpa */ +.pricing--jinpa .pricing--item { + font-family: 'Raleway'; + margin: 1.5em 0; + padding: 2em; + cursor: default; + color: #333; + border: 1px solid #EEE; + -webkit-transition: background-color 0.6s, color 0.3s; + transition: background-color 0.6s, color 0.3s; +} + +.pricing--jinpa .pricing--item:nth-child(2) { + border-right: none; + border-left: none; +} + +.pricing--jinpa .pricing--item:hover { + color: #444; + background: #F5F5F5; +} + +.pricing--jinpa .pricing--title { + font-size: 2em; + width: 100%; + margin: 0; + padding: 0; +} + +.pricing--jinpa .pricing--price { + font-size: 1.45em; + font-weight: bold; + line-height: 95px; + width: 100px; + height: 100px; + margin: 1.15em auto 1em; + border-radius: 50%; + background: #ea716e; + color: #FFF; + -webkit-transition: color 0.3s, background 0.3s; + transition: color 0.3s, background 0.3s; +} + +.pricing--jinpa .pricing--item:first-child .pricing--price { + background: #eac36e; +} + +.pricing--jinpa .pricing--item:nth-child(2) .pricing--price { + background: #eaa36e; +} + +.pricing--jinpa .pricing--item:hover .pricing--price { + color: #fff; + background: #82C57E; +} + +.pricing--jinpa .pricing--sentence { + font-weight: bold; + font-size: 17px; + letter-spacing: 1px; +} + +.pricing--jinpa .pricing--feature-list { + margin: 0; + padding: 1em 1em 2em; + list-style: none; + text-align: center; +} + +.pricing--jinpa .pricing--action { + font-weight: bold; + margin-top: auto; + padding: 0.75em 2em; + opacity: 0; + color: #fff; + background: #82C57E; + -webkit-transition: -webkit-transform 0.3s, opacity 0.3s; + transition: transform 0.3s, opacity 0.3s; + -webkit-transform: translate3d(0, -15px, 0); + transform: translate3d(0, -15px, 0); +} + +.pricing--jinpa .pricing--item:hover .pricing--action { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); +} + +.pricing--jinpa .pricing--action:hover, +.pricing--jinpa .pricing--action:focus { + background: #6EA76B; +} + +@media screen and (max-width: 60em) { + .pricing--jinpa .pricing--item { + max-width: none; + width: 90%; + flex: none; + } + .pricing--jinpa .pricing--item:nth-child(2) { + border: 1px solid #fff; + } +} + +/* Tenzin */ +.pricing--tenzin .pricing--item { + margin: 1em; + padding: 2em 2.5em; + text-align: left; + color: #262b38; + background: #EEF0F3; + border-top: 3px solid #EEF0F3; + -webkit-transition: border-color 0.3s; + transition: border-color 0.3s; +} + +.pricing--tenzin .pricing--item:hover { + border-color: #3e62e0; +} + +.pricing--tenzin .pricing--title { + font-size: 1em; + margin: 0 0 1em; +} + +.pricing--tenzin .pricing--price { + font-size: 2em; + font-weight: bold; + padding: 0.5em 0 0.75em; + border-top: 3px solid rgba(139, 144, 157, 0.18); +} + +.pricing--tenzin .pricing--currency { + font-size: 0.5em; + vertical-align: super; +} + +.pricing--tenzin .pricing--sentence { + font-weight: bold; + padding: 0 0 0.5em; + color: #9CA0A9; + border-bottom: 3px solid rgba(139, 144, 157, 0.18); +} + +.pricing--tenzin .pricing--feature-list { + font-size: 0.85em; + font-style: italic; + margin: 0; + padding: 0.25em 0 2.5em; + list-style: none; + text-align: right; + color: #8b909d; +} + +.pricing--tenzin .pricing--action { + font-weight: bold; + margin-top: auto; + padding: 1em 2em; + color: #fff; + border-radius: 30px; + background: #3e62e0; + -webkit-transition: background-color 0.3s; + transition: background-color 0.3s; +} + +.pricing--tenzin .pricing--action:hover, +.pricing--tenzin .pricing--action:focus { + background-color: #3b5ac5; +} + +/* Yama */ +.pricing--yama .pricing--item { + margin: 1em; + padding: 0 0 2em; + color: #fff; + background: #1e1c20; +} + +.pricing--yama .pricing--title { + font-family: 'Playfair Display', serif; + font-size: 2.35em; + font-weight: 900; + line-height: 1; + width: 290px; + margin: 0 auto; + padding: 1em 1em 0em; +} + +.pricing--amp { + padding: 0.15em 0 0.1em; + color: #0f0e0f; +} + +.pricing--yama .pricing--sentence { + margin-bottom: 2em; + color: #555357; +} + +.pricing--yama .pricing--price { + font-size: 2em; + font-weight: bold; + position: relative; + z-index: 10; + overflow: hidden; + padding: 0.75em; + cursor: default; + color: #ef7d46; + background: #1a181b; + -webkit-transition: color 0.3s; + transition: color 0.3s; +} + +.pricing--yama .pricing--item:hover .pricing--price { + color: #fff; +} + +.pricing--yama .pricing--price::before { + content: ''; + position: absolute; + z-index: -1; + top: 0; + left: 0; + width: 100%; + height: 100%; + pointer-events: none; + background: #141315; + -webkit-transition: -webkit-transform 0.3s, opacity 0.3s; + transition: transform 0.3s, opacity 0.3s; + -webkit-transform: translate3d(-150%,0,0) skewX(40deg); + transform: translate3d(-150%,0,0) skewX(40deg); +} + +.pricing--yama .pricing--item:hover .pricing--price::before { + opacity: 1; + -webkit-transform: translate3d(0,0,0) skewX(0deg); + transform: translate3d(0,0,0) skewX(0deg); +} + +.pricing--yama .pricing--period { + font-size: 0.5em; + font-weight: normal; + display: block; + color: #2a272c; +} + +.pricing--yama .pricing--feature-list { + margin: 0; + padding: 2em 1em; + list-style: none; + text-align: center; + color: #6a6563; +} + +.pricing--yama .pricing--action { + font-weight: bold; + margin: 0 2em; + padding: 1em 2em; + border-radius: 4px; + background: #ef7d46; + -webkit-transition: background-color 0.3s, color 0.3s; + transition: background-color 0.3s, color 0.3s; +} + +.pricing--yama .pricing--action:hover, +.pricing--yama .pricing--action:focus { + color: #ef7d46; + background: #fff; +} + +/* Rabten */ +.pricing--rabten .pricing--item { + font-family: 'Roboto', sans-serif; + padding: 2em 4em; + cursor: default; + color: #262b38; + max-width: 320px; +} + +.pricing--rabten .pricing--item:nth-child(2) { + border-right: 1px solid rgba(139, 144, 157, 0.18); + border-left: 1px solid rgba(139, 144, 157, 0.18); +} + +.pricing--rabten .pricing--title { + font-size: 1em; + margin: 1.5em 0 0; +} + +.pricing--rabten .icon { + font-size: 2.5em; + color: #8b909d; + -webkit-transition: color 0.3s; + transition: color 0.3s; +} + +.pricing--rabten .pricing--item:hover .icon { + color: #E03E3E; +} + +.pricing--rabten .pricing--price { + font-size: 3em; + font-weight: bold; + margin: 0.5em 0 0.75em; + overflow: hidden; +} + +.pricing--rabten .pricing--currency { + font-size: 0.5em; + vertical-align: super; +} + +.pricing--rabten .pricing--period { + font-size: 0.35em; + color: #8b909d; +} + +.pricing--rabten .pricing--anim { + display: inline-block; + position: relative; +} + +.pricing--rabten .pricing--item:hover .pricing--anim { + -webkit-animation: moveUp 0.4s forwards; + animation: moveUp 0.4s forwards; + -webkit-animation-timing-function: cubic-bezier(0.7, 0, 0.3, 1); + animation-timing-function: cubic-bezier(0.7, 0, 0.3, 1); +} + +.pricing--rabten .pricing--item:hover .pricing--anim--2 { + -webkit-animation-delay: 0.05s; + animation-delay: 0.05s; +} + +@-webkit-keyframes moveUp { + 50% { -webkit-transform: translate3d(0,-100%,0); transform: translate3d(0,-100%,0); } + 51% { opacity: 0; -webkit-transform: translate3d(0,-100%,0); transform: translate3d(0,-100%,0); } + 52% { opacity: 1; -webkit-transform: translate3d(0,100%,0); transform: translate3d(0,100%,0); } + 100% { -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); } +} + +@keyframes moveUp { + 50% { -webkit-transform: translate3d(0,-100%,0); transform: translate3d(0,-100%,0); } + 51% { opacity: 0; -webkit-transform: translate3d(0,-100%,0); transform: translate3d(0,-100%,0); } + 52% { opacity: 1; -webkit-transform: translate3d(0,100%,0); transform: translate3d(0,100%,0); } + 100% { -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); } +} + +.pricing--rabten .pricing--sentence { + font-weight: bold; + margin: 0 0 1em 0; + padding: 0 0 0.5em; + color: #8b909d; +} + +.pricing--rabten .pricing--feature-list { + font-size: 0.85em; + margin: 0; + padding: 0.25em 0 2.5em; + list-style: none; + text-align: center; + color: #8b909d; +} + +.pricing--rabten .pricing--action { + font-weight: bold; + margin-top: auto; + padding: 1em 2em; + color: #fff; + border-radius: 30px; + background: #E03E3E; + -webkit-transition: background-color 0.3s; + transition: background-color 0.3s; +} + +.pricing--rabten .pricing--action:hover, +.pricing--rabten .pricing--action:focus { + background-color: #C53737; +} + +@media screen and (max-width: 60em) { + .pricing--rabten .pricing--item { + max-width: none; + width: 90%; + flex: none; + border: none !important; + opacity: 1 !important; + } +} + +/* Pema */ +.pricing--pema .pricing--item { + font-family: 'Alegreya Sans', sans-serif; + padding: 2em 3em; + margin: 1em; + color: #262b38; + background: #fff; + cursor: default; + overflow: hidden; + box-shadow: 0 0 15px rgba(0,0,0,0.05); +} + +@media screen and (min-width: 66.250em) { + .pricing--pema .pricing--item { + margin: 1.5em 0; + } + .pricing--pema .pricing--item--featured { + z-index: 10; + margin: 0; + font-size: 1.15em; + } +} + +.pricing--pema .pricing--title { + font-size: 2em; + margin: 0.5em 0 0; + color: #1d211f; +} + +.pricing--pema .icon { + display: inline-block; + min-width: 2em; + color: #8A9790; + vertical-align: middle; + top: 2px; +} + +.pricing--pema .pricing--price { + font-size: 5em; + font-weight: 800; + color: #6ed19c; + position: relative; + z-index: 100; +} + +.pricing--pema .pricing--currency { + font-size: 0.5em; + vertical-align: super; +} + +.pricing--pema .pricing--period { + font-size: 0.25em; + display: inline-block; + padding: 0 0 0 0.5em; + color: #CEDED6; +} + +.pricing--pema .pricing--sentence { + font-weight: bold; + margin: 0 0 1em 0; + padding: 0 0 0.5em; + color: #6ed19c; +} + +.pricing--pema .pricing--feature-list { + font-size: 0.95em; + margin: 0; + padding: 1.5em 0.5em 2.5em; + list-style: none; +} + +.pricing--pema .pricing--feature { + padding: 0.15em 0; +} + +.pricing--pema .pricing--action { + font-weight: bold; + margin-top: auto; + padding: 1em 2em; + color: #fff; + border-radius: 5px; + background: #6ed19c; + -webkit-transition: background-color 0.3s; + transition: background-color 0.3s; + text-transform: uppercase; + letter-spacing: 2px; +} + +.pricing--pema .pricing--action:hover, +.pricing--pema .pricing--action:focus { + background-color: #4F5F56; +} + +/* karma */ +.pricing--karma .pricing--item { + margin: 1em; + color: #382628; + background: #fff; + cursor: default; + text-transform: uppercase; + letter-spacing: 4px; + border: 2px solid #382628; + border-radius: 5px; +} + +.pricing--karma .pricing--title { + font-size: 1em; + font-weight: 800; + margin: 0.5em 0 0; + padding: 1em; + color: #000; + border-bottom: 2px solid #382628; +} + +.pricing--karma .icon { + display: inline-block; + min-width: 2em; +} + +.pricing--karma .pricing--price { + font-size: 3em; + padding: 0.5em 0 0 0; + margin: 1em; + font-weight: bold; + border: 2px solid #382628; + position: relative; + z-index: 100; +} + +.pricing--karma .pricing--item--featured .pricing--price::after { + background: url('http://tympanus.net/Development/PricingTablesInspiration/img/stamp.png'); + background-size: cover; + content: ''; + position: absolute; + top: -30px; + right: -20px; + width: 100px; + height: 100px; + pointer-events: none; +} + +.pricing--karma .pricing--currency { + font-size: 0.5em; + vertical-align: super; +} + +.pricing--karma .pricing--period { + font-size: 0.25em; + display: block; + padding: 1em; + margin-top: 1.25em; + border-top: 2px solid #382628; +} + +.pricing--karma .pricing--sentence { + margin: 0 0 1em 0; + padding: 1em; + font-size: 0.85em; + border-bottom: 2px solid #382628; +} + +.pricing--karma .pricing--feature-list { + font-size: 0.85em; + margin: 0; + letter-spacing: 0; + padding: 0 1em 2.5em 4em; + list-style-type: square; +} + +.pricing--karma .pricing--action { + font-weight: bold; + flex: none; + margin: auto 1em 1em; + padding: 1.25em 2em; + color: #fff; + background: #382628; + letter-spacing: 2px; + border-radius: 5px; + border: 2px solid #382628; + font-size: 0.95em; + text-transform: uppercase; + -webkit-transition: background-color 0.3s, color 0.3s; + transition: background-color 0.3s, color 0.3s; +} + +.pricing--karma .pricing--action:hover, +.pricing--karma .pricing--action:focus { + background-color: #ffdbd5; + color: #382628; +} + +/* norbu */ +.pricing--norbu .pricing--item { + margin: 1em; + color: #fff; + cursor: default; + font-family: 'Myriad Pro', Arial, sans-serif; + border: 1px solid rgba(255,255,255,0.4); + background: rgba(255,255,255,0.08); + border-radius: 10px; + -webkit-transition: border-color 0.3s, background 0.3s; + transition: border-color 0.3s, background 0.3s; +} + +.pricing--norbu .pricing--item:hover { + border: 1px solid rgba(255,255,255,1); + background: rgba(255,255,255,0.18); +} + +.pricing--norbu .pricing--title { + font-size: 2em; + font-weight: 400; + margin: 0.5em 0; + padding: 1em; + position: relative; +} + +.pricing--norbu .pricing--title::after { + content: ''; + position: absolute; + width: 20%; + height: 1px; + background: #fff; + left: 40%; + bottom: 0; +} + +.pricing--norbu .icon { + display: inline-block; + min-width: 2em; +} + +.pricing--norbu .pricing--price { + font-size: 3.5em; + padding: 0.5em 0 0 0; + font-weight: 400; + position: relative; + z-index: 100; +} + +.pricing--norbu .pricing--currency { + font-size: 0.5em; + vertical-align: super; +} + +.pricing--norbu .pricing--period { + font-size: 0.25em; + display: block; + padding: 1em; +} + +.pricing--norbu .pricing--sentence { + padding: 1em 2em; + font-size: 1em; + margin: 0 auto 1em; +} + +.pricing--norbu .pricing--feature-list { + font-size: 1.15em; + margin: 0 2em; + letter-spacing: 0; + padding: 2em 0; + list-style: none; +} + +.pricing--norbu .pricing--feature { + line-height: 1.4; +} + +.pricing--norbu .pricing--feature::before { + content: "\e095"; + font-family: 'lined-icons'; + display: inline-block; + vertical-align: middle; + padding: 0 0.75em 0.188em 0; +} + +.pricing--norbu .pricing--action { + font-weight: bold; + flex: none; + margin: auto 1em 1em; + padding: 1.25em 2em; + color: #4aa8e4; + background: rgba(255,255,255,0.7); + border-radius: 5px; + -webkit-transition: background 0.3s; + transition: background 0.3s; + text-transform: uppercase; + letter-spacing: 2px; +} + +.pricing--norbu .pricing--action:hover, +.pricing--norbu .pricing--action:focus { + background: #fff; +} + +/* Dawa */ +.pricing--dawa .pricing--item { + padding: 0 2em; +} + +.pricing--dawa .pricing--title { + font-weight: bold; + font-size: 1.8em; + padding: 0 0 0.5em; + background: url('http://tympanus.net/Development/PricingTablesInspiration/img/line.png') no-repeat 50% 100%; +} + +.pricing--dawa .pricing--price { + font-size: 3.75em; + line-height: 1; + margin: 1em 0 0.65em; + font-family: 'Homemade Apple', cursive; +} + +.pricing--dawa .pricing--period { + font-size: 0.25em; + display: block; +} + +.pricing--dawa .pricing--sentence { + font-family: 'Homemade Apple', cursive; + margin: 0; +} + +.pricing--dawa .pricing--feature-list { + margin: 0 0 1.5em; + padding: 1em; + list-style: none; + text-align: center; +} + +.pricing--dawa .pricing--action { + border-radius: 30px; + font-size: 1.5em; + padding: 0.8em 1.5em; + font-family: 'Homemade Apple', cursive; + -webkit-transition: color 0.3s; + transition: color 0.3s; + background-color: #FFF; + color: #444; + -webkit-transition: all 0.4s ease; + -o-transition: all 0.4s ease; + transition: all 0.4s ease; +} + +.pricing--dawa .pricing--action:hover, +.pricing--dawa .pricing--action:focus { + color: #000; + background-color: #F5F5F5 +} + +@media screen and (max-width: 40em) { + .pricing--dawa .pricing--item { + border: 1px solid rgba(255,255,255,0.6); + margin: 1em; + } +} + +/* Yonten */ +.pricing--yonten .pricing--item { + font-family: 'PT Sans', sans-serif; + padding: 2em 4em; + cursor: default; + color: #fff; + margin: 1em; + border: 1px solid #5c6552; + max-width: 320px; +} + +@media screen and (min-width: 66.250em) { + .pricing--yonten .pricing--item { + margin: 0; + } + .pricing--yonten .pricing--item:nth-child(2) { + border-right: none; + border-left: none; + } +} + +.pricing--yonten .pricing--item:hover { + z-index: 100; +} + +.pricing--yonten .pricing--item:hover::after { + content: ''; + pointer-events: none; + position: absolute; + top: -5px; + left: -5px; + width: 100%; + height: 100%; + box-sizing: content-box; + border: 5px solid #8bc34a; +} + +.pricing--yonten .pricing--title { + font-size: 1.5em; + margin: 0 0 0.5em 0; + padding: 0 0 0.5em; +} + +.pricing--yonten .icon { + font-size: 3em; + margin: 0 0 0.5em 0; + color: #85c34a; +} + +.pricing--yonten .pricing--price { + font-size: 2em; + margin: 0 0 0.5em 0; + font-weight: bold; + color: #85c34a; +} + +.pricing--yonten .pricing--currency { + font-size: 0.5em; + vertical-align: super; +} + +.pricing--yonten .pricing--period { + font-size: 0.35em; + padding: 0 0 0 0.5em; + color: #646D5B; +} + +.pricing--yonten .pricing--feature-list { + margin: 0; + padding: 0.25em 0 8em; + list-style: none; + text-align: center; + color: #81867D; +} + +.pricing--yonten .pricing--feature { + padding: 0.25em; +} + +.pricing--yonten .pricing--action { + font-weight: bold; + margin-top: auto; + padding: 1em 2em; + border-radius: 40px; + background: #85c34a; + color: ; + -webkit-transition: background-color 0.3s, color 0.3s; + transition: background-color 0.3s, color 0.3s; +} + +.pricing--yonten .pricing--action:hover, +.pricing--yonten .pricing--action:focus { + color: #85c34a; + background: #fff; +} + +/* tashi */ +.pricing--tashi .pricing--item { + font-family: 'Roboto Condensed', sans-serif; + margin: 0.5em; + padding: 2em 2.5em; + text-align: left; + color: #fff; + background: #262c37; +} + +.pricing--tashi .pricing--title { + font-size: 2em; + font-weight: 300; + margin: 0 0 0.15em; + color: #E25A77; +} + +.pricing--tashi .pricing--item:nth-child(2) .pricing--title { + color: #E25ABC; +} + +.pricing--tashi .pricing--item:nth-child(3) .pricing--title { + color: #7E5AE2; +} + +.pricing--tashi .pricing--price { + font-size: 3em; + font-weight: 300; + padding: 0.85em 0; +} + +.pricing--tashi .pricing--currency { + font-size: 0.65em; + vertical-align: super; + color: #394150; +} + +.pricing--tashi .pricing--period { + font-size: 0.35em; + padding: 0 0 0 0.5em; + color: #535965; +} + +.pricing--tashi .pricing--sentence { + padding: 0 0 0.5em; + margin: 0; + color: #535965; +} + +.pricing--tashi .pricing--feature-list { + font-size: 0.95em; + margin: 0; + padding: 0 0 2.5em; + list-style: none; + color: #757983; +} + +.pricing--tashi .pricing--feature { + position: relative; + display: block; + padding: 0 0 0 20px; + line-height: 1.5; +} + +.pricing--tashi .pricing--feature::before { + content: ''; + position: absolute; + width: 10px; + height: 2px; + background: #1F242D; + left: 0; + top: 50%; + margin: -2px 0 0 0; +} + +.pricing--tashi .pricing--action { + -webkit-align-self: flex-end; + align-self: flex-end; + margin-top: auto; + font-size: 1.55em; + width: 60px; + height: 60px; + line-height: 60px; + color: #fff; + border-radius: 30px; + background: #E25A77; + -webkit-transition: background-color 0.3s, color 0.3s; + transition: background-color 0.3s, color 0.3s; +} + +.pricing--tashi .pricing--item:nth-child(2) .pricing--action { + background: #E25ABC; +} + +.pricing--tashi .pricing--item:nth-child(3) .pricing--action { + background: #7E5AE2; +} + +.pricing--tashi .pricing--action:hover, +.pricing--tashi .pricing--action:focus { + background: #1A1F28 !important; +} + +/* palden */ +.pricing--palden .pricing--item { + font-family: "Nunito", sans-serif; + cursor: default; + color: #84697c; + background: #fff; + box-shadow: 0 0 10px rgba(46, 59, 125, 0.23); + border-radius: 20px 20px 10px 10px; + margin: 1em; +} + +@media screen and (min-width: 66.250em) { + .pricing--palden .pricing--item { + margin: 1em -0.5em; + } + .pricing--palden .pricing--item--featured { + margin: 0; + z-index: 10; + box-shadow: 0 0 20px rgba(46, 59, 125, 0.23); + } +} + +.pricing--palden .pricing--deco { + border-radius: 10px 10px 0 0; + background: #7a90ff; + padding: 4em 0 9em; + position: relative; +} + +.pricing--palden .pricing--deco-img { + position: absolute; + bottom: 0; + left: 0; + width: 100%; + height: 160px; +} + +.pricing--palden .pricing--item--featured .pricing--deco { + padding: 5em 0 8.885em 0; +} + +.pricing--palden .pricing--title { + font-size: 0.75em; + margin: 0; + text-transform: uppercase; + letter-spacing: 5px; + color: #ffd5bd; +} + +.pricing--palden .deco-layer { + -webkit-transition: -webkit-transform 0.5s; + transition: transform 0.5s; +} + +.pricing--palden .pricing--item:hover .deco-layer--1 { + -webkit-transform: translate3d(15px,0,0); + transform: translate3d(15px,0,0); +} + +.pricing--palden .pricing--item:hover .deco-layer--2 { + -webkit-transform: translate3d(-15px,0,0); + transform: translate3d(-15px,0,0); +} + +.pricing--palden .icon { + font-size: 2.5em; +} + +.pricing--palden .pricing--price { + font-size: 5em; + font-weight: bold; + padding: 0; + color: #fff; + margin: 0 0 0.25em 0; + line-height: 0.75; +} + +.pricing--palden .pricing--currency { + font-size: 0.15em; + vertical-align: top; + color: rgba(0,0,0,0.4); +} + +.pricing--palden .pricing--period { + font-size: 0.15em; + padding: 0 0 0 0.5em; + color: rgba(0,0,0,0.4); + font-style: italic; +} + +.pricing--palden .pricing--sentence { + font-weight: bold; + margin: 0 0 1em 0; + padding: 0 0 0.5em; +} + +.pricing--palden .pricing--feature-list { + margin: 0; + padding: 0.25em 0 2.5em; + list-style: none; + text-align: center; +} + +.pricing--palden .pricing--feature { + padding: 1em 0; +} + +.pricing--palden .pricing--action { + font-weight: bold; + margin: auto 3em 2em 3em; + padding: 1em 2em; + color: #fff; + border-radius: 30px; + background: #ffae7e; + -webkit-transition: background-color 0.3s; + transition: background-color 0.3s; +} + +.pricing--palden .pricing--action:hover, +.pricing--palden .pricing--action:focus { + background-color: #f38747; +} \ No newline at end of file diff --git a/TSC2.Client/wwwroot/css/components/prism.css b/TSC2.Client/wwwroot/css/components/prism.css new file mode 100644 index 0000000..8c4cc05 --- /dev/null +++ b/TSC2.Client/wwwroot/css/components/prism.css @@ -0,0 +1 @@ +code[class*=language-],pre[class*=language-]{color:#000;background:0 0;text-shadow:0 1px #fff;font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none}code[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection{text-shadow:none;background:#b3d4fc}code[class*=language-] ::selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection{text-shadow:none;background:#b3d4fc}@media print{code[class*=language-],pre[class*=language-]{text-shadow:none}}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:#f5f2f0}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#708090}.token.punctuation{color:#999}.token.namespace{opacity:.7}.token.boolean,.token.constant,.token.deleted,.token.number,.token.property,.token.symbol,.token.tag{color:#905}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#690}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url{color:#9a6e3a;background:hsla(0,0%,100%,.5)}.token.atrule,.token.attr-value,.token.keyword{color:#07a}.token.class-name,.token.function{color:#dd4a68}.token.important,.token.regex,.token.variable{color:#e90}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help} \ No newline at end of file diff --git a/TSC2.Client/wwwroot/css/components/radio-checkbox-vars.css b/TSC2.Client/wwwroot/css/components/radio-checkbox-vars.css new file mode 100644 index 0000000..62f0923 --- /dev/null +++ b/TSC2.Client/wwwroot/css/components/radio-checkbox-vars.css @@ -0,0 +1,99 @@ +/* Style-1 + Style-2 */ +.checkbox-style, +.radio-style { + opacity: 0; + position: absolute; +} + +.checkbox-style, .radio-style, +.checkbox-style-1-label, .radio-style-1-label, +.checkbox-style-2-label, .radio-style-2-label, +.checkbox-style-3-label, .radio-style-3-label { + display: inline-block; + vertical-align: middle; + margin: 5px; + cursor: pointer; +} + +.checkbox-style-1-label, .radio-style-1-label, +.checkbox-style-2-label, .radio-style-2-label, +.checkbox-style-3-label, .radio-style-3-label { position: relative; } + +.checkbox-style-1-label:before, .radio-style-1-label:before, +.checkbox-style-2-label:before, .radio-style-2-label:before, +.checkbox-style-3-label:before, .radio-style-3-label:before { + content: ''; + background: #FFF; + border: 2px solid #DDD; + display: inline-block; + vertical-align: middle; + width: 24px; + height: 24px; + padding: 4px; + margin-right: 10px; + line-height: 1; + text-align: center; +} + +.radio-style-1-label:before, +.radio-style-2-label:before, +.radio-style-3-label:before { border-radius: 50%; } + +.checkbox-style:checked + .checkbox-style-1-label:before { + background: #1ABC9C; + background: var(--themecolor); +} +.radio-style:checked + .radio-style-1-label:before { background: #CCC; } + +/* Checkbox-small + Radio-small */ +.checkbox-style-1-label.checkbox-small:before, +.radio-style-1-label.radio-small:before, +.checkbox-style-2-label.checkbox-small:before, +.radio-style-2-label.radio-small:before, +.checkbox-style-3-label.checkbox-small:before, +.radio-style-3-label.radio-small:before { + border: 2px solid #DDD; + width: 16px; + height: 16px; + margin: 0 8px 1px 0; +} + +/* Style-2 */ +.checkbox-style:checked + .checkbox-style-2-label:before { + background: #1ABC9C; + background: var(--themecolor); + box-shadow: inset 0px 0px 0px 4px #fff; +} + +.radio-style:checked + .radio-style-2-label:before { + background: #ccc; + box-shadow: inset 0px 0px 0px 4px #fff; +} + +.checkbox-style:checked + .checkbox-style-2-label.checkbox-small:before { box-shadow: inset 0px 0px 0px 2px #fff; } +.radio-style:checked + .radio-style-2-label.radio-small:before { box-shadow: inset 0px 0px 0px 2px #fff; } + +/* style-3 */ +.checkbox-style:checked + .checkbox-style-3-label:before, +.radio-style:checked + .radio-style-3-label:before { + content: "\e116"; + font-family: 'lined-icons'; + background: #1ABC9C; + background: var(--themecolor); + color: #FFF; +} +.radio-style:checked + .radio-style-3-label:before { + color: #BBB; + background-color: transparent; +} + +/* style-3 - Small */ +.checkbox-style + .checkbox-style-3-label.checkbox-small:before, +.radio-style + .radio-style-3-label.radio-small:before { + border: 1px solid #BBB; + width: 16px; + height: 16px; + margin: 0 8px 1px 0; + font-size: 7px; + line-height: .8; +} diff --git a/TSC2.Client/wwwroot/css/components/radio-checkbox.css b/TSC2.Client/wwwroot/css/components/radio-checkbox.css new file mode 100644 index 0000000..f1ebf8a --- /dev/null +++ b/TSC2.Client/wwwroot/css/components/radio-checkbox.css @@ -0,0 +1,93 @@ +/* Style-1 + Style-2 */ +.checkbox-style, +.radio-style { + opacity: 0; + position: absolute; +} + +.checkbox-style, .radio-style, +.checkbox-style-1-label, .radio-style-1-label, +.checkbox-style-2-label, .radio-style-2-label, +.checkbox-style-3-label, .radio-style-3-label { + display: inline-block; + vertical-align: middle; + margin: 5px; + cursor: pointer; +} + +.checkbox-style-1-label, .radio-style-1-label, +.checkbox-style-2-label, .radio-style-2-label, +.checkbox-style-3-label, .radio-style-3-label { position: relative; } + +.checkbox-style-1-label:before, .radio-style-1-label:before, +.checkbox-style-2-label:before, .radio-style-2-label:before, +.checkbox-style-3-label:before, .radio-style-3-label:before { + content: ''; + background: #FFF; + border: 2px solid #DDD; + display: inline-block; + vertical-align: middle; + width: 24px; + height: 24px; + margin-right: 10px; + line-height: 20px; + text-align: center; +} + +.radio-style-1-label:before, +.radio-style-2-label:before, +.radio-style-3-label:before { border-radius: 50%; } + +.checkbox-style:checked + .checkbox-style-1-label:before { background: var(--cnvs-themecolor); } +.radio-style:checked + .radio-style-1-label:before { background: #CCC; } + +/* Checkbox-small + Radio-small */ +.checkbox-style-1-label.checkbox-small:before, +.radio-style-1-label.radio-small:before, +.checkbox-style-2-label.checkbox-small:before, +.radio-style-2-label.radio-small:before, +.checkbox-style-3-label.checkbox-small:before, +.radio-style-3-label.radio-small:before { + border: 2px solid #DDD; + width: 16px; + height: 16px; + margin: 0 8px 1px 0; +} + +/* Style-2 */ +.checkbox-style:checked + .checkbox-style-2-label:before { + background: var(--cnvs-themecolor); + box-shadow: inset 0px 0px 0px 4px #fff; +} + +.radio-style:checked + .radio-style-2-label:before { + background: #ccc; + box-shadow: inset 0px 0px 0px 4px #fff; +} + +.checkbox-style:checked + .checkbox-style-2-label.checkbox-small:before { box-shadow: inset 0px 0px 0px 2px #fff; } +.radio-style:checked + .radio-style-2-label.radio-small:before { box-shadow: inset 0px 0px 0px 2px #fff; } + +/* style-3 */ +.checkbox-style:checked + .checkbox-style-3-label:before, +.radio-style:checked + .radio-style-3-label:before { + content: "\F633"; + font-family: "bootstrap-icons"; + background: var(--cnvs-themecolor); + color: #FFF; +} +.radio-style:checked + .radio-style-3-label:before { + color: #BBB; + background-color: transparent; +} + +/* style-3 - Small */ +.checkbox-style + .checkbox-style-3-label.checkbox-small:before, +.radio-style + .radio-style-3-label.radio-small:before { + border: 1px solid #BBB; + width: 16px; + height: 16px; + margin: 0 8px 1px 0; + font-size: 7px; + line-height: .8; +} diff --git a/TSC2.Client/wwwroot/css/components/rangeslider/sprite-skin-nice.png b/TSC2.Client/wwwroot/css/components/rangeslider/sprite-skin-nice.png new file mode 100644 index 0000000..9b0a4bc Binary files /dev/null and b/TSC2.Client/wwwroot/css/components/rangeslider/sprite-skin-nice.png differ diff --git a/TSC2.Client/wwwroot/css/components/select-boxes.css b/TSC2.Client/wwwroot/css/components/select-boxes.css new file mode 100644 index 0000000..0997ca6 --- /dev/null +++ b/TSC2.Client/wwwroot/css/components/select-boxes.css @@ -0,0 +1,2 @@ +/*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ +.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{background-color:transparent;border:none;font-size:1em}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline;list-style:none;padding:0}.select2-container .select2-selection--multiple .select2-selection__clear{background-color:transparent;border:none;font-size:1em}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;margin-left:5px;padding:0;max-width:100%;resize:none;height:18px;vertical-align:bottom;font-family:sans-serif;overflow:hidden;word-break:keep-all}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option--selectable{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:26px;margin-right:20px;padding-right:0px}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;padding-bottom:5px;padding-right:5px;position:relative}.select2-container--default .select2-selection--multiple.select2-selection--clearable{padding-right:25px}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;font-weight:bold;height:20px;margin-right:10px;margin-top:5px;position:absolute;right:0;padding:1px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:inline-block;margin-left:5px;margin-top:5px;padding:0;padding-left:20px;position:relative;max-width:100%;overflow:hidden;text-overflow:ellipsis;vertical-align:bottom;white-space:nowrap}.select2-container--default .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-right:1px solid #aaa;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#999;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px;position:absolute;left:0;top:0}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus{background-color:#f1f1f1;color:#333;outline:none}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-left:1px solid #aaa;border-right:none;border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear{float:left;margin-left:10px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--group{padding:0}.select2-container--default .select2-results__option--disabled{color:#999}.select2-container--default .select2-results__option--selected{background-color:#ddd}.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:26px;margin-right:20px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0;padding-bottom:5px;padding-right:5px}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;display:inline-block;margin-left:5px;margin-top:5px;padding:0}.select2-container--classic .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#888;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555;outline:none}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option--group{padding:0}.select2-container--classic .select2-results__option--disabled{color:grey}.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb} \ No newline at end of file diff --git a/TSC2.Client/wwwroot/css/components/timepicker.css b/TSC2.Client/wwwroot/css/components/timepicker.css new file mode 100644 index 0000000..3c54112 --- /dev/null +++ b/TSC2.Client/wwwroot/css/components/timepicker.css @@ -0,0 +1,5 @@ +/*!@preserve + * Tempus Dominus Bootstrap4 v5.39.0 (https://tempusdominus.github.io/bootstrap-4/) + * Copyright 2016-2020 Jonathan Peterson and contributors + * Licensed under MIT (https://github.com/tempusdominus/bootstrap-3/blob/master/LICENSE) + */.bootstrap-datetimepicker-widget .btn[data-action=clear]::after,.bootstrap-datetimepicker-widget .btn[data-action=decrementHours]::after,.bootstrap-datetimepicker-widget .btn[data-action=decrementMinutes]::after,.bootstrap-datetimepicker-widget .btn[data-action=incrementHours]::after,.bootstrap-datetimepicker-widget .btn[data-action=incrementMinutes]::after,.bootstrap-datetimepicker-widget .btn[data-action=showHours]::after,.bootstrap-datetimepicker-widget .btn[data-action=showMinutes]::after,.bootstrap-datetimepicker-widget .btn[data-action=today]::after,.bootstrap-datetimepicker-widget .btn[data-action=togglePeriod]::after,.bootstrap-datetimepicker-widget .picker-switch::after,.bootstrap-datetimepicker-widget table th.next::after,.bootstrap-datetimepicker-widget table th.prev::after,.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}body.tempusdominus-bootstrap-datetimepicker-widget-day-click,body.tempusdominus-bootstrap-datetimepicker-widget-day-click *{cursor:pointer!important}body.tempusdominus-bootstrap-datetimepicker-widget-day-click{position:relative!important}.tempusdominus-bootstrap-datetimepicker-widget-day-click-glass-panel{position:absolute;z-index:999999999999;top:0;left:0;right:0;bottom:0;cursor:pointer!important}.bootstrap-datetimepicker-widget .datepicker-days tbody td{cursor:pointer}.bootstrap-datetimepicker-widget{list-style:none}.bootstrap-datetimepicker-widget.dropdown-menu{display:block;margin:2px 0;padding:4px;width:14rem}.bootstrap-datetimepicker-widget.dropdown-menu.tempusdominus-bootstrap-datetimepicker-widget-with-feather-icons{width:16rem}.bootstrap-datetimepicker-widget.dropdown-menu.tempusdominus-bootstrap-datetimepicker-widget-with-calendar-weeks{width:16rem}.bootstrap-datetimepicker-widget.dropdown-menu.tempusdominus-bootstrap-datetimepicker-widget-with-calendar-weeks.tempusdominus-bootstrap-datetimepicker-widget-with-feather-icons{width:17rem}@media (min-width:576px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:768px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:992px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}.bootstrap-datetimepicker-widget.dropdown-menu:after,.bootstrap-datetimepicker-widget.dropdown-menu:before{content:"";display:inline-block;position:absolute}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,.2);top:-7px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after{border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;top:-6px;left:8px}.bootstrap-datetimepicker-widget.dropdown-menu.top:before{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #ccc;border-top-color:rgba(0,0,0,.2);bottom:-7px;left:6px}.bootstrap-datetimepicker-widget.dropdown-menu.top:after{border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid #fff;bottom:-6px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.float-right:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.dropdown-menu.float-right:after{left:auto;right:7px}.bootstrap-datetimepicker-widget.dropdown-menu.wider{width:16rem}.bootstrap-datetimepicker-widget .list-unstyled{margin:0}.bootstrap-datetimepicker-widget a[data-action]{padding:6px 0}.bootstrap-datetimepicker-widget a[data-action]:active{box-shadow:none}.bootstrap-datetimepicker-widget .timepicker-hour,.bootstrap-datetimepicker-widget .timepicker-minute,.bootstrap-datetimepicker-widget .timepicker-second{width:54px;font-weight:700;font-size:1.2em;margin:0}.bootstrap-datetimepicker-widget button[data-action]{padding:6px}.bootstrap-datetimepicker-widget .btn[data-action=togglePeriod]{text-align:center;font-family:Arial,sans-serif,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";width:38px;height:38px}.bootstrap-datetimepicker-widget .btn[data-action=incrementHours]::after{content:"Increment Hours"}.bootstrap-datetimepicker-widget .btn[data-action=incrementMinutes]::after{content:"Increment Minutes"}.bootstrap-datetimepicker-widget .btn[data-action=decrementHours]::after{content:"Decrement Hours"}.bootstrap-datetimepicker-widget .btn[data-action=decrementMinutes]::after{content:"Decrement Minutes"}.bootstrap-datetimepicker-widget .btn[data-action=showHours]::after{content:"Show Hours"}.bootstrap-datetimepicker-widget .btn[data-action=showMinutes]::after{content:"Show Minutes"}.bootstrap-datetimepicker-widget .btn[data-action=togglePeriod]::after{content:"Toggle AM/PM"}.bootstrap-datetimepicker-widget .btn[data-action=clear]::after{content:"Clear the picker"}.bootstrap-datetimepicker-widget .btn[data-action=today]::after{content:"Set the date to today"}.bootstrap-datetimepicker-widget .picker-switch{text-align:center}.bootstrap-datetimepicker-widget .picker-switch::after{content:"Toggle Date and Time Screens"}.bootstrap-datetimepicker-widget .picker-switch td{padding:0;margin:0;height:auto;width:auto;line-height:inherit}.bootstrap-datetimepicker-widget .picker-switch td span{line-height:2.5;height:2.5em;width:100%}.bootstrap-datetimepicker-widget .picker-switch.picker-switch-with-feathers-icons td span{line-height:2.8;height:2.8em}.bootstrap-datetimepicker-widget table{width:100%;margin:0}.bootstrap-datetimepicker-widget table td,.bootstrap-datetimepicker-widget table th{text-align:center;border-radius:.25rem}.bootstrap-datetimepicker-widget table th{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table th.picker-switch{width:145px}.bootstrap-datetimepicker-widget table th.disabled,.bootstrap-datetimepicker-widget table th.disabled:hover{background:0 0;color:#6c757d;cursor:not-allowed}.bootstrap-datetimepicker-widget table th.prev::after{content:"Previous Month"}.bootstrap-datetimepicker-widget table th.next::after{content:"Next Month"}.bootstrap-datetimepicker-widget table thead tr:first-child th{cursor:pointer}.bootstrap-datetimepicker-widget table thead tr:first-child th:hover{background:#e9ecef}.bootstrap-datetimepicker-widget table td{height:54px;line-height:54px;width:54px}.bootstrap-datetimepicker-widget table td.cw{font-size:.8em;height:20px;line-height:20px;color:#6c757d;cursor:default}.bootstrap-datetimepicker-widget table td.day{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table td.day:hover,.bootstrap-datetimepicker-widget table td.hour:hover,.bootstrap-datetimepicker-widget table td.minute:hover,.bootstrap-datetimepicker-widget table td.second:hover{background:#e9ecef;cursor:pointer}.bootstrap-datetimepicker-widget table td.new,.bootstrap-datetimepicker-widget table td.old{color:#6c757d}.bootstrap-datetimepicker-widget table td.today{position:relative}.bootstrap-datetimepicker-widget table td.today:before{content:"";display:inline-block;border:solid transparent;border-width:0 0 7px 7px;border-bottom-color:#007bff;border-top-color:rgba(0,0,0,.2);position:absolute;bottom:4px;right:4px}.bootstrap-datetimepicker-widget table td.active,.bootstrap-datetimepicker-widget table td.active:hover{background-color:#007bff;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget table td.active.today:before{border-bottom-color:#fff}.bootstrap-datetimepicker-widget table td.disabled,.bootstrap-datetimepicker-widget table td.disabled:hover{background:0 0;color:#6c757d;cursor:not-allowed}.bootstrap-datetimepicker-widget table td span{display:inline-block;width:54px;height:54px;line-height:54px;margin-top:2px;margin-bottom:2px;cursor:pointer;border-radius:.25rem}.bootstrap-datetimepicker-widget table td span:hover{background:#e9ecef}.bootstrap-datetimepicker-widget table td span.active{background-color:#007bff;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget table td span.old{color:#6c757d}.bootstrap-datetimepicker-widget table td span.disabled,.bootstrap-datetimepicker-widget table td span.disabled:hover{background:0 0;color:#6c757d;cursor:not-allowed}.bootstrap-datetimepicker-widget.usetwentyfour td.hour{height:27px;line-height:27px}.bootstrap-datetimepicker-widget .timepicker .timepicker-picker a.btn{color:#007bff;color:var(--blue,#007bff)}.bootstrap-datetimepicker-widget .timepicker .timepicker-picker a.btn:hover{color:#0056b3}.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=decrementHours],.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=decrementMinutes],.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=decrementSeconds],.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=incrementHours],.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=incrementMinutes],.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=incrementSeconds],.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=showHours],.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=showMinutes],.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=showSeconds],.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=togglePeriod],.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td.day,.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td.hour,.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td.minute,.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td.second{pointer-events:none;cursor:default}.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=decrementHours]:hover,.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=decrementMinutes]:hover,.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=decrementSeconds]:hover,.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=incrementHours]:hover,.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=incrementMinutes]:hover,.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=incrementSeconds]:hover,.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=showHours]:hover,.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=showMinutes]:hover,.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=showSeconds]:hover,.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=togglePeriod]:hover,.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td.day:hover,.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td.hour:hover,.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td.minute:hover,.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td.second:hover{background:0 0}.input-group [data-toggle=datetimepicker]{cursor:pointer} \ No newline at end of file diff --git a/TSC2.Client/wwwroot/css/custom.css b/TSC2.Client/wwwroot/css/custom.css new file mode 100644 index 0000000..165b85f --- /dev/null +++ b/TSC2.Client/wwwroot/css/custom.css @@ -0,0 +1,7 @@ +/* ---------------------------------------------------------------- + Custom CSS + + Add all your Custom Styled CSS here for New Styles or + Overwriting Default Theme Styles for Better Handling Updates +-----------------------------------------------------------------*/ + diff --git a/TSC2.Client/wwwroot/css/font-icons.css b/TSC2.Client/wwwroot/css/font-icons.css new file mode 100644 index 0000000..f939b61 --- /dev/null +++ b/TSC2.Client/wwwroot/css/font-icons.css @@ -0,0 +1,175 @@ +@import url("icons/font-awesome.css"); /* Ref: https://fontawesome.com/search?o=r&m=free */ +@import url("icons/bootstrap-icons.css"); /* Ref: https://icons.getbootstrap.com/#icons */ +@import url("icons/unicons.css"); /* Ref: https://iconscout.com/unicons/explore/line */ + +[class*="fa-"], +[class*=" fa-"], +[class*="bi-"], +[class*=" bi-"], +[class*="uil-"], +[class*=" uil-"] { + display: inline-block; + line-height: inherit; + font-display: swap; +} + +[class*="fa-"]::before, +[class*=" fa-"]::before, +[class*="bi-"]::before, +[class*=" bi-"]::before, +[class*="uil-"]::before, +[class*=" uil-"]::before { + display: inline-flex; + align-self: center; + justify-self: center; + line-height: inherit; +} + +.icon-lg { + font-size: 1.3333333333333333em; + line-height: 0.75em; + vertical-align: -15%; +} +.icon-2x { + font-size: 2em; +} +.icon-3x { + font-size: 3em; +} +.icon-4x { + font-size: 4em; +} +.icon-5x { + font-size: 5em; +} +.icon-fw { + width: 1.2857142857142858em; + text-align: center; +} + +.icon-border { + padding: 0.2em 0.25em 0.15em; + border: solid 0.08em #eeeeee; + border-radius: 0.1em; +} +.icon.pull-left { + margin-right: 0.3em; +} +.icon.pull-right { + margin-left: 0.3em; +} +.icon-spin { + -webkit-animation: spin 2s infinite linear; + -moz-animation: spin 2s infinite linear; + -o-animation: spin 2s infinite linear; + animation: spin 2s infinite linear; +} +@-moz-keyframes spin { + 0% { + -moz-transform: rotate(0deg); + } + 100% { + -moz-transform: rotate(359deg); + } +} +@-webkit-keyframes spin { + 0% { + -webkit-transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + } +} +@-o-keyframes spin { + 0% { + -o-transform: rotate(0deg); + } + 100% { + -o-transform: rotate(359deg); + } +} +@-ms-keyframes spin { + 0% { + -ms-transform: rotate(0deg); + } + 100% { + -ms-transform: rotate(359deg); + } +} +@keyframes spin { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(359deg); + } +} +.icon-rotate-90 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); + -webkit-transform: rotate(90deg); + -moz-transform: rotate(90deg); + -ms-transform: rotate(90deg); + -o-transform: rotate(90deg); + transform: rotate(90deg); +} +.icon-rotate-180 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); + -webkit-transform: rotate(180deg); + -moz-transform: rotate(180deg); + -ms-transform: rotate(180deg); + -o-transform: rotate(180deg); + transform: rotate(180deg); +} +.icon-rotate-270 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); + -webkit-transform: rotate(270deg); + -moz-transform: rotate(270deg); + -ms-transform: rotate(270deg); + -o-transform: rotate(270deg); + transform: rotate(270deg); +} +.icon-flip-horizontal { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1); + -webkit-transform: scale(-1, 1); + -moz-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + -o-transform: scale(-1, 1); + transform: scale(-1, 1); +} +.icon-flip-vertical { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1); + -webkit-transform: scale(1, -1); + -moz-transform: scale(1, -1); + -ms-transform: scale(1, -1); + -o-transform: scale(1, -1); + transform: scale(1, -1); +} +.icon-stacked { + position: relative; + display: inline-block; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: middle; +} +.icon-stacked-1x, +.icon-stacked-2x { + position: absolute; + left: 0; + width: 100%; + text-align: center; +} +.rtl .icon-stacked-1x, +.rtl .icon-stacked-2x { + left: auto; + right: 0; +} +.icon-stacked-1x { + line-height: inherit; +} +.icon-stacked-2x { + font-size: 2em; +} +.icon-inverse { + color: #ffffff; +} diff --git a/TSC2.Client/wwwroot/css/icons/bootstrap-icons.css b/TSC2.Client/wwwroot/css/icons/bootstrap-icons.css new file mode 100644 index 0000000..d0d16cc --- /dev/null +++ b/TSC2.Client/wwwroot/css/icons/bootstrap-icons.css @@ -0,0 +1,5 @@ +/*! + * Bootstrap Icons v1.11.0 (https://icons.getbootstrap.com/) + * Copyright 2019-2023 The Bootstrap Authors + * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE) + */@font-face{font-display:block;font-family:bootstrap-icons;src:url("bootstrap-icons/bootstrap-icons.woff2") format("woff2"),url("bootstrap-icons/bootstrap-icons.woff") format("woff")}.bi::before,[class*=" bi-"]::before,[class^=bi-]::before{display:inline-block;font-family:bootstrap-icons!important;font-style:normal;font-weight:400!important;font-variant:normal;text-transform:none;line-height:1;vertical-align:-.125em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.bi-123::before{content:"\f67f"}.bi-alarm-fill::before{content:"\f101"}.bi-alarm::before{content:"\f102"}.bi-align-bottom::before{content:"\f103"}.bi-align-center::before{content:"\f104"}.bi-align-end::before{content:"\f105"}.bi-align-middle::before{content:"\f106"}.bi-align-start::before{content:"\f107"}.bi-align-top::before{content:"\f108"}.bi-alt::before{content:"\f109"}.bi-app-indicator::before{content:"\f10a"}.bi-app::before{content:"\f10b"}.bi-archive-fill::before{content:"\f10c"}.bi-archive::before{content:"\f10d"}.bi-arrow-90deg-down::before{content:"\f10e"}.bi-arrow-90deg-left::before{content:"\f10f"}.bi-arrow-90deg-right::before{content:"\f110"}.bi-arrow-90deg-up::before{content:"\f111"}.bi-arrow-bar-down::before{content:"\f112"}.bi-arrow-bar-left::before{content:"\f113"}.bi-arrow-bar-right::before{content:"\f114"}.bi-arrow-bar-up::before{content:"\f115"}.bi-arrow-clockwise::before{content:"\f116"}.bi-arrow-counterclockwise::before{content:"\f117"}.bi-arrow-down-circle-fill::before{content:"\f118"}.bi-arrow-down-circle::before{content:"\f119"}.bi-arrow-down-left-circle-fill::before{content:"\f11a"}.bi-arrow-down-left-circle::before{content:"\f11b"}.bi-arrow-down-left-square-fill::before{content:"\f11c"}.bi-arrow-down-left-square::before{content:"\f11d"}.bi-arrow-down-left::before{content:"\f11e"}.bi-arrow-down-right-circle-fill::before{content:"\f11f"}.bi-arrow-down-right-circle::before{content:"\f120"}.bi-arrow-down-right-square-fill::before{content:"\f121"}.bi-arrow-down-right-square::before{content:"\f122"}.bi-arrow-down-right::before{content:"\f123"}.bi-arrow-down-short::before{content:"\f124"}.bi-arrow-down-square-fill::before{content:"\f125"}.bi-arrow-down-square::before{content:"\f126"}.bi-arrow-down-up::before{content:"\f127"}.bi-arrow-down::before{content:"\f128"}.bi-arrow-left-circle-fill::before{content:"\f129"}.bi-arrow-left-circle::before{content:"\f12a"}.bi-arrow-left-right::before{content:"\f12b"}.bi-arrow-left-short::before{content:"\f12c"}.bi-arrow-left-square-fill::before{content:"\f12d"}.bi-arrow-left-square::before{content:"\f12e"}.bi-arrow-left::before{content:"\f12f"}.bi-arrow-repeat::before{content:"\f130"}.bi-arrow-return-left::before{content:"\f131"}.bi-arrow-return-right::before{content:"\f132"}.bi-arrow-right-circle-fill::before{content:"\f133"}.bi-arrow-right-circle::before{content:"\f134"}.bi-arrow-right-short::before{content:"\f135"}.bi-arrow-right-square-fill::before{content:"\f136"}.bi-arrow-right-square::before{content:"\f137"}.bi-arrow-right::before{content:"\f138"}.bi-arrow-up-circle-fill::before{content:"\f139"}.bi-arrow-up-circle::before{content:"\f13a"}.bi-arrow-up-left-circle-fill::before{content:"\f13b"}.bi-arrow-up-left-circle::before{content:"\f13c"}.bi-arrow-up-left-square-fill::before{content:"\f13d"}.bi-arrow-up-left-square::before{content:"\f13e"}.bi-arrow-up-left::before{content:"\f13f"}.bi-arrow-up-right-circle-fill::before{content:"\f140"}.bi-arrow-up-right-circle::before{content:"\f141"}.bi-arrow-up-right-square-fill::before{content:"\f142"}.bi-arrow-up-right-square::before{content:"\f143"}.bi-arrow-up-right::before{content:"\f144"}.bi-arrow-up-short::before{content:"\f145"}.bi-arrow-up-square-fill::before{content:"\f146"}.bi-arrow-up-square::before{content:"\f147"}.bi-arrow-up::before{content:"\f148"}.bi-arrows-angle-contract::before{content:"\f149"}.bi-arrows-angle-expand::before{content:"\f14a"}.bi-arrows-collapse::before{content:"\f14b"}.bi-arrows-expand::before{content:"\f14c"}.bi-arrows-fullscreen::before{content:"\f14d"}.bi-arrows-move::before{content:"\f14e"}.bi-aspect-ratio-fill::before{content:"\f14f"}.bi-aspect-ratio::before{content:"\f150"}.bi-asterisk::before{content:"\f151"}.bi-at::before{content:"\f152"}.bi-award-fill::before{content:"\f153"}.bi-award::before{content:"\f154"}.bi-back::before{content:"\f155"}.bi-backspace-fill::before{content:"\f156"}.bi-backspace-reverse-fill::before{content:"\f157"}.bi-backspace-reverse::before{content:"\f158"}.bi-backspace::before{content:"\f159"}.bi-badge-3d-fill::before{content:"\f15a"}.bi-badge-3d::before{content:"\f15b"}.bi-badge-4k-fill::before{content:"\f15c"}.bi-badge-4k::before{content:"\f15d"}.bi-badge-8k-fill::before{content:"\f15e"}.bi-badge-8k::before{content:"\f15f"}.bi-badge-ad-fill::before{content:"\f160"}.bi-badge-ad::before{content:"\f161"}.bi-badge-ar-fill::before{content:"\f162"}.bi-badge-ar::before{content:"\f163"}.bi-badge-cc-fill::before{content:"\f164"}.bi-badge-cc::before{content:"\f165"}.bi-badge-hd-fill::before{content:"\f166"}.bi-badge-hd::before{content:"\f167"}.bi-badge-tm-fill::before{content:"\f168"}.bi-badge-tm::before{content:"\f169"}.bi-badge-vo-fill::before{content:"\f16a"}.bi-badge-vo::before{content:"\f16b"}.bi-badge-vr-fill::before{content:"\f16c"}.bi-badge-vr::before{content:"\f16d"}.bi-badge-wc-fill::before{content:"\f16e"}.bi-badge-wc::before{content:"\f16f"}.bi-bag-check-fill::before{content:"\f170"}.bi-bag-check::before{content:"\f171"}.bi-bag-dash-fill::before{content:"\f172"}.bi-bag-dash::before{content:"\f173"}.bi-bag-fill::before{content:"\f174"}.bi-bag-plus-fill::before{content:"\f175"}.bi-bag-plus::before{content:"\f176"}.bi-bag-x-fill::before{content:"\f177"}.bi-bag-x::before{content:"\f178"}.bi-bag::before{content:"\f179"}.bi-bar-chart-fill::before{content:"\f17a"}.bi-bar-chart-line-fill::before{content:"\f17b"}.bi-bar-chart-line::before{content:"\f17c"}.bi-bar-chart-steps::before{content:"\f17d"}.bi-bar-chart::before{content:"\f17e"}.bi-basket-fill::before{content:"\f17f"}.bi-basket::before{content:"\f180"}.bi-basket2-fill::before{content:"\f181"}.bi-basket2::before{content:"\f182"}.bi-basket3-fill::before{content:"\f183"}.bi-basket3::before{content:"\f184"}.bi-battery-charging::before{content:"\f185"}.bi-battery-full::before{content:"\f186"}.bi-battery-half::before{content:"\f187"}.bi-battery::before{content:"\f188"}.bi-bell-fill::before{content:"\f189"}.bi-bell::before{content:"\f18a"}.bi-bezier::before{content:"\f18b"}.bi-bezier2::before{content:"\f18c"}.bi-bicycle::before{content:"\f18d"}.bi-binoculars-fill::before{content:"\f18e"}.bi-binoculars::before{content:"\f18f"}.bi-blockquote-left::before{content:"\f190"}.bi-blockquote-right::before{content:"\f191"}.bi-book-fill::before{content:"\f192"}.bi-book-half::before{content:"\f193"}.bi-book::before{content:"\f194"}.bi-bookmark-check-fill::before{content:"\f195"}.bi-bookmark-check::before{content:"\f196"}.bi-bookmark-dash-fill::before{content:"\f197"}.bi-bookmark-dash::before{content:"\f198"}.bi-bookmark-fill::before{content:"\f199"}.bi-bookmark-heart-fill::before{content:"\f19a"}.bi-bookmark-heart::before{content:"\f19b"}.bi-bookmark-plus-fill::before{content:"\f19c"}.bi-bookmark-plus::before{content:"\f19d"}.bi-bookmark-star-fill::before{content:"\f19e"}.bi-bookmark-star::before{content:"\f19f"}.bi-bookmark-x-fill::before{content:"\f1a0"}.bi-bookmark-x::before{content:"\f1a1"}.bi-bookmark::before{content:"\f1a2"}.bi-bookmarks-fill::before{content:"\f1a3"}.bi-bookmarks::before{content:"\f1a4"}.bi-bookshelf::before{content:"\f1a5"}.bi-bootstrap-fill::before{content:"\f1a6"}.bi-bootstrap-reboot::before{content:"\f1a7"}.bi-bootstrap::before{content:"\f1a8"}.bi-border-all::before{content:"\f1a9"}.bi-border-bottom::before{content:"\f1aa"}.bi-border-center::before{content:"\f1ab"}.bi-border-inner::before{content:"\f1ac"}.bi-border-left::before{content:"\f1ad"}.bi-border-middle::before{content:"\f1ae"}.bi-border-outer::before{content:"\f1af"}.bi-border-right::before{content:"\f1b0"}.bi-border-style::before{content:"\f1b1"}.bi-border-top::before{content:"\f1b2"}.bi-border-width::before{content:"\f1b3"}.bi-border::before{content:"\f1b4"}.bi-bounding-box-circles::before{content:"\f1b5"}.bi-bounding-box::before{content:"\f1b6"}.bi-box-arrow-down-left::before{content:"\f1b7"}.bi-box-arrow-down-right::before{content:"\f1b8"}.bi-box-arrow-down::before{content:"\f1b9"}.bi-box-arrow-in-down-left::before{content:"\f1ba"}.bi-box-arrow-in-down-right::before{content:"\f1bb"}.bi-box-arrow-in-down::before{content:"\f1bc"}.bi-box-arrow-in-left::before{content:"\f1bd"}.bi-box-arrow-in-right::before{content:"\f1be"}.bi-box-arrow-in-up-left::before{content:"\f1bf"}.bi-box-arrow-in-up-right::before{content:"\f1c0"}.bi-box-arrow-in-up::before{content:"\f1c1"}.bi-box-arrow-left::before{content:"\f1c2"}.bi-box-arrow-right::before{content:"\f1c3"}.bi-box-arrow-up-left::before{content:"\f1c4"}.bi-box-arrow-up-right::before{content:"\f1c5"}.bi-box-arrow-up::before{content:"\f1c6"}.bi-box-seam::before{content:"\f1c7"}.bi-box::before{content:"\f1c8"}.bi-braces::before{content:"\f1c9"}.bi-bricks::before{content:"\f1ca"}.bi-briefcase-fill::before{content:"\f1cb"}.bi-briefcase::before{content:"\f1cc"}.bi-brightness-alt-high-fill::before{content:"\f1cd"}.bi-brightness-alt-high::before{content:"\f1ce"}.bi-brightness-alt-low-fill::before{content:"\f1cf"}.bi-brightness-alt-low::before{content:"\f1d0"}.bi-brightness-high-fill::before{content:"\f1d1"}.bi-brightness-high::before{content:"\f1d2"}.bi-brightness-low-fill::before{content:"\f1d3"}.bi-brightness-low::before{content:"\f1d4"}.bi-broadcast-pin::before{content:"\f1d5"}.bi-broadcast::before{content:"\f1d6"}.bi-brush-fill::before{content:"\f1d7"}.bi-brush::before{content:"\f1d8"}.bi-bucket-fill::before{content:"\f1d9"}.bi-bucket::before{content:"\f1da"}.bi-bug-fill::before{content:"\f1db"}.bi-bug::before{content:"\f1dc"}.bi-building::before{content:"\f1dd"}.bi-bullseye::before{content:"\f1de"}.bi-calculator-fill::before{content:"\f1df"}.bi-calculator::before{content:"\f1e0"}.bi-calendar-check-fill::before{content:"\f1e1"}.bi-calendar-check::before{content:"\f1e2"}.bi-calendar-date-fill::before{content:"\f1e3"}.bi-calendar-date::before{content:"\f1e4"}.bi-calendar-day-fill::before{content:"\f1e5"}.bi-calendar-day::before{content:"\f1e6"}.bi-calendar-event-fill::before{content:"\f1e7"}.bi-calendar-event::before{content:"\f1e8"}.bi-calendar-fill::before{content:"\f1e9"}.bi-calendar-minus-fill::before{content:"\f1ea"}.bi-calendar-minus::before{content:"\f1eb"}.bi-calendar-month-fill::before{content:"\f1ec"}.bi-calendar-month::before{content:"\f1ed"}.bi-calendar-plus-fill::before{content:"\f1ee"}.bi-calendar-plus::before{content:"\f1ef"}.bi-calendar-range-fill::before{content:"\f1f0"}.bi-calendar-range::before{content:"\f1f1"}.bi-calendar-week-fill::before{content:"\f1f2"}.bi-calendar-week::before{content:"\f1f3"}.bi-calendar-x-fill::before{content:"\f1f4"}.bi-calendar-x::before{content:"\f1f5"}.bi-calendar::before{content:"\f1f6"}.bi-calendar2-check-fill::before{content:"\f1f7"}.bi-calendar2-check::before{content:"\f1f8"}.bi-calendar2-date-fill::before{content:"\f1f9"}.bi-calendar2-date::before{content:"\f1fa"}.bi-calendar2-day-fill::before{content:"\f1fb"}.bi-calendar2-day::before{content:"\f1fc"}.bi-calendar2-event-fill::before{content:"\f1fd"}.bi-calendar2-event::before{content:"\f1fe"}.bi-calendar2-fill::before{content:"\f1ff"}.bi-calendar2-minus-fill::before{content:"\f200"}.bi-calendar2-minus::before{content:"\f201"}.bi-calendar2-month-fill::before{content:"\f202"}.bi-calendar2-month::before{content:"\f203"}.bi-calendar2-plus-fill::before{content:"\f204"}.bi-calendar2-plus::before{content:"\f205"}.bi-calendar2-range-fill::before{content:"\f206"}.bi-calendar2-range::before{content:"\f207"}.bi-calendar2-week-fill::before{content:"\f208"}.bi-calendar2-week::before{content:"\f209"}.bi-calendar2-x-fill::before{content:"\f20a"}.bi-calendar2-x::before{content:"\f20b"}.bi-calendar2::before{content:"\f20c"}.bi-calendar3-event-fill::before{content:"\f20d"}.bi-calendar3-event::before{content:"\f20e"}.bi-calendar3-fill::before{content:"\f20f"}.bi-calendar3-range-fill::before{content:"\f210"}.bi-calendar3-range::before{content:"\f211"}.bi-calendar3-week-fill::before{content:"\f212"}.bi-calendar3-week::before{content:"\f213"}.bi-calendar3::before{content:"\f214"}.bi-calendar4-event::before{content:"\f215"}.bi-calendar4-range::before{content:"\f216"}.bi-calendar4-week::before{content:"\f217"}.bi-calendar4::before{content:"\f218"}.bi-camera-fill::before{content:"\f219"}.bi-camera-reels-fill::before{content:"\f21a"}.bi-camera-reels::before{content:"\f21b"}.bi-camera-video-fill::before{content:"\f21c"}.bi-camera-video-off-fill::before{content:"\f21d"}.bi-camera-video-off::before{content:"\f21e"}.bi-camera-video::before{content:"\f21f"}.bi-camera::before{content:"\f220"}.bi-camera2::before{content:"\f221"}.bi-capslock-fill::before{content:"\f222"}.bi-capslock::before{content:"\f223"}.bi-card-checklist::before{content:"\f224"}.bi-card-heading::before{content:"\f225"}.bi-card-image::before{content:"\f226"}.bi-card-list::before{content:"\f227"}.bi-card-text::before{content:"\f228"}.bi-caret-down-fill::before{content:"\f229"}.bi-caret-down-square-fill::before{content:"\f22a"}.bi-caret-down-square::before{content:"\f22b"}.bi-caret-down::before{content:"\f22c"}.bi-caret-left-fill::before{content:"\f22d"}.bi-caret-left-square-fill::before{content:"\f22e"}.bi-caret-left-square::before{content:"\f22f"}.bi-caret-left::before{content:"\f230"}.bi-caret-right-fill::before{content:"\f231"}.bi-caret-right-square-fill::before{content:"\f232"}.bi-caret-right-square::before{content:"\f233"}.bi-caret-right::before{content:"\f234"}.bi-caret-up-fill::before{content:"\f235"}.bi-caret-up-square-fill::before{content:"\f236"}.bi-caret-up-square::before{content:"\f237"}.bi-caret-up::before{content:"\f238"}.bi-cart-check-fill::before{content:"\f239"}.bi-cart-check::before{content:"\f23a"}.bi-cart-dash-fill::before{content:"\f23b"}.bi-cart-dash::before{content:"\f23c"}.bi-cart-fill::before{content:"\f23d"}.bi-cart-plus-fill::before{content:"\f23e"}.bi-cart-plus::before{content:"\f23f"}.bi-cart-x-fill::before{content:"\f240"}.bi-cart-x::before{content:"\f241"}.bi-cart::before{content:"\f242"}.bi-cart2::before{content:"\f243"}.bi-cart3::before{content:"\f244"}.bi-cart4::before{content:"\f245"}.bi-cash-stack::before{content:"\f246"}.bi-cash::before{content:"\f247"}.bi-cast::before{content:"\f248"}.bi-chat-dots-fill::before{content:"\f249"}.bi-chat-dots::before{content:"\f24a"}.bi-chat-fill::before{content:"\f24b"}.bi-chat-left-dots-fill::before{content:"\f24c"}.bi-chat-left-dots::before{content:"\f24d"}.bi-chat-left-fill::before{content:"\f24e"}.bi-chat-left-quote-fill::before{content:"\f24f"}.bi-chat-left-quote::before{content:"\f250"}.bi-chat-left-text-fill::before{content:"\f251"}.bi-chat-left-text::before{content:"\f252"}.bi-chat-left::before{content:"\f253"}.bi-chat-quote-fill::before{content:"\f254"}.bi-chat-quote::before{content:"\f255"}.bi-chat-right-dots-fill::before{content:"\f256"}.bi-chat-right-dots::before{content:"\f257"}.bi-chat-right-fill::before{content:"\f258"}.bi-chat-right-quote-fill::before{content:"\f259"}.bi-chat-right-quote::before{content:"\f25a"}.bi-chat-right-text-fill::before{content:"\f25b"}.bi-chat-right-text::before{content:"\f25c"}.bi-chat-right::before{content:"\f25d"}.bi-chat-square-dots-fill::before{content:"\f25e"}.bi-chat-square-dots::before{content:"\f25f"}.bi-chat-square-fill::before{content:"\f260"}.bi-chat-square-quote-fill::before{content:"\f261"}.bi-chat-square-quote::before{content:"\f262"}.bi-chat-square-text-fill::before{content:"\f263"}.bi-chat-square-text::before{content:"\f264"}.bi-chat-square::before{content:"\f265"}.bi-chat-text-fill::before{content:"\f266"}.bi-chat-text::before{content:"\f267"}.bi-chat::before{content:"\f268"}.bi-check-all::before{content:"\f269"}.bi-check-circle-fill::before{content:"\f26a"}.bi-check-circle::before{content:"\f26b"}.bi-check-square-fill::before{content:"\f26c"}.bi-check-square::before{content:"\f26d"}.bi-check::before{content:"\f26e"}.bi-check2-all::before{content:"\f26f"}.bi-check2-circle::before{content:"\f270"}.bi-check2-square::before{content:"\f271"}.bi-check2::before{content:"\f272"}.bi-chevron-bar-contract::before{content:"\f273"}.bi-chevron-bar-down::before{content:"\f274"}.bi-chevron-bar-expand::before{content:"\f275"}.bi-chevron-bar-left::before{content:"\f276"}.bi-chevron-bar-right::before{content:"\f277"}.bi-chevron-bar-up::before{content:"\f278"}.bi-chevron-compact-down::before{content:"\f279"}.bi-chevron-compact-left::before{content:"\f27a"}.bi-chevron-compact-right::before{content:"\f27b"}.bi-chevron-compact-up::before{content:"\f27c"}.bi-chevron-contract::before{content:"\f27d"}.bi-chevron-double-down::before{content:"\f27e"}.bi-chevron-double-left::before{content:"\f27f"}.bi-chevron-double-right::before{content:"\f280"}.bi-chevron-double-up::before{content:"\f281"}.bi-chevron-down::before{content:"\f282"}.bi-chevron-expand::before{content:"\f283"}.bi-chevron-left::before{content:"\f284"}.bi-chevron-right::before{content:"\f285"}.bi-chevron-up::before{content:"\f286"}.bi-circle-fill::before{content:"\f287"}.bi-circle-half::before{content:"\f288"}.bi-circle-square::before{content:"\f289"}.bi-circle::before{content:"\f28a"}.bi-clipboard-check::before{content:"\f28b"}.bi-clipboard-data::before{content:"\f28c"}.bi-clipboard-minus::before{content:"\f28d"}.bi-clipboard-plus::before{content:"\f28e"}.bi-clipboard-x::before{content:"\f28f"}.bi-clipboard::before{content:"\f290"}.bi-clock-fill::before{content:"\f291"}.bi-clock-history::before{content:"\f292"}.bi-clock::before{content:"\f293"}.bi-cloud-arrow-down-fill::before{content:"\f294"}.bi-cloud-arrow-down::before{content:"\f295"}.bi-cloud-arrow-up-fill::before{content:"\f296"}.bi-cloud-arrow-up::before{content:"\f297"}.bi-cloud-check-fill::before{content:"\f298"}.bi-cloud-check::before{content:"\f299"}.bi-cloud-download-fill::before{content:"\f29a"}.bi-cloud-download::before{content:"\f29b"}.bi-cloud-drizzle-fill::before{content:"\f29c"}.bi-cloud-drizzle::before{content:"\f29d"}.bi-cloud-fill::before{content:"\f29e"}.bi-cloud-fog-fill::before{content:"\f29f"}.bi-cloud-fog::before{content:"\f2a0"}.bi-cloud-fog2-fill::before{content:"\f2a1"}.bi-cloud-fog2::before{content:"\f2a2"}.bi-cloud-hail-fill::before{content:"\f2a3"}.bi-cloud-hail::before{content:"\f2a4"}.bi-cloud-haze-fill::before{content:"\f2a6"}.bi-cloud-haze::before{content:"\f2a7"}.bi-cloud-haze2-fill::before{content:"\f2a8"}.bi-cloud-lightning-fill::before{content:"\f2a9"}.bi-cloud-lightning-rain-fill::before{content:"\f2aa"}.bi-cloud-lightning-rain::before{content:"\f2ab"}.bi-cloud-lightning::before{content:"\f2ac"}.bi-cloud-minus-fill::before{content:"\f2ad"}.bi-cloud-minus::before{content:"\f2ae"}.bi-cloud-moon-fill::before{content:"\f2af"}.bi-cloud-moon::before{content:"\f2b0"}.bi-cloud-plus-fill::before{content:"\f2b1"}.bi-cloud-plus::before{content:"\f2b2"}.bi-cloud-rain-fill::before{content:"\f2b3"}.bi-cloud-rain-heavy-fill::before{content:"\f2b4"}.bi-cloud-rain-heavy::before{content:"\f2b5"}.bi-cloud-rain::before{content:"\f2b6"}.bi-cloud-slash-fill::before{content:"\f2b7"}.bi-cloud-slash::before{content:"\f2b8"}.bi-cloud-sleet-fill::before{content:"\f2b9"}.bi-cloud-sleet::before{content:"\f2ba"}.bi-cloud-snow-fill::before{content:"\f2bb"}.bi-cloud-snow::before{content:"\f2bc"}.bi-cloud-sun-fill::before{content:"\f2bd"}.bi-cloud-sun::before{content:"\f2be"}.bi-cloud-upload-fill::before{content:"\f2bf"}.bi-cloud-upload::before{content:"\f2c0"}.bi-cloud::before{content:"\f2c1"}.bi-clouds-fill::before{content:"\f2c2"}.bi-clouds::before{content:"\f2c3"}.bi-cloudy-fill::before{content:"\f2c4"}.bi-cloudy::before{content:"\f2c5"}.bi-code-slash::before{content:"\f2c6"}.bi-code-square::before{content:"\f2c7"}.bi-code::before{content:"\f2c8"}.bi-collection-fill::before{content:"\f2c9"}.bi-collection-play-fill::before{content:"\f2ca"}.bi-collection-play::before{content:"\f2cb"}.bi-collection::before{content:"\f2cc"}.bi-columns-gap::before{content:"\f2cd"}.bi-columns::before{content:"\f2ce"}.bi-command::before{content:"\f2cf"}.bi-compass-fill::before{content:"\f2d0"}.bi-compass::before{content:"\f2d1"}.bi-cone-striped::before{content:"\f2d2"}.bi-cone::before{content:"\f2d3"}.bi-controller::before{content:"\f2d4"}.bi-cpu-fill::before{content:"\f2d5"}.bi-cpu::before{content:"\f2d6"}.bi-credit-card-2-back-fill::before{content:"\f2d7"}.bi-credit-card-2-back::before{content:"\f2d8"}.bi-credit-card-2-front-fill::before{content:"\f2d9"}.bi-credit-card-2-front::before{content:"\f2da"}.bi-credit-card-fill::before{content:"\f2db"}.bi-credit-card::before{content:"\f2dc"}.bi-crop::before{content:"\f2dd"}.bi-cup-fill::before{content:"\f2de"}.bi-cup-straw::before{content:"\f2df"}.bi-cup::before{content:"\f2e0"}.bi-cursor-fill::before{content:"\f2e1"}.bi-cursor-text::before{content:"\f2e2"}.bi-cursor::before{content:"\f2e3"}.bi-dash-circle-dotted::before{content:"\f2e4"}.bi-dash-circle-fill::before{content:"\f2e5"}.bi-dash-circle::before{content:"\f2e6"}.bi-dash-square-dotted::before{content:"\f2e7"}.bi-dash-square-fill::before{content:"\f2e8"}.bi-dash-square::before{content:"\f2e9"}.bi-dash::before{content:"\f2ea"}.bi-diagram-2-fill::before{content:"\f2eb"}.bi-diagram-2::before{content:"\f2ec"}.bi-diagram-3-fill::before{content:"\f2ed"}.bi-diagram-3::before{content:"\f2ee"}.bi-diamond-fill::before{content:"\f2ef"}.bi-diamond-half::before{content:"\f2f0"}.bi-diamond::before{content:"\f2f1"}.bi-dice-1-fill::before{content:"\f2f2"}.bi-dice-1::before{content:"\f2f3"}.bi-dice-2-fill::before{content:"\f2f4"}.bi-dice-2::before{content:"\f2f5"}.bi-dice-3-fill::before{content:"\f2f6"}.bi-dice-3::before{content:"\f2f7"}.bi-dice-4-fill::before{content:"\f2f8"}.bi-dice-4::before{content:"\f2f9"}.bi-dice-5-fill::before{content:"\f2fa"}.bi-dice-5::before{content:"\f2fb"}.bi-dice-6-fill::before{content:"\f2fc"}.bi-dice-6::before{content:"\f2fd"}.bi-disc-fill::before{content:"\f2fe"}.bi-disc::before{content:"\f2ff"}.bi-discord::before{content:"\f300"}.bi-display-fill::before{content:"\f301"}.bi-display::before{content:"\f302"}.bi-distribute-horizontal::before{content:"\f303"}.bi-distribute-vertical::before{content:"\f304"}.bi-door-closed-fill::before{content:"\f305"}.bi-door-closed::before{content:"\f306"}.bi-door-open-fill::before{content:"\f307"}.bi-door-open::before{content:"\f308"}.bi-dot::before{content:"\f309"}.bi-download::before{content:"\f30a"}.bi-droplet-fill::before{content:"\f30b"}.bi-droplet-half::before{content:"\f30c"}.bi-droplet::before{content:"\f30d"}.bi-earbuds::before{content:"\f30e"}.bi-easel-fill::before{content:"\f30f"}.bi-easel::before{content:"\f310"}.bi-egg-fill::before{content:"\f311"}.bi-egg-fried::before{content:"\f312"}.bi-egg::before{content:"\f313"}.bi-eject-fill::before{content:"\f314"}.bi-eject::before{content:"\f315"}.bi-emoji-angry-fill::before{content:"\f316"}.bi-emoji-angry::before{content:"\f317"}.bi-emoji-dizzy-fill::before{content:"\f318"}.bi-emoji-dizzy::before{content:"\f319"}.bi-emoji-expressionless-fill::before{content:"\f31a"}.bi-emoji-expressionless::before{content:"\f31b"}.bi-emoji-frown-fill::before{content:"\f31c"}.bi-emoji-frown::before{content:"\f31d"}.bi-emoji-heart-eyes-fill::before{content:"\f31e"}.bi-emoji-heart-eyes::before{content:"\f31f"}.bi-emoji-laughing-fill::before{content:"\f320"}.bi-emoji-laughing::before{content:"\f321"}.bi-emoji-neutral-fill::before{content:"\f322"}.bi-emoji-neutral::before{content:"\f323"}.bi-emoji-smile-fill::before{content:"\f324"}.bi-emoji-smile-upside-down-fill::before{content:"\f325"}.bi-emoji-smile-upside-down::before{content:"\f326"}.bi-emoji-smile::before{content:"\f327"}.bi-emoji-sunglasses-fill::before{content:"\f328"}.bi-emoji-sunglasses::before{content:"\f329"}.bi-emoji-wink-fill::before{content:"\f32a"}.bi-emoji-wink::before{content:"\f32b"}.bi-envelope-fill::before{content:"\f32c"}.bi-envelope-open-fill::before{content:"\f32d"}.bi-envelope-open::before{content:"\f32e"}.bi-envelope::before{content:"\f32f"}.bi-eraser-fill::before{content:"\f330"}.bi-eraser::before{content:"\f331"}.bi-exclamation-circle-fill::before{content:"\f332"}.bi-exclamation-circle::before{content:"\f333"}.bi-exclamation-diamond-fill::before{content:"\f334"}.bi-exclamation-diamond::before{content:"\f335"}.bi-exclamation-octagon-fill::before{content:"\f336"}.bi-exclamation-octagon::before{content:"\f337"}.bi-exclamation-square-fill::before{content:"\f338"}.bi-exclamation-square::before{content:"\f339"}.bi-exclamation-triangle-fill::before{content:"\f33a"}.bi-exclamation-triangle::before{content:"\f33b"}.bi-exclamation::before{content:"\f33c"}.bi-exclude::before{content:"\f33d"}.bi-eye-fill::before{content:"\f33e"}.bi-eye-slash-fill::before{content:"\f33f"}.bi-eye-slash::before{content:"\f340"}.bi-eye::before{content:"\f341"}.bi-eyedropper::before{content:"\f342"}.bi-eyeglasses::before{content:"\f343"}.bi-facebook::before{content:"\f344"}.bi-file-arrow-down-fill::before{content:"\f345"}.bi-file-arrow-down::before{content:"\f346"}.bi-file-arrow-up-fill::before{content:"\f347"}.bi-file-arrow-up::before{content:"\f348"}.bi-file-bar-graph-fill::before{content:"\f349"}.bi-file-bar-graph::before{content:"\f34a"}.bi-file-binary-fill::before{content:"\f34b"}.bi-file-binary::before{content:"\f34c"}.bi-file-break-fill::before{content:"\f34d"}.bi-file-break::before{content:"\f34e"}.bi-file-check-fill::before{content:"\f34f"}.bi-file-check::before{content:"\f350"}.bi-file-code-fill::before{content:"\f351"}.bi-file-code::before{content:"\f352"}.bi-file-diff-fill::before{content:"\f353"}.bi-file-diff::before{content:"\f354"}.bi-file-earmark-arrow-down-fill::before{content:"\f355"}.bi-file-earmark-arrow-down::before{content:"\f356"}.bi-file-earmark-arrow-up-fill::before{content:"\f357"}.bi-file-earmark-arrow-up::before{content:"\f358"}.bi-file-earmark-bar-graph-fill::before{content:"\f359"}.bi-file-earmark-bar-graph::before{content:"\f35a"}.bi-file-earmark-binary-fill::before{content:"\f35b"}.bi-file-earmark-binary::before{content:"\f35c"}.bi-file-earmark-break-fill::before{content:"\f35d"}.bi-file-earmark-break::before{content:"\f35e"}.bi-file-earmark-check-fill::before{content:"\f35f"}.bi-file-earmark-check::before{content:"\f360"}.bi-file-earmark-code-fill::before{content:"\f361"}.bi-file-earmark-code::before{content:"\f362"}.bi-file-earmark-diff-fill::before{content:"\f363"}.bi-file-earmark-diff::before{content:"\f364"}.bi-file-earmark-easel-fill::before{content:"\f365"}.bi-file-earmark-easel::before{content:"\f366"}.bi-file-earmark-excel-fill::before{content:"\f367"}.bi-file-earmark-excel::before{content:"\f368"}.bi-file-earmark-fill::before{content:"\f369"}.bi-file-earmark-font-fill::before{content:"\f36a"}.bi-file-earmark-font::before{content:"\f36b"}.bi-file-earmark-image-fill::before{content:"\f36c"}.bi-file-earmark-image::before{content:"\f36d"}.bi-file-earmark-lock-fill::before{content:"\f36e"}.bi-file-earmark-lock::before{content:"\f36f"}.bi-file-earmark-lock2-fill::before{content:"\f370"}.bi-file-earmark-lock2::before{content:"\f371"}.bi-file-earmark-medical-fill::before{content:"\f372"}.bi-file-earmark-medical::before{content:"\f373"}.bi-file-earmark-minus-fill::before{content:"\f374"}.bi-file-earmark-minus::before{content:"\f375"}.bi-file-earmark-music-fill::before{content:"\f376"}.bi-file-earmark-music::before{content:"\f377"}.bi-file-earmark-person-fill::before{content:"\f378"}.bi-file-earmark-person::before{content:"\f379"}.bi-file-earmark-play-fill::before{content:"\f37a"}.bi-file-earmark-play::before{content:"\f37b"}.bi-file-earmark-plus-fill::before{content:"\f37c"}.bi-file-earmark-plus::before{content:"\f37d"}.bi-file-earmark-post-fill::before{content:"\f37e"}.bi-file-earmark-post::before{content:"\f37f"}.bi-file-earmark-ppt-fill::before{content:"\f380"}.bi-file-earmark-ppt::before{content:"\f381"}.bi-file-earmark-richtext-fill::before{content:"\f382"}.bi-file-earmark-richtext::before{content:"\f383"}.bi-file-earmark-ruled-fill::before{content:"\f384"}.bi-file-earmark-ruled::before{content:"\f385"}.bi-file-earmark-slides-fill::before{content:"\f386"}.bi-file-earmark-slides::before{content:"\f387"}.bi-file-earmark-spreadsheet-fill::before{content:"\f388"}.bi-file-earmark-spreadsheet::before{content:"\f389"}.bi-file-earmark-text-fill::before{content:"\f38a"}.bi-file-earmark-text::before{content:"\f38b"}.bi-file-earmark-word-fill::before{content:"\f38c"}.bi-file-earmark-word::before{content:"\f38d"}.bi-file-earmark-x-fill::before{content:"\f38e"}.bi-file-earmark-x::before{content:"\f38f"}.bi-file-earmark-zip-fill::before{content:"\f390"}.bi-file-earmark-zip::before{content:"\f391"}.bi-file-earmark::before{content:"\f392"}.bi-file-easel-fill::before{content:"\f393"}.bi-file-easel::before{content:"\f394"}.bi-file-excel-fill::before{content:"\f395"}.bi-file-excel::before{content:"\f396"}.bi-file-fill::before{content:"\f397"}.bi-file-font-fill::before{content:"\f398"}.bi-file-font::before{content:"\f399"}.bi-file-image-fill::before{content:"\f39a"}.bi-file-image::before{content:"\f39b"}.bi-file-lock-fill::before{content:"\f39c"}.bi-file-lock::before{content:"\f39d"}.bi-file-lock2-fill::before{content:"\f39e"}.bi-file-lock2::before{content:"\f39f"}.bi-file-medical-fill::before{content:"\f3a0"}.bi-file-medical::before{content:"\f3a1"}.bi-file-minus-fill::before{content:"\f3a2"}.bi-file-minus::before{content:"\f3a3"}.bi-file-music-fill::before{content:"\f3a4"}.bi-file-music::before{content:"\f3a5"}.bi-file-person-fill::before{content:"\f3a6"}.bi-file-person::before{content:"\f3a7"}.bi-file-play-fill::before{content:"\f3a8"}.bi-file-play::before{content:"\f3a9"}.bi-file-plus-fill::before{content:"\f3aa"}.bi-file-plus::before{content:"\f3ab"}.bi-file-post-fill::before{content:"\f3ac"}.bi-file-post::before{content:"\f3ad"}.bi-file-ppt-fill::before{content:"\f3ae"}.bi-file-ppt::before{content:"\f3af"}.bi-file-richtext-fill::before{content:"\f3b0"}.bi-file-richtext::before{content:"\f3b1"}.bi-file-ruled-fill::before{content:"\f3b2"}.bi-file-ruled::before{content:"\f3b3"}.bi-file-slides-fill::before{content:"\f3b4"}.bi-file-slides::before{content:"\f3b5"}.bi-file-spreadsheet-fill::before{content:"\f3b6"}.bi-file-spreadsheet::before{content:"\f3b7"}.bi-file-text-fill::before{content:"\f3b8"}.bi-file-text::before{content:"\f3b9"}.bi-file-word-fill::before{content:"\f3ba"}.bi-file-word::before{content:"\f3bb"}.bi-file-x-fill::before{content:"\f3bc"}.bi-file-x::before{content:"\f3bd"}.bi-file-zip-fill::before{content:"\f3be"}.bi-file-zip::before{content:"\f3bf"}.bi-file::before{content:"\f3c0"}.bi-files-alt::before{content:"\f3c1"}.bi-files::before{content:"\f3c2"}.bi-film::before{content:"\f3c3"}.bi-filter-circle-fill::before{content:"\f3c4"}.bi-filter-circle::before{content:"\f3c5"}.bi-filter-left::before{content:"\f3c6"}.bi-filter-right::before{content:"\f3c7"}.bi-filter-square-fill::before{content:"\f3c8"}.bi-filter-square::before{content:"\f3c9"}.bi-filter::before{content:"\f3ca"}.bi-flag-fill::before{content:"\f3cb"}.bi-flag::before{content:"\f3cc"}.bi-flower1::before{content:"\f3cd"}.bi-flower2::before{content:"\f3ce"}.bi-flower3::before{content:"\f3cf"}.bi-folder-check::before{content:"\f3d0"}.bi-folder-fill::before{content:"\f3d1"}.bi-folder-minus::before{content:"\f3d2"}.bi-folder-plus::before{content:"\f3d3"}.bi-folder-symlink-fill::before{content:"\f3d4"}.bi-folder-symlink::before{content:"\f3d5"}.bi-folder-x::before{content:"\f3d6"}.bi-folder::before{content:"\f3d7"}.bi-folder2-open::before{content:"\f3d8"}.bi-folder2::before{content:"\f3d9"}.bi-fonts::before{content:"\f3da"}.bi-forward-fill::before{content:"\f3db"}.bi-forward::before{content:"\f3dc"}.bi-front::before{content:"\f3dd"}.bi-fullscreen-exit::before{content:"\f3de"}.bi-fullscreen::before{content:"\f3df"}.bi-funnel-fill::before{content:"\f3e0"}.bi-funnel::before{content:"\f3e1"}.bi-gear-fill::before{content:"\f3e2"}.bi-gear-wide-connected::before{content:"\f3e3"}.bi-gear-wide::before{content:"\f3e4"}.bi-gear::before{content:"\f3e5"}.bi-gem::before{content:"\f3e6"}.bi-geo-alt-fill::before{content:"\f3e7"}.bi-geo-alt::before{content:"\f3e8"}.bi-geo-fill::before{content:"\f3e9"}.bi-geo::before{content:"\f3ea"}.bi-gift-fill::before{content:"\f3eb"}.bi-gift::before{content:"\f3ec"}.bi-github::before{content:"\f3ed"}.bi-globe::before{content:"\f3ee"}.bi-globe2::before{content:"\f3ef"}.bi-google::before{content:"\f3f0"}.bi-graph-down::before{content:"\f3f1"}.bi-graph-up::before{content:"\f3f2"}.bi-grid-1x2-fill::before{content:"\f3f3"}.bi-grid-1x2::before{content:"\f3f4"}.bi-grid-3x2-gap-fill::before{content:"\f3f5"}.bi-grid-3x2-gap::before{content:"\f3f6"}.bi-grid-3x2::before{content:"\f3f7"}.bi-grid-3x3-gap-fill::before{content:"\f3f8"}.bi-grid-3x3-gap::before{content:"\f3f9"}.bi-grid-3x3::before{content:"\f3fa"}.bi-grid-fill::before{content:"\f3fb"}.bi-grid::before{content:"\f3fc"}.bi-grip-horizontal::before{content:"\f3fd"}.bi-grip-vertical::before{content:"\f3fe"}.bi-hammer::before{content:"\f3ff"}.bi-hand-index-fill::before{content:"\f400"}.bi-hand-index-thumb-fill::before{content:"\f401"}.bi-hand-index-thumb::before{content:"\f402"}.bi-hand-index::before{content:"\f403"}.bi-hand-thumbs-down-fill::before{content:"\f404"}.bi-hand-thumbs-down::before{content:"\f405"}.bi-hand-thumbs-up-fill::before{content:"\f406"}.bi-hand-thumbs-up::before{content:"\f407"}.bi-handbag-fill::before{content:"\f408"}.bi-handbag::before{content:"\f409"}.bi-hash::before{content:"\f40a"}.bi-hdd-fill::before{content:"\f40b"}.bi-hdd-network-fill::before{content:"\f40c"}.bi-hdd-network::before{content:"\f40d"}.bi-hdd-rack-fill::before{content:"\f40e"}.bi-hdd-rack::before{content:"\f40f"}.bi-hdd-stack-fill::before{content:"\f410"}.bi-hdd-stack::before{content:"\f411"}.bi-hdd::before{content:"\f412"}.bi-headphones::before{content:"\f413"}.bi-headset::before{content:"\f414"}.bi-heart-fill::before{content:"\f415"}.bi-heart-half::before{content:"\f416"}.bi-heart::before{content:"\f417"}.bi-heptagon-fill::before{content:"\f418"}.bi-heptagon-half::before{content:"\f419"}.bi-heptagon::before{content:"\f41a"}.bi-hexagon-fill::before{content:"\f41b"}.bi-hexagon-half::before{content:"\f41c"}.bi-hexagon::before{content:"\f41d"}.bi-hourglass-bottom::before{content:"\f41e"}.bi-hourglass-split::before{content:"\f41f"}.bi-hourglass-top::before{content:"\f420"}.bi-hourglass::before{content:"\f421"}.bi-house-door-fill::before{content:"\f422"}.bi-house-door::before{content:"\f423"}.bi-house-fill::before{content:"\f424"}.bi-house::before{content:"\f425"}.bi-hr::before{content:"\f426"}.bi-hurricane::before{content:"\f427"}.bi-image-alt::before{content:"\f428"}.bi-image-fill::before{content:"\f429"}.bi-image::before{content:"\f42a"}.bi-images::before{content:"\f42b"}.bi-inbox-fill::before{content:"\f42c"}.bi-inbox::before{content:"\f42d"}.bi-inboxes-fill::before{content:"\f42e"}.bi-inboxes::before{content:"\f42f"}.bi-info-circle-fill::before{content:"\f430"}.bi-info-circle::before{content:"\f431"}.bi-info-square-fill::before{content:"\f432"}.bi-info-square::before{content:"\f433"}.bi-info::before{content:"\f434"}.bi-input-cursor-text::before{content:"\f435"}.bi-input-cursor::before{content:"\f436"}.bi-instagram::before{content:"\f437"}.bi-intersect::before{content:"\f438"}.bi-journal-album::before{content:"\f439"}.bi-journal-arrow-down::before{content:"\f43a"}.bi-journal-arrow-up::before{content:"\f43b"}.bi-journal-bookmark-fill::before{content:"\f43c"}.bi-journal-bookmark::before{content:"\f43d"}.bi-journal-check::before{content:"\f43e"}.bi-journal-code::before{content:"\f43f"}.bi-journal-medical::before{content:"\f440"}.bi-journal-minus::before{content:"\f441"}.bi-journal-plus::before{content:"\f442"}.bi-journal-richtext::before{content:"\f443"}.bi-journal-text::before{content:"\f444"}.bi-journal-x::before{content:"\f445"}.bi-journal::before{content:"\f446"}.bi-journals::before{content:"\f447"}.bi-joystick::before{content:"\f448"}.bi-justify-left::before{content:"\f449"}.bi-justify-right::before{content:"\f44a"}.bi-justify::before{content:"\f44b"}.bi-kanban-fill::before{content:"\f44c"}.bi-kanban::before{content:"\f44d"}.bi-key-fill::before{content:"\f44e"}.bi-key::before{content:"\f44f"}.bi-keyboard-fill::before{content:"\f450"}.bi-keyboard::before{content:"\f451"}.bi-ladder::before{content:"\f452"}.bi-lamp-fill::before{content:"\f453"}.bi-lamp::before{content:"\f454"}.bi-laptop-fill::before{content:"\f455"}.bi-laptop::before{content:"\f456"}.bi-layer-backward::before{content:"\f457"}.bi-layer-forward::before{content:"\f458"}.bi-layers-fill::before{content:"\f459"}.bi-layers-half::before{content:"\f45a"}.bi-layers::before{content:"\f45b"}.bi-layout-sidebar-inset-reverse::before{content:"\f45c"}.bi-layout-sidebar-inset::before{content:"\f45d"}.bi-layout-sidebar-reverse::before{content:"\f45e"}.bi-layout-sidebar::before{content:"\f45f"}.bi-layout-split::before{content:"\f460"}.bi-layout-text-sidebar-reverse::before{content:"\f461"}.bi-layout-text-sidebar::before{content:"\f462"}.bi-layout-text-window-reverse::before{content:"\f463"}.bi-layout-text-window::before{content:"\f464"}.bi-layout-three-columns::before{content:"\f465"}.bi-layout-wtf::before{content:"\f466"}.bi-life-preserver::before{content:"\f467"}.bi-lightbulb-fill::before{content:"\f468"}.bi-lightbulb-off-fill::before{content:"\f469"}.bi-lightbulb-off::before{content:"\f46a"}.bi-lightbulb::before{content:"\f46b"}.bi-lightning-charge-fill::before{content:"\f46c"}.bi-lightning-charge::before{content:"\f46d"}.bi-lightning-fill::before{content:"\f46e"}.bi-lightning::before{content:"\f46f"}.bi-link-45deg::before{content:"\f470"}.bi-link::before{content:"\f471"}.bi-linkedin::before{content:"\f472"}.bi-list-check::before{content:"\f473"}.bi-list-nested::before{content:"\f474"}.bi-list-ol::before{content:"\f475"}.bi-list-stars::before{content:"\f476"}.bi-list-task::before{content:"\f477"}.bi-list-ul::before{content:"\f478"}.bi-list::before{content:"\f479"}.bi-lock-fill::before{content:"\f47a"}.bi-lock::before{content:"\f47b"}.bi-mailbox::before{content:"\f47c"}.bi-mailbox2::before{content:"\f47d"}.bi-map-fill::before{content:"\f47e"}.bi-map::before{content:"\f47f"}.bi-markdown-fill::before{content:"\f480"}.bi-markdown::before{content:"\f481"}.bi-mask::before{content:"\f482"}.bi-megaphone-fill::before{content:"\f483"}.bi-megaphone::before{content:"\f484"}.bi-menu-app-fill::before{content:"\f485"}.bi-menu-app::before{content:"\f486"}.bi-menu-button-fill::before{content:"\f487"}.bi-menu-button-wide-fill::before{content:"\f488"}.bi-menu-button-wide::before{content:"\f489"}.bi-menu-button::before{content:"\f48a"}.bi-menu-down::before{content:"\f48b"}.bi-menu-up::before{content:"\f48c"}.bi-mic-fill::before{content:"\f48d"}.bi-mic-mute-fill::before{content:"\f48e"}.bi-mic-mute::before{content:"\f48f"}.bi-mic::before{content:"\f490"}.bi-minecart-loaded::before{content:"\f491"}.bi-minecart::before{content:"\f492"}.bi-moisture::before{content:"\f493"}.bi-moon-fill::before{content:"\f494"}.bi-moon-stars-fill::before{content:"\f495"}.bi-moon-stars::before{content:"\f496"}.bi-moon::before{content:"\f497"}.bi-mouse-fill::before{content:"\f498"}.bi-mouse::before{content:"\f499"}.bi-mouse2-fill::before{content:"\f49a"}.bi-mouse2::before{content:"\f49b"}.bi-mouse3-fill::before{content:"\f49c"}.bi-mouse3::before{content:"\f49d"}.bi-music-note-beamed::before{content:"\f49e"}.bi-music-note-list::before{content:"\f49f"}.bi-music-note::before{content:"\f4a0"}.bi-music-player-fill::before{content:"\f4a1"}.bi-music-player::before{content:"\f4a2"}.bi-newspaper::before{content:"\f4a3"}.bi-node-minus-fill::before{content:"\f4a4"}.bi-node-minus::before{content:"\f4a5"}.bi-node-plus-fill::before{content:"\f4a6"}.bi-node-plus::before{content:"\f4a7"}.bi-nut-fill::before{content:"\f4a8"}.bi-nut::before{content:"\f4a9"}.bi-octagon-fill::before{content:"\f4aa"}.bi-octagon-half::before{content:"\f4ab"}.bi-octagon::before{content:"\f4ac"}.bi-option::before{content:"\f4ad"}.bi-outlet::before{content:"\f4ae"}.bi-paint-bucket::before{content:"\f4af"}.bi-palette-fill::before{content:"\f4b0"}.bi-palette::before{content:"\f4b1"}.bi-palette2::before{content:"\f4b2"}.bi-paperclip::before{content:"\f4b3"}.bi-paragraph::before{content:"\f4b4"}.bi-patch-check-fill::before{content:"\f4b5"}.bi-patch-check::before{content:"\f4b6"}.bi-patch-exclamation-fill::before{content:"\f4b7"}.bi-patch-exclamation::before{content:"\f4b8"}.bi-patch-minus-fill::before{content:"\f4b9"}.bi-patch-minus::before{content:"\f4ba"}.bi-patch-plus-fill::before{content:"\f4bb"}.bi-patch-plus::before{content:"\f4bc"}.bi-patch-question-fill::before{content:"\f4bd"}.bi-patch-question::before{content:"\f4be"}.bi-pause-btn-fill::before{content:"\f4bf"}.bi-pause-btn::before{content:"\f4c0"}.bi-pause-circle-fill::before{content:"\f4c1"}.bi-pause-circle::before{content:"\f4c2"}.bi-pause-fill::before{content:"\f4c3"}.bi-pause::before{content:"\f4c4"}.bi-peace-fill::before{content:"\f4c5"}.bi-peace::before{content:"\f4c6"}.bi-pen-fill::before{content:"\f4c7"}.bi-pen::before{content:"\f4c8"}.bi-pencil-fill::before{content:"\f4c9"}.bi-pencil-square::before{content:"\f4ca"}.bi-pencil::before{content:"\f4cb"}.bi-pentagon-fill::before{content:"\f4cc"}.bi-pentagon-half::before{content:"\f4cd"}.bi-pentagon::before{content:"\f4ce"}.bi-people-fill::before{content:"\f4cf"}.bi-people::before{content:"\f4d0"}.bi-percent::before{content:"\f4d1"}.bi-person-badge-fill::before{content:"\f4d2"}.bi-person-badge::before{content:"\f4d3"}.bi-person-bounding-box::before{content:"\f4d4"}.bi-person-check-fill::before{content:"\f4d5"}.bi-person-check::before{content:"\f4d6"}.bi-person-circle::before{content:"\f4d7"}.bi-person-dash-fill::before{content:"\f4d8"}.bi-person-dash::before{content:"\f4d9"}.bi-person-fill::before{content:"\f4da"}.bi-person-lines-fill::before{content:"\f4db"}.bi-person-plus-fill::before{content:"\f4dc"}.bi-person-plus::before{content:"\f4dd"}.bi-person-square::before{content:"\f4de"}.bi-person-x-fill::before{content:"\f4df"}.bi-person-x::before{content:"\f4e0"}.bi-person::before{content:"\f4e1"}.bi-phone-fill::before{content:"\f4e2"}.bi-phone-landscape-fill::before{content:"\f4e3"}.bi-phone-landscape::before{content:"\f4e4"}.bi-phone-vibrate-fill::before{content:"\f4e5"}.bi-phone-vibrate::before{content:"\f4e6"}.bi-phone::before{content:"\f4e7"}.bi-pie-chart-fill::before{content:"\f4e8"}.bi-pie-chart::before{content:"\f4e9"}.bi-pin-angle-fill::before{content:"\f4ea"}.bi-pin-angle::before{content:"\f4eb"}.bi-pin-fill::before{content:"\f4ec"}.bi-pin::before{content:"\f4ed"}.bi-pip-fill::before{content:"\f4ee"}.bi-pip::before{content:"\f4ef"}.bi-play-btn-fill::before{content:"\f4f0"}.bi-play-btn::before{content:"\f4f1"}.bi-play-circle-fill::before{content:"\f4f2"}.bi-play-circle::before{content:"\f4f3"}.bi-play-fill::before{content:"\f4f4"}.bi-play::before{content:"\f4f5"}.bi-plug-fill::before{content:"\f4f6"}.bi-plug::before{content:"\f4f7"}.bi-plus-circle-dotted::before{content:"\f4f8"}.bi-plus-circle-fill::before{content:"\f4f9"}.bi-plus-circle::before{content:"\f4fa"}.bi-plus-square-dotted::before{content:"\f4fb"}.bi-plus-square-fill::before{content:"\f4fc"}.bi-plus-square::before{content:"\f4fd"}.bi-plus::before{content:"\f4fe"}.bi-power::before{content:"\f4ff"}.bi-printer-fill::before{content:"\f500"}.bi-printer::before{content:"\f501"}.bi-puzzle-fill::before{content:"\f502"}.bi-puzzle::before{content:"\f503"}.bi-question-circle-fill::before{content:"\f504"}.bi-question-circle::before{content:"\f505"}.bi-question-diamond-fill::before{content:"\f506"}.bi-question-diamond::before{content:"\f507"}.bi-question-octagon-fill::before{content:"\f508"}.bi-question-octagon::before{content:"\f509"}.bi-question-square-fill::before{content:"\f50a"}.bi-question-square::before{content:"\f50b"}.bi-question::before{content:"\f50c"}.bi-rainbow::before{content:"\f50d"}.bi-receipt-cutoff::before{content:"\f50e"}.bi-receipt::before{content:"\f50f"}.bi-reception-0::before{content:"\f510"}.bi-reception-1::before{content:"\f511"}.bi-reception-2::before{content:"\f512"}.bi-reception-3::before{content:"\f513"}.bi-reception-4::before{content:"\f514"}.bi-record-btn-fill::before{content:"\f515"}.bi-record-btn::before{content:"\f516"}.bi-record-circle-fill::before{content:"\f517"}.bi-record-circle::before{content:"\f518"}.bi-record-fill::before{content:"\f519"}.bi-record::before{content:"\f51a"}.bi-record2-fill::before{content:"\f51b"}.bi-record2::before{content:"\f51c"}.bi-reply-all-fill::before{content:"\f51d"}.bi-reply-all::before{content:"\f51e"}.bi-reply-fill::before{content:"\f51f"}.bi-reply::before{content:"\f520"}.bi-rss-fill::before{content:"\f521"}.bi-rss::before{content:"\f522"}.bi-rulers::before{content:"\f523"}.bi-save-fill::before{content:"\f524"}.bi-save::before{content:"\f525"}.bi-save2-fill::before{content:"\f526"}.bi-save2::before{content:"\f527"}.bi-scissors::before{content:"\f528"}.bi-screwdriver::before{content:"\f529"}.bi-search::before{content:"\f52a"}.bi-segmented-nav::before{content:"\f52b"}.bi-server::before{content:"\f52c"}.bi-share-fill::before{content:"\f52d"}.bi-share::before{content:"\f52e"}.bi-shield-check::before{content:"\f52f"}.bi-shield-exclamation::before{content:"\f530"}.bi-shield-fill-check::before{content:"\f531"}.bi-shield-fill-exclamation::before{content:"\f532"}.bi-shield-fill-minus::before{content:"\f533"}.bi-shield-fill-plus::before{content:"\f534"}.bi-shield-fill-x::before{content:"\f535"}.bi-shield-fill::before{content:"\f536"}.bi-shield-lock-fill::before{content:"\f537"}.bi-shield-lock::before{content:"\f538"}.bi-shield-minus::before{content:"\f539"}.bi-shield-plus::before{content:"\f53a"}.bi-shield-shaded::before{content:"\f53b"}.bi-shield-slash-fill::before{content:"\f53c"}.bi-shield-slash::before{content:"\f53d"}.bi-shield-x::before{content:"\f53e"}.bi-shield::before{content:"\f53f"}.bi-shift-fill::before{content:"\f540"}.bi-shift::before{content:"\f541"}.bi-shop-window::before{content:"\f542"}.bi-shop::before{content:"\f543"}.bi-shuffle::before{content:"\f544"}.bi-signpost-2-fill::before{content:"\f545"}.bi-signpost-2::before{content:"\f546"}.bi-signpost-fill::before{content:"\f547"}.bi-signpost-split-fill::before{content:"\f548"}.bi-signpost-split::before{content:"\f549"}.bi-signpost::before{content:"\f54a"}.bi-sim-fill::before{content:"\f54b"}.bi-sim::before{content:"\f54c"}.bi-skip-backward-btn-fill::before{content:"\f54d"}.bi-skip-backward-btn::before{content:"\f54e"}.bi-skip-backward-circle-fill::before{content:"\f54f"}.bi-skip-backward-circle::before{content:"\f550"}.bi-skip-backward-fill::before{content:"\f551"}.bi-skip-backward::before{content:"\f552"}.bi-skip-end-btn-fill::before{content:"\f553"}.bi-skip-end-btn::before{content:"\f554"}.bi-skip-end-circle-fill::before{content:"\f555"}.bi-skip-end-circle::before{content:"\f556"}.bi-skip-end-fill::before{content:"\f557"}.bi-skip-end::before{content:"\f558"}.bi-skip-forward-btn-fill::before{content:"\f559"}.bi-skip-forward-btn::before{content:"\f55a"}.bi-skip-forward-circle-fill::before{content:"\f55b"}.bi-skip-forward-circle::before{content:"\f55c"}.bi-skip-forward-fill::before{content:"\f55d"}.bi-skip-forward::before{content:"\f55e"}.bi-skip-start-btn-fill::before{content:"\f55f"}.bi-skip-start-btn::before{content:"\f560"}.bi-skip-start-circle-fill::before{content:"\f561"}.bi-skip-start-circle::before{content:"\f562"}.bi-skip-start-fill::before{content:"\f563"}.bi-skip-start::before{content:"\f564"}.bi-slack::before{content:"\f565"}.bi-slash-circle-fill::before{content:"\f566"}.bi-slash-circle::before{content:"\f567"}.bi-slash-square-fill::before{content:"\f568"}.bi-slash-square::before{content:"\f569"}.bi-slash::before{content:"\f56a"}.bi-sliders::before{content:"\f56b"}.bi-smartwatch::before{content:"\f56c"}.bi-snow::before{content:"\f56d"}.bi-snow2::before{content:"\f56e"}.bi-snow3::before{content:"\f56f"}.bi-sort-alpha-down-alt::before{content:"\f570"}.bi-sort-alpha-down::before{content:"\f571"}.bi-sort-alpha-up-alt::before{content:"\f572"}.bi-sort-alpha-up::before{content:"\f573"}.bi-sort-down-alt::before{content:"\f574"}.bi-sort-down::before{content:"\f575"}.bi-sort-numeric-down-alt::before{content:"\f576"}.bi-sort-numeric-down::before{content:"\f577"}.bi-sort-numeric-up-alt::before{content:"\f578"}.bi-sort-numeric-up::before{content:"\f579"}.bi-sort-up-alt::before{content:"\f57a"}.bi-sort-up::before{content:"\f57b"}.bi-soundwave::before{content:"\f57c"}.bi-speaker-fill::before{content:"\f57d"}.bi-speaker::before{content:"\f57e"}.bi-speedometer::before{content:"\f57f"}.bi-speedometer2::before{content:"\f580"}.bi-spellcheck::before{content:"\f581"}.bi-square-fill::before{content:"\f582"}.bi-square-half::before{content:"\f583"}.bi-square::before{content:"\f584"}.bi-stack::before{content:"\f585"}.bi-star-fill::before{content:"\f586"}.bi-star-half::before{content:"\f587"}.bi-star::before{content:"\f588"}.bi-stars::before{content:"\f589"}.bi-stickies-fill::before{content:"\f58a"}.bi-stickies::before{content:"\f58b"}.bi-sticky-fill::before{content:"\f58c"}.bi-sticky::before{content:"\f58d"}.bi-stop-btn-fill::before{content:"\f58e"}.bi-stop-btn::before{content:"\f58f"}.bi-stop-circle-fill::before{content:"\f590"}.bi-stop-circle::before{content:"\f591"}.bi-stop-fill::before{content:"\f592"}.bi-stop::before{content:"\f593"}.bi-stoplights-fill::before{content:"\f594"}.bi-stoplights::before{content:"\f595"}.bi-stopwatch-fill::before{content:"\f596"}.bi-stopwatch::before{content:"\f597"}.bi-subtract::before{content:"\f598"}.bi-suit-club-fill::before{content:"\f599"}.bi-suit-club::before{content:"\f59a"}.bi-suit-diamond-fill::before{content:"\f59b"}.bi-suit-diamond::before{content:"\f59c"}.bi-suit-heart-fill::before{content:"\f59d"}.bi-suit-heart::before{content:"\f59e"}.bi-suit-spade-fill::before{content:"\f59f"}.bi-suit-spade::before{content:"\f5a0"}.bi-sun-fill::before{content:"\f5a1"}.bi-sun::before{content:"\f5a2"}.bi-sunglasses::before{content:"\f5a3"}.bi-sunrise-fill::before{content:"\f5a4"}.bi-sunrise::before{content:"\f5a5"}.bi-sunset-fill::before{content:"\f5a6"}.bi-sunset::before{content:"\f5a7"}.bi-symmetry-horizontal::before{content:"\f5a8"}.bi-symmetry-vertical::before{content:"\f5a9"}.bi-table::before{content:"\f5aa"}.bi-tablet-fill::before{content:"\f5ab"}.bi-tablet-landscape-fill::before{content:"\f5ac"}.bi-tablet-landscape::before{content:"\f5ad"}.bi-tablet::before{content:"\f5ae"}.bi-tag-fill::before{content:"\f5af"}.bi-tag::before{content:"\f5b0"}.bi-tags-fill::before{content:"\f5b1"}.bi-tags::before{content:"\f5b2"}.bi-telegram::before{content:"\f5b3"}.bi-telephone-fill::before{content:"\f5b4"}.bi-telephone-forward-fill::before{content:"\f5b5"}.bi-telephone-forward::before{content:"\f5b6"}.bi-telephone-inbound-fill::before{content:"\f5b7"}.bi-telephone-inbound::before{content:"\f5b8"}.bi-telephone-minus-fill::before{content:"\f5b9"}.bi-telephone-minus::before{content:"\f5ba"}.bi-telephone-outbound-fill::before{content:"\f5bb"}.bi-telephone-outbound::before{content:"\f5bc"}.bi-telephone-plus-fill::before{content:"\f5bd"}.bi-telephone-plus::before{content:"\f5be"}.bi-telephone-x-fill::before{content:"\f5bf"}.bi-telephone-x::before{content:"\f5c0"}.bi-telephone::before{content:"\f5c1"}.bi-terminal-fill::before{content:"\f5c2"}.bi-terminal::before{content:"\f5c3"}.bi-text-center::before{content:"\f5c4"}.bi-text-indent-left::before{content:"\f5c5"}.bi-text-indent-right::before{content:"\f5c6"}.bi-text-left::before{content:"\f5c7"}.bi-text-paragraph::before{content:"\f5c8"}.bi-text-right::before{content:"\f5c9"}.bi-textarea-resize::before{content:"\f5ca"}.bi-textarea-t::before{content:"\f5cb"}.bi-textarea::before{content:"\f5cc"}.bi-thermometer-half::before{content:"\f5cd"}.bi-thermometer-high::before{content:"\f5ce"}.bi-thermometer-low::before{content:"\f5cf"}.bi-thermometer-snow::before{content:"\f5d0"}.bi-thermometer-sun::before{content:"\f5d1"}.bi-thermometer::before{content:"\f5d2"}.bi-three-dots-vertical::before{content:"\f5d3"}.bi-three-dots::before{content:"\f5d4"}.bi-toggle-off::before{content:"\f5d5"}.bi-toggle-on::before{content:"\f5d6"}.bi-toggle2-off::before{content:"\f5d7"}.bi-toggle2-on::before{content:"\f5d8"}.bi-toggles::before{content:"\f5d9"}.bi-toggles2::before{content:"\f5da"}.bi-tools::before{content:"\f5db"}.bi-tornado::before{content:"\f5dc"}.bi-trash-fill::before{content:"\f5dd"}.bi-trash::before{content:"\f5de"}.bi-trash2-fill::before{content:"\f5df"}.bi-trash2::before{content:"\f5e0"}.bi-tree-fill::before{content:"\f5e1"}.bi-tree::before{content:"\f5e2"}.bi-triangle-fill::before{content:"\f5e3"}.bi-triangle-half::before{content:"\f5e4"}.bi-triangle::before{content:"\f5e5"}.bi-trophy-fill::before{content:"\f5e6"}.bi-trophy::before{content:"\f5e7"}.bi-tropical-storm::before{content:"\f5e8"}.bi-truck-flatbed::before{content:"\f5e9"}.bi-truck::before{content:"\f5ea"}.bi-tsunami::before{content:"\f5eb"}.bi-tv-fill::before{content:"\f5ec"}.bi-tv::before{content:"\f5ed"}.bi-twitch::before{content:"\f5ee"}.bi-twitter::before{content:"\f5ef"}.bi-type-bold::before{content:"\f5f0"}.bi-type-h1::before{content:"\f5f1"}.bi-type-h2::before{content:"\f5f2"}.bi-type-h3::before{content:"\f5f3"}.bi-type-italic::before{content:"\f5f4"}.bi-type-strikethrough::before{content:"\f5f5"}.bi-type-underline::before{content:"\f5f6"}.bi-type::before{content:"\f5f7"}.bi-ui-checks-grid::before{content:"\f5f8"}.bi-ui-checks::before{content:"\f5f9"}.bi-ui-radios-grid::before{content:"\f5fa"}.bi-ui-radios::before{content:"\f5fb"}.bi-umbrella-fill::before{content:"\f5fc"}.bi-umbrella::before{content:"\f5fd"}.bi-union::before{content:"\f5fe"}.bi-unlock-fill::before{content:"\f5ff"}.bi-unlock::before{content:"\f600"}.bi-upc-scan::before{content:"\f601"}.bi-upc::before{content:"\f602"}.bi-upload::before{content:"\f603"}.bi-vector-pen::before{content:"\f604"}.bi-view-list::before{content:"\f605"}.bi-view-stacked::before{content:"\f606"}.bi-vinyl-fill::before{content:"\f607"}.bi-vinyl::before{content:"\f608"}.bi-voicemail::before{content:"\f609"}.bi-volume-down-fill::before{content:"\f60a"}.bi-volume-down::before{content:"\f60b"}.bi-volume-mute-fill::before{content:"\f60c"}.bi-volume-mute::before{content:"\f60d"}.bi-volume-off-fill::before{content:"\f60e"}.bi-volume-off::before{content:"\f60f"}.bi-volume-up-fill::before{content:"\f610"}.bi-volume-up::before{content:"\f611"}.bi-vr::before{content:"\f612"}.bi-wallet-fill::before{content:"\f613"}.bi-wallet::before{content:"\f614"}.bi-wallet2::before{content:"\f615"}.bi-watch::before{content:"\f616"}.bi-water::before{content:"\f617"}.bi-whatsapp::before{content:"\f618"}.bi-wifi-1::before{content:"\f619"}.bi-wifi-2::before{content:"\f61a"}.bi-wifi-off::before{content:"\f61b"}.bi-wifi::before{content:"\f61c"}.bi-wind::before{content:"\f61d"}.bi-window-dock::before{content:"\f61e"}.bi-window-sidebar::before{content:"\f61f"}.bi-window::before{content:"\f620"}.bi-wrench::before{content:"\f621"}.bi-x-circle-fill::before{content:"\f622"}.bi-x-circle::before{content:"\f623"}.bi-x-diamond-fill::before{content:"\f624"}.bi-x-diamond::before{content:"\f625"}.bi-x-octagon-fill::before{content:"\f626"}.bi-x-octagon::before{content:"\f627"}.bi-x-square-fill::before{content:"\f628"}.bi-x-square::before{content:"\f629"}.bi-x::before{content:"\f62a"}.bi-youtube::before{content:"\f62b"}.bi-zoom-in::before{content:"\f62c"}.bi-zoom-out::before{content:"\f62d"}.bi-bank::before{content:"\f62e"}.bi-bank2::before{content:"\f62f"}.bi-bell-slash-fill::before{content:"\f630"}.bi-bell-slash::before{content:"\f631"}.bi-cash-coin::before{content:"\f632"}.bi-check-lg::before{content:"\f633"}.bi-coin::before{content:"\f634"}.bi-currency-bitcoin::before{content:"\f635"}.bi-currency-dollar::before{content:"\f636"}.bi-currency-euro::before{content:"\f637"}.bi-currency-exchange::before{content:"\f638"}.bi-currency-pound::before{content:"\f639"}.bi-currency-yen::before{content:"\f63a"}.bi-dash-lg::before{content:"\f63b"}.bi-exclamation-lg::before{content:"\f63c"}.bi-file-earmark-pdf-fill::before{content:"\f63d"}.bi-file-earmark-pdf::before{content:"\f63e"}.bi-file-pdf-fill::before{content:"\f63f"}.bi-file-pdf::before{content:"\f640"}.bi-gender-ambiguous::before{content:"\f641"}.bi-gender-female::before{content:"\f642"}.bi-gender-male::before{content:"\f643"}.bi-gender-trans::before{content:"\f644"}.bi-headset-vr::before{content:"\f645"}.bi-info-lg::before{content:"\f646"}.bi-mastodon::before{content:"\f647"}.bi-messenger::before{content:"\f648"}.bi-piggy-bank-fill::before{content:"\f649"}.bi-piggy-bank::before{content:"\f64a"}.bi-pin-map-fill::before{content:"\f64b"}.bi-pin-map::before{content:"\f64c"}.bi-plus-lg::before{content:"\f64d"}.bi-question-lg::before{content:"\f64e"}.bi-recycle::before{content:"\f64f"}.bi-reddit::before{content:"\f650"}.bi-safe-fill::before{content:"\f651"}.bi-safe2-fill::before{content:"\f652"}.bi-safe2::before{content:"\f653"}.bi-sd-card-fill::before{content:"\f654"}.bi-sd-card::before{content:"\f655"}.bi-skype::before{content:"\f656"}.bi-slash-lg::before{content:"\f657"}.bi-translate::before{content:"\f658"}.bi-x-lg::before{content:"\f659"}.bi-safe::before{content:"\f65a"}.bi-apple::before{content:"\f65b"}.bi-microsoft::before{content:"\f65d"}.bi-windows::before{content:"\f65e"}.bi-behance::before{content:"\f65c"}.bi-dribbble::before{content:"\f65f"}.bi-line::before{content:"\f660"}.bi-medium::before{content:"\f661"}.bi-paypal::before{content:"\f662"}.bi-pinterest::before{content:"\f663"}.bi-signal::before{content:"\f664"}.bi-snapchat::before{content:"\f665"}.bi-spotify::before{content:"\f666"}.bi-stack-overflow::before{content:"\f667"}.bi-strava::before{content:"\f668"}.bi-wordpress::before{content:"\f669"}.bi-vimeo::before{content:"\f66a"}.bi-activity::before{content:"\f66b"}.bi-easel2-fill::before{content:"\f66c"}.bi-easel2::before{content:"\f66d"}.bi-easel3-fill::before{content:"\f66e"}.bi-easel3::before{content:"\f66f"}.bi-fan::before{content:"\f670"}.bi-fingerprint::before{content:"\f671"}.bi-graph-down-arrow::before{content:"\f672"}.bi-graph-up-arrow::before{content:"\f673"}.bi-hypnotize::before{content:"\f674"}.bi-magic::before{content:"\f675"}.bi-person-rolodex::before{content:"\f676"}.bi-person-video::before{content:"\f677"}.bi-person-video2::before{content:"\f678"}.bi-person-video3::before{content:"\f679"}.bi-person-workspace::before{content:"\f67a"}.bi-radioactive::before{content:"\f67b"}.bi-webcam-fill::before{content:"\f67c"}.bi-webcam::before{content:"\f67d"}.bi-yin-yang::before{content:"\f67e"}.bi-bandaid-fill::before{content:"\f680"}.bi-bandaid::before{content:"\f681"}.bi-bluetooth::before{content:"\f682"}.bi-body-text::before{content:"\f683"}.bi-boombox::before{content:"\f684"}.bi-boxes::before{content:"\f685"}.bi-dpad-fill::before{content:"\f686"}.bi-dpad::before{content:"\f687"}.bi-ear-fill::before{content:"\f688"}.bi-ear::before{content:"\f689"}.bi-envelope-check-fill::before{content:"\f68b"}.bi-envelope-check::before{content:"\f68c"}.bi-envelope-dash-fill::before{content:"\f68e"}.bi-envelope-dash::before{content:"\f68f"}.bi-envelope-exclamation-fill::before{content:"\f691"}.bi-envelope-exclamation::before{content:"\f692"}.bi-envelope-plus-fill::before{content:"\f693"}.bi-envelope-plus::before{content:"\f694"}.bi-envelope-slash-fill::before{content:"\f696"}.bi-envelope-slash::before{content:"\f697"}.bi-envelope-x-fill::before{content:"\f699"}.bi-envelope-x::before{content:"\f69a"}.bi-explicit-fill::before{content:"\f69b"}.bi-explicit::before{content:"\f69c"}.bi-git::before{content:"\f69d"}.bi-infinity::before{content:"\f69e"}.bi-list-columns-reverse::before{content:"\f69f"}.bi-list-columns::before{content:"\f6a0"}.bi-meta::before{content:"\f6a1"}.bi-nintendo-switch::before{content:"\f6a4"}.bi-pc-display-horizontal::before{content:"\f6a5"}.bi-pc-display::before{content:"\f6a6"}.bi-pc-horizontal::before{content:"\f6a7"}.bi-pc::before{content:"\f6a8"}.bi-playstation::before{content:"\f6a9"}.bi-plus-slash-minus::before{content:"\f6aa"}.bi-projector-fill::before{content:"\f6ab"}.bi-projector::before{content:"\f6ac"}.bi-qr-code-scan::before{content:"\f6ad"}.bi-qr-code::before{content:"\f6ae"}.bi-quora::before{content:"\f6af"}.bi-quote::before{content:"\f6b0"}.bi-robot::before{content:"\f6b1"}.bi-send-check-fill::before{content:"\f6b2"}.bi-send-check::before{content:"\f6b3"}.bi-send-dash-fill::before{content:"\f6b4"}.bi-send-dash::before{content:"\f6b5"}.bi-send-exclamation-fill::before{content:"\f6b7"}.bi-send-exclamation::before{content:"\f6b8"}.bi-send-fill::before{content:"\f6b9"}.bi-send-plus-fill::before{content:"\f6ba"}.bi-send-plus::before{content:"\f6bb"}.bi-send-slash-fill::before{content:"\f6bc"}.bi-send-slash::before{content:"\f6bd"}.bi-send-x-fill::before{content:"\f6be"}.bi-send-x::before{content:"\f6bf"}.bi-send::before{content:"\f6c0"}.bi-steam::before{content:"\f6c1"}.bi-terminal-dash::before{content:"\f6c3"}.bi-terminal-plus::before{content:"\f6c4"}.bi-terminal-split::before{content:"\f6c5"}.bi-ticket-detailed-fill::before{content:"\f6c6"}.bi-ticket-detailed::before{content:"\f6c7"}.bi-ticket-fill::before{content:"\f6c8"}.bi-ticket-perforated-fill::before{content:"\f6c9"}.bi-ticket-perforated::before{content:"\f6ca"}.bi-ticket::before{content:"\f6cb"}.bi-tiktok::before{content:"\f6cc"}.bi-window-dash::before{content:"\f6cd"}.bi-window-desktop::before{content:"\f6ce"}.bi-window-fullscreen::before{content:"\f6cf"}.bi-window-plus::before{content:"\f6d0"}.bi-window-split::before{content:"\f6d1"}.bi-window-stack::before{content:"\f6d2"}.bi-window-x::before{content:"\f6d3"}.bi-xbox::before{content:"\f6d4"}.bi-ethernet::before{content:"\f6d5"}.bi-hdmi-fill::before{content:"\f6d6"}.bi-hdmi::before{content:"\f6d7"}.bi-usb-c-fill::before{content:"\f6d8"}.bi-usb-c::before{content:"\f6d9"}.bi-usb-fill::before{content:"\f6da"}.bi-usb-plug-fill::before{content:"\f6db"}.bi-usb-plug::before{content:"\f6dc"}.bi-usb-symbol::before{content:"\f6dd"}.bi-usb::before{content:"\f6de"}.bi-boombox-fill::before{content:"\f6df"}.bi-displayport::before{content:"\f6e1"}.bi-gpu-card::before{content:"\f6e2"}.bi-memory::before{content:"\f6e3"}.bi-modem-fill::before{content:"\f6e4"}.bi-modem::before{content:"\f6e5"}.bi-motherboard-fill::before{content:"\f6e6"}.bi-motherboard::before{content:"\f6e7"}.bi-optical-audio-fill::before{content:"\f6e8"}.bi-optical-audio::before{content:"\f6e9"}.bi-pci-card::before{content:"\f6ea"}.bi-router-fill::before{content:"\f6eb"}.bi-router::before{content:"\f6ec"}.bi-thunderbolt-fill::before{content:"\f6ef"}.bi-thunderbolt::before{content:"\f6f0"}.bi-usb-drive-fill::before{content:"\f6f1"}.bi-usb-drive::before{content:"\f6f2"}.bi-usb-micro-fill::before{content:"\f6f3"}.bi-usb-micro::before{content:"\f6f4"}.bi-usb-mini-fill::before{content:"\f6f5"}.bi-usb-mini::before{content:"\f6f6"}.bi-cloud-haze2::before{content:"\f6f7"}.bi-device-hdd-fill::before{content:"\f6f8"}.bi-device-hdd::before{content:"\f6f9"}.bi-device-ssd-fill::before{content:"\f6fa"}.bi-device-ssd::before{content:"\f6fb"}.bi-displayport-fill::before{content:"\f6fc"}.bi-mortarboard-fill::before{content:"\f6fd"}.bi-mortarboard::before{content:"\f6fe"}.bi-terminal-x::before{content:"\f6ff"}.bi-arrow-through-heart-fill::before{content:"\f700"}.bi-arrow-through-heart::before{content:"\f701"}.bi-badge-sd-fill::before{content:"\f702"}.bi-badge-sd::before{content:"\f703"}.bi-bag-heart-fill::before{content:"\f704"}.bi-bag-heart::before{content:"\f705"}.bi-balloon-fill::before{content:"\f706"}.bi-balloon-heart-fill::before{content:"\f707"}.bi-balloon-heart::before{content:"\f708"}.bi-balloon::before{content:"\f709"}.bi-box2-fill::before{content:"\f70a"}.bi-box2-heart-fill::before{content:"\f70b"}.bi-box2-heart::before{content:"\f70c"}.bi-box2::before{content:"\f70d"}.bi-braces-asterisk::before{content:"\f70e"}.bi-calendar-heart-fill::before{content:"\f70f"}.bi-calendar-heart::before{content:"\f710"}.bi-calendar2-heart-fill::before{content:"\f711"}.bi-calendar2-heart::before{content:"\f712"}.bi-chat-heart-fill::before{content:"\f713"}.bi-chat-heart::before{content:"\f714"}.bi-chat-left-heart-fill::before{content:"\f715"}.bi-chat-left-heart::before{content:"\f716"}.bi-chat-right-heart-fill::before{content:"\f717"}.bi-chat-right-heart::before{content:"\f718"}.bi-chat-square-heart-fill::before{content:"\f719"}.bi-chat-square-heart::before{content:"\f71a"}.bi-clipboard-check-fill::before{content:"\f71b"}.bi-clipboard-data-fill::before{content:"\f71c"}.bi-clipboard-fill::before{content:"\f71d"}.bi-clipboard-heart-fill::before{content:"\f71e"}.bi-clipboard-heart::before{content:"\f71f"}.bi-clipboard-minus-fill::before{content:"\f720"}.bi-clipboard-plus-fill::before{content:"\f721"}.bi-clipboard-pulse::before{content:"\f722"}.bi-clipboard-x-fill::before{content:"\f723"}.bi-clipboard2-check-fill::before{content:"\f724"}.bi-clipboard2-check::before{content:"\f725"}.bi-clipboard2-data-fill::before{content:"\f726"}.bi-clipboard2-data::before{content:"\f727"}.bi-clipboard2-fill::before{content:"\f728"}.bi-clipboard2-heart-fill::before{content:"\f729"}.bi-clipboard2-heart::before{content:"\f72a"}.bi-clipboard2-minus-fill::before{content:"\f72b"}.bi-clipboard2-minus::before{content:"\f72c"}.bi-clipboard2-plus-fill::before{content:"\f72d"}.bi-clipboard2-plus::before{content:"\f72e"}.bi-clipboard2-pulse-fill::before{content:"\f72f"}.bi-clipboard2-pulse::before{content:"\f730"}.bi-clipboard2-x-fill::before{content:"\f731"}.bi-clipboard2-x::before{content:"\f732"}.bi-clipboard2::before{content:"\f733"}.bi-emoji-kiss-fill::before{content:"\f734"}.bi-emoji-kiss::before{content:"\f735"}.bi-envelope-heart-fill::before{content:"\f736"}.bi-envelope-heart::before{content:"\f737"}.bi-envelope-open-heart-fill::before{content:"\f738"}.bi-envelope-open-heart::before{content:"\f739"}.bi-envelope-paper-fill::before{content:"\f73a"}.bi-envelope-paper-heart-fill::before{content:"\f73b"}.bi-envelope-paper-heart::before{content:"\f73c"}.bi-envelope-paper::before{content:"\f73d"}.bi-filetype-aac::before{content:"\f73e"}.bi-filetype-ai::before{content:"\f73f"}.bi-filetype-bmp::before{content:"\f740"}.bi-filetype-cs::before{content:"\f741"}.bi-filetype-css::before{content:"\f742"}.bi-filetype-csv::before{content:"\f743"}.bi-filetype-doc::before{content:"\f744"}.bi-filetype-docx::before{content:"\f745"}.bi-filetype-exe::before{content:"\f746"}.bi-filetype-gif::before{content:"\f747"}.bi-filetype-heic::before{content:"\f748"}.bi-filetype-html::before{content:"\f749"}.bi-filetype-java::before{content:"\f74a"}.bi-filetype-jpg::before{content:"\f74b"}.bi-filetype-js::before{content:"\f74c"}.bi-filetype-jsx::before{content:"\f74d"}.bi-filetype-key::before{content:"\f74e"}.bi-filetype-m4p::before{content:"\f74f"}.bi-filetype-md::before{content:"\f750"}.bi-filetype-mdx::before{content:"\f751"}.bi-filetype-mov::before{content:"\f752"}.bi-filetype-mp3::before{content:"\f753"}.bi-filetype-mp4::before{content:"\f754"}.bi-filetype-otf::before{content:"\f755"}.bi-filetype-pdf::before{content:"\f756"}.bi-filetype-php::before{content:"\f757"}.bi-filetype-png::before{content:"\f758"}.bi-filetype-ppt::before{content:"\f75a"}.bi-filetype-psd::before{content:"\f75b"}.bi-filetype-py::before{content:"\f75c"}.bi-filetype-raw::before{content:"\f75d"}.bi-filetype-rb::before{content:"\f75e"}.bi-filetype-sass::before{content:"\f75f"}.bi-filetype-scss::before{content:"\f760"}.bi-filetype-sh::before{content:"\f761"}.bi-filetype-svg::before{content:"\f762"}.bi-filetype-tiff::before{content:"\f763"}.bi-filetype-tsx::before{content:"\f764"}.bi-filetype-ttf::before{content:"\f765"}.bi-filetype-txt::before{content:"\f766"}.bi-filetype-wav::before{content:"\f767"}.bi-filetype-woff::before{content:"\f768"}.bi-filetype-xls::before{content:"\f76a"}.bi-filetype-xml::before{content:"\f76b"}.bi-filetype-yml::before{content:"\f76c"}.bi-heart-arrow::before{content:"\f76d"}.bi-heart-pulse-fill::before{content:"\f76e"}.bi-heart-pulse::before{content:"\f76f"}.bi-heartbreak-fill::before{content:"\f770"}.bi-heartbreak::before{content:"\f771"}.bi-hearts::before{content:"\f772"}.bi-hospital-fill::before{content:"\f773"}.bi-hospital::before{content:"\f774"}.bi-house-heart-fill::before{content:"\f775"}.bi-house-heart::before{content:"\f776"}.bi-incognito::before{content:"\f777"}.bi-magnet-fill::before{content:"\f778"}.bi-magnet::before{content:"\f779"}.bi-person-heart::before{content:"\f77a"}.bi-person-hearts::before{content:"\f77b"}.bi-phone-flip::before{content:"\f77c"}.bi-plugin::before{content:"\f77d"}.bi-postage-fill::before{content:"\f77e"}.bi-postage-heart-fill::before{content:"\f77f"}.bi-postage-heart::before{content:"\f780"}.bi-postage::before{content:"\f781"}.bi-postcard-fill::before{content:"\f782"}.bi-postcard-heart-fill::before{content:"\f783"}.bi-postcard-heart::before{content:"\f784"}.bi-postcard::before{content:"\f785"}.bi-search-heart-fill::before{content:"\f786"}.bi-search-heart::before{content:"\f787"}.bi-sliders2-vertical::before{content:"\f788"}.bi-sliders2::before{content:"\f789"}.bi-trash3-fill::before{content:"\f78a"}.bi-trash3::before{content:"\f78b"}.bi-valentine::before{content:"\f78c"}.bi-valentine2::before{content:"\f78d"}.bi-wrench-adjustable-circle-fill::before{content:"\f78e"}.bi-wrench-adjustable-circle::before{content:"\f78f"}.bi-wrench-adjustable::before{content:"\f790"}.bi-filetype-json::before{content:"\f791"}.bi-filetype-pptx::before{content:"\f792"}.bi-filetype-xlsx::before{content:"\f793"}.bi-1-circle-fill::before{content:"\f796"}.bi-1-circle::before{content:"\f797"}.bi-1-square-fill::before{content:"\f798"}.bi-1-square::before{content:"\f799"}.bi-2-circle-fill::before{content:"\f79c"}.bi-2-circle::before{content:"\f79d"}.bi-2-square-fill::before{content:"\f79e"}.bi-2-square::before{content:"\f79f"}.bi-3-circle-fill::before{content:"\f7a2"}.bi-3-circle::before{content:"\f7a3"}.bi-3-square-fill::before{content:"\f7a4"}.bi-3-square::before{content:"\f7a5"}.bi-4-circle-fill::before{content:"\f7a8"}.bi-4-circle::before{content:"\f7a9"}.bi-4-square-fill::before{content:"\f7aa"}.bi-4-square::before{content:"\f7ab"}.bi-5-circle-fill::before{content:"\f7ae"}.bi-5-circle::before{content:"\f7af"}.bi-5-square-fill::before{content:"\f7b0"}.bi-5-square::before{content:"\f7b1"}.bi-6-circle-fill::before{content:"\f7b4"}.bi-6-circle::before{content:"\f7b5"}.bi-6-square-fill::before{content:"\f7b6"}.bi-6-square::before{content:"\f7b7"}.bi-7-circle-fill::before{content:"\f7ba"}.bi-7-circle::before{content:"\f7bb"}.bi-7-square-fill::before{content:"\f7bc"}.bi-7-square::before{content:"\f7bd"}.bi-8-circle-fill::before{content:"\f7c0"}.bi-8-circle::before{content:"\f7c1"}.bi-8-square-fill::before{content:"\f7c2"}.bi-8-square::before{content:"\f7c3"}.bi-9-circle-fill::before{content:"\f7c6"}.bi-9-circle::before{content:"\f7c7"}.bi-9-square-fill::before{content:"\f7c8"}.bi-9-square::before{content:"\f7c9"}.bi-airplane-engines-fill::before{content:"\f7ca"}.bi-airplane-engines::before{content:"\f7cb"}.bi-airplane-fill::before{content:"\f7cc"}.bi-airplane::before{content:"\f7cd"}.bi-alexa::before{content:"\f7ce"}.bi-alipay::before{content:"\f7cf"}.bi-android::before{content:"\f7d0"}.bi-android2::before{content:"\f7d1"}.bi-box-fill::before{content:"\f7d2"}.bi-box-seam-fill::before{content:"\f7d3"}.bi-browser-chrome::before{content:"\f7d4"}.bi-browser-edge::before{content:"\f7d5"}.bi-browser-firefox::before{content:"\f7d6"}.bi-browser-safari::before{content:"\f7d7"}.bi-c-circle-fill::before{content:"\f7da"}.bi-c-circle::before{content:"\f7db"}.bi-c-square-fill::before{content:"\f7dc"}.bi-c-square::before{content:"\f7dd"}.bi-capsule-pill::before{content:"\f7de"}.bi-capsule::before{content:"\f7df"}.bi-car-front-fill::before{content:"\f7e0"}.bi-car-front::before{content:"\f7e1"}.bi-cassette-fill::before{content:"\f7e2"}.bi-cassette::before{content:"\f7e3"}.bi-cc-circle-fill::before{content:"\f7e6"}.bi-cc-circle::before{content:"\f7e7"}.bi-cc-square-fill::before{content:"\f7e8"}.bi-cc-square::before{content:"\f7e9"}.bi-cup-hot-fill::before{content:"\f7ea"}.bi-cup-hot::before{content:"\f7eb"}.bi-currency-rupee::before{content:"\f7ec"}.bi-dropbox::before{content:"\f7ed"}.bi-escape::before{content:"\f7ee"}.bi-fast-forward-btn-fill::before{content:"\f7ef"}.bi-fast-forward-btn::before{content:"\f7f0"}.bi-fast-forward-circle-fill::before{content:"\f7f1"}.bi-fast-forward-circle::before{content:"\f7f2"}.bi-fast-forward-fill::before{content:"\f7f3"}.bi-fast-forward::before{content:"\f7f4"}.bi-filetype-sql::before{content:"\f7f5"}.bi-fire::before{content:"\f7f6"}.bi-google-play::before{content:"\f7f7"}.bi-h-circle-fill::before{content:"\f7fa"}.bi-h-circle::before{content:"\f7fb"}.bi-h-square-fill::before{content:"\f7fc"}.bi-h-square::before{content:"\f7fd"}.bi-indent::before{content:"\f7fe"}.bi-lungs-fill::before{content:"\f7ff"}.bi-lungs::before{content:"\f800"}.bi-microsoft-teams::before{content:"\f801"}.bi-p-circle-fill::before{content:"\f804"}.bi-p-circle::before{content:"\f805"}.bi-p-square-fill::before{content:"\f806"}.bi-p-square::before{content:"\f807"}.bi-pass-fill::before{content:"\f808"}.bi-pass::before{content:"\f809"}.bi-prescription::before{content:"\f80a"}.bi-prescription2::before{content:"\f80b"}.bi-r-circle-fill::before{content:"\f80e"}.bi-r-circle::before{content:"\f80f"}.bi-r-square-fill::before{content:"\f810"}.bi-r-square::before{content:"\f811"}.bi-repeat-1::before{content:"\f812"}.bi-repeat::before{content:"\f813"}.bi-rewind-btn-fill::before{content:"\f814"}.bi-rewind-btn::before{content:"\f815"}.bi-rewind-circle-fill::before{content:"\f816"}.bi-rewind-circle::before{content:"\f817"}.bi-rewind-fill::before{content:"\f818"}.bi-rewind::before{content:"\f819"}.bi-train-freight-front-fill::before{content:"\f81a"}.bi-train-freight-front::before{content:"\f81b"}.bi-train-front-fill::before{content:"\f81c"}.bi-train-front::before{content:"\f81d"}.bi-train-lightrail-front-fill::before{content:"\f81e"}.bi-train-lightrail-front::before{content:"\f81f"}.bi-truck-front-fill::before{content:"\f820"}.bi-truck-front::before{content:"\f821"}.bi-ubuntu::before{content:"\f822"}.bi-unindent::before{content:"\f823"}.bi-unity::before{content:"\f824"}.bi-universal-access-circle::before{content:"\f825"}.bi-universal-access::before{content:"\f826"}.bi-virus::before{content:"\f827"}.bi-virus2::before{content:"\f828"}.bi-wechat::before{content:"\f829"}.bi-yelp::before{content:"\f82a"}.bi-sign-stop-fill::before{content:"\f82b"}.bi-sign-stop-lights-fill::before{content:"\f82c"}.bi-sign-stop-lights::before{content:"\f82d"}.bi-sign-stop::before{content:"\f82e"}.bi-sign-turn-left-fill::before{content:"\f82f"}.bi-sign-turn-left::before{content:"\f830"}.bi-sign-turn-right-fill::before{content:"\f831"}.bi-sign-turn-right::before{content:"\f832"}.bi-sign-turn-slight-left-fill::before{content:"\f833"}.bi-sign-turn-slight-left::before{content:"\f834"}.bi-sign-turn-slight-right-fill::before{content:"\f835"}.bi-sign-turn-slight-right::before{content:"\f836"}.bi-sign-yield-fill::before{content:"\f837"}.bi-sign-yield::before{content:"\f838"}.bi-ev-station-fill::before{content:"\f839"}.bi-ev-station::before{content:"\f83a"}.bi-fuel-pump-diesel-fill::before{content:"\f83b"}.bi-fuel-pump-diesel::before{content:"\f83c"}.bi-fuel-pump-fill::before{content:"\f83d"}.bi-fuel-pump::before{content:"\f83e"}.bi-0-circle-fill::before{content:"\f83f"}.bi-0-circle::before{content:"\f840"}.bi-0-square-fill::before{content:"\f841"}.bi-0-square::before{content:"\f842"}.bi-rocket-fill::before{content:"\f843"}.bi-rocket-takeoff-fill::before{content:"\f844"}.bi-rocket-takeoff::before{content:"\f845"}.bi-rocket::before{content:"\f846"}.bi-stripe::before{content:"\f847"}.bi-subscript::before{content:"\f848"}.bi-superscript::before{content:"\f849"}.bi-trello::before{content:"\f84a"}.bi-envelope-at-fill::before{content:"\f84b"}.bi-envelope-at::before{content:"\f84c"}.bi-regex::before{content:"\f84d"}.bi-text-wrap::before{content:"\f84e"}.bi-sign-dead-end-fill::before{content:"\f84f"}.bi-sign-dead-end::before{content:"\f850"}.bi-sign-do-not-enter-fill::before{content:"\f851"}.bi-sign-do-not-enter::before{content:"\f852"}.bi-sign-intersection-fill::before{content:"\f853"}.bi-sign-intersection-side-fill::before{content:"\f854"}.bi-sign-intersection-side::before{content:"\f855"}.bi-sign-intersection-t-fill::before{content:"\f856"}.bi-sign-intersection-t::before{content:"\f857"}.bi-sign-intersection-y-fill::before{content:"\f858"}.bi-sign-intersection-y::before{content:"\f859"}.bi-sign-intersection::before{content:"\f85a"}.bi-sign-merge-left-fill::before{content:"\f85b"}.bi-sign-merge-left::before{content:"\f85c"}.bi-sign-merge-right-fill::before{content:"\f85d"}.bi-sign-merge-right::before{content:"\f85e"}.bi-sign-no-left-turn-fill::before{content:"\f85f"}.bi-sign-no-left-turn::before{content:"\f860"}.bi-sign-no-parking-fill::before{content:"\f861"}.bi-sign-no-parking::before{content:"\f862"}.bi-sign-no-right-turn-fill::before{content:"\f863"}.bi-sign-no-right-turn::before{content:"\f864"}.bi-sign-railroad-fill::before{content:"\f865"}.bi-sign-railroad::before{content:"\f866"}.bi-building-add::before{content:"\f867"}.bi-building-check::before{content:"\f868"}.bi-building-dash::before{content:"\f869"}.bi-building-down::before{content:"\f86a"}.bi-building-exclamation::before{content:"\f86b"}.bi-building-fill-add::before{content:"\f86c"}.bi-building-fill-check::before{content:"\f86d"}.bi-building-fill-dash::before{content:"\f86e"}.bi-building-fill-down::before{content:"\f86f"}.bi-building-fill-exclamation::before{content:"\f870"}.bi-building-fill-gear::before{content:"\f871"}.bi-building-fill-lock::before{content:"\f872"}.bi-building-fill-slash::before{content:"\f873"}.bi-building-fill-up::before{content:"\f874"}.bi-building-fill-x::before{content:"\f875"}.bi-building-fill::before{content:"\f876"}.bi-building-gear::before{content:"\f877"}.bi-building-lock::before{content:"\f878"}.bi-building-slash::before{content:"\f879"}.bi-building-up::before{content:"\f87a"}.bi-building-x::before{content:"\f87b"}.bi-buildings-fill::before{content:"\f87c"}.bi-buildings::before{content:"\f87d"}.bi-bus-front-fill::before{content:"\f87e"}.bi-bus-front::before{content:"\f87f"}.bi-ev-front-fill::before{content:"\f880"}.bi-ev-front::before{content:"\f881"}.bi-globe-americas::before{content:"\f882"}.bi-globe-asia-australia::before{content:"\f883"}.bi-globe-central-south-asia::before{content:"\f884"}.bi-globe-europe-africa::before{content:"\f885"}.bi-house-add-fill::before{content:"\f886"}.bi-house-add::before{content:"\f887"}.bi-house-check-fill::before{content:"\f888"}.bi-house-check::before{content:"\f889"}.bi-house-dash-fill::before{content:"\f88a"}.bi-house-dash::before{content:"\f88b"}.bi-house-down-fill::before{content:"\f88c"}.bi-house-down::before{content:"\f88d"}.bi-house-exclamation-fill::before{content:"\f88e"}.bi-house-exclamation::before{content:"\f88f"}.bi-house-gear-fill::before{content:"\f890"}.bi-house-gear::before{content:"\f891"}.bi-house-lock-fill::before{content:"\f892"}.bi-house-lock::before{content:"\f893"}.bi-house-slash-fill::before{content:"\f894"}.bi-house-slash::before{content:"\f895"}.bi-house-up-fill::before{content:"\f896"}.bi-house-up::before{content:"\f897"}.bi-house-x-fill::before{content:"\f898"}.bi-house-x::before{content:"\f899"}.bi-person-add::before{content:"\f89a"}.bi-person-down::before{content:"\f89b"}.bi-person-exclamation::before{content:"\f89c"}.bi-person-fill-add::before{content:"\f89d"}.bi-person-fill-check::before{content:"\f89e"}.bi-person-fill-dash::before{content:"\f89f"}.bi-person-fill-down::before{content:"\f8a0"}.bi-person-fill-exclamation::before{content:"\f8a1"}.bi-person-fill-gear::before{content:"\f8a2"}.bi-person-fill-lock::before{content:"\f8a3"}.bi-person-fill-slash::before{content:"\f8a4"}.bi-person-fill-up::before{content:"\f8a5"}.bi-person-fill-x::before{content:"\f8a6"}.bi-person-gear::before{content:"\f8a7"}.bi-person-lock::before{content:"\f8a8"}.bi-person-slash::before{content:"\f8a9"}.bi-person-up::before{content:"\f8aa"}.bi-scooter::before{content:"\f8ab"}.bi-taxi-front-fill::before{content:"\f8ac"}.bi-taxi-front::before{content:"\f8ad"}.bi-amd::before{content:"\f8ae"}.bi-database-add::before{content:"\f8af"}.bi-database-check::before{content:"\f8b0"}.bi-database-dash::before{content:"\f8b1"}.bi-database-down::before{content:"\f8b2"}.bi-database-exclamation::before{content:"\f8b3"}.bi-database-fill-add::before{content:"\f8b4"}.bi-database-fill-check::before{content:"\f8b5"}.bi-database-fill-dash::before{content:"\f8b6"}.bi-database-fill-down::before{content:"\f8b7"}.bi-database-fill-exclamation::before{content:"\f8b8"}.bi-database-fill-gear::before{content:"\f8b9"}.bi-database-fill-lock::before{content:"\f8ba"}.bi-database-fill-slash::before{content:"\f8bb"}.bi-database-fill-up::before{content:"\f8bc"}.bi-database-fill-x::before{content:"\f8bd"}.bi-database-fill::before{content:"\f8be"}.bi-database-gear::before{content:"\f8bf"}.bi-database-lock::before{content:"\f8c0"}.bi-database-slash::before{content:"\f8c1"}.bi-database-up::before{content:"\f8c2"}.bi-database-x::before{content:"\f8c3"}.bi-database::before{content:"\f8c4"}.bi-houses-fill::before{content:"\f8c5"}.bi-houses::before{content:"\f8c6"}.bi-nvidia::before{content:"\f8c7"}.bi-person-vcard-fill::before{content:"\f8c8"}.bi-person-vcard::before{content:"\f8c9"}.bi-sina-weibo::before{content:"\f8ca"}.bi-tencent-qq::before{content:"\f8cb"}.bi-wikipedia::before{content:"\f8cc"}.bi-alphabet-uppercase::before{content:"\f2a5"}.bi-alphabet::before{content:"\f68a"}.bi-amazon::before{content:"\f68d"}.bi-arrows-collapse-vertical::before{content:"\f690"}.bi-arrows-expand-vertical::before{content:"\f695"}.bi-arrows-vertical::before{content:"\f698"}.bi-arrows::before{content:"\f6a2"}.bi-ban-fill::before{content:"\f6a3"}.bi-ban::before{content:"\f6b6"}.bi-bing::before{content:"\f6c2"}.bi-cake::before{content:"\f6e0"}.bi-cake2::before{content:"\f6ed"}.bi-cookie::before{content:"\f6ee"}.bi-copy::before{content:"\f759"}.bi-crosshair::before{content:"\f769"}.bi-crosshair2::before{content:"\f794"}.bi-emoji-astonished-fill::before{content:"\f795"}.bi-emoji-astonished::before{content:"\f79a"}.bi-emoji-grimace-fill::before{content:"\f79b"}.bi-emoji-grimace::before{content:"\f7a0"}.bi-emoji-grin-fill::before{content:"\f7a1"}.bi-emoji-grin::before{content:"\f7a6"}.bi-emoji-surprise-fill::before{content:"\f7a7"}.bi-emoji-surprise::before{content:"\f7ac"}.bi-emoji-tear-fill::before{content:"\f7ad"}.bi-emoji-tear::before{content:"\f7b2"}.bi-envelope-arrow-down-fill::before{content:"\f7b3"}.bi-envelope-arrow-down::before{content:"\f7b8"}.bi-envelope-arrow-up-fill::before{content:"\f7b9"}.bi-envelope-arrow-up::before{content:"\f7be"}.bi-feather::before{content:"\f7bf"}.bi-feather2::before{content:"\f7c4"}.bi-floppy-fill::before{content:"\f7c5"}.bi-floppy::before{content:"\f7d8"}.bi-floppy2-fill::before{content:"\f7d9"}.bi-floppy2::before{content:"\f7e4"}.bi-gitlab::before{content:"\f7e5"}.bi-highlighter::before{content:"\f7f8"}.bi-marker-tip::before{content:"\f802"}.bi-nvme-fill::before{content:"\f803"}.bi-nvme::before{content:"\f80c"}.bi-opencollective::before{content:"\f80d"}.bi-pci-card-network::before{content:"\f8cd"}.bi-pci-card-sound::before{content:"\f8ce"}.bi-radar::before{content:"\f8cf"}.bi-send-arrow-down-fill::before{content:"\f8d0"}.bi-send-arrow-down::before{content:"\f8d1"}.bi-send-arrow-up-fill::before{content:"\f8d2"}.bi-send-arrow-up::before{content:"\f8d3"}.bi-sim-slash-fill::before{content:"\f8d4"}.bi-sim-slash::before{content:"\f8d5"}.bi-sourceforge::before{content:"\f8d6"}.bi-substack::before{content:"\f8d7"}.bi-threads-fill::before{content:"\f8d8"}.bi-threads::before{content:"\f8d9"}.bi-transparency::before{content:"\f8da"}.bi-twitter-x::before{content:"\f8db"}.bi-type-h4::before{content:"\f8dc"}.bi-type-h5::before{content:"\f8dd"}.bi-type-h6::before{content:"\f8de"}.bi-backpack-fill::before{content:"\f8df"}.bi-backpack::before{content:"\f8e0"}.bi-backpack2-fill::before{content:"\f8e1"}.bi-backpack2::before{content:"\f8e2"}.bi-backpack3-fill::before{content:"\f8e3"}.bi-backpack3::before{content:"\f8e4"}.bi-backpack4-fill::before{content:"\f8e5"}.bi-backpack4::before{content:"\f8e6"}.bi-brilliance::before{content:"\f8e7"}.bi-cake-fill::before{content:"\f8e8"}.bi-cake2-fill::before{content:"\f8e9"}.bi-duffle-fill::before{content:"\f8ea"}.bi-duffle::before{content:"\f8eb"}.bi-exposure::before{content:"\f8ec"}.bi-gender-neuter::before{content:"\f8ed"}.bi-highlights::before{content:"\f8ee"}.bi-luggage-fill::before{content:"\f8ef"}.bi-luggage::before{content:"\f8f0"}.bi-mailbox-flag::before{content:"\f8f1"}.bi-mailbox2-flag::before{content:"\f8f2"}.bi-noise-reduction::before{content:"\f8f3"}.bi-passport-fill::before{content:"\f8f4"}.bi-passport::before{content:"\f8f5"}.bi-person-arms-up::before{content:"\f8f6"}.bi-person-raised-hand::before{content:"\f8f7"}.bi-person-standing-dress::before{content:"\f8f8"}.bi-person-standing::before{content:"\f8f9"}.bi-person-walking::before{content:"\f8fa"}.bi-person-wheelchair::before{content:"\f8fb"}.bi-shadows::before{content:"\f8fc"}.bi-suitcase-fill::before{content:"\f8fd"}.bi-suitcase-lg-fill::before{content:"\f8fe"}.bi-suitcase-lg::before{content:"\f8ff"}.bi-suitcase::before{content:"\f900"}.bi-suitcase2-fill::before{content:"\f901"}.bi-suitcase2::before{content:"\f902"}.bi-vignette::before{content:"\f903"} \ No newline at end of file diff --git a/TSC2.Client/wwwroot/css/icons/bootstrap-icons/bootstrap-icons.woff b/TSC2.Client/wwwroot/css/icons/bootstrap-icons/bootstrap-icons.woff new file mode 100644 index 0000000..ce6152b Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/bootstrap-icons/bootstrap-icons.woff differ diff --git a/TSC2.Client/wwwroot/css/icons/bootstrap-icons/bootstrap-icons.woff2 b/TSC2.Client/wwwroot/css/icons/bootstrap-icons/bootstrap-icons.woff2 new file mode 100644 index 0000000..c1e0094 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/bootstrap-icons/bootstrap-icons.woff2 differ diff --git a/TSC2.Client/wwwroot/css/icons/font-awesome.css b/TSC2.Client/wwwroot/css/icons/font-awesome.css new file mode 100644 index 0000000..10b8fa8 --- /dev/null +++ b/TSC2.Client/wwwroot/css/icons/font-awesome.css @@ -0,0 +1,9 @@ +/*! + * Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2023 Fonticons, Inc. + */ + .fa{font-family:var(--fa-style-family,"Font Awesome 6 Free");font-weight:var(--fa-style,900)}.fa,.fa-brands,.fa-classic,.fa-regular,.fa-sharp,.fa-solid,.fab,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fa-classic,.fa-regular,.fa-solid,.far,.fas{font-family:"Font Awesome 6 Free"}.fa-brands,.fab{font-family:"Font Awesome 6 Brands"}.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-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-radius:var(--fa-border-radius,.1em);border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{-webkit-animation-name:fa-beat;animation-name:fa-beat;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{-webkit-animation-name:fa-bounce;animation-name:fa-bounce;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{-webkit-animation-name:fa-fade;animation-name:fa-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade,.fa-fade{-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s)}.fa-beat-fade{-webkit-animation-name:fa-beat-fade;animation-name:fa-beat-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{-webkit-animation-name:fa-flip;animation-name:fa-flip;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{-webkit-animation-name:fa-shake;animation-name:fa-shake;-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-shake,.fa-spin{-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal)}.fa-spin{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-duration:var(--fa-animation-duration,2s);animation-duration:var(--fa-animation-duration,2s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,steps(8));animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{-webkit-animation-delay:-1ms;animation-delay:-1ms;-webkit-animation-duration:1ms;animation-duration:1ms;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s}}@-webkit-keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@-webkit-keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@-webkit-keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@-webkit-keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@-webkit-keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@-webkit-keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}.fa-rotate-by{-webkit-transform:rotate(var(--fa-rotate-angle,none));transform:rotate(var(--fa-rotate-angle,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%;z-index:var(--fa-stack-z-index,auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse,#fff)} + + .fa-0:before{content:"\30"}.fa-1:before{content:"\31"}.fa-2:before{content:"\32"}.fa-3:before{content:"\33"}.fa-4:before{content:"\34"}.fa-5:before{content:"\35"}.fa-6:before{content:"\36"}.fa-7:before{content:"\37"}.fa-8:before{content:"\38"}.fa-9:before{content:"\39"}.fa-fill-drip:before{content:"\f576"}.fa-arrows-to-circle:before{content:"\e4bd"}.fa-chevron-circle-right:before,.fa-circle-chevron-right:before{content:"\f138"}.fa-at:before{content:"\40"}.fa-trash-alt:before,.fa-trash-can:before{content:"\f2ed"}.fa-text-height:before{content:"\f034"}.fa-user-times:before,.fa-user-xmark:before{content:"\f235"}.fa-stethoscope:before{content:"\f0f1"}.fa-comment-alt:before,.fa-message:before{content:"\f27a"}.fa-info:before{content:"\f129"}.fa-compress-alt:before,.fa-down-left-and-up-right-to-center:before{content:"\f422"}.fa-explosion:before{content:"\e4e9"}.fa-file-alt:before,.fa-file-lines:before,.fa-file-text:before{content:"\f15c"}.fa-wave-square:before{content:"\f83e"}.fa-ring:before{content:"\f70b"}.fa-building-un:before{content:"\e4d9"}.fa-dice-three:before{content:"\f527"}.fa-calendar-alt:before,.fa-calendar-days:before{content:"\f073"}.fa-anchor-circle-check:before{content:"\e4aa"}.fa-building-circle-arrow-right:before{content:"\e4d1"}.fa-volleyball-ball:before,.fa-volleyball:before{content:"\f45f"}.fa-arrows-up-to-line:before{content:"\e4c2"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-circle-minus:before,.fa-minus-circle:before{content:"\f056"}.fa-door-open:before{content:"\f52b"}.fa-right-from-bracket:before,.fa-sign-out-alt:before{content:"\f2f5"}.fa-atom:before{content:"\f5d2"}.fa-soap:before{content:"\e06e"}.fa-heart-music-camera-bolt:before,.fa-icons:before{content:"\f86d"}.fa-microphone-alt-slash:before,.fa-microphone-lines-slash:before{content:"\f539"}.fa-bridge-circle-check:before{content:"\e4c9"}.fa-pump-medical:before{content:"\e06a"}.fa-fingerprint:before{content:"\f577"}.fa-hand-point-right:before{content:"\f0a4"}.fa-magnifying-glass-location:before,.fa-search-location:before{content:"\f689"}.fa-forward-step:before,.fa-step-forward:before{content:"\f051"}.fa-face-smile-beam:before,.fa-smile-beam:before{content:"\f5b8"}.fa-flag-checkered:before{content:"\f11e"}.fa-football-ball:before,.fa-football:before{content:"\f44e"}.fa-school-circle-exclamation:before{content:"\e56c"}.fa-crop:before{content:"\f125"}.fa-angle-double-down:before,.fa-angles-down:before{content:"\f103"}.fa-users-rectangle:before{content:"\e594"}.fa-people-roof:before{content:"\e537"}.fa-people-line:before{content:"\e534"}.fa-beer-mug-empty:before,.fa-beer:before{content:"\f0fc"}.fa-diagram-predecessor:before{content:"\e477"}.fa-arrow-up-long:before,.fa-long-arrow-up:before{content:"\f176"}.fa-burn:before,.fa-fire-flame-simple:before{content:"\f46a"}.fa-male:before,.fa-person:before{content:"\f183"}.fa-laptop:before{content:"\f109"}.fa-file-csv:before{content:"\f6dd"}.fa-menorah:before{content:"\f676"}.fa-truck-plane:before{content:"\e58f"}.fa-record-vinyl:before{content:"\f8d9"}.fa-face-grin-stars:before,.fa-grin-stars:before{content:"\f587"}.fa-bong:before{content:"\f55c"}.fa-pastafarianism:before,.fa-spaghetti-monster-flying:before{content:"\f67b"}.fa-arrow-down-up-across-line:before{content:"\e4af"}.fa-spoon:before,.fa-utensil-spoon:before{content:"\f2e5"}.fa-jar-wheat:before{content:"\e517"}.fa-envelopes-bulk:before,.fa-mail-bulk:before{content:"\f674"}.fa-file-circle-exclamation:before{content:"\e4eb"}.fa-circle-h:before,.fa-hospital-symbol:before{content:"\f47e"}.fa-pager:before{content:"\f815"}.fa-address-book:before,.fa-contact-book:before{content:"\f2b9"}.fa-strikethrough:before{content:"\f0cc"}.fa-k:before{content:"\4b"}.fa-landmark-flag:before{content:"\e51c"}.fa-pencil-alt:before,.fa-pencil:before{content:"\f303"}.fa-backward:before{content:"\f04a"}.fa-caret-right:before{content:"\f0da"}.fa-comments:before{content:"\f086"}.fa-file-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-code-pull-request:before{content:"\e13c"}.fa-clipboard-list:before{content:"\f46d"}.fa-truck-loading:before,.fa-truck-ramp-box:before{content:"\f4de"}.fa-user-check:before{content:"\f4fc"}.fa-vial-virus:before{content:"\e597"}.fa-sheet-plastic:before{content:"\e571"}.fa-blog:before{content:"\f781"}.fa-user-ninja:before{content:"\f504"}.fa-person-arrow-up-from-line:before{content:"\e539"}.fa-scroll-torah:before,.fa-torah:before{content:"\f6a0"}.fa-broom-ball:before,.fa-quidditch-broom-ball:before,.fa-quidditch:before{content:"\f458"}.fa-toggle-off:before{content:"\f204"}.fa-archive:before,.fa-box-archive:before{content:"\f187"}.fa-person-drowning:before{content:"\e545"}.fa-arrow-down-9-1:before,.fa-sort-numeric-desc:before,.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-face-grin-tongue-squint:before,.fa-grin-tongue-squint:before{content:"\f58a"}.fa-spray-can:before{content:"\f5bd"}.fa-truck-monster:before{content:"\f63b"}.fa-w:before{content:"\57"}.fa-earth-africa:before,.fa-globe-africa:before{content:"\f57c"}.fa-rainbow:before{content:"\f75b"}.fa-circle-notch:before{content:"\f1ce"}.fa-tablet-alt:before,.fa-tablet-screen-button:before{content:"\f3fa"}.fa-paw:before{content:"\f1b0"}.fa-cloud:before{content:"\f0c2"}.fa-trowel-bricks:before{content:"\e58a"}.fa-face-flushed:before,.fa-flushed:before{content:"\f579"}.fa-hospital-user:before{content:"\f80d"}.fa-tent-arrow-left-right:before{content:"\e57f"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-binoculars:before{content:"\f1e5"}.fa-microphone-slash:before{content:"\f131"}.fa-box-tissue:before{content:"\e05b"}.fa-motorcycle:before{content:"\f21c"}.fa-bell-concierge:before,.fa-concierge-bell:before{content:"\f562"}.fa-pen-ruler:before,.fa-pencil-ruler:before{content:"\f5ae"}.fa-people-arrows-left-right:before,.fa-people-arrows:before{content:"\e068"}.fa-mars-and-venus-burst:before{content:"\e523"}.fa-caret-square-right:before,.fa-square-caret-right:before{content:"\f152"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-sun-plant-wilt:before{content:"\e57a"}.fa-toilets-portable:before{content:"\e584"}.fa-hockey-puck:before{content:"\f453"}.fa-table:before{content:"\f0ce"}.fa-magnifying-glass-arrow-right:before{content:"\e521"}.fa-digital-tachograph:before,.fa-tachograph-digital:before{content:"\f566"}.fa-users-slash:before{content:"\e073"}.fa-clover:before{content:"\e139"}.fa-mail-reply:before,.fa-reply:before{content:"\f3e5"}.fa-star-and-crescent:before{content:"\f699"}.fa-house-fire:before{content:"\e50c"}.fa-minus-square:before,.fa-square-minus:before{content:"\f146"}.fa-helicopter:before{content:"\f533"}.fa-compass:before{content:"\f14e"}.fa-caret-square-down:before,.fa-square-caret-down:before{content:"\f150"}.fa-file-circle-question:before{content:"\e4ef"}.fa-laptop-code:before{content:"\f5fc"}.fa-swatchbook:before{content:"\f5c3"}.fa-prescription-bottle:before{content:"\f485"}.fa-bars:before,.fa-navicon:before{content:"\f0c9"}.fa-people-group:before{content:"\e533"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-heart-broken:before,.fa-heart-crack:before{content:"\f7a9"}.fa-external-link-square-alt:before,.fa-square-up-right:before{content:"\f360"}.fa-face-kiss-beam:before,.fa-kiss-beam:before{content:"\f597"}.fa-film:before{content:"\f008"}.fa-ruler-horizontal:before{content:"\f547"}.fa-people-robbery:before{content:"\e536"}.fa-lightbulb:before{content:"\f0eb"}.fa-caret-left:before{content:"\f0d9"}.fa-circle-exclamation:before,.fa-exclamation-circle:before{content:"\f06a"}.fa-school-circle-xmark:before{content:"\e56d"}.fa-arrow-right-from-bracket:before,.fa-sign-out:before{content:"\f08b"}.fa-chevron-circle-down:before,.fa-circle-chevron-down:before{content:"\f13a"}.fa-unlock-alt:before,.fa-unlock-keyhole:before{content:"\f13e"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-headphones-alt:before,.fa-headphones-simple:before{content:"\f58f"}.fa-sitemap:before{content:"\f0e8"}.fa-circle-dollar-to-slot:before,.fa-donate:before{content:"\f4b9"}.fa-memory:before{content:"\f538"}.fa-road-spikes:before{content:"\e568"}.fa-fire-burner:before{content:"\e4f1"}.fa-flag:before{content:"\f024"}.fa-hanukiah:before{content:"\f6e6"}.fa-feather:before{content:"\f52d"}.fa-volume-down:before,.fa-volume-low:before{content:"\f027"}.fa-comment-slash:before{content:"\f4b3"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-compress:before{content:"\f066"}.fa-wheat-alt:before,.fa-wheat-awn:before{content:"\e2cd"}.fa-ankh:before{content:"\f644"}.fa-hands-holding-child:before{content:"\e4fa"}.fa-asterisk:before{content:"\2a"}.fa-check-square:before,.fa-square-check:before{content:"\f14a"}.fa-peseta-sign:before{content:"\e221"}.fa-header:before,.fa-heading:before{content:"\f1dc"}.fa-ghost:before{content:"\f6e2"}.fa-list-squares:before,.fa-list:before{content:"\f03a"}.fa-phone-square-alt:before,.fa-square-phone-flip:before{content:"\f87b"}.fa-cart-plus:before{content:"\f217"}.fa-gamepad:before{content:"\f11b"}.fa-circle-dot:before,.fa-dot-circle:before{content:"\f192"}.fa-dizzy:before,.fa-face-dizzy:before{content:"\f567"}.fa-egg:before{content:"\f7fb"}.fa-house-medical-circle-xmark:before{content:"\e513"}.fa-campground:before{content:"\f6bb"}.fa-folder-plus:before{content:"\f65e"}.fa-futbol-ball:before,.fa-futbol:before,.fa-soccer-ball:before{content:"\f1e3"}.fa-paint-brush:before,.fa-paintbrush:before{content:"\f1fc"}.fa-lock:before{content:"\f023"}.fa-gas-pump:before{content:"\f52f"}.fa-hot-tub-person:before,.fa-hot-tub:before{content:"\f593"}.fa-map-location:before,.fa-map-marked:before{content:"\f59f"}.fa-house-flood-water:before{content:"\e50e"}.fa-tree:before{content:"\f1bb"}.fa-bridge-lock:before{content:"\e4cc"}.fa-sack-dollar:before{content:"\f81d"}.fa-edit:before,.fa-pen-to-square:before{content:"\f044"}.fa-car-side:before{content:"\f5e4"}.fa-share-alt:before,.fa-share-nodes:before{content:"\f1e0"}.fa-heart-circle-minus:before{content:"\e4ff"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-microscope:before{content:"\f610"}.fa-sink:before{content:"\e06d"}.fa-bag-shopping:before,.fa-shopping-bag:before{content:"\f290"}.fa-arrow-down-z-a:before,.fa-sort-alpha-desc:before,.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-mitten:before{content:"\f7b5"}.fa-person-rays:before{content:"\e54d"}.fa-users:before{content:"\f0c0"}.fa-eye-slash:before{content:"\f070"}.fa-flask-vial:before{content:"\e4f3"}.fa-hand-paper:before,.fa-hand:before{content:"\f256"}.fa-om:before{content:"\f679"}.fa-worm:before{content:"\e599"}.fa-house-circle-xmark:before{content:"\e50b"}.fa-plug:before{content:"\f1e6"}.fa-chevron-up:before{content:"\f077"}.fa-hand-spock:before{content:"\f259"}.fa-stopwatch:before{content:"\f2f2"}.fa-face-kiss:before,.fa-kiss:before{content:"\f596"}.fa-bridge-circle-xmark:before{content:"\e4cb"}.fa-face-grin-tongue:before,.fa-grin-tongue:before{content:"\f589"}.fa-chess-bishop:before{content:"\f43a"}.fa-face-grin-wink:before,.fa-grin-wink:before{content:"\f58c"}.fa-deaf:before,.fa-deafness:before,.fa-ear-deaf:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-road-circle-check:before{content:"\e564"}.fa-dice-five:before{content:"\f523"}.fa-rss-square:before,.fa-square-rss:before{content:"\f143"}.fa-land-mine-on:before{content:"\e51b"}.fa-i-cursor:before{content:"\f246"}.fa-stamp:before{content:"\f5bf"}.fa-stairs:before{content:"\e289"}.fa-i:before{content:"\49"}.fa-hryvnia-sign:before,.fa-hryvnia:before{content:"\f6f2"}.fa-pills:before{content:"\f484"}.fa-face-grin-wide:before,.fa-grin-alt:before{content:"\f581"}.fa-tooth:before{content:"\f5c9"}.fa-v:before{content:"\56"}.fa-bangladeshi-taka-sign:before{content:"\e2e6"}.fa-bicycle:before{content:"\f206"}.fa-rod-asclepius:before,.fa-rod-snake:before,.fa-staff-aesculapius:before,.fa-staff-snake:before{content:"\e579"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-ambulance:before,.fa-truck-medical:before{content:"\f0f9"}.fa-wheat-awn-circle-exclamation:before{content:"\e598"}.fa-snowman:before{content:"\f7d0"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-road-barrier:before{content:"\e562"}.fa-school:before{content:"\f549"}.fa-igloo:before{content:"\f7ae"}.fa-joint:before{content:"\f595"}.fa-angle-right:before{content:"\f105"}.fa-horse:before{content:"\f6f0"}.fa-q:before{content:"\51"}.fa-g:before{content:"\47"}.fa-notes-medical:before{content:"\f481"}.fa-temperature-2:before,.fa-temperature-half:before,.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-dong-sign:before{content:"\e169"}.fa-capsules:before{content:"\f46b"}.fa-poo-bolt:before,.fa-poo-storm:before{content:"\f75a"}.fa-face-frown-open:before,.fa-frown-open:before{content:"\f57a"}.fa-hand-point-up:before{content:"\f0a6"}.fa-money-bill:before{content:"\f0d6"}.fa-bookmark:before{content:"\f02e"}.fa-align-justify:before{content:"\f039"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-helmet-un:before{content:"\e503"}.fa-bullseye:before{content:"\f140"}.fa-bacon:before{content:"\f7e5"}.fa-hand-point-down:before{content:"\f0a7"}.fa-arrow-up-from-bracket:before{content:"\e09a"}.fa-folder-blank:before,.fa-folder:before{content:"\f07b"}.fa-file-medical-alt:before,.fa-file-waveform:before{content:"\f478"}.fa-radiation:before{content:"\f7b9"}.fa-chart-simple:before{content:"\e473"}.fa-mars-stroke:before{content:"\f229"}.fa-vial:before{content:"\f492"}.fa-dashboard:before,.fa-gauge-med:before,.fa-gauge:before,.fa-tachometer-alt-average:before{content:"\f624"}.fa-magic-wand-sparkles:before,.fa-wand-magic-sparkles:before{content:"\e2ca"}.fa-e:before{content:"\45"}.fa-pen-alt:before,.fa-pen-clip:before{content:"\f305"}.fa-bridge-circle-exclamation:before{content:"\e4ca"}.fa-user:before{content:"\f007"}.fa-school-circle-check:before{content:"\e56b"}.fa-dumpster:before{content:"\f793"}.fa-shuttle-van:before,.fa-van-shuttle:before{content:"\f5b6"}.fa-building-user:before{content:"\e4da"}.fa-caret-square-left:before,.fa-square-caret-left:before{content:"\f191"}.fa-highlighter:before{content:"\f591"}.fa-key:before{content:"\f084"}.fa-bullhorn:before{content:"\f0a1"}.fa-globe:before{content:"\f0ac"}.fa-synagogue:before{content:"\f69b"}.fa-person-half-dress:before{content:"\e548"}.fa-road-bridge:before{content:"\e563"}.fa-location-arrow:before{content:"\f124"}.fa-c:before{content:"\43"}.fa-tablet-button:before{content:"\f10a"}.fa-building-lock:before{content:"\e4d6"}.fa-pizza-slice:before{content:"\f818"}.fa-money-bill-wave:before{content:"\f53a"}.fa-area-chart:before,.fa-chart-area:before{content:"\f1fe"}.fa-house-flag:before{content:"\e50d"}.fa-person-circle-minus:before{content:"\e540"}.fa-ban:before,.fa-cancel:before{content:"\f05e"}.fa-camera-rotate:before{content:"\e0d8"}.fa-air-freshener:before,.fa-spray-can-sparkles:before{content:"\f5d0"}.fa-star:before{content:"\f005"}.fa-repeat:before{content:"\f363"}.fa-cross:before{content:"\f654"}.fa-box:before{content:"\f466"}.fa-venus-mars:before{content:"\f228"}.fa-arrow-pointer:before,.fa-mouse-pointer:before{content:"\f245"}.fa-expand-arrows-alt:before,.fa-maximize:before{content:"\f31e"}.fa-charging-station:before{content:"\f5e7"}.fa-shapes:before,.fa-triangle-circle-square:before{content:"\f61f"}.fa-random:before,.fa-shuffle:before{content:"\f074"}.fa-person-running:before,.fa-running:before{content:"\f70c"}.fa-mobile-retro:before{content:"\e527"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-spider:before{content:"\f717"}.fa-hands-bound:before{content:"\e4f9"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-plane-circle-exclamation:before{content:"\e556"}.fa-x-ray:before{content:"\f497"}.fa-spell-check:before{content:"\f891"}.fa-slash:before{content:"\f715"}.fa-computer-mouse:before,.fa-mouse:before{content:"\f8cc"}.fa-arrow-right-to-bracket:before,.fa-sign-in:before{content:"\f090"}.fa-shop-slash:before,.fa-store-alt-slash:before{content:"\e070"}.fa-server:before{content:"\f233"}.fa-virus-covid-slash:before{content:"\e4a9"}.fa-shop-lock:before{content:"\e4a5"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-blender-phone:before{content:"\f6b6"}.fa-building-wheat:before{content:"\e4db"}.fa-person-breastfeeding:before{content:"\e53a"}.fa-right-to-bracket:before,.fa-sign-in-alt:before{content:"\f2f6"}.fa-venus:before{content:"\f221"}.fa-passport:before{content:"\f5ab"}.fa-heart-pulse:before,.fa-heartbeat:before{content:"\f21e"}.fa-people-carry-box:before,.fa-people-carry:before{content:"\f4ce"}.fa-temperature-high:before{content:"\f769"}.fa-microchip:before{content:"\f2db"}.fa-crown:before{content:"\f521"}.fa-weight-hanging:before{content:"\f5cd"}.fa-xmarks-lines:before{content:"\e59a"}.fa-file-prescription:before{content:"\f572"}.fa-weight-scale:before,.fa-weight:before{content:"\f496"}.fa-user-friends:before,.fa-user-group:before{content:"\f500"}.fa-arrow-up-a-z:before,.fa-sort-alpha-up:before{content:"\f15e"}.fa-chess-knight:before{content:"\f441"}.fa-face-laugh-squint:before,.fa-laugh-squint:before{content:"\f59b"}.fa-wheelchair:before{content:"\f193"}.fa-arrow-circle-up:before,.fa-circle-arrow-up:before{content:"\f0aa"}.fa-toggle-on:before{content:"\f205"}.fa-person-walking:before,.fa-walking:before{content:"\f554"}.fa-l:before{content:"\4c"}.fa-fire:before{content:"\f06d"}.fa-bed-pulse:before,.fa-procedures:before{content:"\f487"}.fa-shuttle-space:before,.fa-space-shuttle:before{content:"\f197"}.fa-face-laugh:before,.fa-laugh:before{content:"\f599"}.fa-folder-open:before{content:"\f07c"}.fa-heart-circle-plus:before{content:"\e500"}.fa-code-fork:before{content:"\e13b"}.fa-city:before{content:"\f64f"}.fa-microphone-alt:before,.fa-microphone-lines:before{content:"\f3c9"}.fa-pepper-hot:before{content:"\f816"}.fa-unlock:before{content:"\f09c"}.fa-colon-sign:before{content:"\e140"}.fa-headset:before{content:"\f590"}.fa-store-slash:before{content:"\e071"}.fa-road-circle-xmark:before{content:"\e566"}.fa-user-minus:before{content:"\f503"}.fa-mars-stroke-up:before,.fa-mars-stroke-v:before{content:"\f22a"}.fa-champagne-glasses:before,.fa-glass-cheers:before{content:"\f79f"}.fa-clipboard:before{content:"\f328"}.fa-house-circle-exclamation:before{content:"\e50a"}.fa-file-arrow-up:before,.fa-file-upload:before{content:"\f574"}.fa-wifi-3:before,.fa-wifi-strong:before,.fa-wifi:before{content:"\f1eb"}.fa-bath:before,.fa-bathtub:before{content:"\f2cd"}.fa-underline:before{content:"\f0cd"}.fa-user-edit:before,.fa-user-pen:before{content:"\f4ff"}.fa-signature:before{content:"\f5b7"}.fa-stroopwafel:before{content:"\f551"}.fa-bold:before{content:"\f032"}.fa-anchor-lock:before{content:"\e4ad"}.fa-building-ngo:before{content:"\e4d7"}.fa-manat-sign:before{content:"\e1d5"}.fa-not-equal:before{content:"\f53e"}.fa-border-style:before,.fa-border-top-left:before{content:"\f853"}.fa-map-location-dot:before,.fa-map-marked-alt:before{content:"\f5a0"}.fa-jedi:before{content:"\f669"}.fa-poll:before,.fa-square-poll-vertical:before{content:"\f681"}.fa-mug-hot:before{content:"\f7b6"}.fa-battery-car:before,.fa-car-battery:before{content:"\f5df"}.fa-gift:before{content:"\f06b"}.fa-dice-two:before{content:"\f528"}.fa-chess-queen:before{content:"\f445"}.fa-glasses:before{content:"\f530"}.fa-chess-board:before{content:"\f43c"}.fa-building-circle-check:before{content:"\e4d2"}.fa-person-chalkboard:before{content:"\e53d"}.fa-mars-stroke-h:before,.fa-mars-stroke-right:before{content:"\f22b"}.fa-hand-back-fist:before,.fa-hand-rock:before{content:"\f255"}.fa-caret-square-up:before,.fa-square-caret-up:before{content:"\f151"}.fa-cloud-showers-water:before{content:"\e4e4"}.fa-bar-chart:before,.fa-chart-bar:before{content:"\f080"}.fa-hands-bubbles:before,.fa-hands-wash:before{content:"\e05e"}.fa-less-than-equal:before{content:"\f537"}.fa-train:before{content:"\f238"}.fa-eye-low-vision:before,.fa-low-vision:before{content:"\f2a8"}.fa-crow:before{content:"\f520"}.fa-sailboat:before{content:"\e445"}.fa-window-restore:before{content:"\f2d2"}.fa-plus-square:before,.fa-square-plus:before{content:"\f0fe"}.fa-torii-gate:before{content:"\f6a1"}.fa-frog:before{content:"\f52e"}.fa-bucket:before{content:"\e4cf"}.fa-image:before{content:"\f03e"}.fa-microphone:before{content:"\f130"}.fa-cow:before{content:"\f6c8"}.fa-caret-up:before{content:"\f0d8"}.fa-screwdriver:before{content:"\f54a"}.fa-folder-closed:before{content:"\e185"}.fa-house-tsunami:before{content:"\e515"}.fa-square-nfi:before{content:"\e576"}.fa-arrow-up-from-ground-water:before{content:"\e4b5"}.fa-glass-martini-alt:before,.fa-martini-glass:before{content:"\f57b"}.fa-rotate-back:before,.fa-rotate-backward:before,.fa-rotate-left:before,.fa-undo-alt:before{content:"\f2ea"}.fa-columns:before,.fa-table-columns:before{content:"\f0db"}.fa-lemon:before{content:"\f094"}.fa-head-side-mask:before{content:"\e063"}.fa-handshake:before{content:"\f2b5"}.fa-gem:before{content:"\f3a5"}.fa-dolly-box:before,.fa-dolly:before{content:"\f472"}.fa-smoking:before{content:"\f48d"}.fa-compress-arrows-alt:before,.fa-minimize:before{content:"\f78c"}.fa-monument:before{content:"\f5a6"}.fa-snowplow:before{content:"\f7d2"}.fa-angle-double-right:before,.fa-angles-right:before{content:"\f101"}.fa-cannabis:before{content:"\f55f"}.fa-circle-play:before,.fa-play-circle:before{content:"\f144"}.fa-tablets:before{content:"\f490"}.fa-ethernet:before{content:"\f796"}.fa-eur:before,.fa-euro-sign:before,.fa-euro:before{content:"\f153"}.fa-chair:before{content:"\f6c0"}.fa-check-circle:before,.fa-circle-check:before{content:"\f058"}.fa-circle-stop:before,.fa-stop-circle:before{content:"\f28d"}.fa-compass-drafting:before,.fa-drafting-compass:before{content:"\f568"}.fa-plate-wheat:before{content:"\e55a"}.fa-icicles:before{content:"\f7ad"}.fa-person-shelter:before{content:"\e54f"}.fa-neuter:before{content:"\f22c"}.fa-id-badge:before{content:"\f2c1"}.fa-marker:before{content:"\f5a1"}.fa-face-laugh-beam:before,.fa-laugh-beam:before{content:"\f59a"}.fa-helicopter-symbol:before{content:"\e502"}.fa-universal-access:before{content:"\f29a"}.fa-chevron-circle-up:before,.fa-circle-chevron-up:before{content:"\f139"}.fa-lari-sign:before{content:"\e1c8"}.fa-volcano:before{content:"\f770"}.fa-person-walking-dashed-line-arrow-right:before{content:"\e553"}.fa-gbp:before,.fa-pound-sign:before,.fa-sterling-sign:before{content:"\f154"}.fa-viruses:before{content:"\e076"}.fa-square-person-confined:before{content:"\e577"}.fa-user-tie:before{content:"\f508"}.fa-arrow-down-long:before,.fa-long-arrow-down:before{content:"\f175"}.fa-tent-arrow-down-to-line:before{content:"\e57e"}.fa-certificate:before{content:"\f0a3"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-suitcase:before{content:"\f0f2"}.fa-person-skating:before,.fa-skating:before{content:"\f7c5"}.fa-filter-circle-dollar:before,.fa-funnel-dollar:before{content:"\f662"}.fa-camera-retro:before{content:"\f083"}.fa-arrow-circle-down:before,.fa-circle-arrow-down:before{content:"\f0ab"}.fa-arrow-right-to-file:before,.fa-file-import:before{content:"\f56f"}.fa-external-link-square:before,.fa-square-arrow-up-right:before{content:"\f14c"}.fa-box-open:before{content:"\f49e"}.fa-scroll:before{content:"\f70e"}.fa-spa:before{content:"\f5bb"}.fa-location-pin-lock:before{content:"\e51f"}.fa-pause:before{content:"\f04c"}.fa-hill-avalanche:before{content:"\e507"}.fa-temperature-0:before,.fa-temperature-empty:before,.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-bomb:before{content:"\f1e2"}.fa-registered:before{content:"\f25d"}.fa-address-card:before,.fa-contact-card:before,.fa-vcard:before{content:"\f2bb"}.fa-balance-scale-right:before,.fa-scale-unbalanced-flip:before{content:"\f516"}.fa-subscript:before{content:"\f12c"}.fa-diamond-turn-right:before,.fa-directions:before{content:"\f5eb"}.fa-burst:before{content:"\e4dc"}.fa-house-laptop:before,.fa-laptop-house:before{content:"\e066"}.fa-face-tired:before,.fa-tired:before{content:"\f5c8"}.fa-money-bills:before{content:"\e1f3"}.fa-smog:before{content:"\f75f"}.fa-crutch:before{content:"\f7f7"}.fa-cloud-arrow-up:before,.fa-cloud-upload-alt:before,.fa-cloud-upload:before{content:"\f0ee"}.fa-palette:before{content:"\f53f"}.fa-arrows-turn-right:before{content:"\e4c0"}.fa-vest:before{content:"\e085"}.fa-ferry:before{content:"\e4ea"}.fa-arrows-down-to-people:before{content:"\e4b9"}.fa-seedling:before,.fa-sprout:before{content:"\f4d8"}.fa-arrows-alt-h:before,.fa-left-right:before{content:"\f337"}.fa-boxes-packing:before{content:"\e4c7"}.fa-arrow-circle-left:before,.fa-circle-arrow-left:before{content:"\f0a8"}.fa-group-arrows-rotate:before{content:"\e4f6"}.fa-bowl-food:before{content:"\e4c6"}.fa-candy-cane:before{content:"\f786"}.fa-arrow-down-wide-short:before,.fa-sort-amount-asc:before,.fa-sort-amount-down:before{content:"\f160"}.fa-cloud-bolt:before,.fa-thunderstorm:before{content:"\f76c"}.fa-remove-format:before,.fa-text-slash:before{content:"\f87d"}.fa-face-smile-wink:before,.fa-smile-wink:before{content:"\f4da"}.fa-file-word:before{content:"\f1c2"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-arrows-h:before,.fa-arrows-left-right:before{content:"\f07e"}.fa-house-lock:before{content:"\e510"}.fa-cloud-arrow-down:before,.fa-cloud-download-alt:before,.fa-cloud-download:before{content:"\f0ed"}.fa-children:before{content:"\e4e1"}.fa-blackboard:before,.fa-chalkboard:before{content:"\f51b"}.fa-user-alt-slash:before,.fa-user-large-slash:before{content:"\f4fa"}.fa-envelope-open:before{content:"\f2b6"}.fa-handshake-alt-slash:before,.fa-handshake-simple-slash:before{content:"\e05f"}.fa-mattress-pillow:before{content:"\e525"}.fa-guarani-sign:before{content:"\e19a"}.fa-arrows-rotate:before,.fa-refresh:before,.fa-sync:before{content:"\f021"}.fa-fire-extinguisher:before{content:"\f134"}.fa-cruzeiro-sign:before{content:"\e152"}.fa-greater-than-equal:before{content:"\f532"}.fa-shield-alt:before,.fa-shield-halved:before{content:"\f3ed"}.fa-atlas:before,.fa-book-atlas:before{content:"\f558"}.fa-virus:before{content:"\e074"}.fa-envelope-circle-check:before{content:"\e4e8"}.fa-layer-group:before{content:"\f5fd"}.fa-arrows-to-dot:before{content:"\e4be"}.fa-archway:before{content:"\f557"}.fa-heart-circle-check:before{content:"\e4fd"}.fa-house-chimney-crack:before,.fa-house-damage:before{content:"\f6f1"}.fa-file-archive:before,.fa-file-zipper:before{content:"\f1c6"}.fa-square:before{content:"\f0c8"}.fa-glass-martini:before,.fa-martini-glass-empty:before{content:"\f000"}.fa-couch:before{content:"\f4b8"}.fa-cedi-sign:before{content:"\e0df"}.fa-italic:before{content:"\f033"}.fa-church:before{content:"\f51d"}.fa-comments-dollar:before{content:"\f653"}.fa-democrat:before{content:"\f747"}.fa-z:before{content:"\5a"}.fa-person-skiing:before,.fa-skiing:before{content:"\f7c9"}.fa-road-lock:before{content:"\e567"}.fa-a:before{content:"\41"}.fa-temperature-arrow-down:before,.fa-temperature-down:before{content:"\e03f"}.fa-feather-alt:before,.fa-feather-pointed:before{content:"\f56b"}.fa-p:before{content:"\50"}.fa-snowflake:before{content:"\f2dc"}.fa-newspaper:before{content:"\f1ea"}.fa-ad:before,.fa-rectangle-ad:before{content:"\f641"}.fa-arrow-circle-right:before,.fa-circle-arrow-right:before{content:"\f0a9"}.fa-filter-circle-xmark:before{content:"\e17b"}.fa-locust:before{content:"\e520"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-list-1-2:before,.fa-list-numeric:before,.fa-list-ol:before{content:"\f0cb"}.fa-person-dress-burst:before{content:"\e544"}.fa-money-check-alt:before,.fa-money-check-dollar:before{content:"\f53d"}.fa-vector-square:before{content:"\f5cb"}.fa-bread-slice:before{content:"\f7ec"}.fa-language:before{content:"\f1ab"}.fa-face-kiss-wink-heart:before,.fa-kiss-wink-heart:before{content:"\f598"}.fa-filter:before{content:"\f0b0"}.fa-question:before{content:"\3f"}.fa-file-signature:before{content:"\f573"}.fa-arrows-alt:before,.fa-up-down-left-right:before{content:"\f0b2"}.fa-house-chimney-user:before{content:"\e065"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-puzzle-piece:before{content:"\f12e"}.fa-money-check:before{content:"\f53c"}.fa-star-half-alt:before,.fa-star-half-stroke:before{content:"\f5c0"}.fa-code:before{content:"\f121"}.fa-glass-whiskey:before,.fa-whiskey-glass:before{content:"\f7a0"}.fa-building-circle-exclamation:before{content:"\e4d3"}.fa-magnifying-glass-chart:before{content:"\e522"}.fa-arrow-up-right-from-square:before,.fa-external-link:before{content:"\f08e"}.fa-cubes-stacked:before{content:"\e4e6"}.fa-krw:before,.fa-won-sign:before,.fa-won:before{content:"\f159"}.fa-virus-covid:before{content:"\e4a8"}.fa-austral-sign:before{content:"\e0a9"}.fa-f:before{content:"\46"}.fa-leaf:before{content:"\f06c"}.fa-road:before{content:"\f018"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-person-circle-plus:before{content:"\e541"}.fa-chart-pie:before,.fa-pie-chart:before{content:"\f200"}.fa-bolt-lightning:before{content:"\e0b7"}.fa-sack-xmark:before{content:"\e56a"}.fa-file-excel:before{content:"\f1c3"}.fa-file-contract:before{content:"\f56c"}.fa-fish-fins:before{content:"\e4f2"}.fa-building-flag:before{content:"\e4d5"}.fa-face-grin-beam:before,.fa-grin-beam:before{content:"\f582"}.fa-object-ungroup:before{content:"\f248"}.fa-poop:before{content:"\f619"}.fa-location-pin:before,.fa-map-marker:before{content:"\f041"}.fa-kaaba:before{content:"\f66b"}.fa-toilet-paper:before{content:"\f71e"}.fa-hard-hat:before,.fa-hat-hard:before,.fa-helmet-safety:before{content:"\f807"}.fa-eject:before{content:"\f052"}.fa-arrow-alt-circle-right:before,.fa-circle-right:before{content:"\f35a"}.fa-plane-circle-check:before{content:"\e555"}.fa-face-rolling-eyes:before,.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-object-group:before{content:"\f247"}.fa-chart-line:before,.fa-line-chart:before{content:"\f201"}.fa-mask-ventilator:before{content:"\e524"}.fa-arrow-right:before{content:"\f061"}.fa-map-signs:before,.fa-signs-post:before{content:"\f277"}.fa-cash-register:before{content:"\f788"}.fa-person-circle-question:before{content:"\e542"}.fa-h:before{content:"\48"}.fa-tarp:before{content:"\e57b"}.fa-screwdriver-wrench:before,.fa-tools:before{content:"\f7d9"}.fa-arrows-to-eye:before{content:"\e4bf"}.fa-plug-circle-bolt:before{content:"\e55b"}.fa-heart:before{content:"\f004"}.fa-mars-and-venus:before{content:"\f224"}.fa-home-user:before,.fa-house-user:before{content:"\e1b0"}.fa-dumpster-fire:before{content:"\f794"}.fa-house-crack:before{content:"\e3b1"}.fa-cocktail:before,.fa-martini-glass-citrus:before{content:"\f561"}.fa-face-surprise:before,.fa-surprise:before{content:"\f5c2"}.fa-bottle-water:before{content:"\e4c5"}.fa-circle-pause:before,.fa-pause-circle:before{content:"\f28b"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-apple-alt:before,.fa-apple-whole:before{content:"\f5d1"}.fa-kitchen-set:before{content:"\e51a"}.fa-r:before{content:"\52"}.fa-temperature-1:before,.fa-temperature-quarter:before,.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-cube:before{content:"\f1b2"}.fa-bitcoin-sign:before{content:"\e0b4"}.fa-shield-dog:before{content:"\e573"}.fa-solar-panel:before{content:"\f5ba"}.fa-lock-open:before{content:"\f3c1"}.fa-elevator:before{content:"\e16d"}.fa-money-bill-transfer:before{content:"\e528"}.fa-money-bill-trend-up:before{content:"\e529"}.fa-house-flood-water-circle-arrow-right:before{content:"\e50f"}.fa-poll-h:before,.fa-square-poll-horizontal:before{content:"\f682"}.fa-circle:before{content:"\f111"}.fa-backward-fast:before,.fa-fast-backward:before{content:"\f049"}.fa-recycle:before{content:"\f1b8"}.fa-user-astronaut:before{content:"\f4fb"}.fa-plane-slash:before{content:"\e069"}.fa-trademark:before{content:"\f25c"}.fa-basketball-ball:before,.fa-basketball:before{content:"\f434"}.fa-satellite-dish:before{content:"\f7c0"}.fa-arrow-alt-circle-up:before,.fa-circle-up:before{content:"\f35b"}.fa-mobile-alt:before,.fa-mobile-screen-button:before{content:"\f3cd"}.fa-volume-high:before,.fa-volume-up:before{content:"\f028"}.fa-users-rays:before{content:"\e593"}.fa-wallet:before{content:"\f555"}.fa-clipboard-check:before{content:"\f46c"}.fa-file-audio:before{content:"\f1c7"}.fa-burger:before,.fa-hamburger:before{content:"\f805"}.fa-wrench:before{content:"\f0ad"}.fa-bugs:before{content:"\e4d0"}.fa-rupee-sign:before,.fa-rupee:before{content:"\f156"}.fa-file-image:before{content:"\f1c5"}.fa-circle-question:before,.fa-question-circle:before{content:"\f059"}.fa-plane-departure:before{content:"\f5b0"}.fa-handshake-slash:before{content:"\e060"}.fa-book-bookmark:before{content:"\e0bb"}.fa-code-branch:before{content:"\f126"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-bridge:before{content:"\e4c8"}.fa-phone-alt:before,.fa-phone-flip:before{content:"\f879"}.fa-truck-front:before{content:"\e2b7"}.fa-cat:before{content:"\f6be"}.fa-anchor-circle-exclamation:before{content:"\e4ab"}.fa-truck-field:before{content:"\e58d"}.fa-route:before{content:"\f4d7"}.fa-clipboard-question:before{content:"\e4e3"}.fa-panorama:before{content:"\e209"}.fa-comment-medical:before{content:"\f7f5"}.fa-teeth-open:before{content:"\f62f"}.fa-file-circle-minus:before{content:"\e4ed"}.fa-tags:before{content:"\f02c"}.fa-wine-glass:before{content:"\f4e3"}.fa-fast-forward:before,.fa-forward-fast:before{content:"\f050"}.fa-face-meh-blank:before,.fa-meh-blank:before{content:"\f5a4"}.fa-parking:before,.fa-square-parking:before{content:"\f540"}.fa-house-signal:before{content:"\e012"}.fa-bars-progress:before,.fa-tasks-alt:before{content:"\f828"}.fa-faucet-drip:before{content:"\e006"}.fa-cart-flatbed:before,.fa-dolly-flatbed:before{content:"\f474"}.fa-ban-smoking:before,.fa-smoking-ban:before{content:"\f54d"}.fa-terminal:before{content:"\f120"}.fa-mobile-button:before{content:"\f10b"}.fa-house-medical-flag:before{content:"\e514"}.fa-basket-shopping:before,.fa-shopping-basket:before{content:"\f291"}.fa-tape:before{content:"\f4db"}.fa-bus-alt:before,.fa-bus-simple:before{content:"\f55e"}.fa-eye:before{content:"\f06e"}.fa-face-sad-cry:before,.fa-sad-cry:before{content:"\f5b3"}.fa-audio-description:before{content:"\f29e"}.fa-person-military-to-person:before{content:"\e54c"}.fa-file-shield:before{content:"\e4f0"}.fa-user-slash:before{content:"\f506"}.fa-pen:before{content:"\f304"}.fa-tower-observation:before{content:"\e586"}.fa-file-code:before{content:"\f1c9"}.fa-signal-5:before,.fa-signal-perfect:before,.fa-signal:before{content:"\f012"}.fa-bus:before{content:"\f207"}.fa-heart-circle-xmark:before{content:"\e501"}.fa-home-lg:before,.fa-house-chimney:before{content:"\e3af"}.fa-window-maximize:before{content:"\f2d0"}.fa-face-frown:before,.fa-frown:before{content:"\f119"}.fa-prescription:before{content:"\f5b1"}.fa-shop:before,.fa-store-alt:before{content:"\f54f"}.fa-floppy-disk:before,.fa-save:before{content:"\f0c7"}.fa-vihara:before{content:"\f6a7"}.fa-balance-scale-left:before,.fa-scale-unbalanced:before{content:"\f515"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-comment-dots:before,.fa-commenting:before{content:"\f4ad"}.fa-plant-wilt:before{content:"\e5aa"}.fa-diamond:before{content:"\f219"}.fa-face-grin-squint:before,.fa-grin-squint:before{content:"\f585"}.fa-hand-holding-dollar:before,.fa-hand-holding-usd:before{content:"\f4c0"}.fa-bacterium:before{content:"\e05a"}.fa-hand-pointer:before{content:"\f25a"}.fa-drum-steelpan:before{content:"\f56a"}.fa-hand-scissors:before{content:"\f257"}.fa-hands-praying:before,.fa-praying-hands:before{content:"\f684"}.fa-arrow-right-rotate:before,.fa-arrow-rotate-forward:before,.fa-arrow-rotate-right:before,.fa-redo:before{content:"\f01e"}.fa-biohazard:before{content:"\f780"}.fa-location-crosshairs:before,.fa-location:before{content:"\f601"}.fa-mars-double:before{content:"\f227"}.fa-child-dress:before{content:"\e59c"}.fa-users-between-lines:before{content:"\e591"}.fa-lungs-virus:before{content:"\e067"}.fa-face-grin-tears:before,.fa-grin-tears:before{content:"\f588"}.fa-phone:before{content:"\f095"}.fa-calendar-times:before,.fa-calendar-xmark:before{content:"\f273"}.fa-child-reaching:before{content:"\e59d"}.fa-head-side-virus:before{content:"\e064"}.fa-user-cog:before,.fa-user-gear:before{content:"\f4fe"}.fa-arrow-up-1-9:before,.fa-sort-numeric-up:before{content:"\f163"}.fa-door-closed:before{content:"\f52a"}.fa-shield-virus:before{content:"\e06c"}.fa-dice-six:before{content:"\f526"}.fa-mosquito-net:before{content:"\e52c"}.fa-bridge-water:before{content:"\e4ce"}.fa-person-booth:before{content:"\f756"}.fa-text-width:before{content:"\f035"}.fa-hat-wizard:before{content:"\f6e8"}.fa-pen-fancy:before{content:"\f5ac"}.fa-digging:before,.fa-person-digging:before{content:"\f85e"}.fa-trash:before{content:"\f1f8"}.fa-gauge-simple-med:before,.fa-gauge-simple:before,.fa-tachometer-average:before{content:"\f629"}.fa-book-medical:before{content:"\f7e6"}.fa-poo:before{content:"\f2fe"}.fa-quote-right-alt:before,.fa-quote-right:before{content:"\f10e"}.fa-shirt:before,.fa-t-shirt:before,.fa-tshirt:before{content:"\f553"}.fa-cubes:before{content:"\f1b3"}.fa-divide:before{content:"\f529"}.fa-tenge-sign:before,.fa-tenge:before{content:"\f7d7"}.fa-headphones:before{content:"\f025"}.fa-hands-holding:before{content:"\f4c2"}.fa-hands-clapping:before{content:"\e1a8"}.fa-republican:before{content:"\f75e"}.fa-arrow-left:before{content:"\f060"}.fa-person-circle-xmark:before{content:"\e543"}.fa-ruler:before{content:"\f545"}.fa-align-left:before{content:"\f036"}.fa-dice-d6:before{content:"\f6d1"}.fa-restroom:before{content:"\f7bd"}.fa-j:before{content:"\4a"}.fa-users-viewfinder:before{content:"\e595"}.fa-file-video:before{content:"\f1c8"}.fa-external-link-alt:before,.fa-up-right-from-square:before{content:"\f35d"}.fa-table-cells:before,.fa-th:before{content:"\f00a"}.fa-file-pdf:before{content:"\f1c1"}.fa-bible:before,.fa-book-bible:before{content:"\f647"}.fa-o:before{content:"\4f"}.fa-medkit:before,.fa-suitcase-medical:before{content:"\f0fa"}.fa-user-secret:before{content:"\f21b"}.fa-otter:before{content:"\f700"}.fa-female:before,.fa-person-dress:before{content:"\f182"}.fa-comment-dollar:before{content:"\f651"}.fa-briefcase-clock:before,.fa-business-time:before{content:"\f64a"}.fa-table-cells-large:before,.fa-th-large:before{content:"\f009"}.fa-book-tanakh:before,.fa-tanakh:before{content:"\f827"}.fa-phone-volume:before,.fa-volume-control-phone:before{content:"\f2a0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-clipboard-user:before{content:"\f7f3"}.fa-child:before{content:"\f1ae"}.fa-lira-sign:before{content:"\f195"}.fa-satellite:before{content:"\f7bf"}.fa-plane-lock:before{content:"\e558"}.fa-tag:before{content:"\f02b"}.fa-comment:before{content:"\f075"}.fa-birthday-cake:before,.fa-cake-candles:before,.fa-cake:before{content:"\f1fd"}.fa-envelope:before{content:"\f0e0"}.fa-angle-double-up:before,.fa-angles-up:before{content:"\f102"}.fa-paperclip:before{content:"\f0c6"}.fa-arrow-right-to-city:before{content:"\e4b3"}.fa-ribbon:before{content:"\f4d6"}.fa-lungs:before{content:"\f604"}.fa-arrow-up-9-1:before,.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-litecoin-sign:before{content:"\e1d3"}.fa-border-none:before{content:"\f850"}.fa-circle-nodes:before{content:"\e4e2"}.fa-parachute-box:before{content:"\f4cd"}.fa-indent:before{content:"\f03c"}.fa-truck-field-un:before{content:"\e58e"}.fa-hourglass-empty:before,.fa-hourglass:before{content:"\f254"}.fa-mountain:before{content:"\f6fc"}.fa-user-doctor:before,.fa-user-md:before{content:"\f0f0"}.fa-circle-info:before,.fa-info-circle:before{content:"\f05a"}.fa-cloud-meatball:before{content:"\f73b"}.fa-camera-alt:before,.fa-camera:before{content:"\f030"}.fa-square-virus:before{content:"\e578"}.fa-meteor:before{content:"\f753"}.fa-car-on:before{content:"\e4dd"}.fa-sleigh:before{content:"\f7cc"}.fa-arrow-down-1-9:before,.fa-sort-numeric-asc:before,.fa-sort-numeric-down:before{content:"\f162"}.fa-hand-holding-droplet:before,.fa-hand-holding-water:before{content:"\f4c1"}.fa-water:before{content:"\f773"}.fa-calendar-check:before{content:"\f274"}.fa-braille:before{content:"\f2a1"}.fa-prescription-bottle-alt:before,.fa-prescription-bottle-medical:before{content:"\f486"}.fa-landmark:before{content:"\f66f"}.fa-truck:before{content:"\f0d1"}.fa-crosshairs:before{content:"\f05b"}.fa-person-cane:before{content:"\e53c"}.fa-tent:before{content:"\e57d"}.fa-vest-patches:before{content:"\e086"}.fa-check-double:before{content:"\f560"}.fa-arrow-down-a-z:before,.fa-sort-alpha-asc:before,.fa-sort-alpha-down:before{content:"\f15d"}.fa-money-bill-wheat:before{content:"\e52a"}.fa-cookie:before{content:"\f563"}.fa-arrow-left-rotate:before,.fa-arrow-rotate-back:before,.fa-arrow-rotate-backward:before,.fa-arrow-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-hard-drive:before,.fa-hdd:before{content:"\f0a0"}.fa-face-grin-squint-tears:before,.fa-grin-squint-tears:before{content:"\f586"}.fa-dumbbell:before{content:"\f44b"}.fa-list-alt:before,.fa-rectangle-list:before{content:"\f022"}.fa-tarp-droplet:before{content:"\e57c"}.fa-house-medical-circle-check:before{content:"\e511"}.fa-person-skiing-nordic:before,.fa-skiing-nordic:before{content:"\f7ca"}.fa-calendar-plus:before{content:"\f271"}.fa-plane-arrival:before{content:"\f5af"}.fa-arrow-alt-circle-left:before,.fa-circle-left:before{content:"\f359"}.fa-subway:before,.fa-train-subway:before{content:"\f239"}.fa-chart-gantt:before{content:"\e0e4"}.fa-indian-rupee-sign:before,.fa-indian-rupee:before,.fa-inr:before{content:"\e1bc"}.fa-crop-alt:before,.fa-crop-simple:before{content:"\f565"}.fa-money-bill-1:before,.fa-money-bill-alt:before{content:"\f3d1"}.fa-left-long:before,.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-dna:before{content:"\f471"}.fa-virus-slash:before{content:"\e075"}.fa-minus:before,.fa-subtract:before{content:"\f068"}.fa-chess:before{content:"\f439"}.fa-arrow-left-long:before,.fa-long-arrow-left:before{content:"\f177"}.fa-plug-circle-check:before{content:"\e55c"}.fa-street-view:before{content:"\f21d"}.fa-franc-sign:before{content:"\e18f"}.fa-volume-off:before{content:"\f026"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before,.fa-hands-american-sign-language-interpreting:before,.fa-hands-asl-interpreting:before{content:"\f2a3"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-droplet-slash:before,.fa-tint-slash:before{content:"\f5c7"}.fa-mosque:before{content:"\f678"}.fa-mosquito:before{content:"\e52b"}.fa-star-of-david:before{content:"\f69a"}.fa-person-military-rifle:before{content:"\e54b"}.fa-cart-shopping:before,.fa-shopping-cart:before{content:"\f07a"}.fa-vials:before{content:"\f493"}.fa-plug-circle-plus:before{content:"\e55f"}.fa-place-of-worship:before{content:"\f67f"}.fa-grip-vertical:before{content:"\f58e"}.fa-arrow-turn-up:before,.fa-level-up:before{content:"\f148"}.fa-u:before{content:"\55"}.fa-square-root-alt:before,.fa-square-root-variable:before{content:"\f698"}.fa-clock-four:before,.fa-clock:before{content:"\f017"}.fa-backward-step:before,.fa-step-backward:before{content:"\f048"}.fa-pallet:before{content:"\f482"}.fa-faucet:before{content:"\e005"}.fa-baseball-bat-ball:before{content:"\f432"}.fa-s:before{content:"\53"}.fa-timeline:before{content:"\e29c"}.fa-keyboard:before{content:"\f11c"}.fa-caret-down:before{content:"\f0d7"}.fa-clinic-medical:before,.fa-house-chimney-medical:before{content:"\f7f2"}.fa-temperature-3:before,.fa-temperature-three-quarters:before,.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-mobile-android-alt:before,.fa-mobile-screen:before{content:"\f3cf"}.fa-plane-up:before{content:"\e22d"}.fa-piggy-bank:before{content:"\f4d3"}.fa-battery-3:before,.fa-battery-half:before{content:"\f242"}.fa-mountain-city:before{content:"\e52e"}.fa-coins:before{content:"\f51e"}.fa-khanda:before{content:"\f66d"}.fa-sliders-h:before,.fa-sliders:before{content:"\f1de"}.fa-folder-tree:before{content:"\f802"}.fa-network-wired:before{content:"\f6ff"}.fa-map-pin:before{content:"\f276"}.fa-hamsa:before{content:"\f665"}.fa-cent-sign:before{content:"\e3f5"}.fa-flask:before{content:"\f0c3"}.fa-person-pregnant:before{content:"\e31e"}.fa-wand-sparkles:before{content:"\f72b"}.fa-ellipsis-v:before,.fa-ellipsis-vertical:before{content:"\f142"}.fa-ticket:before{content:"\f145"}.fa-power-off:before{content:"\f011"}.fa-long-arrow-alt-right:before,.fa-right-long:before{content:"\f30b"}.fa-flag-usa:before{content:"\f74d"}.fa-laptop-file:before{content:"\e51d"}.fa-teletype:before,.fa-tty:before{content:"\f1e4"}.fa-diagram-next:before{content:"\e476"}.fa-person-rifle:before{content:"\e54e"}.fa-house-medical-circle-exclamation:before{content:"\e512"}.fa-closed-captioning:before{content:"\f20a"}.fa-hiking:before,.fa-person-hiking:before{content:"\f6ec"}.fa-venus-double:before{content:"\f226"}.fa-images:before{content:"\f302"}.fa-calculator:before{content:"\f1ec"}.fa-people-pulling:before{content:"\e535"}.fa-n:before{content:"\4e"}.fa-cable-car:before,.fa-tram:before{content:"\f7da"}.fa-cloud-rain:before{content:"\f73d"}.fa-building-circle-xmark:before{content:"\e4d4"}.fa-ship:before{content:"\f21a"}.fa-arrows-down-to-line:before{content:"\e4b8"}.fa-download:before{content:"\f019"}.fa-face-grin:before,.fa-grin:before{content:"\f580"}.fa-backspace:before,.fa-delete-left:before{content:"\f55a"}.fa-eye-dropper-empty:before,.fa-eye-dropper:before,.fa-eyedropper:before{content:"\f1fb"}.fa-file-circle-check:before{content:"\e5a0"}.fa-forward:before{content:"\f04e"}.fa-mobile-android:before,.fa-mobile-phone:before,.fa-mobile:before{content:"\f3ce"}.fa-face-meh:before,.fa-meh:before{content:"\f11a"}.fa-align-center:before{content:"\f037"}.fa-book-dead:before,.fa-book-skull:before{content:"\f6b7"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-heart-circle-exclamation:before{content:"\e4fe"}.fa-home-alt:before,.fa-home-lg-alt:before,.fa-home:before,.fa-house:before{content:"\f015"}.fa-calendar-week:before{content:"\f784"}.fa-laptop-medical:before{content:"\f812"}.fa-b:before{content:"\42"}.fa-file-medical:before{content:"\f477"}.fa-dice-one:before{content:"\f525"}.fa-kiwi-bird:before{content:"\f535"}.fa-arrow-right-arrow-left:before,.fa-exchange:before{content:"\f0ec"}.fa-redo-alt:before,.fa-rotate-forward:before,.fa-rotate-right:before{content:"\f2f9"}.fa-cutlery:before,.fa-utensils:before{content:"\f2e7"}.fa-arrow-up-wide-short:before,.fa-sort-amount-up:before{content:"\f161"}.fa-mill-sign:before{content:"\e1ed"}.fa-bowl-rice:before{content:"\e2eb"}.fa-skull:before{content:"\f54c"}.fa-broadcast-tower:before,.fa-tower-broadcast:before{content:"\f519"}.fa-truck-pickup:before{content:"\f63c"}.fa-long-arrow-alt-up:before,.fa-up-long:before{content:"\f30c"}.fa-stop:before{content:"\f04d"}.fa-code-merge:before{content:"\f387"}.fa-upload:before{content:"\f093"}.fa-hurricane:before{content:"\f751"}.fa-mound:before{content:"\e52d"}.fa-toilet-portable:before{content:"\e583"}.fa-compact-disc:before{content:"\f51f"}.fa-file-arrow-down:before,.fa-file-download:before{content:"\f56d"}.fa-caravan:before{content:"\f8ff"}.fa-shield-cat:before{content:"\e572"}.fa-bolt:before,.fa-zap:before{content:"\f0e7"}.fa-glass-water:before{content:"\e4f4"}.fa-oil-well:before{content:"\e532"}.fa-vault:before{content:"\e2c5"}.fa-mars:before{content:"\f222"}.fa-toilet:before{content:"\f7d8"}.fa-plane-circle-xmark:before{content:"\e557"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen-sign:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble-sign:before,.fa-ruble:before{content:"\f158"}.fa-sun:before{content:"\f185"}.fa-guitar:before{content:"\f7a6"}.fa-face-laugh-wink:before,.fa-laugh-wink:before{content:"\f59c"}.fa-horse-head:before{content:"\f7ab"}.fa-bore-hole:before{content:"\e4c3"}.fa-industry:before{content:"\f275"}.fa-arrow-alt-circle-down:before,.fa-circle-down:before{content:"\f358"}.fa-arrows-turn-to-dots:before{content:"\e4c1"}.fa-florin-sign:before{content:"\e184"}.fa-arrow-down-short-wide:before,.fa-sort-amount-desc:before,.fa-sort-amount-down-alt:before{content:"\f884"}.fa-less-than:before{content:"\3c"}.fa-angle-down:before{content:"\f107"}.fa-car-tunnel:before{content:"\e4de"}.fa-head-side-cough:before{content:"\e061"}.fa-grip-lines:before{content:"\f7a4"}.fa-thumbs-down:before{content:"\f165"}.fa-user-lock:before{content:"\f502"}.fa-arrow-right-long:before,.fa-long-arrow-right:before{content:"\f178"}.fa-anchor-circle-xmark:before{content:"\e4ac"}.fa-ellipsis-h:before,.fa-ellipsis:before{content:"\f141"}.fa-chess-pawn:before{content:"\f443"}.fa-first-aid:before,.fa-kit-medical:before{content:"\f479"}.fa-person-through-window:before{content:"\e5a9"}.fa-toolbox:before{content:"\f552"}.fa-hands-holding-circle:before{content:"\e4fb"}.fa-bug:before{content:"\f188"}.fa-credit-card-alt:before,.fa-credit-card:before{content:"\f09d"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-hand-holding-hand:before{content:"\e4f7"}.fa-book-open-reader:before,.fa-book-reader:before{content:"\f5da"}.fa-mountain-sun:before{content:"\e52f"}.fa-arrows-left-right-to-line:before{content:"\e4ba"}.fa-dice-d20:before{content:"\f6cf"}.fa-truck-droplet:before{content:"\e58c"}.fa-file-circle-xmark:before{content:"\e5a1"}.fa-temperature-arrow-up:before,.fa-temperature-up:before{content:"\e040"}.fa-medal:before{content:"\f5a2"}.fa-bed:before{content:"\f236"}.fa-h-square:before,.fa-square-h:before{content:"\f0fd"}.fa-podcast:before{content:"\f2ce"}.fa-temperature-4:before,.fa-temperature-full:before,.fa-thermometer-4:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-bell:before{content:"\f0f3"}.fa-superscript:before{content:"\f12b"}.fa-plug-circle-xmark:before{content:"\e560"}.fa-star-of-life:before{content:"\f621"}.fa-phone-slash:before{content:"\f3dd"}.fa-paint-roller:before{content:"\f5aa"}.fa-hands-helping:before,.fa-handshake-angle:before{content:"\f4c4"}.fa-location-dot:before,.fa-map-marker-alt:before{content:"\f3c5"}.fa-file:before{content:"\f15b"}.fa-greater-than:before{content:"\3e"}.fa-person-swimming:before,.fa-swimmer:before{content:"\f5c4"}.fa-arrow-down:before{content:"\f063"}.fa-droplet:before,.fa-tint:before{content:"\f043"}.fa-eraser:before{content:"\f12d"}.fa-earth-america:before,.fa-earth-americas:before,.fa-earth:before,.fa-globe-americas:before{content:"\f57d"}.fa-person-burst:before{content:"\e53b"}.fa-dove:before{content:"\f4ba"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-socks:before{content:"\f696"}.fa-inbox:before{content:"\f01c"}.fa-section:before{content:"\e447"}.fa-gauge-high:before,.fa-tachometer-alt-fast:before,.fa-tachometer-alt:before{content:"\f625"}.fa-envelope-open-text:before{content:"\f658"}.fa-hospital-alt:before,.fa-hospital-wide:before,.fa-hospital:before{content:"\f0f8"}.fa-wine-bottle:before{content:"\f72f"}.fa-chess-rook:before{content:"\f447"}.fa-bars-staggered:before,.fa-reorder:before,.fa-stream:before{content:"\f550"}.fa-dharmachakra:before{content:"\f655"}.fa-hotdog:before{content:"\f80f"}.fa-blind:before,.fa-person-walking-with-cane:before{content:"\f29d"}.fa-drum:before{content:"\f569"}.fa-ice-cream:before{content:"\f810"}.fa-heart-circle-bolt:before{content:"\e4fc"}.fa-fax:before{content:"\f1ac"}.fa-paragraph:before{content:"\f1dd"}.fa-check-to-slot:before,.fa-vote-yea:before{content:"\f772"}.fa-star-half:before{content:"\f089"}.fa-boxes-alt:before,.fa-boxes-stacked:before,.fa-boxes:before{content:"\f468"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-assistive-listening-systems:before,.fa-ear-listen:before{content:"\f2a2"}.fa-tree-city:before{content:"\e587"}.fa-play:before{content:"\f04b"}.fa-font:before{content:"\f031"}.fa-rupiah-sign:before{content:"\e23d"}.fa-magnifying-glass:before,.fa-search:before{content:"\f002"}.fa-ping-pong-paddle-ball:before,.fa-table-tennis-paddle-ball:before,.fa-table-tennis:before{content:"\f45d"}.fa-diagnoses:before,.fa-person-dots-from-line:before{content:"\f470"}.fa-trash-can-arrow-up:before,.fa-trash-restore-alt:before{content:"\f82a"}.fa-naira-sign:before{content:"\e1f6"}.fa-cart-arrow-down:before{content:"\f218"}.fa-walkie-talkie:before{content:"\f8ef"}.fa-file-edit:before,.fa-file-pen:before{content:"\f31c"}.fa-receipt:before{content:"\f543"}.fa-pen-square:before,.fa-pencil-square:before,.fa-square-pen:before{content:"\f14b"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-person-circle-exclamation:before{content:"\e53f"}.fa-chevron-down:before{content:"\f078"}.fa-battery-5:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-skull-crossbones:before{content:"\f714"}.fa-code-compare:before{content:"\e13a"}.fa-list-dots:before,.fa-list-ul:before{content:"\f0ca"}.fa-school-lock:before{content:"\e56f"}.fa-tower-cell:before{content:"\e585"}.fa-down-long:before,.fa-long-arrow-alt-down:before{content:"\f309"}.fa-ranking-star:before{content:"\e561"}.fa-chess-king:before{content:"\f43f"}.fa-person-harassing:before{content:"\e549"}.fa-brazilian-real-sign:before{content:"\e46c"}.fa-landmark-alt:before,.fa-landmark-dome:before{content:"\f752"}.fa-arrow-up:before{content:"\f062"}.fa-television:before,.fa-tv-alt:before,.fa-tv:before{content:"\f26c"}.fa-shrimp:before{content:"\e448"}.fa-list-check:before,.fa-tasks:before{content:"\f0ae"}.fa-jug-detergent:before{content:"\e519"}.fa-circle-user:before,.fa-user-circle:before{content:"\f2bd"}.fa-user-shield:before{content:"\f505"}.fa-wind:before{content:"\f72e"}.fa-car-burst:before,.fa-car-crash:before{content:"\f5e1"}.fa-y:before{content:"\59"}.fa-person-snowboarding:before,.fa-snowboarding:before{content:"\f7ce"}.fa-shipping-fast:before,.fa-truck-fast:before{content:"\f48b"}.fa-fish:before{content:"\f578"}.fa-user-graduate:before{content:"\f501"}.fa-adjust:before,.fa-circle-half-stroke:before{content:"\f042"}.fa-clapperboard:before{content:"\e131"}.fa-circle-radiation:before,.fa-radiation-alt:before{content:"\f7ba"}.fa-baseball-ball:before,.fa-baseball:before{content:"\f433"}.fa-jet-fighter-up:before{content:"\e518"}.fa-diagram-project:before,.fa-project-diagram:before{content:"\f542"}.fa-copy:before{content:"\f0c5"}.fa-volume-mute:before,.fa-volume-times:before,.fa-volume-xmark:before{content:"\f6a9"}.fa-hand-sparkles:before{content:"\e05d"}.fa-grip-horizontal:before,.fa-grip:before{content:"\f58d"}.fa-share-from-square:before,.fa-share-square:before{content:"\f14d"}.fa-child-combatant:before,.fa-child-rifle:before{content:"\e4e0"}.fa-gun:before{content:"\e19b"}.fa-phone-square:before,.fa-square-phone:before{content:"\f098"}.fa-add:before,.fa-plus:before{content:"\2b"}.fa-expand:before{content:"\f065"}.fa-computer:before{content:"\e4e5"}.fa-close:before,.fa-multiply:before,.fa-remove:before,.fa-times:before,.fa-xmark:before{content:"\f00d"}.fa-arrows-up-down-left-right:before,.fa-arrows:before{content:"\f047"}.fa-chalkboard-teacher:before,.fa-chalkboard-user:before{content:"\f51c"}.fa-peso-sign:before{content:"\e222"}.fa-building-shield:before{content:"\e4d8"}.fa-baby:before{content:"\f77c"}.fa-users-line:before{content:"\e592"}.fa-quote-left-alt:before,.fa-quote-left:before{content:"\f10d"}.fa-tractor:before{content:"\f722"}.fa-trash-arrow-up:before,.fa-trash-restore:before{content:"\f829"}.fa-arrow-down-up-lock:before{content:"\e4b0"}.fa-lines-leaning:before{content:"\e51e"}.fa-ruler-combined:before{content:"\f546"}.fa-copyright:before{content:"\f1f9"}.fa-equals:before{content:"\3d"}.fa-blender:before{content:"\f517"}.fa-teeth:before{content:"\f62e"}.fa-ils:before,.fa-shekel-sign:before,.fa-shekel:before,.fa-sheqel-sign:before,.fa-sheqel:before{content:"\f20b"}.fa-map:before{content:"\f279"}.fa-rocket:before{content:"\f135"}.fa-photo-film:before,.fa-photo-video:before{content:"\f87c"}.fa-folder-minus:before{content:"\f65d"}.fa-store:before{content:"\f54e"}.fa-arrow-trend-up:before{content:"\e098"}.fa-plug-circle-minus:before{content:"\e55e"}.fa-sign-hanging:before,.fa-sign:before{content:"\f4d9"}.fa-bezier-curve:before{content:"\f55b"}.fa-bell-slash:before{content:"\f1f6"}.fa-tablet-android:before,.fa-tablet:before{content:"\f3fb"}.fa-school-flag:before{content:"\e56e"}.fa-fill:before{content:"\f575"}.fa-angle-up:before{content:"\f106"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-holly-berry:before{content:"\f7aa"}.fa-chevron-left:before{content:"\f053"}.fa-bacteria:before{content:"\e059"}.fa-hand-lizard:before{content:"\f258"}.fa-notdef:before{content:"\e1fe"}.fa-disease:before{content:"\f7fa"}.fa-briefcase-medical:before{content:"\f469"}.fa-genderless:before{content:"\f22d"}.fa-chevron-right:before{content:"\f054"}.fa-retweet:before{content:"\f079"}.fa-car-alt:before,.fa-car-rear:before{content:"\f5de"}.fa-pump-soap:before{content:"\e06b"}.fa-video-slash:before{content:"\f4e2"}.fa-battery-2:before,.fa-battery-quarter:before{content:"\f243"}.fa-radio:before{content:"\f8d7"}.fa-baby-carriage:before,.fa-carriage-baby:before{content:"\f77d"}.fa-traffic-light:before{content:"\f637"}.fa-thermometer:before{content:"\f491"}.fa-vr-cardboard:before{content:"\f729"}.fa-hand-middle-finger:before{content:"\f806"}.fa-percent:before,.fa-percentage:before{content:"\25"}.fa-truck-moving:before{content:"\f4df"}.fa-glass-water-droplet:before{content:"\e4f5"}.fa-display:before{content:"\e163"}.fa-face-smile:before,.fa-smile:before{content:"\f118"}.fa-thumb-tack:before,.fa-thumbtack:before{content:"\f08d"}.fa-trophy:before{content:"\f091"}.fa-person-praying:before,.fa-pray:before{content:"\f683"}.fa-hammer:before{content:"\f6e3"}.fa-hand-peace:before{content:"\f25b"}.fa-rotate:before,.fa-sync-alt:before{content:"\f2f1"}.fa-spinner:before{content:"\f110"}.fa-robot:before{content:"\f544"}.fa-peace:before{content:"\f67c"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-warehouse:before{content:"\f494"}.fa-arrow-up-right-dots:before{content:"\e4b7"}.fa-splotch:before{content:"\f5bc"}.fa-face-grin-hearts:before,.fa-grin-hearts:before{content:"\f584"}.fa-dice-four:before{content:"\f524"}.fa-sim-card:before{content:"\f7c4"}.fa-transgender-alt:before,.fa-transgender:before{content:"\f225"}.fa-mercury:before{content:"\f223"}.fa-arrow-turn-down:before,.fa-level-down:before{content:"\f149"}.fa-person-falling-burst:before{content:"\e547"}.fa-award:before{content:"\f559"}.fa-ticket-alt:before,.fa-ticket-simple:before{content:"\f3ff"}.fa-building:before{content:"\f1ad"}.fa-angle-double-left:before,.fa-angles-left:before{content:"\f100"}.fa-qrcode:before{content:"\f029"}.fa-clock-rotate-left:before,.fa-history:before{content:"\f1da"}.fa-face-grin-beam-sweat:before,.fa-grin-beam-sweat:before{content:"\f583"}.fa-arrow-right-from-file:before,.fa-file-export:before{content:"\f56e"}.fa-shield-blank:before,.fa-shield:before{content:"\f132"}.fa-arrow-up-short-wide:before,.fa-sort-amount-up-alt:before{content:"\f885"}.fa-house-medical:before{content:"\e3b2"}.fa-golf-ball-tee:before,.fa-golf-ball:before{content:"\f450"}.fa-chevron-circle-left:before,.fa-circle-chevron-left:before{content:"\f137"}.fa-house-chimney-window:before{content:"\e00d"}.fa-pen-nib:before{content:"\f5ad"}.fa-tent-arrow-turn-left:before{content:"\e580"}.fa-tents:before{content:"\e582"}.fa-magic:before,.fa-wand-magic:before{content:"\f0d0"}.fa-dog:before{content:"\f6d3"}.fa-carrot:before{content:"\f787"}.fa-moon:before{content:"\f186"}.fa-wine-glass-alt:before,.fa-wine-glass-empty:before{content:"\f5ce"}.fa-cheese:before{content:"\f7ef"}.fa-yin-yang:before{content:"\f6ad"}.fa-music:before{content:"\f001"}.fa-code-commit:before{content:"\f386"}.fa-temperature-low:before{content:"\f76b"}.fa-biking:before,.fa-person-biking:before{content:"\f84a"}.fa-broom:before{content:"\f51a"}.fa-shield-heart:before{content:"\e574"}.fa-gopuram:before{content:"\f664"}.fa-earth-oceania:before,.fa-globe-oceania:before{content:"\e47b"}.fa-square-xmark:before,.fa-times-square:before,.fa-xmark-square:before{content:"\f2d3"}.fa-hashtag:before{content:"\23"}.fa-expand-alt:before,.fa-up-right-and-down-left-from-center:before{content:"\f424"}.fa-oil-can:before{content:"\f613"}.fa-t:before{content:"\54"}.fa-hippo:before{content:"\f6ed"}.fa-chart-column:before{content:"\e0e3"}.fa-infinity:before{content:"\f534"}.fa-vial-circle-check:before{content:"\e596"}.fa-person-arrow-down-to-line:before{content:"\e538"}.fa-voicemail:before{content:"\f897"}.fa-fan:before{content:"\f863"}.fa-person-walking-luggage:before{content:"\e554"}.fa-arrows-alt-v:before,.fa-up-down:before{content:"\f338"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-calendar:before{content:"\f133"}.fa-trailer:before{content:"\e041"}.fa-bahai:before,.fa-haykal:before{content:"\f666"}.fa-sd-card:before{content:"\f7c2"}.fa-dragon:before{content:"\f6d5"}.fa-shoe-prints:before{content:"\f54b"}.fa-circle-plus:before,.fa-plus-circle:before{content:"\f055"}.fa-face-grin-tongue-wink:before,.fa-grin-tongue-wink:before{content:"\f58b"}.fa-hand-holding:before{content:"\f4bd"}.fa-plug-circle-exclamation:before{content:"\e55d"}.fa-chain-broken:before,.fa-chain-slash:before,.fa-link-slash:before,.fa-unlink:before{content:"\f127"}.fa-clone:before{content:"\f24d"}.fa-person-walking-arrow-loop-left:before{content:"\e551"}.fa-arrow-up-z-a:before,.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-fire-alt:before,.fa-fire-flame-curved:before{content:"\f7e4"}.fa-tornado:before{content:"\f76f"}.fa-file-circle-plus:before{content:"\e494"}.fa-book-quran:before,.fa-quran:before{content:"\f687"}.fa-anchor:before{content:"\f13d"}.fa-border-all:before{content:"\f84c"}.fa-angry:before,.fa-face-angry:before{content:"\f556"}.fa-cookie-bite:before{content:"\f564"}.fa-arrow-trend-down:before{content:"\e097"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-draw-polygon:before{content:"\f5ee"}.fa-balance-scale:before,.fa-scale-balanced:before{content:"\f24e"}.fa-gauge-simple-high:before,.fa-tachometer-fast:before,.fa-tachometer:before{content:"\f62a"}.fa-shower:before{content:"\f2cc"}.fa-desktop-alt:before,.fa-desktop:before{content:"\f390"}.fa-m:before{content:"\4d"}.fa-table-list:before,.fa-th-list:before{content:"\f00b"}.fa-comment-sms:before,.fa-sms:before{content:"\f7cd"}.fa-book:before{content:"\f02d"}.fa-user-plus:before{content:"\f234"}.fa-check:before{content:"\f00c"}.fa-battery-4:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-house-circle-check:before{content:"\e509"}.fa-angle-left:before{content:"\f104"}.fa-diagram-successor:before{content:"\e47a"}.fa-truck-arrow-right:before{content:"\e58b"}.fa-arrows-split-up-and-left:before{content:"\e4bc"}.fa-fist-raised:before,.fa-hand-fist:before{content:"\f6de"}.fa-cloud-moon:before{content:"\f6c3"}.fa-briefcase:before{content:"\f0b1"}.fa-person-falling:before{content:"\e546"}.fa-image-portrait:before,.fa-portrait:before{content:"\f3e0"}.fa-user-tag:before{content:"\f507"}.fa-rug:before{content:"\e569"}.fa-earth-europe:before,.fa-globe-europe:before{content:"\f7a2"}.fa-cart-flatbed-suitcase:before,.fa-luggage-cart:before{content:"\f59d"}.fa-rectangle-times:before,.fa-rectangle-xmark:before,.fa-times-rectangle:before,.fa-window-close:before{content:"\f410"}.fa-baht-sign:before{content:"\e0ac"}.fa-book-open:before{content:"\f518"}.fa-book-journal-whills:before,.fa-journal-whills:before{content:"\f66a"}.fa-handcuffs:before{content:"\e4f8"}.fa-exclamation-triangle:before,.fa-triangle-exclamation:before,.fa-warning:before{content:"\f071"}.fa-database:before{content:"\f1c0"}.fa-arrow-turn-right:before,.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-bottle-droplet:before{content:"\e4c4"}.fa-mask-face:before{content:"\e1d7"}.fa-hill-rockslide:before{content:"\e508"}.fa-exchange-alt:before,.fa-right-left:before{content:"\f362"}.fa-paper-plane:before{content:"\f1d8"}.fa-road-circle-exclamation:before{content:"\e565"}.fa-dungeon:before{content:"\f6d9"}.fa-align-right:before{content:"\f038"}.fa-money-bill-1-wave:before,.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-life-ring:before{content:"\f1cd"}.fa-hands:before,.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-calendar-day:before{content:"\f783"}.fa-ladder-water:before,.fa-swimming-pool:before,.fa-water-ladder:before{content:"\f5c5"}.fa-arrows-up-down:before,.fa-arrows-v:before{content:"\f07d"}.fa-face-grimace:before,.fa-grimace:before{content:"\f57f"}.fa-wheelchair-alt:before,.fa-wheelchair-move:before{content:"\e2ce"}.fa-level-down-alt:before,.fa-turn-down:before{content:"\f3be"}.fa-person-walking-arrow-right:before{content:"\e552"}.fa-envelope-square:before,.fa-square-envelope:before{content:"\f199"}.fa-dice:before{content:"\f522"}.fa-bowling-ball:before{content:"\f436"}.fa-brain:before{content:"\f5dc"}.fa-band-aid:before,.fa-bandage:before{content:"\f462"}.fa-calendar-minus:before{content:"\f272"}.fa-circle-xmark:before,.fa-times-circle:before,.fa-xmark-circle:before{content:"\f057"}.fa-gifts:before{content:"\f79c"}.fa-hotel:before{content:"\f594"}.fa-earth-asia:before,.fa-globe-asia:before{content:"\f57e"}.fa-id-card-alt:before,.fa-id-card-clip:before{content:"\f47f"}.fa-magnifying-glass-plus:before,.fa-search-plus:before{content:"\f00e"}.fa-thumbs-up:before{content:"\f164"}.fa-user-clock:before{content:"\f4fd"}.fa-allergies:before,.fa-hand-dots:before{content:"\f461"}.fa-file-invoice:before{content:"\f570"}.fa-window-minimize:before{content:"\f2d1"}.fa-coffee:before,.fa-mug-saucer:before{content:"\f0f4"}.fa-brush:before{content:"\f55d"}.fa-mask:before{content:"\f6fa"}.fa-magnifying-glass-minus:before,.fa-search-minus:before{content:"\f010"}.fa-ruler-vertical:before{content:"\f548"}.fa-user-alt:before,.fa-user-large:before{content:"\f406"}.fa-train-tram:before{content:"\e5b4"}.fa-user-nurse:before{content:"\f82f"}.fa-syringe:before{content:"\f48e"}.fa-cloud-sun:before{content:"\f6c4"}.fa-stopwatch-20:before{content:"\e06f"}.fa-square-full:before{content:"\f45c"}.fa-magnet:before{content:"\f076"}.fa-jar:before{content:"\e516"}.fa-note-sticky:before,.fa-sticky-note:before{content:"\f249"}.fa-bug-slash:before{content:"\e490"}.fa-arrow-up-from-water-pump:before{content:"\e4b6"}.fa-bone:before{content:"\f5d7"}.fa-user-injured:before{content:"\f728"}.fa-face-sad-tear:before,.fa-sad-tear:before{content:"\f5b4"}.fa-plane:before{content:"\f072"}.fa-tent-arrows-down:before{content:"\e581"}.fa-exclamation:before{content:"\21"}.fa-arrows-spin:before{content:"\e4bb"}.fa-print:before{content:"\f02f"}.fa-try:before,.fa-turkish-lira-sign:before,.fa-turkish-lira:before{content:"\e2bb"}.fa-dollar-sign:before,.fa-dollar:before,.fa-usd:before{content:"\24"}.fa-x:before{content:"\58"}.fa-magnifying-glass-dollar:before,.fa-search-dollar:before{content:"\f688"}.fa-users-cog:before,.fa-users-gear:before{content:"\f509"}.fa-person-military-pointing:before{content:"\e54a"}.fa-bank:before,.fa-building-columns:before,.fa-institution:before,.fa-museum:before,.fa-university:before{content:"\f19c"}.fa-umbrella:before{content:"\f0e9"}.fa-trowel:before{content:"\e589"}.fa-d:before{content:"\44"}.fa-stapler:before{content:"\e5af"}.fa-masks-theater:before,.fa-theater-masks:before{content:"\f630"}.fa-kip-sign:before{content:"\e1c4"}.fa-hand-point-left:before{content:"\f0a5"}.fa-handshake-alt:before,.fa-handshake-simple:before{content:"\f4c6"}.fa-fighter-jet:before,.fa-jet-fighter:before{content:"\f0fb"}.fa-share-alt-square:before,.fa-square-share-nodes:before{content:"\f1e1"}.fa-barcode:before{content:"\f02a"}.fa-plus-minus:before{content:"\e43c"}.fa-video-camera:before,.fa-video:before{content:"\f03d"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-person-circle-check:before{content:"\e53e"}.fa-level-up-alt:before,.fa-turn-up:before{content:"\f3bf"} + .fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}:host,:root{--fa-style-family-brands:"Font Awesome 6 Brands";--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src:url(font-awesome/fa-brands-400.woff2) format("woff2"),url(font-awesome/fa-brands-400.ttf) format("truetype")}.fa-brands,.fab{font-weight:400}.fa-monero:before{content:"\f3d0"}.fa-hooli:before{content:"\f427"}.fa-yelp:before{content:"\f1e9"}.fa-cc-visa:before{content:"\f1f0"}.fa-lastfm:before{content:"\f202"}.fa-shopware:before{content:"\f5b5"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-aws:before{content:"\f375"}.fa-redhat:before{content:"\f7bc"}.fa-yoast:before{content:"\f2b1"}.fa-cloudflare:before{content:"\e07d"}.fa-ups:before{content:"\f7e0"}.fa-wpexplorer:before{content:"\f2de"}.fa-dyalog:before{content:"\f399"}.fa-bity:before{content:"\f37a"}.fa-stackpath:before{content:"\f842"}.fa-buysellads:before{content:"\f20d"}.fa-first-order:before{content:"\f2b0"}.fa-modx:before{content:"\f285"}.fa-guilded:before{content:"\e07e"}.fa-vnv:before{content:"\f40b"}.fa-js-square:before,.fa-square-js:before{content:"\f3b9"}.fa-microsoft:before{content:"\f3ca"}.fa-qq:before{content:"\f1d6"}.fa-orcid:before{content:"\f8d2"}.fa-java:before{content:"\f4e4"}.fa-invision:before{content:"\f7b0"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-centercode:before{content:"\f380"}.fa-glide-g:before{content:"\f2a6"}.fa-drupal:before{content:"\f1a9"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-unity:before{content:"\e049"}.fa-whmcs:before{content:"\f40d"}.fa-rocketchat:before{content:"\f3e8"}.fa-vk:before{content:"\f189"}.fa-untappd:before{content:"\f405"}.fa-mailchimp:before{content:"\f59e"}.fa-css3-alt:before{content:"\f38b"}.fa-reddit-square:before,.fa-square-reddit:before{content:"\f1a2"}.fa-vimeo-v:before{content:"\f27d"}.fa-contao:before{content:"\f26d"}.fa-square-font-awesome:before{content:"\e5ad"}.fa-deskpro:before{content:"\f38f"}.fa-sistrix:before{content:"\f3ee"}.fa-instagram-square:before,.fa-square-instagram:before{content:"\e055"}.fa-battle-net:before{content:"\f835"}.fa-the-red-yeti:before{content:"\f69d"}.fa-hacker-news-square:before,.fa-square-hacker-news:before{content:"\f3af"}.fa-edge:before{content:"\f282"}.fa-threads:before{content:"\e618"}.fa-napster:before{content:"\f3d2"}.fa-snapchat-square:before,.fa-square-snapchat:before{content:"\f2ad"}.fa-google-plus-g:before{content:"\f0d5"}.fa-artstation:before{content:"\f77a"}.fa-markdown:before{content:"\f60f"}.fa-sourcetree:before{content:"\f7d3"}.fa-google-plus:before{content:"\f2b3"}.fa-diaspora:before{content:"\f791"}.fa-foursquare:before{content:"\f180"}.fa-stack-overflow:before{content:"\f16c"}.fa-github-alt:before{content:"\f113"}.fa-phoenix-squadron:before{content:"\f511"}.fa-pagelines:before{content:"\f18c"}.fa-algolia:before{content:"\f36c"}.fa-red-river:before{content:"\f3e3"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-safari:before{content:"\f267"}.fa-google:before{content:"\f1a0"}.fa-font-awesome-alt:before,.fa-square-font-awesome-stroke:before{content:"\f35c"}.fa-atlassian:before{content:"\f77b"}.fa-linkedin-in:before{content:"\f0e1"}.fa-digital-ocean:before{content:"\f391"}.fa-nimblr:before{content:"\f5a8"}.fa-chromecast:before{content:"\f838"}.fa-evernote:before{content:"\f839"}.fa-hacker-news:before{content:"\f1d4"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-adversal:before{content:"\f36a"}.fa-creative-commons:before{content:"\f25e"}.fa-watchman-monitoring:before{content:"\e087"}.fa-fonticons:before{content:"\f280"}.fa-weixin:before{content:"\f1d7"}.fa-shirtsinbulk:before{content:"\f214"}.fa-codepen:before{content:"\f1cb"}.fa-git-alt:before{content:"\f841"}.fa-lyft:before{content:"\f3c3"}.fa-rev:before{content:"\f5b2"}.fa-windows:before{content:"\f17a"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-square-viadeo:before,.fa-viadeo-square:before{content:"\f2aa"}.fa-meetup:before{content:"\f2e0"}.fa-centos:before{content:"\f789"}.fa-adn:before{content:"\f170"}.fa-cloudsmith:before{content:"\f384"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-dribbble-square:before,.fa-square-dribbble:before{content:"\f397"}.fa-codiepie:before{content:"\f284"}.fa-node:before{content:"\f419"}.fa-mix:before{content:"\f3cb"}.fa-steam:before{content:"\f1b6"}.fa-cc-apple-pay:before{content:"\f416"}.fa-scribd:before{content:"\f28a"}.fa-debian:before{content:"\e60b"}.fa-openid:before{content:"\f19b"}.fa-instalod:before{content:"\e081"}.fa-expeditedssl:before{content:"\f23e"}.fa-sellcast:before{content:"\f2da"}.fa-square-twitter:before,.fa-twitter-square:before{content:"\f081"}.fa-r-project:before{content:"\f4f7"}.fa-delicious:before{content:"\f1a5"}.fa-freebsd:before{content:"\f3a4"}.fa-vuejs:before{content:"\f41f"}.fa-accusoft:before{content:"\f369"}.fa-ioxhost:before{content:"\f208"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-app-store:before{content:"\f36f"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-itunes-note:before{content:"\f3b5"}.fa-golang:before{content:"\e40f"}.fa-kickstarter:before{content:"\f3bb"}.fa-grav:before{content:"\f2d6"}.fa-weibo:before{content:"\f18a"}.fa-uncharted:before{content:"\e084"}.fa-firstdraft:before{content:"\f3a1"}.fa-square-youtube:before,.fa-youtube-square:before{content:"\f431"}.fa-wikipedia-w:before{content:"\f266"}.fa-rendact:before,.fa-wpressr:before{content:"\f3e4"}.fa-angellist:before{content:"\f209"}.fa-galactic-republic:before{content:"\f50c"}.fa-nfc-directional:before{content:"\e530"}.fa-skype:before{content:"\f17e"}.fa-joget:before{content:"\f3b7"}.fa-fedora:before{content:"\f798"}.fa-stripe-s:before{content:"\f42a"}.fa-meta:before{content:"\e49b"}.fa-laravel:before{content:"\f3bd"}.fa-hotjar:before{content:"\f3b1"}.fa-bluetooth-b:before{content:"\f294"}.fa-sticker-mule:before{content:"\f3f7"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-hips:before{content:"\f452"}.fa-behance:before{content:"\f1b4"}.fa-reddit:before{content:"\f1a1"}.fa-discord:before{content:"\f392"}.fa-chrome:before{content:"\f268"}.fa-app-store-ios:before{content:"\f370"}.fa-cc-discover:before{content:"\f1f2"}.fa-wpbeginner:before{content:"\f297"}.fa-confluence:before{content:"\f78d"}.fa-mdb:before{content:"\f8ca"}.fa-dochub:before{content:"\f394"}.fa-accessible-icon:before{content:"\f368"}.fa-ebay:before{content:"\f4f4"}.fa-amazon:before{content:"\f270"}.fa-unsplash:before{content:"\e07c"}.fa-yarn:before{content:"\f7e3"}.fa-square-steam:before,.fa-steam-square:before{content:"\f1b7"}.fa-500px:before{content:"\f26e"}.fa-square-vimeo:before,.fa-vimeo-square:before{content:"\f194"}.fa-asymmetrik:before{content:"\f372"}.fa-font-awesome-flag:before,.fa-font-awesome-logo-full:before,.fa-font-awesome:before{content:"\f2b4"}.fa-gratipay:before{content:"\f184"}.fa-apple:before{content:"\f179"}.fa-hive:before{content:"\e07f"}.fa-gitkraken:before{content:"\f3a6"}.fa-keybase:before{content:"\f4f5"}.fa-apple-pay:before{content:"\f415"}.fa-padlet:before{content:"\e4a0"}.fa-amazon-pay:before{content:"\f42c"}.fa-github-square:before,.fa-square-github:before{content:"\f092"}.fa-stumbleupon:before{content:"\f1a4"}.fa-fedex:before{content:"\f797"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-shopify:before{content:"\e057"}.fa-neos:before{content:"\f612"}.fa-square-threads:before{content:"\e619"}.fa-hackerrank:before{content:"\f5f7"}.fa-researchgate:before{content:"\f4f8"}.fa-swift:before{content:"\f8e1"}.fa-angular:before{content:"\f420"}.fa-speakap:before{content:"\f3f3"}.fa-angrycreative:before{content:"\f36e"}.fa-y-combinator:before{content:"\f23b"}.fa-empire:before{content:"\f1d1"}.fa-envira:before{content:"\f299"}.fa-gitlab-square:before,.fa-square-gitlab:before{content:"\e5ae"}.fa-studiovinari:before{content:"\f3f8"}.fa-pied-piper:before{content:"\f2ae"}.fa-wordpress:before{content:"\f19a"}.fa-product-hunt:before{content:"\f288"}.fa-firefox:before{content:"\f269"}.fa-linode:before{content:"\f2b8"}.fa-goodreads:before{content:"\f3a8"}.fa-odnoklassniki-square:before,.fa-square-odnoklassniki:before{content:"\f264"}.fa-jsfiddle:before{content:"\f1cc"}.fa-sith:before{content:"\f512"}.fa-themeisle:before{content:"\f2b2"}.fa-page4:before{content:"\f3d7"}.fa-hashnode:before{content:"\e499"}.fa-react:before{content:"\f41b"}.fa-cc-paypal:before{content:"\f1f4"}.fa-squarespace:before{content:"\f5be"}.fa-cc-stripe:before{content:"\f1f5"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-bitcoin:before{content:"\f379"}.fa-keycdn:before{content:"\f3ba"}.fa-opera:before{content:"\f26a"}.fa-itch-io:before{content:"\f83a"}.fa-umbraco:before{content:"\f8e8"}.fa-galactic-senate:before{content:"\f50d"}.fa-ubuntu:before{content:"\f7df"}.fa-draft2digital:before{content:"\f396"}.fa-stripe:before{content:"\f429"}.fa-houzz:before{content:"\f27c"}.fa-gg:before{content:"\f260"}.fa-dhl:before{content:"\f790"}.fa-pinterest-square:before,.fa-square-pinterest:before{content:"\f0d3"}.fa-xing:before{content:"\f168"}.fa-blackberry:before{content:"\f37b"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-playstation:before{content:"\f3df"}.fa-quinscape:before{content:"\f459"}.fa-less:before{content:"\f41d"}.fa-blogger-b:before{content:"\f37d"}.fa-opencart:before{content:"\f23d"}.fa-vine:before{content:"\f1ca"}.fa-paypal:before{content:"\f1ed"}.fa-gitlab:before{content:"\f296"}.fa-typo3:before{content:"\f42b"}.fa-reddit-alien:before{content:"\f281"}.fa-yahoo:before{content:"\f19e"}.fa-dailymotion:before{content:"\e052"}.fa-affiliatetheme:before{content:"\f36b"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-bootstrap:before{content:"\f836"}.fa-odnoklassniki:before{content:"\f263"}.fa-nfc-symbol:before{content:"\e531"}.fa-ethereum:before{content:"\f42e"}.fa-speaker-deck:before{content:"\f83c"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-patreon:before{content:"\f3d9"}.fa-avianex:before{content:"\f374"}.fa-ello:before{content:"\f5f1"}.fa-gofore:before{content:"\f3a7"}.fa-bimobject:before{content:"\f378"}.fa-facebook-f:before{content:"\f39e"}.fa-google-plus-square:before,.fa-square-google-plus:before{content:"\f0d4"}.fa-mandalorian:before{content:"\f50f"}.fa-first-order-alt:before{content:"\f50a"}.fa-osi:before{content:"\f41a"}.fa-google-wallet:before{content:"\f1ee"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-periscope:before{content:"\f3da"}.fa-fulcrum:before{content:"\f50b"}.fa-cloudscale:before{content:"\f383"}.fa-forumbee:before{content:"\f211"}.fa-mizuni:before{content:"\f3cc"}.fa-schlix:before{content:"\f3ea"}.fa-square-xing:before,.fa-xing-square:before{content:"\f169"}.fa-bandcamp:before{content:"\f2d5"}.fa-wpforms:before{content:"\f298"}.fa-cloudversify:before{content:"\f385"}.fa-usps:before{content:"\f7e1"}.fa-megaport:before{content:"\f5a3"}.fa-magento:before{content:"\f3c4"}.fa-spotify:before{content:"\f1bc"}.fa-optin-monster:before{content:"\f23c"}.fa-fly:before{content:"\f417"}.fa-aviato:before{content:"\f421"}.fa-itunes:before{content:"\f3b4"}.fa-cuttlefish:before{content:"\f38c"}.fa-blogger:before{content:"\f37c"}.fa-flickr:before{content:"\f16e"}.fa-viber:before{content:"\f409"}.fa-soundcloud:before{content:"\f1be"}.fa-digg:before{content:"\f1a6"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-symfony:before{content:"\f83d"}.fa-maxcdn:before{content:"\f136"}.fa-etsy:before{content:"\f2d7"}.fa-facebook-messenger:before{content:"\f39f"}.fa-audible:before{content:"\f373"}.fa-think-peaks:before{content:"\f731"}.fa-bilibili:before{content:"\e3d9"}.fa-erlang:before{content:"\f39d"}.fa-x-twitter:before{content:"\e61b"}.fa-cotton-bureau:before{content:"\f89e"}.fa-dashcube:before{content:"\f210"}.fa-42-group:before,.fa-innosoft:before{content:"\e080"}.fa-stack-exchange:before{content:"\f18d"}.fa-elementor:before{content:"\f430"}.fa-pied-piper-square:before,.fa-square-pied-piper:before{content:"\e01e"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-palfed:before{content:"\f3d8"}.fa-superpowers:before{content:"\f2dd"}.fa-resolving:before{content:"\f3e7"}.fa-xbox:before{content:"\f412"}.fa-searchengin:before{content:"\f3eb"}.fa-tiktok:before{content:"\e07b"}.fa-facebook-square:before,.fa-square-facebook:before{content:"\f082"}.fa-renren:before{content:"\f18b"}.fa-linux:before{content:"\f17c"}.fa-glide:before{content:"\f2a5"}.fa-linkedin:before{content:"\f08c"}.fa-hubspot:before{content:"\f3b2"}.fa-deploydog:before{content:"\f38e"}.fa-twitch:before{content:"\f1e8"}.fa-ravelry:before{content:"\f2d9"}.fa-mixer:before{content:"\e056"}.fa-lastfm-square:before,.fa-square-lastfm:before{content:"\f203"}.fa-vimeo:before{content:"\f40a"}.fa-mendeley:before{content:"\f7b3"}.fa-uniregistry:before{content:"\f404"}.fa-figma:before{content:"\f799"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-dropbox:before{content:"\f16b"}.fa-instagram:before{content:"\f16d"}.fa-cmplid:before{content:"\e360"}.fa-facebook:before{content:"\f09a"}.fa-gripfire:before{content:"\f3ac"}.fa-jedi-order:before{content:"\f50e"}.fa-uikit:before{content:"\f403"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-phabricator:before{content:"\f3db"}.fa-ussunnah:before{content:"\f407"}.fa-earlybirds:before{content:"\f39a"}.fa-trade-federation:before{content:"\f513"}.fa-autoprefixer:before{content:"\f41c"}.fa-whatsapp:before{content:"\f232"}.fa-slideshare:before{content:"\f1e7"}.fa-google-play:before{content:"\f3ab"}.fa-viadeo:before{content:"\f2a9"}.fa-line:before{content:"\f3c0"}.fa-google-drive:before{content:"\f3aa"}.fa-servicestack:before{content:"\f3ec"}.fa-simplybuilt:before{content:"\f215"}.fa-bitbucket:before{content:"\f171"}.fa-imdb:before{content:"\f2d8"}.fa-deezer:before{content:"\e077"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-jira:before{content:"\f7b1"}.fa-docker:before{content:"\f395"}.fa-screenpal:before{content:"\e570"}.fa-bluetooth:before{content:"\f293"}.fa-gitter:before{content:"\f426"}.fa-d-and-d:before{content:"\f38d"}.fa-microblog:before{content:"\e01a"}.fa-cc-diners-club:before{content:"\f24c"}.fa-gg-circle:before{content:"\f261"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-yandex:before{content:"\f413"}.fa-readme:before{content:"\f4d5"}.fa-html5:before{content:"\f13b"}.fa-sellsy:before{content:"\f213"}.fa-sass:before{content:"\f41e"}.fa-wirsindhandwerk:before,.fa-wsh:before{content:"\e2d0"}.fa-buromobelexperte:before{content:"\f37f"}.fa-salesforce:before{content:"\f83b"}.fa-octopus-deploy:before{content:"\e082"}.fa-medapps:before{content:"\f3c6"}.fa-ns8:before{content:"\f3d5"}.fa-pinterest-p:before{content:"\f231"}.fa-apper:before{content:"\f371"}.fa-fort-awesome:before{content:"\f286"}.fa-waze:before{content:"\f83f"}.fa-cc-jcb:before{content:"\f24b"}.fa-snapchat-ghost:before,.fa-snapchat:before{content:"\f2ab"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-rust:before{content:"\e07a"}.fa-wix:before{content:"\f5cf"}.fa-behance-square:before,.fa-square-behance:before{content:"\f1b5"}.fa-supple:before{content:"\f3f9"}.fa-rebel:before{content:"\f1d0"}.fa-css3:before{content:"\f13c"}.fa-staylinked:before{content:"\f3f5"}.fa-kaggle:before{content:"\f5fa"}.fa-space-awesome:before{content:"\e5ac"}.fa-deviantart:before{content:"\f1bd"}.fa-cpanel:before{content:"\f388"}.fa-goodreads-g:before{content:"\f3a9"}.fa-git-square:before,.fa-square-git:before{content:"\f1d2"}.fa-square-tumblr:before,.fa-tumblr-square:before{content:"\f174"}.fa-trello:before{content:"\f181"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-get-pocket:before{content:"\f265"}.fa-perbyte:before{content:"\e083"}.fa-grunt:before{content:"\f3ad"}.fa-weebly:before{content:"\f5cc"}.fa-connectdevelop:before{content:"\f20e"}.fa-leanpub:before{content:"\f212"}.fa-black-tie:before{content:"\f27e"}.fa-themeco:before{content:"\f5c6"}.fa-python:before{content:"\f3e2"}.fa-android:before{content:"\f17b"}.fa-bots:before{content:"\e340"}.fa-free-code-camp:before{content:"\f2c5"}.fa-hornbill:before{content:"\f592"}.fa-js:before{content:"\f3b8"}.fa-ideal:before{content:"\e013"}.fa-git:before{content:"\f1d3"}.fa-dev:before{content:"\f6cc"}.fa-sketch:before{content:"\f7c6"}.fa-yandex-international:before{content:"\f414"}.fa-cc-amex:before{content:"\f1f3"}.fa-uber:before{content:"\f402"}.fa-github:before{content:"\f09b"}.fa-php:before{content:"\f457"}.fa-alipay:before{content:"\f642"}.fa-youtube:before{content:"\f167"}.fa-skyatlas:before{content:"\f216"}.fa-firefox-browser:before{content:"\e007"}.fa-replyd:before{content:"\f3e6"}.fa-suse:before{content:"\f7d6"}.fa-jenkins:before{content:"\f3b6"}.fa-twitter:before{content:"\f099"}.fa-rockrms:before{content:"\f3e9"}.fa-pinterest:before{content:"\f0d2"}.fa-buffer:before{content:"\f837"}.fa-npm:before{content:"\f3d4"}.fa-yammer:before{content:"\f840"}.fa-btc:before{content:"\f15a"}.fa-dribbble:before{content:"\f17d"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-internet-explorer:before{content:"\f26b"}.fa-stubber:before{content:"\e5c7"}.fa-telegram-plane:before,.fa-telegram:before{content:"\f2c6"}.fa-old-republic:before{content:"\f510"}.fa-odysee:before{content:"\e5c6"}.fa-square-whatsapp:before,.fa-whatsapp-square:before{content:"\f40c"}.fa-node-js:before{content:"\f3d3"}.fa-edge-legacy:before{content:"\e078"}.fa-slack-hash:before,.fa-slack:before{content:"\f198"}.fa-medrt:before{content:"\f3c8"}.fa-usb:before{content:"\f287"}.fa-tumblr:before{content:"\f173"}.fa-vaadin:before{content:"\f408"}.fa-quora:before{content:"\f2c4"}.fa-square-x-twitter:before{content:"\e61a"}.fa-reacteurope:before{content:"\f75d"}.fa-medium-m:before,.fa-medium:before{content:"\f23a"}.fa-amilia:before{content:"\f36d"}.fa-mixcloud:before{content:"\f289"}.fa-flipboard:before{content:"\f44d"}.fa-viacoin:before{content:"\f237"}.fa-critical-role:before{content:"\f6c9"}.fa-sitrox:before{content:"\e44a"}.fa-discourse:before{content:"\f393"}.fa-joomla:before{content:"\f1aa"}.fa-mastodon:before{content:"\f4f6"}.fa-airbnb:before{content:"\f834"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-buy-n-large:before{content:"\f8a6"}.fa-gulp:before{content:"\f3ae"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-strava:before{content:"\f428"}.fa-ember:before{content:"\f423"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-teamspeak:before{content:"\f4f9"}.fa-pushed:before{content:"\f3e1"}.fa-wordpress-simple:before{content:"\f411"}.fa-nutritionix:before{content:"\f3d6"}.fa-wodu:before{content:"\e088"}.fa-google-pay:before{content:"\e079"}.fa-intercom:before{content:"\f7af"}.fa-zhihu:before{content:"\f63f"}.fa-korvue:before{content:"\f42f"}.fa-pix:before{content:"\e43a"}.fa-steam-symbol:before{content:"\f3f6"}:host,:root{--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(font-awesome/fa-regular-400.woff2) format("woff2"),url(font-awesome/fa-regular-400.ttf) format("truetype")}.fa-regular,.far{font-weight:400}:host,:root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(font-awesome/fa-solid-900.woff2) format("woff2"),url(font-awesome/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-weight:900}@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(font-awesome/fa-brands-400.woff2) format("woff2"),url(font-awesome/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url(font-awesome/fa-solid-900.woff2) format("woff2"),url(font-awesome/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url(font-awesome/fa-regular-400.woff2) format("woff2"),url(font-awesome/fa-regular-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(font-awesome/fa-solid-900.woff2) format("woff2"),url(font-awesome/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(font-awesome/fa-brands-400.woff2) format("woff2"),url(font-awesome/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(font-awesome/fa-regular-400.woff2) format("woff2"),url(font-awesome/fa-regular-400.ttf) format("truetype");unicode-range:u+f003,u+f006,u+f014,u+f016-f017,u+f01a-f01b,u+f01d,u+f022,u+f03e,u+f044,u+f046,u+f05c-f05d,u+f06e,u+f070,u+f087-f088,u+f08a,u+f094,u+f096-f097,u+f09d,u+f0a0,u+f0a2,u+f0a4-f0a7,u+f0c5,u+f0c7,u+f0e5-f0e6,u+f0eb,u+f0f6-f0f8,u+f10c,u+f114-f115,u+f118-f11a,u+f11c-f11d,u+f133,u+f147,u+f14e,u+f150-f152,u+f185-f186,u+f18e,u+f190-f192,u+f196,u+f1c1-f1c9,u+f1d9,u+f1db,u+f1e3,u+f1ea,u+f1f7,u+f1f9,u+f20a,u+f247-f248,u+f24a,u+f24d,u+f255-f25b,u+f25d,u+f271-f274,u+f278,u+f27b,u+f28c,u+f28e,u+f29c,u+f2b5,u+f2b7,u+f2ba,u+f2bc,u+f2be,u+f2c0-f2c1,u+f2c3,u+f2d0,u+f2d2,u+f2d4,u+f2dc}@font-face{font-family:"FontAwesome";font-display:block;src:url(font-awesome/fa-v4compatibility.woff2) format("woff2"),url(font-awesome/fa-v4compatibility.ttf) format("truetype");unicode-range:u+f041,u+f047,u+f065-f066,u+f07d-f07e,u+f080,u+f08b,u+f08e,u+f090,u+f09a,u+f0ac,u+f0ae,u+f0b2,u+f0d0,u+f0d6,u+f0e4,u+f0ec,u+f10a-f10b,u+f123,u+f13e,u+f148-f149,u+f14c,u+f156,u+f15e,u+f160-f161,u+f163,u+f175-f178,u+f195,u+f1f8,u+f219,u+f27a} \ No newline at end of file diff --git a/TSC2.Client/wwwroot/css/icons/font-awesome/fa-brands-400.ttf b/TSC2.Client/wwwroot/css/icons/font-awesome/fa-brands-400.ttf new file mode 100644 index 0000000..30f55b7 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/font-awesome/fa-brands-400.ttf differ diff --git a/TSC2.Client/wwwroot/css/icons/font-awesome/fa-brands-400.woff2 b/TSC2.Client/wwwroot/css/icons/font-awesome/fa-brands-400.woff2 new file mode 100644 index 0000000..8a480d9 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/font-awesome/fa-brands-400.woff2 differ diff --git a/TSC2.Client/wwwroot/css/icons/font-awesome/fa-regular-400.ttf b/TSC2.Client/wwwroot/css/icons/font-awesome/fa-regular-400.ttf new file mode 100644 index 0000000..c79589d Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/font-awesome/fa-regular-400.ttf differ diff --git a/TSC2.Client/wwwroot/css/icons/font-awesome/fa-regular-400.woff2 b/TSC2.Client/wwwroot/css/icons/font-awesome/fa-regular-400.woff2 new file mode 100644 index 0000000..059a94e Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/font-awesome/fa-regular-400.woff2 differ diff --git a/TSC2.Client/wwwroot/css/icons/font-awesome/fa-solid-900.ttf b/TSC2.Client/wwwroot/css/icons/font-awesome/fa-solid-900.ttf new file mode 100644 index 0000000..e479fb2 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/font-awesome/fa-solid-900.ttf differ diff --git a/TSC2.Client/wwwroot/css/icons/font-awesome/fa-solid-900.woff2 b/TSC2.Client/wwwroot/css/icons/font-awesome/fa-solid-900.woff2 new file mode 100644 index 0000000..88b0367 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/font-awesome/fa-solid-900.woff2 differ diff --git a/TSC2.Client/wwwroot/css/icons/font-awesome/fa-v4compatibility.ttf b/TSC2.Client/wwwroot/css/icons/font-awesome/fa-v4compatibility.ttf new file mode 100644 index 0000000..ba6cb25 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/font-awesome/fa-v4compatibility.ttf differ diff --git a/TSC2.Client/wwwroot/css/icons/font-awesome/fa-v4compatibility.woff2 b/TSC2.Client/wwwroot/css/icons/font-awesome/fa-v4compatibility.woff2 new file mode 100644 index 0000000..23b1c47 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/font-awesome/fa-v4compatibility.woff2 differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons.css b/TSC2.Client/wwwroot/css/icons/unicons.css new file mode 100644 index 0000000..da4883f --- /dev/null +++ b/TSC2.Client/wwwroot/css/icons/unicons.css @@ -0,0 +1,2 @@ +/* Unicons 4.0.8 */ +@font-face{font-family:unicons-line;src:url('unicons/unicons-0.woff2') format('woff2'),url('unicons/unicons-0.woff') format('woff');font-weight:400;font-style:normal;unicode-range:U+E800-E83B}@font-face{font-family:unicons-line;src:url('unicons/unicons-1.woff2') format('woff2'),url('unicons/unicons-1.woff') format('woff');font-weight:400;font-style:normal;unicode-range:U+E83C-E877}@font-face{font-family:unicons-line;src:url('unicons/unicons-10.woff2') format('woff2'),url('unicons/unicons-10.woff') format('woff');font-weight:400;font-style:normal;unicode-range:U+EA5B-EA96}@font-face{font-family:unicons-line;src:url('unicons/unicons-11.woff2') format('woff2'),url('unicons/unicons-11.woff') format('woff');font-weight:400;font-style:normal;unicode-range:U+EA97-EAD4}@font-face{font-family:unicons-line;src:url('unicons/unicons-12.woff2') format('woff2'),url('unicons/unicons-12.woff') format('woff');font-weight:400;font-style:normal;unicode-range:U+EAD5-EB11}@font-face{font-family:unicons-line;src:url('unicons/unicons-13.woff2') format('woff2'),url('unicons/unicons-13.woff') format('woff');font-weight:400;font-style:normal;unicode-range:U+EB12-EB4D}@font-face{font-family:unicons-line;src:url('unicons/unicons-14.woff2') format('woff2'),url('unicons/unicons-14.woff') format('woff');font-weight:400;font-style:normal;unicode-range:U+EB4E-EB89}@font-face{font-family:unicons-line;src:url('unicons/unicons-15.woff2') format('woff2'),url('unicons/unicons-15.woff') format('woff');font-weight:400;font-style:normal;unicode-range:U+EB8A-EBC5}@font-face{font-family:unicons-line;src:url('unicons/unicons-16.woff2') format('woff2'),url('unicons/unicons-16.woff') format('woff');font-weight:400;font-style:normal;unicode-range:U+EBC6-EC01}@font-face{font-family:unicons-line;src:url('unicons/unicons-17.woff2') format('woff2'),url('unicons/unicons-17.woff') format('woff');font-weight:400;font-style:normal;unicode-range:U+EC02-EC3D}@font-face{font-family:unicons-line;src:url('unicons/unicons-18.woff2') format('woff2'),url('unicons/unicons-18.woff') format('woff');font-weight:400;font-style:normal;unicode-range:U+EC3E-EC79}@font-face{font-family:unicons-line;src:url('unicons/unicons-19.woff2') format('woff2'),url('unicons/unicons-19.woff') format('woff');font-weight:400;font-style:normal;unicode-range:U+EC7A-ECB5}@font-face{font-family:unicons-line;src:url('unicons/unicons-2.woff2') format('woff2'),url('unicons/unicons-2.woff') format('woff');font-weight:400;font-style:normal;unicode-range:U+E878-E8B3}@font-face{font-family:unicons-line;src:url('unicons/unicons-20.woff2') format('woff2'),url('unicons/unicons-20.woff') format('woff');font-weight:400;font-style:normal;unicode-range:U+ECB6-ECB9}@font-face{font-family:unicons-line;src:url('unicons/unicons-3.woff2') format('woff2'),url('unicons/unicons-3.woff') format('woff');font-weight:400;font-style:normal;unicode-range:U+E8B4-E8EF}@font-face{font-family:unicons-line;src:url('unicons/unicons-4.woff2') format('woff2'),url('unicons/unicons-4.woff') format('woff');font-weight:400;font-style:normal;unicode-range:U+E8F0-E92B}@font-face{font-family:unicons-line;src:url('unicons/unicons-5.woff2') format('woff2'),url('unicons/unicons-5.woff') format('woff');font-weight:400;font-style:normal;unicode-range:U+E92C-E967}@font-face{font-family:unicons-line;src:url('unicons/unicons-6.woff2') format('woff2'),url('unicons/unicons-6.woff') format('woff');font-weight:400;font-style:normal;unicode-range:U+E968-E9A4}@font-face{font-family:unicons-line;src:url('unicons/unicons-7.woff2') format('woff2'),url('unicons/unicons-7.woff') format('woff');font-weight:400;font-style:normal;unicode-range:U+E9A5-E9E1}@font-face{font-family:unicons-line;src:url('unicons/unicons-8.woff2') format('woff2'),url('unicons/unicons-8.woff') format('woff');font-weight:400;font-style:normal;unicode-range:U+E9E2-EA1D}@font-face{font-family:unicons-line;src:url('unicons/unicons-9.woff2') format('woff2'),url('unicons/unicons-9.woff') format('woff');font-weight:400;font-style:normal;unicode-range:U+EA1E-EA5A}[class*=" uil-"]:before,[class^=uil-]:before{font-family:unicons-line;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[class*=uil-].flip-horizontal:before{transform:scaleX(-1)}[class*=uil-].flip-horizontal.rotate-90:before{transform:rotate(90deg) scaleX(-1)}[class*=uil-].flip-horizontal.rotate-180:before{transform:rotate(180deg) scaleX(-1)}[class*=uil-].flip-horizontal.rotate-270:before{transform:rotate(270deg) scaleX(-1)}[class*=uil-].flip-horizontal.flip-vertical:before{transform:scale(-1)}[class*=uil-].flip-horizontal.flip-vertical.rotate-90:before{transform:rotate(90deg) scale(-1)}[class*=uil-].flip-horizontal.flip-vertical.rotate-180:before{transform:rotate(180deg) scale(-1)}[class*=uil-].flip-horizontal.flip-vertical.rotate-270:before{transform:rotate(270deg) scale(-1)}[class*=uil-].flip-vertical:before{transform:scaleY(-1)}[class*=uil-].flip-vertical.rotate-90:before{transform:rotate(90deg) scaleY(-1)}[class*=uil-].flip-vertical.rotate-180:before{transform:rotate(180deg) scaleY(-1)}[class*=uil-].flip-vertical.rotate-270:before{transform:rotate(270deg) scaleY(-1)}[class*=uil-].rotate-90:before{transform:rotate(90deg)}[class*=uil-].rotate-180:before{transform:rotate(180deg)}[class*=uil-].rotate-270:before{transform:rotate(270deg)}.uil-comment-block:before{content:'\e800'}.uil-comment-alt-edit:before{content:'\e801'}.uil-comments:before{content:'\e802'}.uil-comment-alt-search:before{content:'\e803'}.uil-comment-shield:before{content:'\e804'}.uil-comment-alt-dots:before{content:'\e805'}.uil-comment-download:before{content:'\e806'}.uil-comment-check:before{content:'\e807'}.uil-comment-alt-chart-lines:before{content:'\e808'}.uil-comment-alt-download:before{content:'\e809'}.uil-comment-alt-lock:before{content:'\e80a'}.uil-comment-medical:before{content:'\e80b'}.uil-comment-alt-heart:before{content:'\e80c'}.uil-comment:before{content:'\e80d'}.uil-comment-alt-share:before{content:'\e80e'}.uil-comment-alt-upload:before{content:'\e80f'}.uil-comment-dots:before{content:'\e810'}.uil-comment-alt-lines:before{content:'\e811'}.uil-comment-lock:before{content:'\e812'}.uil-comment-heart:before{content:'\e813'}.uil-comment-info-alt:before{content:'\e814'}.uil-comment-upload:before{content:'\e815'}.uil-comment-alt-medical:before{content:'\e816'}.uil-chat-info:before{content:'\e817'}.uil-comment-alt-notes:before{content:'\e818'}.uil-comment-alt-plus:before{content:'\e819'}.uil-comment-alt-image:before{content:'\e81a'}.uil-comment-share:before{content:'\e81b'}.uil-comment-edit:before{content:'\e81c'}.uil-comment-alt-block:before{content:'\e81d'}.uil-comment-chart-line:before{content:'\e81e'}.uil-comment-alt-question:before{content:'\e81f'}.uil-comment-lines:before{content:'\e820'}.uil-comment-redo:before{content:'\e821'}.uil-comment-alt-check:before{content:'\e822'}.uil-comment-alt-shield:before{content:'\e823'}.uil-chat:before{content:'\e824'}.uil-comment-alt-message:before{content:'\e825'}.uil-comment-search:before{content:'\e826'}.uil-chat-bubble-user:before{content:'\e827'}.uil-comments-alt:before{content:'\e828'}.uil-comment-image:before{content:'\e829'}.uil-comment-alt:before{content:'\e82a'}.uil-comment-verify:before{content:'\e82b'}.uil-comment-plus:before{content:'\e82c'}.uil-comment-question:before{content:'\e82d'}.uil-comment-notes:before{content:'\e82e'}.uil-comment-alt-exclamation:before{content:'\e82f'}.uil-comment-exclamation:before{content:'\e830'}.uil-no-entry:before{content:'\e831'}.uil-screw:before{content:'\e832'}.uil-tape:before{content:'\e833'}.uil-paint-tool:before{content:'\e834'}.uil-comment-alt-verify:before{content:'\e835'}.uil-comment-alt-redo:before{content:'\e836'}.uil-trowel:before{content:'\e837'}.uil-drill:before{content:'\e838'}.uil-comment-info:before{content:'\e839'}.uil-jackhammer:before{content:'\e83a'}.uil-comment-alt-info:before{content:'\e83b'}.uil-wheel-barrow:before{content:'\e83c'}.uil-comment-message:before{content:'\e83d'}.uil-shovel:before{content:'\e83e'}.uil-keyhole-square:before{content:'\e83f'}.uil-keyhole-circle:before{content:'\e840'}.uil-traffic-barrier:before{content:'\e841'}.uil-keyhole-square-full:before{content:'\e842'}.uil-wall:before{content:'\e843'}.uil-constructor:before{content:'\e844'}.uil-hard-hat:before{content:'\e845'}.uil-shield-exclamation:before{content:'\e846'}.uil-lock-open-alt:before{content:'\e847'}.uil-unlock:before{content:'\e848'}.uil-unlock-alt:before{content:'\e849'}.uil-heart-alt:before{content:'\e84a'}.uil-octagon:before{content:'\e84b'}.uil-lock:before{content:'\e84c'}.uil-triangle:before{content:'\e84d'}.uil-star:before{content:'\e84e'}.uil-shield-slash:before{content:'\e84f'}.uil-lock-access:before{content:'\e850'}.uil-pentagon:before{content:'\e851'}.uil-shield-check:before{content:'\e852'}.uil-square:before{content:'\e853'}.uil-shield-question:before{content:'\e854'}.uil-padlock:before{content:'\e855'}.uil-wheelchair:before{content:'\e856'}.uil-lock-alt:before{content:'\e857'}.uil-polygon:before{content:'\e858'}.uil-circle:before{content:'\e859'}.uil-copyright:before{content:'\e85a'}.uil-closed-captioning:before{content:'\e85b'}.uil-trademark:before{content:'\e85c'}.uil-heart:before{content:'\e85d'}.uil-parking-circle:before{content:'\e85e'}.uil-mars:before{content:'\e85f'}.uil-sad-squint:before{content:'\e860'}.uil-registered:before{content:'\e861'}.uil-nerd:before{content:'\e862'}.uil-smile:before{content:'\e863'}.uil-meh-alt:before{content:'\e864'}.uil-annoyed:before{content:'\e865'}.uil-sad-dizzy:before{content:'\e866'}.uil-sad:before{content:'\e867'}.uil-servicemark:before{content:'\e868'}.uil-closed-captioning-slash:before{content:'\e869'}.uil-venus:before{content:'\e86a'}.uil-creative-commons-pd:before{content:'\e86b'}.uil-frown:before{content:'\e86c'}.uil-accessible-icon-alt:before{content:'\e86d'}.uil-squint:before{content:'\e86e'}.uil-meh:before{content:'\e86f'}.uil-silence:before{content:'\e870'}.uil-dizzy-meh:before{content:'\e871'}.uil-parking-square:before{content:'\e872'}.uil-shield:before{content:'\e873'}.uil-smile-dizzy:before{content:'\e874'}.uil-ninja:before{content:'\e875'}.uil-smile-beam:before{content:'\e876'}.uil-laughing:before{content:'\e877'}.uil-previous:before{content:'\ea5b'}.uil-film:before{content:'\ea5c'}.uil-image-broken:before{content:'\ea5d'}.uil-incoming-call:before{content:'\ea5e'}.uil-image-check:before{content:'\ea5f'}.uil-image-plus:before{content:'\ea60'}.uil-video:before{content:'\ea61'}.uil-camera-plus:before{content:'\ea62'}.uil-play:before{content:'\ea63'}.uil-cloud-question:before{content:'\ea64'}.uil-skip-forward:before{content:'\ea65'}.uil-image-lock:before{content:'\ea66'}.uil-skip-forward-circle:before{content:'\ea67'}.uil-skip-forward-alt:before{content:'\ea68'}.uil-step-backward-circle:before{content:'\ea69'}.uil-boombox:before{content:'\ea6a'}.uil-step-backward-alt:before{content:'\ea6b'}.uil-image-share:before{content:'\ea6c'}.uil-cloud-database-tree:before{content:'\ea6d'}.uil-snowflake:before{content:'\ea6e'}.uil-temperature-quarter:before{content:'\ea6f'}.uil-cloud-showers-heavy:before{content:'\ea70'}.uil-fahrenheit:before{content:'\ea71'}.uil-snowflake-alt:before{content:'\ea72'}.uil-cloud-wind:before{content:'\ea73'}.uil-tornado:before{content:'\ea74'}.uil-cloud-sun-hail:before{content:'\ea75'}.uil-cloud:before{content:'\ea76'}.uil-image-edit:before{content:'\ea77'}.uil-cloud-moon-hail:before{content:'\ea78'}.uil-temperature-empty:before{content:'\ea79'}.uil-cloud-sun-rain:before{content:'\ea7a'}.uil-thunderstorm:before{content:'\ea7b'}.uil-thunderstorm-sun:before{content:'\ea7c'}.uil-temperature-three-quarter:before{content:'\ea7d'}.uil-thunderstorm-moon:before{content:'\ea7e'}.uil-snow-flake:before{content:'\ea7f'}.uil-raindrops:before{content:'\ea80'}.uil-forecastcloud-moon-tear:before{content:'\ea81'}.uil-cloud-rain:before{content:'\ea82'}.uil-cloud-sun-tear:before{content:'\ea83'}.uil-cloud-moon-showers:before{content:'\ea84'}.uil-cloud-rain-sun:before{content:'\ea85'}.uil-cloud-showers-alt:before{content:'\ea86'}.uil-cloud-showers:before{content:'\ea87'}.uil-cloud-hail:before{content:'\ea88'}.uil-cloud-drizzle:before{content:'\ea89'}.uil-cloud-moon:before{content:'\ea8a'}.uil-moon:before{content:'\ea8b'}.uil-cloud-moon-rain:before{content:'\ea8c'}.uil-moonset:before{content:'\ea8d'}.uil-celsius:before{content:'\ea8e'}.uil-image-upload:before{content:'\ea8f'}.uil-cloud-sun-meatball:before{content:'\ea90'}.uil-windsock:before{content:'\ea91'}.uil-stop-circle:before{content:'\ea92'}.uil-temperature-plus:before{content:'\ea93'}.uil-moon-eclipse:before{content:'\ea94'}.uil-vertical-align-top:before{content:'\ea95'}.uil-cloud-meatball:before{content:'\ea96'}.uil-temperature:before{content:'\ea97'}.uil-cloud-moon-meatball:before{content:'\ea98'}.uil-flip-h-alt:before{content:'\ea99'}.uil-vector-square-alt:before{content:'\ea9a'}.uil-object-ungroup:before{content:'\ea9b'}.uil-th:before{content:'\ea9c'}.uil-images:before{content:'\ea9d'}.uil-temperature-minus:before{content:'\ea9e'}.uil-flip-v:before{content:'\ea9f'}.uil-cloud-sun-rain-alt:before{content:'\eaa0'}.uil-square-full:before{content:'\eaa2'}.uil-vertical-distribute-bottom:before{content:'\eaa3'}.uil-panorama-h-alt:before{content:'\eaa4'}.uil-pathfinder-unite:before{content:'\eaa5'}.uil-wind:before{content:'\eaa6'}.uil-vector-square:before{content:'\eaa7'}.uil-vertical-align-bottom:before{content:'\eaa8'}.uil-ruler:before{content:'\eaa9'}.uil-object-group:before{content:'\eaaa'}.uil-panorama-v:before{content:'\eaab'}.uil-panorama-h:before{content:'\eaac'}.uil-temperature-half:before{content:'\eaad'}.uil-layers-alt:before{content:'\eaaf'}.uil-line-alt:before{content:'\eab0'}.uil-image-resize-landscape:before{content:'\eab1'}.uil-image-resize-square:before{content:'\eab2'}.uil-pathfinder:before{content:'\eab3'}.uil-flip-h:before{content:'\eab4'}.uil-horizontal-distribution-right:before{content:'\eab5'}.uil-horizontal-distribution-left:before{content:'\eab6'}.uil-horizontal-distribution-center:before{content:'\eab7'}.uil-horizontal-align-center:before{content:'\eab8'}.uil-ruler-combined:before{content:'\eab9'}.uil-horizontal-align-right:before{content:'\eaba'}.uil-horizontal-align-left:before{content:'\eabb'}.uil-table:before{content:'\eabc'}.uil-th-slash:before{content:'\eabd'}.uil-crop-alt-rotate-right:before{content:'\eabe'}.uil-apps:before{content:'\eabf'}.uil-exclude:before{content:'\eac0'}.uil-crop-alt:before{content:'\eac1'}.uil-grids:before{content:'\eac2'}.uil-flip-v-alt:before{content:'\eac3'}.uil-vertical-distribution-center:before{content:'\eac4'}.uil-crop-alt-rotate-left:before{content:'\eac5'}.uil-vertical-distribution-top:before{content:'\eac6'}.uil-brush-alt:before{content:'\eac7'}.uil-circle-layer:before{content:'\eac8'}.uil-modem:before{content:'\eac9'}.uil-webcam:before{content:'\eaca'}.uil-hdd:before{content:'\eacb'}.uil-monitor:before{content:'\eacc'}.uil-dice-four:before{content:'\eacd'}.uil-wifi-router:before{content:'\eace'}.uil-dice-five:before{content:'\eacf'}.uil-dice-one:before{content:'\ead0'}.uil-dice-two:before{content:'\ead1'}.uil-dice-six:before{content:'\ead2'}.uil-windy:before{content:'\ead3'}.uil-swatchbook:before{content:'\ead4'}.uil-cancel:before{content:'\ead5'}.uil-clouds:before{content:'\ead6'}.uil-mountains-sun:before{content:'\ead7'}.uil-history:before{content:'\ead8'}.uil-n-a:before{content:'\ead9'}.uil-plane:before{content:'\eada'}.uil-plane-departure:before{content:'\eadb'}.uil-auto-flash:before{content:'\eadc'}.uil-glass-martini:before{content:'\eadd'}.uil-mobile-vibrate:before{content:'\eade'}.uil-trees:before{content:'\eadf'}.uil-voicemail:before{content:'\eae0'}.uil-voicemail-rectangle:before{content:'\eae1'}.uil-plane-fly:before{content:'\eae2'}.uil-sync-exclamation:before{content:'\eae3'}.uil-tachometer-fast:before{content:'\eae4'}.uil-sign-in-alt:before{content:'\eae5'}.uil-archive-alt:before{content:'\eae6'}.uil-power:before{content:'\eae7'}.uil-pizza-slice:before{content:'\eae9'}.uil-refresh:before{content:'\eaea'}.uil-anchor:before{content:'\eaeb'}.uil-sync-slash:before{content:'\eaec'}.uil-upload:before{content:'\eaed'}.uil-glass:before{content:'\eaee'}.uil-sign-out-alt:before{content:'\eaef'}.uil-newspaper:before{content:'\eaf0'}.uil-signin:before{content:'\eaf1'}.uil-processor:before{content:'\eaf2'}.uil-hunting:before{content:'\eaf3'}.uil-coffee:before{content:'\eaf4'}.uil-history-alt:before{content:'\eaf5'}.uil-weight:before{content:'\eaf6'}.uil-plane-arrival:before{content:'\eaf7'}.uil-gift:before{content:'\eaf8'}.uil-circuit:before{content:'\eaf9'}.uil-archive:before{content:'\eafa'}.uil-ban:before{content:'\eafb'}.uil-crosshair-alt:before{content:'\eafc'}.uil-crosshair:before{content:'\eafd'}.uil-record-audio:before{content:'\eafe'}.uil-flower:before{content:'\eaff'}.uil-airplay:before{content:'\eb00'}.uil-rss-interface:before{content:'\eb01'}.uil-equal-circle:before{content:'\eb02'}.uil-shutter:before{content:'\eb03'}.uil-microphone-slash:before{content:'\eb04'}.uil-life-ring:before{content:'\eb05'}.uil-sliders-v-alt:before{content:'\eb06'}.uil-compact-disc:before{content:'\eb07'}.uil-sitemap:before{content:'\eb08'}.uil-sliders-v:before{content:'\eb09'}.uil-shutter-alt:before{content:'\eb0a'}.uil-clapper-board:before{content:'\eb0b'}.uil-water:before{content:'\eb0c'}.uil-rainbow:before{content:'\eb0d'}.uil-desert:before{content:'\eb0e'}.uil-sunset:before{content:'\eb0f'}.uil-mountains:before{content:'\eb10'}.uil-bolt-slash:before{content:'\eb11'}.uil-telescope:before{content:'\eb12'}.uil-sperms:before{content:'\eb13'}.uil-game-structure:before{content:'\eb14'}.uil-ticket:before{content:'\eb15'}.uil-presentation-play:before{content:'\eb16'}.uil-book-open:before{content:'\eb17'}.uil-notebooks:before{content:'\eb18'}.uil-award-alt:before{content:'\eb19'}.uil-bug:before{content:'\eb1a'}.uil-browser:before{content:'\eb1b'}.uil-rss-alt:before{content:'\eb1c'}.uil-building:before{content:'\eb1d'}.uil-lamp:before{content:'\eb1e'}.uil-heart-rate:before{content:'\eb1f'}.uil-swimmer:before{content:'\eb20'}.uil-pump:before{content:'\eb21'}.uil-crockery:before{content:'\eb22'}.uil-message:before{content:'\eb23'}.uil-bed-double:before{content:'\eb24'}.uil-rope-way:before{content:'\eb25'}.uil-water-glass:before{content:'\eb26'}.uil-rotate-360:before{content:'\eb27'}.uil-feedback:before{content:'\eb28'}.uil-bed:before{content:'\eb29'}.uil-utensils:before{content:'\eb2a'}.uil-align-center-h:before{content:'\eb2b'}.uil-baby-carriage:before{content:'\eb2c'}.uil-post-stamp:before{content:'\eb2d'}.uil-arrow-growth:before{content:'\eb2e'}.uil-enter:before{content:'\eb2f'}.uil-arrow:before{content:'\eb30'}.uil-arrows-shrink-h:before{content:'\eb31'}.uil-arrows-resize:before{content:'\eb32'}.uil-presentation:before{content:'\eb33'}.uil-arrows-h:before{content:'\eb34'}.uil-scaling-right:before{content:'\eb35'}.uil-import:before{content:'\eb36'}.uil-arrow-circle-down:before{content:'\eb37'}.uil-angle-double-down:before{content:'\eb38'}.uil-chart-down:before{content:'\eb39'}.uil-angle-down:before{content:'\eb3a'}.uil-expand-left:before{content:'\eb3b'}.uil-arrow-resize-diagonal:before{content:'\eb3c'}.uil-exchange-alt:before{content:'\eb3d'}.uil-angle-double-left:before{content:'\eb3e'}.uil-expand-alt:before{content:'\eb3f'}.uil-compress-arrows:before{content:'\eb40'}.uil-caret-right:before{content:'\eb41'}.uil-scroll-h:before{content:'\eb42'}.uil-angle-double-right:before{content:'\eb43'}.uil-arrow-to-bottom:before{content:'\eb44'}.uil-sort:before{content:'\eb45'}.uil-scaling-left:before{content:'\eb46'}.uil-arrows-resize-h:before{content:'\eb47'}.uil-arrow-from-top:before{content:'\eb48'}.uil-arrows-up-right:before{content:'\eb49'}.uil-arrows-left-down:before{content:'\eb4a'}.uil-arrows-right-down:before{content:'\eb4b'}.uil-arrows-h-alt:before{content:'\eb4c'}.uil-download-alt:before{content:'\eb4d'}.uil-compress-point:before{content:'\eb4e'}.uil-arrow-up-left:before{content:'\eb4f'}.uil-arrow-compress-h:before{content:'\eb50'}.uil-arrows-v-alt:before{content:'\eb51'}.uil-arrows-v:before{content:'\eb52'}.uil-arrows-shrink-v:before{content:'\eb53'}.uil-arrow-break:before{content:'\eb54'}.uil-align-center-v:before{content:'\eb55'}.uil-angle-up:before{content:'\eb56'}.uil-arrow-circle-up:before{content:'\eb57'}.uil-export:before{content:'\eb58'}.uil-arrows-resize-v:before{content:'\eb59'}.uil-upload-alt:before{content:'\eb5a'}.uil-arrow-up-right:before{content:'\eb5b'}.uil-corner-up-right:before{content:'\eb5c'}.uil-angle-double-up:before{content:'\eb5d'}.uil-sorting:before{content:'\eb5e'}.uil-exchange:before{content:'\eb5f'}.uil-corner-down-left:before{content:'\eb60'}.uil-corner-right-down:before{content:'\eb61'}.uil-corner-down-right:before{content:'\eb62'}.uil-corner-up-left:before{content:'\eb63'}.uil-corner-left-down:before{content:'\eb64'}.uil-maximize-left:before{content:'\eb65'}.uil-corner-up-right-alt:before{content:'\eb66'}.uil-corner-down-right-alt:before{content:'\eb67'}.uil-top-arrow-from-top:before{content:'\eb68'}.uil-top-arrow-to-top:before{content:'\eb69'}.uil-arrow-random:before{content:'\eb6a'}.uil-shuffle:before{content:'\eb6b'}.uil-direction:before{content:'\eb6c'}.uil-angle-right:before{content:'\eb6d'}.uil-arrow-circle-right:before{content:'\eb6e'}.uil-arrow-to-right:before{content:'\eb6f'}.uil-arrow-from-right:before{content:'\eb70'}.uil-expand-from-corner:before{content:'\eb71'}.uil-expand-arrows:before{content:'\eb72'}.uil-arrows-maximize:before{content:'\eb73'}.uil-arrow-down-left:before{content:'\eb74'}.uil-expand-arrows-alt:before{content:'\eb75'}.uil-compress-alt:before{content:'\eb76'}.uil-scroll:before{content:'\eb77'}.uil-arrow-circle-left:before{content:'\eb78'}.uil-angle-left:before{content:'\eb79'}.uil-arrows-merge:before{content:'\eb7a'}.uil-arrow-down-right:before{content:'\eb7b'}.uil-corner-up-left-alt:before{content:'\eb7c'}.uil-left-arrow-to-left:before{content:'\eb7d'}.uil-minus-path:before{content:'\eb7e'}.uil-left-arrow-from-left:before{content:'\eb7f'}.uil-repeat:before{content:'\eb80'}.uil-th-large:before{content:'\eb81'}.uil-line-spacing:before{content:'\eb82'}.uil-shrink:before{content:'\eb83'}.uil-compress-alt-left:before{content:'\eb84'}.uil-bring-front:before{content:'\eb85'}.uil-compress-lines:before{content:'\eb86'}.uil-bring-bottom:before{content:'\eb87'}.uil-compress-v:before{content:'\eb88'}.uil-spin:before{content:'\eb89'}.uil-border-out:before{content:'\eb8a'}.uil-border-horizontal:before{content:'\eb8b'}.uil-document-layout-left:before{content:'\eb8c'}.uil-compress:before{content:'\eb8d'}.uil-grip-horizontal-line:before{content:'\eb8e'}.uil-dialpad-alt:before{content:'\eb8f'}.uil-document-layout-center:before{content:'\eb90'}.uil-border-bottom:before{content:'\eb91'}.uil-dialpad:before{content:'\eb92'}.uil-document-layout-right:before{content:'\eb93'}.uil-align-center:before{content:'\eb94'}.uil-sort-amount-down:before{content:'\eb95'}.uil-align-center-alt:before{content:'\eb96'}.uil-align-letter-right:before{content:'\eb97'}.uil-border-alt:before{content:'\eb98'}.uil-align-center-justify:before{content:'\eb99'}.uil-align-alt:before{content:'\eb9a'}.uil-border-vertical:before{content:'\eb9b'}.uil-sort-amount-up:before{content:'\eb9c'}.uil-wrap-text:before{content:'\eb9d'}.uil-align-left-justify:before{content:'\eb9e'}.uil-angle-right-b:before{content:'\eb9f'}.uil-paragraph:before{content:'\eba0'}.uil-right-indent-alt:before{content:'\eba1'}.uil-border-right:before{content:'\eba2'}.uil-align-right-justify:before{content:'\eba3'}.uil-align:before{content:'\eba4'}.uil-border-clear:before{content:'\eba5'}.uil-align-right:before{content:'\eba6'}.uil-list-ui-alt:before{content:'\eba7'}.uil-left-indent:before{content:'\eba8'}.uil-left-indent-alt:before{content:'\eba9'}.uil-border-left:before{content:'\ebaa'}.uil-border-top:before{content:'\ebab'}.uil-align-justify:before{content:'\ebac'}.uil-subject:before{content:'\ebad'}.uil-bars:before{content:'\ebae'}.uil-eye:before{content:'\ebaf'}.uil-exposure-increase:before{content:'\ebb0'}.uil-bright:before{content:'\ebb1'}.uil-exposure-alt:before{content:'\ebb2'}.uil-capture:before{content:'\ebb3'}.uil-arrow-left:before{content:'\ebb4'}.uil-arrow-right:before{content:'\ebb5'}.uil-arrow-up:before{content:'\ebb6'}.uil-focus-target:before{content:'\ebb7'}.uil-external-link-alt:before{content:'\ebb8'}.uil-card-atm:before{content:'\ebb9'}.uil-focus-add:before{content:'\ebba'}.uil-focus:before{content:'\ebbb'}.uil-border-inner:before{content:'\ebbc'}.uil-glass-tea:before{content:'\ebbd'}.uil-streering:before{content:'\ebbe'}.uil-tv-retro-slash:before{content:'\ebbf'}.uil-wrench:before{content:'\ebc0'}.uil-football-american:before{content:'\ebc1'}.uil-water-drop-slash:before{content:'\ebc2'}.uil-layers:before{content:'\ebc3'}.uil-print-slash:before{content:'\ebc4'}.uil-android-phone-slash:before{content:'\ebc5'}.uil-calendar-slash:before{content:'\ebc6'}.uil-image-slash:before{content:'\ebc7'}.uil-image-alt-slash:before{content:'\ebc8'}.uil-lock-slash:before{content:'\ebc9'}.uil-money-bill-slash:before{content:'\ebca'}.uil-comment-slash:before{content:'\ebcb'}.uil-map-marker-slash:before{content:'\ebcc'}.uil-tear:before{content:'\ebcd'}.uil-comment-alt-slash:before{content:'\ebce'}.uil-folder-slash:before{content:'\ebcf'}.uil-filter-slash:before{content:'\ebd0'}.uil-file-slash:before{content:'\ebd1'}.uil-file-lanscape-slash:before{content:'\ebd2'}.uil-glass-martini-alt-slash:before{content:'\ebd3'}.uil-car-slash:before{content:'\ebd4'}.uil-camera-slash:before{content:'\ebd5'}.uil-list-ul:before{content:'\ebd6'}.uil-layer-group-slash:before{content:'\ebd7'}.uil-plug:before{content:'\ebd8'}.uil-bell-slash:before{content:'\ebd9'}.uil-expand-right:before{content:'\ebda'}.uil-bell:before{content:'\ebdb'}.uil-desktop-alt-slash:before{content:'\ebdc'}.uil-align-left:before{content:'\ebdd'}.uil-layers-slash:before{content:'\ebde'}.uil-angry:before{content:'\ebdf'}.uil-ear:before{content:'\ebe0'}.uil-desktop-slash:before{content:'\ebe1'}.uil-text-strike-through:before{content:'\ebe2'}.uil-bold:before{content:'\ebe3'}.uil-text:before{content:'\ebe4'}.uil-assistive-listening-systems:before{content:'\ebe5'}.uil-palette:before{content:'\ebe6'}.uil-underline:before{content:'\ebe7'}.uil-text-fields:before{content:'\ebe8'}.uil-arrow-down:before{content:'\ebe9'}.uil-text-size:before{content:'\ebea'}.uil-italic:before{content:'\ebeb'}.uil-right-to-left-text-direction:before{content:'\ebec'}.uil-sigma:before{content:'\ebed'}.uil-12-plus:before{content:'\ebee'}.uil-left-to-right-text-direction:before{content:'\ebef'}.uil-10-plus:before{content:'\ebf0'}.uil-16-plus:before{content:'\ebf1'}.uil-13-plus:before{content:'\ebf2'}.uil-21-plus:before{content:'\ebf3'}.uil-17-plus:before{content:'\ebf4'}.uil-6-plus:before{content:'\ebf5'}.uil-0-plus:before{content:'\ebf6'}.uil-3-plus:before{content:'\ebf7'}.uil-eye-slash:before{content:'\ebf8'}.uil-archway:before{content:'\ebf9'}.uil-18-plus:before{content:'\ebfa'}.uil-robot:before{content:'\ebfb'}.uil-selfie:before{content:'\ebfc'}.uil-bag-slash:before{content:'\ebfd'}.uil-instagram:before{content:'\ebfe'}.uil-line:before{content:'\ebff'}.uil-facebook-messenger:before{content:'\ec00'}.uil-facebook-f:before{content:'\ec01'}.uil-black-berry:before{content:'\ec02'}.uil-linkedin:before{content:'\ec03'}.uil-snapchat-ghost:before{content:'\ec04'}.uil-intercom:before{content:'\ec05'}.uil-youtube:before{content:'\ec06'}.uil-snapchat-square:before{content:'\ec07'}.uil-apple:before{content:'\ec08'}.uil-instagram-alt:before{content:'\ec09'}.uil-whatsapp-alt:before{content:'\ec0a'}.uil-behance:before{content:'\ec0b'}.uil-twitter:before{content:'\ec0c'}.uil-500px:before{content:'\ec0d'}.uil-tumblr:before{content:'\ec0e'}.uil-github-alt:before{content:'\ec0f'}.uil-tumblr-square:before{content:'\ec10'}.uil-google:before{content:'\ec11'}.uil-medium-m:before{content:'\ec12'}.uil-slack:before{content:'\ec13'}.uil-paypal:before{content:'\ec14'}.uil-reddit-alien-alt:before{content:'\ec15'}.uil-linkedin-alt:before{content:'\ec16'}.uil-google-hangouts:before{content:'\ec17'}.uil-java-script:before{content:'\ec18'}.uil-google-play:before{content:'\ec19'}.uil-google-drive:before{content:'\ec1a'}.uil-asterisk:before{content:'\ec1b'}.uil-android:before{content:'\ec1c'}.uil-github:before{content:'\ec1d'}.uil-balance-scale:before{content:'\ec1e'}.uil-amazon:before{content:'\ec1f'}.uil-slack-alt:before{content:'\ec20'}.uil-dashboard:before{content:'\ec21'}.uil-vuejs-alt:before{content:'\ec22'}.uil-adobe-alt:before{content:'\ec23'}.uil-ankh:before{content:'\ec24'}.uil-twitter-alt:before{content:'\ec25'}.uil-opera:before{content:'\ec26'}.uil-intercom-alt:before{content:'\ec27'}.uil-tumblr-alt:before{content:'\ec28'}.uil-react:before{content:'\ec29'}.uil-camera-change:before{content:'\ec2a'}.uil-master-card:before{content:'\ec2b'}.uil-snapchat-alt:before{content:'\ec2c'}.uil-opera-alt:before{content:'\ec2d'}.uil-html3-alt:before{content:'\ec2e'}.uil-swiggy:before{content:'\ec2f'}.uil-html3:before{content:'\ec30'}.uil-google-hangouts-alt:before{content:'\ec31'}.uil-adobe:before{content:'\ec32'}.uil-facebook-messenger-alt:before{content:'\ec33'}.uil-blogger-alt:before{content:'\ec34'}.uil-blogger:before{content:'\ec35'}.uil-behance-alt:before{content:'\ec36'}.uil-apple-alt:before{content:'\ec37'}.uil-bitcoin:before{content:'\ec38'}.uil-megaphone:before{content:'\ec39'}.uil-bitcoin-alt:before{content:'\ec3a'}.uil-bowling-ball:before{content:'\ec3b'}.uil-percentage:before{content:'\ec3c'}.uil-hourglass:before{content:'\ec3d'}.uil-process:before{content:'\ec3e'}.uil-university:before{content:'\ec3f'}.uil-skype-alt:before{content:'\ec40'}.uil-wind-sun:before{content:'\ec41'}.uil-vk-alt:before{content:'\ec42'}.uil-skype:before{content:'\ec43'}.uil-telegram-alt:before{content:'\ec44'}.uil-vuejs:before{content:'\ec45'}.uil-vk:before{content:'\ec46'}.uil-telegram:before{content:'\ec47'}.uil-yin-yang:before{content:'\ec48'}.uil-angle-left-b:before{content:'\ec49'}.uil-bath:before{content:'\ec4a'}.uil-metro:before{content:'\ec4b'}.uil-comment-add:before{content:'\ec4c'}.uil-fire:before{content:'\ec4d'}.uil-qrcode-scan:before{content:'\ec4e'}.uil-panel-add:before{content:'\ec4f'}.uil-brackets-curly:before{content:'\ec50'}.uil-folder-open:before{content:'\ec51'}.uil-comparison:before{content:'\ec52'}.uil-file-export:before{content:'\ec53'}.uil-channel-add:before{content:'\ec54'}.uil-rupee-sign:before{content:'\ec55'}.uil-channel:before{content:'\ec56'}.uil-link-add:before{content:'\ec57'}.uil-file-import:before{content:'\ec58'}.uil-x:before{content:'\ec59'}.uil-save:before{content:'\ec5a'}.uil-heart-break:before{content:'\ec5b'}.uil-tachometer-fast-alt:before{content:'\ec5c'}.uil-facebook:before{content:'\ec5d'}.uil-create-dashboard:before{content:'\ec5e'}.uil-whatsapp:before{content:'\ec5f'}.uil-setting:before{content:'\ec60'}.uil-rocket:before{content:'\ec61'}.uil-share:before{content:'\ec62'}.uil-x-add:before{content:'\ec63'}.uil-user-nurse:before{content:'\ec64'}.uil-microscope:before{content:'\ec65'}.uil-virus-slash:before{content:'\ec66'}.uil-visual-studio:before{content:'\ec67'}.uil-head-side-mask:before{content:'\ec68'}.uil-baseball-ball:before{content:'\ec69'}.uil-stethoscope-alt:before{content:'\ec6a'}.uil-hospital-symbol:before{content:'\ec6b'}.uil-hospital-square-sign:before{content:'\ec6c'}.uil-head-side:before{content:'\ec6d'}.uil-head-side-cough:before{content:'\ec6e'}.uil-clinic-medical:before{content:'\ec6f'}.uil-wind-moon:before{content:'\ec70'}.uil-hospital:before{content:'\ec71'}.uil-stethoscope:before{content:'\ec72'}.uil-sanitizer:before{content:'\ec73'}.uil-toilet-paper:before{content:'\ec74'}.uil-coronavirus:before{content:'\ec75'}.uil-user-arrows:before{content:'\ec76'}.uil-house-user:before{content:'\ec77'}.uil-social-distancing:before{content:'\ec78'}.uil-credit-card-search:before{content:'\ec79'}.uil-android-alt:before{content:'\ec7a'}.uil-shield-plus:before{content:'\ec7b'}.uil-user-md:before{content:'\ec7c'}.uil-transaction:before{content:'\ec7d'}.uil-store-slash:before{content:'\ec7e'}.uil-code-branch:before{content:'\ec7f'}.uil-google-drive-alt:before{content:'\ec80'}.uil-envelope-block:before{content:'\ec81'}.uil-mailbox-alt:before{content:'\ec82'}.uil-signout:before{content:'\ec83'}.uil-slider-h:before{content:'\ec84'}.uil-lira-sign:before{content:'\ec85'}.uil-slider-h-range:before{content:'\ec86'}.uil-file-graph:before{content:'\ec87'}.uil-wordpress-simple:before{content:'\ec88'}.uil-bing:before{content:'\ec89'}.uil-wordpress:before{content:'\ec8a'}.uil-html5:before{content:'\ec8b'}.uil-programming-language:before{content:'\ec8c'}.uil-css3-simple:before{content:'\ec8d'}.uil-html5-alt:before{content:'\ec8e'}.uil-discord:before{content:'\ec8f'}.uil-draggabledots:before{content:'\ec90'}.uil-font:before{content:'\ec91'}.uil-video-question:before{content:'\ec92'}.uil-headphone-slash:before{content:'\ec93'}.uil-info:before{content:'\ec94'}.uil-letter-chinese-a:before{content:'\ec95'}.uil-letter-hindi-a:before{content:'\ec96'}.uil-english-to-chinese:before{content:'\ec97'}.uil-question:before{content:'\ec98'}.uil-letter-english-a:before{content:'\ec99'}.uil-hindi-to-chinese:before{content:'\ec9a'}.uil-inbox:before{content:'\ec9b'}.uil-letter-japanese-a:before{content:'\ec9c'}.uil-exclamation:before{content:'\ec9d'}.uil-language:before{content:'\ec9e'}.uil-backspace:before{content:'\ec9f'}.uil-window-grid:before{content:'\eca0'}.uil-cloud-sun:before{content:'\eca1'}.uil-vertical-align-center:before{content:'\eca2'}.uil-raindrops-alt:before{content:'\eca3'}.uil-sanitizer-alt:before{content:'\eca4'}.uil-estate:before{content:'\eca5'}.uil-file-contract:before{content:'\eca6'}.uil-fidget-spinner:before{content:'\eca7'}.uil-spinner:before{content:'\eca8'}.uil-spinner-alt:before{content:'\eca9'}.uil-elipsis-double-v-alt:before{content:'\ecaa'}.uil-list-ol:before{content:'\ecab'}.uil-list-ol-alt:before{content:'\ecac'}.uil-docker:before{content:'\ecad'}.uil-linux:before{content:'\ecae'}.uil-hipchat:before{content:'\ecaf'}.uil-gitlab:before{content:'\ecb0'}.uil-lottiefiles-alt:before{content:'\ecb1'}.uil-pagerduty:before{content:'\ecb2'}.uil-microsoft:before{content:'\ecb3'}.uil-windows:before{content:'\ecb4'}.uil-pagelines:before{content:'\ecb5'}.uil-grin:before{content:'\e878'}.uil-sad-cry:before{content:'\e879'}.uil-sad-crying:before{content:'\e87a'}.uil-surprise:before{content:'\e87b'}.uil-unamused:before{content:'\e87c'}.uil-confused:before{content:'\e87d'}.uil-grin-tongue-wink:before{content:'\e87e'}.uil-grin-tongue-wink-alt:before{content:'\e87f'}.uil-kid:before{content:'\e880'}.uil-smile-wink-alt:before{content:'\e881'}.uil-smile-squint-wink:before{content:'\e882'}.uil-annoyed-alt:before{content:'\e883'}.uil-silent-squint:before{content:'\e884'}.uil-sick:before{content:'\e885'}.uil-shopping-cart-alt:before{content:'\e886'}.uil-shopping-bag:before{content:'\e887'}.uil-pricetag-alt:before{content:'\e888'}.uil-shopping-cart:before{content:'\e889'}.uil-smile-squint-wink-alt:before{content:'\e88a'}.uil-store-alt:before{content:'\e88b'}.uil-emoji:before{content:'\e88c'}.uil-trademark-circle:before{content:'\e88d'}.uil-basketball:before{content:'\e88e'}.uil-square-shape:before{content:'\e88f'}.uil-label:before{content:'\e890'}.uil-shopping-basket:before{content:'\e891'}.uil-smile-wink:before{content:'\e892'}.uil-tag:before{content:'\e893'}.uil-label-alt:before{content:'\e894'}.uil-tag-alt:before{content:'\e895'}.uil-store:before{content:'\e896'}.uil-meh-closed-eye:before{content:'\e897'}.uil-trophy:before{content:'\e898'}.uil-dice-three:before{content:'\e899'}.uil-football-ball:before{content:'\e89a'}.uil-basketball-hoop:before{content:'\e89b'}.uil-club:before{content:'\e89c'}.uil-tennis-ball:before{content:'\e89d'}.uil-football:before{content:'\e89e'}.uil-volleyball:before{content:'\e89f'}.uil-heart-sign:before{content:'\e8a0'}.uil-spade:before{content:'\e8a1'}.uil-diamond:before{content:'\e8a2'}.uil-money-stack:before{content:'\e8a3'}.uil-money-withdrawal:before{content:'\e8a4'}.uil-presentation-line:before{content:'\e8a5'}.uil-kayak:before{content:'\e8a6'}.uil-chart-pie:before{content:'\e8a7'}.uil-dumbbell:before{content:'\e8a8'}.uil-suitcase-alt:before{content:'\e8a9'}.uil-yen:before{content:'\e8aa'}.uil-yen-circle:before{content:'\e8ab'}.uil-briefcase-alt:before{content:'\e8ac'}.uil-receipt:before{content:'\e8ad'}.uil-pound:before{content:'\e8ae'}.uil-invoice:before{content:'\e8af'}.uil-pound-circle:before{content:'\e8b0'}.uil-analysis:before{content:'\e8b1'}.uil-suitcase:before{content:'\e8b2'}.uil-moneybag-alt:before{content:'\e8b3'}.uil-lottiefiles:before{content:'\ecb6'}.uil-okta:before{content:'\ecb7'}.uil-illustration:before{content:'\ecb8'}.uil-icons:before{content:'\ecb9'}.uil-bag-alt:before{content:'\e8b4'}.uil-moneybag:before{content:'\e8b5'}.uil-bag:before{content:'\e8b6'}.uil-money-insert:before{content:'\e8b7'}.uil-chart-line:before{content:'\e8b8'}.uil-dollar-sign-alt:before{content:'\e8b9'}.uil-euro:before{content:'\e8ba'}.uil-usd-circle:before{content:'\e8bb'}.uil-euro-circle:before{content:'\e8bc'}.uil-usd-square:before{content:'\e8bd'}.uil-money-bill-stack:before{content:'\e8be'}.uil-dollar-alt:before{content:'\e8bf'}.uil-money-withdraw:before{content:'\e8c0'}.uil-credit-card:before{content:'\e8c1'}.uil-money-bill:before{content:'\e8c2'}.uil-bitcoin-sign:before{content:'\e8c3'}.uil-signal-alt-3:before{content:'\e8c4'}.uil-receipt-alt:before{content:'\e8c5'}.uil-graph-bar:before{content:'\e8c6'}.uil-analytics:before{content:'\e8c7'}.uil-table-tennis:before{content:'\e8c8'}.uil-bill:before{content:'\e8c9'}.uil-chart-bar:before{content:'\e8ca'}.uil-chart-growth:before{content:'\e8cb'}.uil-chart-growth-alt:before{content:'\e8cc'}.uil-shop:before{content:'\e8cd'}.uil-chart-bar-alt:before{content:'\e8ce'}.uil-dollar-sign:before{content:'\e8cf'}.uil-chart:before{content:'\e8d0'}.uil-briefcase:before{content:'\e8d1'}.uil-bitcoin-circle:before{content:'\e8d2'}.uil-chart-pie-alt:before{content:'\e8d3'}.uil-golf-ball:before{content:'\e8d4'}.uil-calculator-alt:before{content:'\e8d5'}.uil-coins:before{content:'\e8d6'}.uil-map-pin-alt:before{content:'\e8d7'}.uil-lightbulb:before{content:'\e8d8'}.uil-map-marker-question:before{content:'\e8d9'}.uil-map-marker-shield:before{content:'\e8da'}.uil-schedule:before{content:'\e8db'}.uil-calendar-alt:before{content:'\e8dc'}.uil-crosshairs:before{content:'\e8dd'}.uil-puzzle-piece:before{content:'\e8de'}.uil-gold:before{content:'\e8df'}.uil-compass:before{content:'\e8e0'}.uil-map:before{content:'\e8e1'}.uil-location-point:before{content:'\e8e2'}.uil-map-marker-info:before{content:'\e8e3'}.uil-map-marker-edit:before{content:'\e8e4'}.uil-map-marker-plus:before{content:'\e8e5'}.uil-map-pin:before{content:'\e8e6'}.uil-navigator:before{content:'\e8e7'}.uil-location-pin-alt:before{content:'\e8e8'}.uil-map-marker-minus:before{content:'\e8e9'}.uil-map-marker-alt:before{content:'\e8ea'}.uil-sign-left:before{content:'\e8eb'}.uil-map-marker:before{content:'\e8ec'}.uil-sign-right:before{content:'\e8ed'}.uil-directions:before{content:'\e8ee'}.uil-location-arrow:before{content:'\e8ef'}.uil-dna:before{content:'\e8f0'}.uil-sign-alt:before{content:'\e8f1'}.uil-presentation-lines-alt:before{content:'\e8f2'}.uil-atom:before{content:'\e8f3'}.uil-flask:before{content:'\e8f4'}.uil-diary:before{content:'\e8f5'}.uil-presentation-times:before{content:'\e8f6'}.uil-diary-alt:before{content:'\e8f7'}.uil-presentation-plus:before{content:'\e8f8'}.uil-presentation-minus:before{content:'\e8f9'}.uil-presentation-edit:before{content:'\e8fa'}.uil-backpack:before{content:'\e8fb'}.uil-notes:before{content:'\e8fc'}.uil-location-arrow-alt:before{content:'\e8fd'}.uil-book-alt:before{content:'\e8fe'}.uil-book:before{content:'\e8ff'}.uil-medal:before{content:'\e900'}.uil-award:before{content:'\e901'}.uil-flask-potion:before{content:'\e902'}.uil-bell-school:before{content:'\e903'}.uil-podium:before{content:'\e904'}.uil-graduation-cap:before{content:'\e905'}.uil-medical-square:before{content:'\e906'}.uil-ambulance:before{content:'\e907'}.uil-medical-square-full:before{content:'\e908'}.uil-cell:before{content:'\e909'}.uil-band-aid:before{content:'\e90a'}.uil-lightbulb-alt:before{content:'\e90b'}.uil-wheelchair-alt:before{content:'\e90c'}.uil-thermometer:before{content:'\e90d'}.uil-abacus:before{content:'\e90e'}.uil-syringe:before{content:'\e90f'}.uil-tablets:before{content:'\e910'}.uil-capsule:before{content:'\e911'}.uil-stretcher:before{content:'\e912'}.uil-presentation-check:before{content:'\e913'}.uil-medkit:before{content:'\e914'}.uil-meeting-board:before{content:'\e915'}.uil-monitor-heart-rate:before{content:'\e916'}.uil-file-medical-alt:before{content:'\e917'}.uil-heartbeat:before{content:'\e918'}.uil-prescription-bottle:before{content:'\e919'}.uil-clock-two:before{content:'\e91a'}.uil-medical-drip:before{content:'\e91b'}.uil-book-medical:before{content:'\e91c'}.uil-watch-alt:before{content:'\e91d'}.uil-stopwatch:before{content:'\e91e'}.uil-watch:before{content:'\e91f'}.uil-clock:before{content:'\e920'}.uil-clock-seven:before{content:'\e921'}.uil-clock-three:before{content:'\e922'}.uil-clock-nine:before{content:'\e923'}.uil-clock-ten:before{content:'\e924'}.uil-files-landscapes:before{content:'\e925'}.uil-clock-five:before{content:'\e926'}.uil-brain:before{content:'\e927'}.uil-file-plus-alt:before{content:'\e928'}.uil-file-network:before{content:'\e929'}.uil-file-contract-dollar:before{content:'\e92a'}.uil-file-upload-alt:before{content:'\e92b'}.uil-clock-eight:before{content:'\e92c'}.uil-clipboard-alt:before{content:'\e92d'}.uil-books:before{content:'\e92e'}.uil-file-search-alt:before{content:'\e92f'}.uil-file-upload:before{content:'\e930'}.uil-file-share-alt:before{content:'\e931'}.uil-file-minus-alt:before{content:'\e932'}.uil-folder-minus:before{content:'\e933'}.uil-file-shield-alt:before{content:'\e934'}.uil-file-minus:before{content:'\e935'}.uil-folder-medical:before{content:'\e936'}.uil-file-redo-alt:before{content:'\e937'}.uil-file-lock-alt:before{content:'\e938'}.uil-folder-lock:before{content:'\e939'}.uil-heart-medical:before{content:'\e93a'}.uil-file-question-alt:before{content:'\e93b'}.uil-files-landscapes-alt:before{content:'\e93c'}.uil-file-medical:before{content:'\e93d'}.uil-file-landscape:before{content:'\e93e'}.uil-file-question:before{content:'\e93f'}.uil-folder-question:before{content:'\e940'}.uil-file-landscape-alt:before{content:'\e941'}.uil-folder:before{content:'\e942'}.uil-file-edit-alt:before{content:'\e943'}.uil-folder-heart:before{content:'\e944'}.uil-folder-exclamation:before{content:'\e945'}.uil-folder-info:before{content:'\e946'}.uil-file-download-alt:before{content:'\e947'}.uil-file-download:before{content:'\e948'}.uil-file-copy-alt:before{content:'\e949'}.uil-file-heart:before{content:'\e94a'}.uil-file-alt:before{content:'\e94b'}.uil-copy-landscape:before{content:'\e94c'}.uil-copy-alt:before{content:'\e94d'}.uil-folder-upload:before{content:'\e94e'}.uil-file-exclamation-alt:before{content:'\e94f'}.uil-file-exclamation:before{content:'\e950'}.uil-copy:before{content:'\e951'}.uil-file-blank:before{content:'\e952'}.uil-stopwatch-slash:before{content:'\e953'}.uil-file:before{content:'\e954'}.uil-folder-times:before{content:'\e955'}.uil-document-info:before{content:'\e956'}.uil-file-times:before{content:'\e957'}.uil-file-info-alt:before{content:'\e958'}.uil-clipboard-blank:before{content:'\e959'}.uil-clipboard-notes:before{content:'\e95a'}.uil-file-times-alt:before{content:'\e95b'}.uil-folder-download:before{content:'\e95c'}.uil-file-bookmark-alt:before{content:'\e95d'}.uil-file-block-alt:before{content:'\e95e'}.uil-folder-check:before{content:'\e95f'}.uil-file-check:before{content:'\e960'}.uil-folder-plus:before{content:'\e961'}.uil-clipboard:before{content:'\e962'}.uil-file-check-alt:before{content:'\e963'}.uil-print:before{content:'\e964'}.uil-folder-network:before{content:'\e965'}.uil-desktop-alt:before{content:'\e966'}.uil-mouse-alt:before{content:'\e967'}.uil-tablet:before{content:'\e968'}.uil-desktop:before{content:'\e969'}.uil-mobile-android-alt:before{content:'\e96a'}.uil-search-alt:before{content:'\e96b'}.uil-volume-up:before{content:'\e96c'}.uil-mouse:before{content:'\e96d'}.uil-mouse-alt-2:before{content:'\e96e'}.uil-mobile-android:before{content:'\e96f'}.uil-laptop:before{content:'\e970'}.uil-search-minus:before{content:'\e971'}.uil-bluetooth-b:before{content:'\e972'}.uil-video-slash:before{content:'\e973'}.uil-search-plus:before{content:'\e974'}.uil-tv-retro:before{content:'\e975'}.uil-toggle-on:before{content:'\e976'}.uil-toggle-off:before{content:'\e977'}.uil-traffic-light:before{content:'\e978'}.uil-bolt:before{content:'\e979'}.uil-trash-alt:before{content:'\e97a'}.uil-star-half-alt:before{content:'\e97b'}.uil-utensils-alt:before{content:'\e97c'}.uil-share-alt:before{content:'\e97d'}.uil-volume-down:before{content:'\e97e'}.uil-wifi:before{content:'\e97f'}.uil-cog:before{content:'\e980'}.uil-bookmark:before{content:'\e981'}.uil-wallet:before{content:'\e982'}.uil-minus:before{content:'\e983'}.uil-rss:before{content:'\e984'}.uil-sync:before{content:'\e985'}.uil-redo:before{content:'\e986'}.uil-bookmark-full:before{content:'\e987'}.uil-umbrella:before{content:'\e988'}.uil-trash:before{content:'\e989'}.uil-wifi-slash:before{content:'\e98a'}.uil-plus-square:before{content:'\e98b'}.uil-plus:before{content:'\e98c'}.uil-signal-alt:before{content:'\e98d'}.uil-pen:before{content:'\e98e'}.uil-package:before{content:'\e98f'}.uil-edit:before{content:'\e990'}.uil-signal:before{content:'\e991'}.uil-glass-martini-alt:before{content:'\e992'}.uil-file-plus:before{content:'\e993'}.uil-minus-circle:before{content:'\e994'}.uil-microphone:before{content:'\e995'}.uil-minus-square:before{content:'\e996'}.uil-minus-square-full:before{content:'\e997'}.uil-volume-mute:before{content:'\e998'}.uil-link-h:before{content:'\e999'}.uil-search:before{content:'\e99a'}.uil-ellipsis-v:before{content:'\e99b'}.uil-ellipsis-h:before{content:'\e99c'}.uil-link-alt:before{content:'\e99d'}.uil-calculator:before{content:'\e99e'}.uil-layer-group:before{content:'\e99f'}.uil-car:before{content:'\e9a0'}.uil-thumbs-up:before{content:'\e9a1'}.uil-link:before{content:'\e9a2'}.uil-home:before{content:'\e9a4'}.uil-keyboard:before{content:'\e9a5'}.uil-volume-off:before{content:'\e9a6'}.uil-edit-alt:before{content:'\e9a7'}.uil-restaurant:before{content:'\e9a8'}.uil-exclamation-octagon:before{content:'\e9a9'}.uil-globe:before{content:'\e9aa'}.uil-favorite:before{content:'\e9ab'}.uil-question-circle:before{content:'\e9ac'}.uil-info-circle:before{content:'\e9ad'}.uil-filter:before{content:'\e9ae'}.uil-volume:before{content:'\e9af'}.uil-exclamation-triangle:before{content:'\e9b0'}.uil-exclamation-circle:before{content:'\e9b1'}.uil-thumbs-down:before{content:'\e9b2'}.uil-multiply:before{content:'\e9b3'}.uil-check-square:before{content:'\e9b4'}.uil-times-circle:before{content:'\e9b5'}.uil-box:before{content:'\e9b6'}.uil-sim-card:before{content:'\e9b7'}.uil-times:before{content:'\e9b8'}.uil-times-square:before{content:'\e9b9'}.uil-link-broken:before{content:'\e9ba'}.uil-cube:before{content:'\e9bb'}.uil-bolt-alt:before{content:'\e9bc'}.uil-calender:before{content:'\e9bd'}.uil-battery-empty:before{content:'\e9be'}.uil-at:before{content:'\e9bf'}.uil-battery-bolt:before{content:'\e9c0'}.uil-plus-circle:before{content:'\e9c1'}.uil-check-circle:before{content:'\e9c2'}.uil-check:before{content:'\e9c3'}.uil-adjust-half:before{content:'\e9c4'}.uil-paperclip:before{content:'\e9c5'}.uil-bullseye:before{content:'\e9c6'}.uil-brightness:before{content:'\e9c7'}.uil-adjust-alt:before{content:'\e9c8'}.uil-adjust-circle:before{content:'\e9c9'}.uil-brightness-half:before{content:'\e9ca'}.uil-brightness-empty:before{content:'\e9cb'}.uil-sun:before{content:'\e9cc'}.uil-brightness-plus:before{content:'\e9cd'}.uil-key-skeleton:before{content:'\e9ce'}.uil-adjust:before{content:'\e9d0'}.uil-keyboard-hide:before{content:'\e9d1'}.uil-brightness-minus:before{content:'\e9d2'}.uil-key-skeleton-alt:before{content:'\e9d3'}.uil-bus:before{content:'\e9d4'}.uil-parcel:before{content:'\e9d5'}.uil-car-sideview:before{content:'\e9d6'}.uil-car-wash:before{content:'\e9d7'}.uil-bus-school:before{content:'\e9d8'}.uil-subway:before{content:'\e9d9'}.uil-ship:before{content:'\e9da'}.uil-bus-alt:before{content:'\e9db'}.uil-subway-alt:before{content:'\e9dc'}.uil-taxi:before{content:'\e9dd'}.uil-truck-loading:before{content:'\e9de'}.uil-dribbble:before{content:'\e9df'}.uil-dropbox:before{content:'\e9e0'}.uil-envelope-check:before{content:'\e9e1'}.uil-envelope-add:before{content:'\e9e2'}.uil-envelope-exclamation:before{content:'\e9e3'}.uil-phone-slash:before{content:'\e9e4'}.uil-outgoing-call:before{content:'\e9e5'}.uil-envelope:before{content:'\e9e6'}.uil-phone:before{content:'\e9e7'}.uil-calling:before{content:'\e9e8'}.uil-phone-times:before{content:'\e9e9'}.uil-envelope-search:before{content:'\e9ea'}.uil-phone-volume:before{content:'\e9eb'}.uil-envelope-upload:before{content:'\e9ec'}.uil-forwaded-call:before{content:'\e9ed'}.uil-envelope-share:before{content:'\e9ee'}.uil-envelope-upload-alt:before{content:'\e9ef'}.uil-envelope-minus:before{content:'\e9f0'}.uil-envelope-receive:before{content:'\e9f1'}.uil-envelope-redo:before{content:'\e9f2'}.uil-envelope-download-alt:before{content:'\e9f3'}.uil-envelope-download:before{content:'\e9f4'}.uil-brightness-low:before{content:'\e9f5'}.uil-envelope-shield:before{content:'\e9f6'}.uil-envelope-open:before{content:'\e9f7'}.uil-envelope-lock:before{content:'\e9f8'}.uil-keyboard-show:before{content:'\e9f9'}.uil-truck:before{content:'\e9fa'}.uil-envelopes:before{content:'\e9fb'}.uil-mailbox:before{content:'\e9fc'}.uil-envelope-heart:before{content:'\e9fd'}.uil-space-key:before{content:'\e9fe'}.uil-keyboard-alt:before{content:'\e9ff'}.uil-envelope-edit:before{content:'\ea00'}.uil-postcard:before{content:'\ea01'}.uil-fast-mail-alt:before{content:'\ea02'}.uil-envelope-question:before{content:'\ea03'}.uil-fast-mail:before{content:'\ea04'}.uil-envelope-info:before{content:'\ea05'}.uil-laptop-cloud:before{content:'\ea06'}.uil-desktop-cloud-alt:before{content:'\ea07'}.uil-envelope-star:before{content:'\ea08'}.uil-envelope-times:before{content:'\ea09'}.uil-luggage-cart:before{content:'\ea0a'}.uil-envelope-bookmark:before{content:'\ea0b'}.uil-missed-call:before{content:'\ea0c'}.uil-user:before{content:'\ea0d'}.uil-user-plus:before{content:'\ea0e'}.uil-envelope-alt:before{content:'\ea0f'}.uil-user-location:before{content:'\ea10'}.uil-users-alt:before{content:'\ea11'}.uil-book-reader:before{content:'\ea12'}.uil-cloud-bookmark:before{content:'\ea13'}.uil-phone-alt:before{content:'\ea14'}.uil-cloud-computing:before{content:'\ea15'}.uil-cloud-check:before{content:'\ea16'}.uil-user-minus:before{content:'\ea17'}.uil-cloud-times:before{content:'\ea18'}.uil-cloud-block:before{content:'\ea19'}.uil-columns:before{content:'\ea1a'}.uil-web-section:before{content:'\ea1b'}.uil-grid:before{content:'\ea1c'}.uil-web-grid-alt:before{content:'\ea1d'}.uil-window-maximize:before{content:'\ea1e'}.uil-web-section-alt:before{content:'\ea1f'}.uil-web-grid:before{content:'\ea20'}.uil-server-connection:before{content:'\ea21'}.uil-cloud-slash:before{content:'\ea22'}.uil-cloud-upload:before{content:'\ea23'}.uil-cloud-exclamation:before{content:'\ea24'}.uil-database:before{content:'\ea25'}.uil-server:before{content:'\ea26'}.uil-cloud-unlock:before{content:'\ea27'}.uil-cloud-share:before{content:'\ea28'}.uil-envelope-send:before{content:'\ea29'}.uil-cloud-shield:before{content:'\ea2a'}.uil-laptop-connection:before{content:'\ea2b'}.uil-server-network-alt:before{content:'\ea2c'}.uil-cloud-redo:before{content:'\ea2d'}.uil-servers:before{content:'\ea2e'}.uil-server-network:before{content:'\ea2f'}.uil-cloud-heart:before{content:'\ea30'}.uil-database-alt:before{content:'\ea31'}.uil-cloud-lock:before{content:'\ea32'}.uil-cloud-info:before{content:'\ea33'}.uil-phone-pause:before{content:'\ea34'}.uil-user-square:before{content:'\ea35'}.uil-user-exclamation:before{content:'\ea36'}.uil-cloud-download:before{content:'\ea37'}.uil-user-circle:before{content:'\ea38'}.uil-cloud-wifi:before{content:'\ea39'}.uil-data-sharing:before{content:'\ea3a'}.uil-cloud-data-connection:before{content:'\ea3b'}.uil-backward:before{content:'\ea3c'}.uil-camera:before{content:'\ea3d'}.uil-music-tune-slash:before{content:'\ea3e'}.uil-user-times:before{content:'\ea3f'}.uil-scenery:before{content:'\ea40'}.uil-user-check:before{content:'\ea41'}.uil-headphones:before{content:'\ea42'}.uil-step-backward:before{content:'\ea43'}.uil-image-search:before{content:'\ea44'}.uil-image-minus:before{content:'\ea45'}.uil-window-section:before{content:'\ea46'}.uil-play-circle:before{content:'\ea47'}.uil-pause-circle:before{content:'\ea48'}.uil-image-shield:before{content:'\ea4a'}.uil-window:before{content:'\ea4b'}.uil-pause:before{content:'\ea4c'}.uil-server-alt:before{content:'\ea4d'}.uil-image-question:before{content:'\ea4e'}.uil-music:before{content:'\ea4f'}.uil-image-block:before{content:'\ea50'}.uil-music-note:before{content:'\ea51'}.uil-step-forward:before{content:'\ea52'}.uil-image-redo:before{content:'\ea53'}.uil-image:before{content:'\ea54'}.uil-picture:before{content:'\ea55'}.uil-image-download:before{content:'\ea56'}.uil-image-v:before{content:'\ea57'}.uil-forward:before{content:'\ea58'}.uil-image-times:before{content:'\ea59'}.uil-headphones-alt:before{content:'\ea5a'} \ No newline at end of file diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-0.woff b/TSC2.Client/wwwroot/css/icons/unicons/unicons-0.woff new file mode 100644 index 0000000..b334276 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-0.woff differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-0.woff2 b/TSC2.Client/wwwroot/css/icons/unicons/unicons-0.woff2 new file mode 100644 index 0000000..a0d00b1 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-0.woff2 differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-1.woff b/TSC2.Client/wwwroot/css/icons/unicons/unicons-1.woff new file mode 100644 index 0000000..79c59e2 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-1.woff differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-1.woff2 b/TSC2.Client/wwwroot/css/icons/unicons/unicons-1.woff2 new file mode 100644 index 0000000..d2dde54 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-1.woff2 differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-10.woff b/TSC2.Client/wwwroot/css/icons/unicons/unicons-10.woff new file mode 100644 index 0000000..e02d2aa Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-10.woff differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-10.woff2 b/TSC2.Client/wwwroot/css/icons/unicons/unicons-10.woff2 new file mode 100644 index 0000000..9ea5490 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-10.woff2 differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-11.woff b/TSC2.Client/wwwroot/css/icons/unicons/unicons-11.woff new file mode 100644 index 0000000..f7c6247 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-11.woff differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-11.woff2 b/TSC2.Client/wwwroot/css/icons/unicons/unicons-11.woff2 new file mode 100644 index 0000000..6a49655 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-11.woff2 differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-12.woff b/TSC2.Client/wwwroot/css/icons/unicons/unicons-12.woff new file mode 100644 index 0000000..4f95b19 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-12.woff differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-12.woff2 b/TSC2.Client/wwwroot/css/icons/unicons/unicons-12.woff2 new file mode 100644 index 0000000..4fc0ae1 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-12.woff2 differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-13.woff b/TSC2.Client/wwwroot/css/icons/unicons/unicons-13.woff new file mode 100644 index 0000000..2ef6511 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-13.woff differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-13.woff2 b/TSC2.Client/wwwroot/css/icons/unicons/unicons-13.woff2 new file mode 100644 index 0000000..92f35f5 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-13.woff2 differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-14.woff b/TSC2.Client/wwwroot/css/icons/unicons/unicons-14.woff new file mode 100644 index 0000000..65c7521 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-14.woff differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-14.woff2 b/TSC2.Client/wwwroot/css/icons/unicons/unicons-14.woff2 new file mode 100644 index 0000000..0a2133c Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-14.woff2 differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-15.woff b/TSC2.Client/wwwroot/css/icons/unicons/unicons-15.woff new file mode 100644 index 0000000..3ce772e Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-15.woff differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-15.woff2 b/TSC2.Client/wwwroot/css/icons/unicons/unicons-15.woff2 new file mode 100644 index 0000000..a95bcc8 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-15.woff2 differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-16.woff b/TSC2.Client/wwwroot/css/icons/unicons/unicons-16.woff new file mode 100644 index 0000000..f83f9a9 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-16.woff differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-16.woff2 b/TSC2.Client/wwwroot/css/icons/unicons/unicons-16.woff2 new file mode 100644 index 0000000..30e67f0 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-16.woff2 differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-17.woff b/TSC2.Client/wwwroot/css/icons/unicons/unicons-17.woff new file mode 100644 index 0000000..efa8ff8 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-17.woff differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-17.woff2 b/TSC2.Client/wwwroot/css/icons/unicons/unicons-17.woff2 new file mode 100644 index 0000000..4a83b70 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-17.woff2 differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-18.woff b/TSC2.Client/wwwroot/css/icons/unicons/unicons-18.woff new file mode 100644 index 0000000..c7dcc60 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-18.woff differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-18.woff2 b/TSC2.Client/wwwroot/css/icons/unicons/unicons-18.woff2 new file mode 100644 index 0000000..35f8ddc Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-18.woff2 differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-19.woff b/TSC2.Client/wwwroot/css/icons/unicons/unicons-19.woff new file mode 100644 index 0000000..224c542 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-19.woff differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-19.woff2 b/TSC2.Client/wwwroot/css/icons/unicons/unicons-19.woff2 new file mode 100644 index 0000000..9dcd665 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-19.woff2 differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-2.woff b/TSC2.Client/wwwroot/css/icons/unicons/unicons-2.woff new file mode 100644 index 0000000..86c19a9 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-2.woff differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-2.woff2 b/TSC2.Client/wwwroot/css/icons/unicons/unicons-2.woff2 new file mode 100644 index 0000000..653384f Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-2.woff2 differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-20.woff b/TSC2.Client/wwwroot/css/icons/unicons/unicons-20.woff new file mode 100644 index 0000000..99d77ee Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-20.woff differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-20.woff2 b/TSC2.Client/wwwroot/css/icons/unicons/unicons-20.woff2 new file mode 100644 index 0000000..ff674a4 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-20.woff2 differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-3.woff b/TSC2.Client/wwwroot/css/icons/unicons/unicons-3.woff new file mode 100644 index 0000000..fc38b7e Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-3.woff differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-3.woff2 b/TSC2.Client/wwwroot/css/icons/unicons/unicons-3.woff2 new file mode 100644 index 0000000..eb294c8 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-3.woff2 differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-4.woff b/TSC2.Client/wwwroot/css/icons/unicons/unicons-4.woff new file mode 100644 index 0000000..30d016d Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-4.woff differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-4.woff2 b/TSC2.Client/wwwroot/css/icons/unicons/unicons-4.woff2 new file mode 100644 index 0000000..9f3f070 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-4.woff2 differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-5.woff b/TSC2.Client/wwwroot/css/icons/unicons/unicons-5.woff new file mode 100644 index 0000000..4c4d7c0 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-5.woff differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-5.woff2 b/TSC2.Client/wwwroot/css/icons/unicons/unicons-5.woff2 new file mode 100644 index 0000000..1a4a593 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-5.woff2 differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-6.woff b/TSC2.Client/wwwroot/css/icons/unicons/unicons-6.woff new file mode 100644 index 0000000..14b3188 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-6.woff differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-6.woff2 b/TSC2.Client/wwwroot/css/icons/unicons/unicons-6.woff2 new file mode 100644 index 0000000..8feab91 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-6.woff2 differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-7.woff b/TSC2.Client/wwwroot/css/icons/unicons/unicons-7.woff new file mode 100644 index 0000000..79bd69b Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-7.woff differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-7.woff2 b/TSC2.Client/wwwroot/css/icons/unicons/unicons-7.woff2 new file mode 100644 index 0000000..dc59984 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-7.woff2 differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-8.woff b/TSC2.Client/wwwroot/css/icons/unicons/unicons-8.woff new file mode 100644 index 0000000..70def6d Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-8.woff differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-8.woff2 b/TSC2.Client/wwwroot/css/icons/unicons/unicons-8.woff2 new file mode 100644 index 0000000..9d7a0dc Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-8.woff2 differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-9.woff b/TSC2.Client/wwwroot/css/icons/unicons/unicons-9.woff new file mode 100644 index 0000000..590c464 Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-9.woff differ diff --git a/TSC2.Client/wwwroot/css/icons/unicons/unicons-9.woff2 b/TSC2.Client/wwwroot/css/icons/unicons/unicons-9.woff2 new file mode 100644 index 0000000..925d21a Binary files /dev/null and b/TSC2.Client/wwwroot/css/icons/unicons/unicons-9.woff2 differ diff --git a/TSC2.Client/wwwroot/css/magnific-popup.css b/TSC2.Client/wwwroot/css/magnific-popup.css new file mode 100644 index 0000000..8842ee2 --- /dev/null +++ b/TSC2.Client/wwwroot/css/magnific-popup.css @@ -0,0 +1,451 @@ + +:root { + --cnvs-mfp-bg: rgba(0, 0, 0, 0.95); + --cnvs-mfp-preloader-color: #FFF; + --cnvs-mfp-preloader-size: 2rem; + --cnvs-mfp-close-btn-size: 44px; + --cnvs-mfp-close-btn-font-size: 1.75rem; + --cnvs-mfp-arrow-size: 4rem; + + --cnvs-mfp-title-color: #FFF; + --cnvs-mfp-title-padding: 1rem; + --cnvs-mfp-title-border-radius: 0.25rem; + + --cnvs-mfp-link-color: #CCC; +} + + +/* Magnific Popup CSS */ +.mfp-bg { + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 1042; + overflow: hidden; + position: fixed; + background: var(--cnvs-mfp-bg); +} + +.mfp-wrap { + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 1043; + position: fixed; + outline: none !important; + -webkit-backface-visibility: hidden; } + +.mfp-container { + text-align: center; + position: absolute; + width: 100%; + height: 100%; + left: 0; + top: 0; + padding: 0 8px; + box-sizing: border-box; } + +.mfp-container:before { + content: ''; + display: inline-block; + height: 100%; + vertical-align: middle; } + +.mfp-align-top .mfp-container:before { + display: none; } + +.mfp-content { + position: relative; + display: inline-block; + vertical-align: middle; + margin: 0 auto; + text-align: left; + z-index: 1045; } + +.mfp-inline-holder .mfp-content, +.mfp-ajax-holder .mfp-content { + width: 100%; + cursor: auto; } + +.mfp-ajax-cur { + cursor: progress; } + +.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close { + cursor: -moz-zoom-out; + cursor: -webkit-zoom-out; + cursor: zoom-out; } + +.mfp-zoom { + cursor: pointer; + cursor: -webkit-zoom-in; + cursor: -moz-zoom-in; + cursor: zoom-in; } + +.mfp-auto-cursor .mfp-content { + cursor: auto; } + +.mfp-close, +.mfp-arrow, +.mfp-preloader, +.mfp-counter { + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; } + +.mfp-loading.mfp-figure { + display: none; } + +.mfp-hide { + display: none !important; } + +.mfp-preloader { + color: var(--cnvs-mfp-preloader-color); + position: absolute; + top: 50%; + left: 50%; + width: var(--cnvs-mfp-preloader-size); + height: var(--cnvs-mfp-preloader-size); + font-size: var(--cnvs-mfp-preloader-size); + line-height: 1; + text-align: center; + transform: translate(-50%, -50%); + z-index: 1044; + font-family: "Simple-Line-Icons"; + animation: spin 2s infinite linear; +} + +.mfp-container:not(.mfp-s-error) .mfp-preloader::before { + content: "\e098"; +} + +.mfp-container.mfp-s-error .mfp-preloader { + width: auto; + height: auto; + font-size: 1.5rem; + font-family: inherit; + animation: none; + line-height: 1.5; +} + + + .mfp-preloader a { + color: var(--cnvs-mfp-preloader-color); } + .mfp-preloader a:hover { + color: var(--cnvs-mfp-preloader-color); } + +.mfp-s-ready .mfp-preloader { + display: none; } + +.mfp-s-error .mfp-content { + display: none; } + +button.mfp-close, +button.mfp-arrow { + overflow: visible; + cursor: pointer; + background: transparent; + border: 0; + -webkit-appearance: none; + display: block; + outline: none; + padding: 0; + z-index: 1046; + box-shadow: none; + touch-action: manipulation; } + +button::-moz-focus-inner { + padding: 0; + border: 0; } + +.mfp-close { + width: var(--cnvs-mfp-close-btn-size); + height: var(--cnvs-mfp-close-btn-size); + line-height: var(--cnvs-mfp-close-btn-size); + position: absolute; + right: 0; + top: 0; + text-decoration: none; + text-align: center; + padding: 0 0 18px 10px; + color: var(--cnvs-mfp-link-color); + font-style: normal; + font-size: var(--cnvs-mfp-close-btn-font-size); + transition: all .3s ease;} + .mfp-close:hover, + .mfp-close:focus { + color: #FFF; + } + .mfp-close:active { + top: 1px; } + + .mfp-iframe-scaler .mfp-close { margin-top: calc(-1 * var(--cnvs-mfp-close-btn-size)); } + +.mfp-close-btn-in .mfp-close { + color: #333; } + +.mfp-image-holder .mfp-close, +.mfp-iframe-holder .mfp-close { + color: #FFF; + right: -6px; + text-align: right; + padding-right: 6px; + width: 100%; } + +.mfp-arrow { + position: absolute; + margin: 0; + top: 50%; + left: 0; + padding: 0; + width: var(--cnvs-mfp-arrow-size); + height: var(--cnvs-mfp-arrow-size); + font-family: "lined-icons"; + -webkit-tap-highlight-color: transparent; + font-size: calc(var(--cnvs-mfp-arrow-size) / 2); + transform: translateY(-50%); + color: var(--cnvs-mfp-link-color); + transition: all .3s ease; +} + +.mfp-arrow:hover { + opacity: 1; + transform: translateY(-50%) scale(1.2); + color: #FFF; +} + +@media (max-width: 991.98px) { + .mfp-arrow { + background-color: rgba(0, 0, 0, 0.75) !important; + } + + .mfp-arrow:hover { + transform: translateY(-50%); + background-color: rgba(0, 0, 0, 0.85) !important; + } +} + +.mfp-arrow-right:before { + content: "\e912"; +} + +.mfp-arrow-right { + left: auto; + right: 0; } + +.mfp-arrow-left { + right: auto; + left: 0; } +.mfp-arrow-left:before { + content: "\e910"; +} + + .mfp-iframe-holder .mfp-content { + line-height: 0; + width: 100%; + max-width: 900px; } + + +.mfp-iframe-scaler { + width: 100%; + height: 0; + overflow: hidden; + padding-top: 56.25%; } + .mfp-iframe-scaler iframe { + position: absolute; + display: block; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: #000; } + +/* Main image in popup */ +img.mfp-img { + width: auto; + max-width: 100%; + height: auto; + display: block; + line-height: 0; + box-sizing: border-box; + margin: 0 auto; } + +/* The shadow behind the image */ +.mfp-figure { + line-height: 0; } + .mfp-figure:after { + content: ''; + position: absolute; + left: 0; + display: block; + right: 0; + width: auto; + height: auto; + z-index: -1; + box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); + background: #444; } + .mfp-figure small { + color: #BDBDBD; + display: block; + font-size: 12px; + line-height: 14px; } + .mfp-figure figure { + margin: 0; } + +.mfp-bottom-bar { + margin-top: -36px; + position: absolute; + bottom: 0; + left: 0; + width: 100%; + cursor: auto; } + +.mfp-title { + position: absolute; + left: 50%; + bottom: 25px; + transform: translateX(-50%); + width: auto; + text-align: center; + line-height: 1.65; + color: var(--cnvs-mfp-title-color); + word-wrap: break-word; + padding: var(--cnvs-mfp-title-padding); + background: rgba(39, 60, 68, .2); + -webkit-backdrop-filter: blur(3em); + backdrop-filter: blur(3em); + border-radius: var(--cnvs-mfp-title-border-radius); +} + +.mfp-title:empty, +.mfp-counter:empty { + display: none; +} + +.mfp-counter { + position: absolute; + top: auto; + bottom: 25px; + right: 20px; + color: var(--cnvs-mfp-link-color); + font-size: 0.75rem; + line-height: 18px; + white-space: nowrap; + padding: 0.5rem 1rem; + background: rgba(0, 0, 0, 0.5); + border-radius: 0.25rem; +} + +@media (max-width: 991.98px) { + .mfp-title { + padding: 1rem 1.5rem; + line-height: 1.5; + font-size: 0.875rem + } +} + +@media (min-width: 992px) { + .mfp-ready .mfp-counter, + .mfp-ready .mfp-arrow, + .mfp-ready .mfp-title, + .mfp-ready .mfp-close { + -webkit-animation-duration: 1s; + animation-duration: 1s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-name: fadeOut; + animation-name: fadeOut; + animation-delay: 1s; + } + + .mfp-ready:hover .mfp-counter, + .mfp-ready:hover .mfp-arrow, + .mfp-ready:hover .mfp-title, + .mfp-ready:hover .mfp-close { + -webkit-animation-name: fadeIn; + animation-name: fadeIn; + animation-delay: 0s; + } +} + +.mfp-image-holder .mfp-content { + max-width: 100%; } + +.mfp-gallery .mfp-image-holder .mfp-figure { + cursor: pointer; } + +@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) { + /** + * Remove all paddings around the image on small screen + */ + .mfp-img-mobile .mfp-image-holder { + padding-left: 0; + padding-right: 0; } + .mfp-img-mobile img.mfp-img { + padding: 0; } + .mfp-img-mobile .mfp-figure:after { + top: 0; + bottom: 0; } + .mfp-img-mobile .mfp-figure small { + display: inline; + margin-left: 5px; } + .mfp-img-mobile .mfp-bottom-bar { + background: rgba(0, 0, 0, 0.6); + bottom: 0; + margin: 0; + top: auto; + padding: 3px 5px; + position: fixed; + box-sizing: border-box; } + .mfp-img-mobile .mfp-bottom-bar:empty { + padding: 0; } + .mfp-img-mobile .mfp-counter { + right: 5px; + top: 3px; } + .mfp-img-mobile .mfp-close { + top: 0; + right: 0; + width: 35px; + height: 35px; + line-height: 35px; + background: rgba(0, 0, 0, 0.6); + position: fixed; + text-align: center; + padding: 0; } } + + + +/* overlay at start */ +.mfp-fade.mfp-bg { + opacity: 0; + -webkit-transition: all 0.25s ease-out; + -moz-transition: all 0.25s ease-out; + transition: all 0.25s ease-out; +} +/* overlay animate in */ +.mfp-fade.mfp-bg.mfp-ready { + opacity: 0.9; +} +/* overlay animate out */ +.mfp-fade.mfp-bg.mfp-removing { + opacity: 0; +} + +/* content at start */ +.mfp-fade.mfp-wrap .mfp-content { + opacity: 0; + + -webkit-transition: all 0.25s ease-out; + -moz-transition: all 0.25s ease-out; + transition: all 0.25s ease-out; +} +/* content animate it */ +.mfp-fade.mfp-wrap.mfp-ready .mfp-content { + opacity: 1; +} +/* content animate out */ +.mfp-fade.mfp-wrap.mfp-removing .mfp-content { + opacity: 0; +} + diff --git a/TSC2.Client/wwwroot/css/swiper.css b/TSC2.Client/wwwroot/css/swiper.css new file mode 100644 index 0000000..25d8b60 --- /dev/null +++ b/TSC2.Client/wwwroot/css/swiper.css @@ -0,0 +1,13 @@ +/** + * Swiper 11.0.4 + * Most modern mobile touch slider and framework with hardware accelerated transitions + * https://swiperjs.com + * + * Copyright 2014-2023 Vladimir Kharlampidi + * + * Released under the MIT License + * + * Released on: November 9, 2023 + */ + + @font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden} \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/car.css b/TSC2.Client/wwwroot/demos/car/car.css new file mode 100644 index 0000000..5f254b1 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/car.css @@ -0,0 +1,635 @@ +/* ---------------------------------------------------------------- + Canvas: Car +-----------------------------------------------------------------*/ + +:root { + --cnvs-themecolor: #6aa84f; + --cnvs-themecolor-rgb: 106, 168, 79; + --cnvs-body-font: 'Open Sans', sans-serif; + --cnvs-primary-font: 'Mukta Vaani', sans-serif; + --cnvs-header-height: 50px; + --cnvs-section-bg: #FAFAFA; +} + +.stretched #gotoTop { + --cnvs-gotoTop-position-boxed-bottom: 30px; +} + +/* Runing Car +-----------------------------------------------------------------*/ +.running-car { + position: relative; + top: 0; + left: 0; + width: 659px; +} + +img.car, +img.wheel { + -webkit-transition: all 1s ease-out; + -moz-transition: all 1s ease-out; + transition: all 1s ease-out; + margin-left: -660px; +} + +img.wheel { + position: absolute; + left: 401px; + bottom:33px; + z-index: 1; +} + +.running-car.in-view img.car { + -webkit-transform: translate(600px,0px) rotate(0deg); + -moz-transform: translate(600px,0px) rotate(0deg); + transform: translate(600px,0px) rotate(0deg); +} +.running-car.in-view img.wheel { + -webkit-transform: translate(600px,0px) rotate(600deg); + -moz-transform: translate(600px,0px) rotate(600deg); + transform: translate(600px,0px) rotate(600deg); +} + +.device-sm .running-car.in-view img.car { + -webkit-transform: translate(500px,0px) rotate(0deg); + -moz-transform: translate(500px,0px) rotate(0deg); + transform: translate(500px,0px) rotate(0deg); +} +.device-sm .running-car.in-view img.wheel { + -webkit-transform: translate(500px,0px) rotate(600deg); + -moz-transform: translate(500px,0px) rotate(600deg); + transform: translate(500px,0px) rotate(600deg); +} + +.device-xs .running-car.in-view img.car { + -webkit-transform: translate(350px,0px) rotate(0deg); + -moz-transform: translate(350px,0px) rotate(0deg); + transform: translate(350px,0px) rotate(0deg); +} +.device-xs .running-car.in-view img.wheel { + -webkit-transform: translate(350px,0px) rotate(600deg); + -moz-transform: translate(350px,0px) rotate(600deg); + transform: translate(350px,0px) rotate(600deg); +} + + +/* Threesixty degree Styles +-----------------------------------------------------------------*/ +.threesixty { + position: relative; + overflow: hidden; + margin: 0 auto; + cursor: ew-resize; +} +.threesixty .threesixty_images { + display: none; + list-style: none; + margin: 0; + padding: 0; +} +.threesixty .threesixty_images img { + position: absolute; + top: 10px; +} +.threesixty .threesixty_images img.previous-image {visibility: hidden; } +.threesixty .threesixty_images img.current-image { visibility: visible; } + +.threesixty .spinner { + width: 60px; + display: block; + margin: 0 auto; + height: 30px; + background: #333; + background: rgba(0, 0, 0, 0.7); + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + border-radius: 5px; +} +.threesixty .spinner span { + font-size: 12px; + font-weight: bolder; + color: #FFF; + text-align: center; + line-height: 30px; + display: block; +} +.threesixty .nav_bar { + position: absolute; + top: 0; + bottom: auto; + left: 50%; + margin-left: -48px; + z-index: 11; +} +.threesixty .nav_bar a { + display: block; + width: 32px; + height: 32px; + float: left; + background: url('images/360degree-cars/navs.png') no-repeat; + text-indent: -99999px; +} +.threesixty .nav_bar a.nav_bar_play { background-position: 0 0 !important; } +.threesixty .nav_bar a.nav_bar_previous { background-position: -3px -73px !important; } +.threesixty .nav_bar a.nav_bar_stop { background-position: 0 -37px !important; } +.threesixty .nav_bar a.nav_bar_next { background-position: 3px -104px !important; } +/* html */ +.threesixty:-webkit-full-screen { + background: #ffffff; + width: 100%; + height: 100%; + margin-top: 0; + padding-top: 200px; +} +.threesixty:-moz-full-screen { + background: #ffffff; + width: 100%; + height: 100%; + margin-top: 0; + padding-top: 200px; +} + +/* heading-block */ +.heading-block.h-large h3 { + font-size: 44px; + line-height: 50px; + letter-spacing: -2px; +} + +/* Slider Area +-----------------------------------------------------------------*/ +.slider-caption h2 { + text-transform: none; + letter-spacing: 0; + line-height: 1; + font-size: 48px; + line-height: 1.3; + margin-bottom: 10px; +} + +.slider-caption p { + font-size: 18px; + margin-bottom: 20px; +} + +.slider-caption h2, +.slider-caption p, +.slider-caption .button { + opacity: 0; + -webkit-transform: translate3d(-20%,0,0); + -ms-transform: translate3d(-20%,0,0); + -o-transform: translate3d(-20%,0,0); + -webkit-transition: -webkit-transform .05s ease-out; + transition: -webkit-transform .05s ease-out; + transition: transform .05s ease-out; + transition: transform .05s ease-out, -webkit-transform .05s ease-out; + backface-visibility: hidden; +} + +.swiper-slide.swiper-slide-active .slider-caption h2, +.swiper-slide.swiper-slide-active .slider-caption p, +.swiper-slide.swiper-slide-active .slider-caption .button { + opacity: 1; + -webkit-transition: transform 1s, opacity 2s; + -o-transition: transform 1s, opacity 2s; + transition: transform 1s, opacity 2s; + -webkit-transform: translate3d(0,0,0); + -ms-transform: translate3d(0,0,0); + -o-transform: translate3d(0,0,0); + backface-visibility: hidden; +} + +.swiper-slide.swiper-slide-active .slider-caption p { + -webkit-transition-delay: 0.3s; + transition-delay: 0.3s; +} + +.swiper-slide.swiper-slide-active .slider-caption .button { + -webkit-transition: transform 1s, opacity 3s; + -o-transition: transform 1s, opacity 3s; + transition: transform 1s, opacity 3s; + -webkit-transition-delay: 0.6s; + transition-delay: 0.6s; +} + +.swiper-pagination { bottom: 20px !important; } + +.swiper-pagination span { + width: 40px; + height: 4px; + background: #FFF; + display: inline-block; + margin: 0px 1px; + border: 0; + border-radius: 0; + -webkit-transform: skew(-38deg); + -moz-transform: skew(-38deg); + -ms-transform: skew(-38deg); + -o-transform: skew(-38deg); +} + +.swiper-pagination span.swiper-pagination-bullet-active { background-color: #c85e51 !important; } + +.feature-box.fbox-plain .fbox-icon img { height: 48px; } + +.section .iconlist li { + margin-bottom: 6px; + font-size: 16px; + letter-spacing: 1px; + font-weight: 300; +} + +/* Portfolio Filter +-----------------------------------------------------------------*/ +.grid-filter.style-2 { + margin: 0 0 15px -14px; +} + +.grid-filter li.activeFilter a { font-weight: normal; } + +.grid-filter.style-2 li a:not(.button) { + font-size: 20px; + color: #555 !important; +} + +.grid-filter.style-2 li a.button-reset { + padding: 0 17px !important; + font-size: 12px; + line-height: 34px; + color: #FFF !important; + border-radius: 23px; + text-transform: none; + letter-spacing: 1px; + background-color: var(--cnvs-themecolor); +} + +.grid-filter.style-2 li a span { + display: block; + margin-top: 7px; + font-family: var(--cnvs-primary-font); + text-transform: uppercase; + letter-spacing: 1px; + font-size: 13px; + color: #AAA; + font-weight: bold; + text-align: center; +} + +.grid-filter.style-2 li a:not(.button), +.grid-filter.style-2 li a span { + -webkit-transition: color .3s ease; + -o-transition: color .3s ease; + transition: color .3s ease; +} + +.grid-filter.style-2 li a:not(.button):hover, +.grid-filter.style-2 li a:not(.button):hover span, +.grid-filter.style-2 li.activeFilter a:not(.button), +.grid-filter.style-2 li.activeFilter a:not(.button) span { + color: #c85e51 !important; + background-color: transparent !important; +} + +.grid-filter.style-2 li.activeFilter a.button-reset { + opacity: 0; + -webkit-transition: opacity .4s ease; + -o-transition: opacity .4s ease; + transition: opacity .4s ease; +} + +.grid-filter.style-2 li a.button-reset { opacity: 1; } + +.portfolio-desc span { font-size: 0.875rem; } + +.filter-p-pricing { + position: absolute; + bottom: 20px; + right: 0; + background: #c85e51; + color: #FFF; + padding: 8px 15px; + z-index: 1; + font-family: var(--cnvs-primary-font); +} + +.filter-p-pricing::before { + position: absolute; + content: ''; + display: block; + top: 0; + left: -8px; + height: 100%; + width: 32px; + background-color: #c85e51; + -moz-transform: skew(-23deg,0deg); + -o-transform: skew(-23deg,0deg); + -ms-transform: skew(-23deg,0deg); + -webkit-transform: skew(-23deg,0deg); + transform: skew(-23deg,0deg); + z-index: -1; +} + +.p-price-msrp { + font-weight: 300; + padding-left: 12px; + margin-left: 10px; + border-left: 1px solid rgba(255, 255, 255, 0.2); +} + +.car-p-features { + border-top: 1px solid #DDD; + padding: 5px 8px; + margin-top: 5px; +} + +.car-p-features [class^=col-] { margin-top: 5px; } + +.car-p-features i { + position: relative; + top: 1px; + margin-right: 4px; +} + +.car-p-features span { + color: #555; + font-size: 13px; + color: #666; +} + +.half-screen { + position: relative; + height: 25%; +} + +.section .video-wrap { z-index: 0; } + +/* Video On Hover +-----------------------------------------------------------------*/ +.videoplay-on-hover .vertical-middle, +.videoplay-on-hover .video-overlay { + opacity: 1; + -webkit-transition: opacity .2s ease; + -o-transition: opacity .2s ease; + transition: opacity .2s ease; +} + +.videoplay-on-hover:hover .vertical-middle, +.videoplay-on-hover:hover .video-overlay { opacity: 0; } + +.counter + h5 { margin-top: 0; } + +.counter-section [class^=col-] { + border-left: none; + margin-bottom: 30px; +} + +/* Page Loader +-----------------------------------------------------------------*/ +.css3-spinner { background-color: #e6e6e6; } + +.css3-spinner > div { + margin-top: -65px; + margin-left: -80px; + width: 160px; + height: 120px; + background-color: transparent; + -webkit-animation: none; + animation: none; +} + +/* Border Form Design +---------------------------------------------------------------------------- */ + +.form-control.border-form-control { + --cnvs-input-btn-padding-y : 7px; + --cnvs-input-btn-padding-x : 4px; + --cnvs-input-btn-font-size : 17px; + --cnvs-input-btn-border-color: #444; + --cnvs-input-font-family: var(--cnvs-primary-font); + } + +.customjs.btn-default:active, +.customjs.btn-default.active, +.customjs.open > .dropdown-toggle.btn-default, +.customjs.border-form-control .btn-default { + background-color: transparent !important; + font-weight: 300; + border: none; + box-shadow: none; + padding: 0; + text-transform: uppercase; + letter-spacing: 1px; + line-height: inherit; + font-size: 14px; + color: #FFF !important; +} + +.customjs.bootstrap-select .dropdown-toggle:focus, +.customjs.bootstrap-select .dropdown-menu { + margin: 0; + outline: 0px !important; + outline-offset: 0px !important; +} + +.border-form-control::-moz-placeholder { font-weight: 300; color: #CCC; } +.border-form-control:-ms-input-placeholder {font-weight: 300; color: #CCC; } +.border-form-control::-webkit-input-placeholder { font-weight: 300; color: #CCC; } + +textarea.border-form-control { + resize: none; + overflow: hidden; + word-wrap: break-word; +} + +.widget .oc-item a { + font-size: 11px; + color: #666; + font-weight: 500; +} + +.bootstrap-select.btn-group .dropdown-menu a.dropdown-item span.dropdown-item-inner.opt { padding-left: 0.8rem; } + +.dropdown-toggle::after { margin-left: -10px; } + +.dark .btn-light.dropdown-toggle:focus { box-shadow: none !important; } + +/* Footer +-----------------------------------------------------------------*/ + +.widget_links li, +.widget_links li a { + background-image: none !important; + padding-left: 0; + color: #555 !important; + font-size: 13px; + font-weight: 400; + padding-top: 1px; +} + +.dark .form-control:not(.not-dark), .dark .sm-form-control:not(.not-dark), +.dark .form-control:not(.not-dark):active, +.dark .form-control:not(.not-dark):focus, +.dark .sm-form-control:not(.not-dark):active, +.dark .sm-form-control:not(.not-dark):focus { border-color: rgba(255, 255, 255, 0.5) !important; } + + +/* Larger Device View +-----------------------------------------------------------------*/ +@media (min-width: 992px) { + + /* Primary Menu Header size */ + #header { border-bottom: 1px solid #e7e7e7 } + + #header.full-header #logo, + #header.full-header .menu-container { + border-right: 0; + padding-right: 0; + margin-right: 0; + } + + /* Slider caption */ + .swiper-pagination { bottom: 40px !important; } + + .swiper-pagination span { + width: 70px; + height: 6px; + } + .slider-caption.top-left { margin-top: -150px; } + + /* 360 degree */ + .threesixty .threesixty_images img { top: 30px; } + .threesixty .nav_bar { top: 10px; } + + .counter-section [class^=col-]:not(:first-child) { + border-left: 1px solid rgba(255,255,255,0.05); + margin-bottom: 0; + } + + .half-screen { + position: relative; + height: 50%; + } + + .heading-block.h-large h3 { + font-size: 64px; + line-height: 56px; + } + + /* running car */ + .running-car { + position: absolute; + top: 0; + left: 0; + width: 659px; + } + + .slider-text h2 { font-size: 2.5rem; } +} + +#contact-me { + position: fixed; + z-index: 299; + width: 40px; + height: 40px; + font-size: 20px; + line-height: 36px; + text-align: center; + color: #FFF; + top: auto; + left: auto; + right: 30px; + bottom: 30px; + cursor: pointer; + border-radius: 2px; + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + -o-transform: translateY(0); + transform: translateY(0); + -webkit-transition: transform .3s ease; + -o-transition: transform .3s ease; + transition: transform .3s ease; +} + +.gototop-active #contact-me { + -webkit-transform: translateY(-50px); + -ms-transform: translateY(-50px); + -o-transform: translateY(-50px); + transform: translateY(-50px); +} + +#header.sticky-header #header-wrap { + -webkit-transition: left .4s ease; + -o-transition: left .4s ease; + transition: left .4s ease; +} + +body.side-panel-open #header.sticky-header #header-wrap { left: -300px; } + +body #side-panel .widget { + opacity: 0; + -webkit-transform: scale(0.9); + -ms-transform: scale(0.9); + -o-transform: scale(0.9); + transform: scale(0.9); + -webkit-transition: transform .3s ease, opacity .3s ease; + -o-transition: transform .3s ease, opacity .3s ease; + transition: transform .3s ease, opacity .3s ease; +} + +body.side-panel-open #side-panel .widget { + opacity: 1; + -webkit-transform: scale(1); + -ms-transform: scale(1); + -o-transform: scale(1); + transform: scale(1); +} + +.play-icon { + position: relative; + display: block; + font-size: 22px; + width: 50px; + height: 50px; + line-height: 52px; + left: 50%; + margin-left: -25px; + border-radius: 50%; + color: #222 !important; + background-color: #FFF; + -webkit-transition: transform .3s ease; + -o-transition: transform .3s ease; + transition: transform .3s ease; +} + +.play-icon i { + position: relative; + left: 3px; +} + +.play-icon:hover { + -webkit-transform: scale(1.15); + -ms-transform: scale(1.15); + -o-transform: scale(1.15); + transform: scale(1.15); +} + +.arrow-box::after { + right: 100%; + top: 50%; + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; + pointer-events: none; + border-right-color: #ffffff; + border-width: 12px; + margin-top: -12px; + z-index: 1; +} + +.arrow-box.right::after { + left: 100%; + border-right: 0; + border-left-color: #ffffff; +} diff --git a/TSC2.Client/wwwroot/demos/car/css/car-icons/demo-files/demo.css b/TSC2.Client/wwwroot/demos/car/css/car-icons/demo-files/demo.css new file mode 100644 index 0000000..39b8991 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/css/car-icons/demo-files/demo.css @@ -0,0 +1,152 @@ +body { + padding: 0; + margin: 0; + font-family: sans-serif; + font-size: 1em; + line-height: 1.5; + color: #555; + background: #fff; +} +h1 { + font-size: 1.5em; + font-weight: normal; +} +small { + font-size: .66666667em; +} +a { + color: #e74c3c; + text-decoration: none; +} +a:hover, a:focus { + box-shadow: 0 1px #e74c3c; +} +.bshadow0, input { + box-shadow: inset 0 -2px #e7e7e7; +} +input:hover { + box-shadow: inset 0 -2px #ccc; +} +input, fieldset { + font-family: sans-serif; + font-size: 1em; + margin: 0; + padding: 0; + border: 0; +} +input { + color: inherit; + line-height: 1.5; + height: 1.5em; + padding: .25em 0; +} +input:focus { + outline: none; + box-shadow: inset 0 -2px #449fdb; +} +.glyph { + font-size: 16px; + width: 15em; + padding-bottom: 1em; + margin-right: 4em; + margin-bottom: 1em; + float: left; + overflow: hidden; +} +.liga { + width: 80%; + width: calc(100% - 2.5em); +} +.talign-right { + text-align: right; +} +.talign-center { + text-align: center; +} +.bgc1 { + background: #f1f1f1; +} +.fgc1 { + color: #999; +} +.fgc0 { + color: #000; +} +p { + margin-top: 1em; + margin-bottom: 1em; +} +.mvm { + margin-top: .75em; + margin-bottom: .75em; +} +.mtn { + margin-top: 0; +} +.mtl, .mal { + margin-top: 1.5em; +} +.mbl, .mal { + margin-bottom: 1.5em; +} +.mal, .mhl { + margin-left: 1.5em; + margin-right: 1.5em; +} +.mhmm { + margin-left: 1em; + margin-right: 1em; +} +.mls { + margin-left: .25em; +} +.ptl { + padding-top: 1.5em; +} +.pbs, .pvs { + padding-bottom: .25em; +} +.pvs, .pts { + padding-top: .25em; +} +.unit { + float: left; +} +.unitRight { + float: right; +} +.size1of2 { + width: 50%; +} +.size1of1 { + width: 100%; +} +.clearfix:before, .clearfix:after { + content: " "; + display: table; +} +.clearfix:after { + clear: both; +} +.hidden-true { + display: none; +} +.textbox0 { + width: 3em; + background: #f1f1f1; + padding: .25em .5em; + line-height: 1.5; + height: 1.5em; +} +#testDrive { + display: block; + padding-top: 24px; + line-height: 1.5; +} +.fs0 { + font-size: 16px; +} +.fs1 { + font-size: 32px; +} + diff --git a/TSC2.Client/wwwroot/demos/car/css/car-icons/demo-files/demo.js b/TSC2.Client/wwwroot/demos/car/css/car-icons/demo-files/demo.js new file mode 100644 index 0000000..6f45f1c --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/css/car-icons/demo-files/demo.js @@ -0,0 +1,30 @@ +if (!('boxShadow' in document.body.style)) { + document.body.setAttribute('class', 'noBoxShadow'); +} + +document.body.addEventListener("click", function(e) { + var target = e.target; + if (target.tagName === "INPUT" && + target.getAttribute('class').indexOf('liga') === -1) { + target.select(); + } +}); + +(function() { + var fontSize = document.getElementById('fontSize'), + testDrive = document.getElementById('testDrive'), + testText = document.getElementById('testText'); + function updateTest() { + testDrive.innerHTML = testText.value || String.fromCharCode(160); + if (window.icomoonLiga) { + window.icomoonLiga(testDrive); + } + } + function updateSize() { + testDrive.style.fontSize = fontSize.value + 'px'; + } + fontSize.addEventListener('change', updateSize, false); + testText.addEventListener('input', updateTest, false); + testText.addEventListener('change', updateTest, false); + updateSize(); +}()); diff --git a/TSC2.Client/wwwroot/demos/car/css/car-icons/demo.html b/TSC2.Client/wwwroot/demos/car/css/car-icons/demo.html new file mode 100644 index 0000000..ac5d26f --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/css/car-icons/demo.html @@ -0,0 +1,694 @@ + + + + + Car Icons + + + + + +
+

Font Name: car-icons (Glyphs: 41)

+
+
+

Grid Size: Unknown

+
+
+ + + + icon-car-asset +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-battery +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-bearing +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-board1 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-care +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-cog +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-cog3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-cogs +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-cogs2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-crane +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-door +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-fan +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-fuel +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-fuel2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-fulltime +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-machine +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-meter +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-money +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-note +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-note2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-paint +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-pump +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-service +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-service2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-signal +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-signal2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-stearing +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-tuning +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-wheel +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-alert +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-cabriolet +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-cuv +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-hatchback +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-micro +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-minivan +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-pickup +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-sedan +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-supercar +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-suv +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-truck +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car-van +
+
+ + +
+
+ liga: + +
+
+
+ + +
+

Font Test Drive

+ + +
  +
+
+ +
+

Generated by IcoMoon

+
+ + + + diff --git a/TSC2.Client/wwwroot/demos/car/css/car-icons/fonts/car-icons.eot b/TSC2.Client/wwwroot/demos/car/css/car-icons/fonts/car-icons.eot new file mode 100644 index 0000000..e89be55 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/css/car-icons/fonts/car-icons.eot differ diff --git a/TSC2.Client/wwwroot/demos/car/css/car-icons/fonts/car-icons.svg b/TSC2.Client/wwwroot/demos/car/css/car-icons/fonts/car-icons.svg new file mode 100644 index 0000000..e4857e7 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/css/car-icons/fonts/car-icons.svg @@ -0,0 +1,51 @@ + + + +Generated by IcoMoon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/css/car-icons/fonts/car-icons.ttf b/TSC2.Client/wwwroot/demos/car/css/car-icons/fonts/car-icons.ttf new file mode 100644 index 0000000..25b4113 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/css/car-icons/fonts/car-icons.ttf differ diff --git a/TSC2.Client/wwwroot/demos/car/css/car-icons/fonts/car-icons.woff b/TSC2.Client/wwwroot/demos/car/css/car-icons/fonts/car-icons.woff new file mode 100644 index 0000000..3a2b0a0 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/css/car-icons/fonts/car-icons.woff differ diff --git a/TSC2.Client/wwwroot/demos/car/css/car-icons/style.css b/TSC2.Client/wwwroot/demos/car/css/car-icons/style.css new file mode 100644 index 0000000..0107b28 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/css/car-icons/style.css @@ -0,0 +1,150 @@ +@font-face { + font-family: 'car-icons'; + src: url('fonts/car-icons.eot?2eccro'); + src: url('fonts/car-icons.eot?2eccro#iefix') format('embedded-opentype'), + url('fonts/car-icons.ttf?2eccro') format('truetype'), + url('fonts/car-icons.woff?2eccro') format('woff'), + url('fonts/car-icons.svg?2eccro#car-icons') format('svg'); + font-weight: normal; + font-style: normal; +} + +[class^="icon-car-"], [class*=" icon-car-"] { + /* use !important to prevent issues with browser extensions that change fonts */ + font-family: 'car-icons' !important; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.icon-car-asset:before { + content: "\e900"; +} +.icon-car-battery:before { + content: "\e901"; +} +.icon-car-bearing:before { + content: "\e902"; +} +.icon-car-board1:before { + content: "\e903"; +} +.icon-car-care:before { + content: "\e904"; +} +.icon-car-cog:before { + content: "\e905"; +} +.icon-car-cog3:before { + content: "\e906"; +} +.icon-car-cogs:before { + content: "\e907"; +} +.icon-car-cogs2:before { + content: "\e908"; +} +.icon-car-crane:before { + content: "\e909"; +} +.icon-car-door:before { + content: "\e90a"; +} +.icon-car-fan:before { + content: "\e90b"; +} +.icon-car-fuel:before { + content: "\e90c"; +} +.icon-car-fuel2:before { + content: "\e90d"; +} +.icon-car-fulltime:before { + content: "\e90e"; +} +.icon-car-machine:before { + content: "\e90f"; +} +.icon-car-meter:before { + content: "\e910"; +} +.icon-car-money:before { + content: "\e911"; +} +.icon-car-note:before { + content: "\e912"; +} +.icon-car-note2:before { + content: "\e913"; +} +.icon-car-paint:before { + content: "\e914"; +} +.icon-car-pump:before { + content: "\e915"; +} +.icon-car-service:before { + content: "\e916"; +} +.icon-car-service2:before { + content: "\e917"; +} +.icon-car-signal:before { + content: "\e918"; +} +.icon-car-signal2:before { + content: "\e919"; +} +.icon-car-stearing:before { + content: "\e91a"; +} +.icon-car-tuning:before { + content: "\e91b"; +} +.icon-car-wheel:before { + content: "\e91c"; +} +.icon-car-alert:before { + content: "\e91d"; +} +.icon-car-cabriolet:before { + content: "\e91e"; +} +.icon-car-cuv:before { + content: "\e91f"; +} +.icon-car-hatchback:before { + content: "\e920"; +} +.icon-car-micro:before { + content: "\e921"; +} +.icon-car-minivan:before { + content: "\e922"; +} +.icon-car-pickup:before { + content: "\e923"; +} +.icon-car-sedan:before { + content: "\e924"; +} +.icon-car-supercar:before { + content: "\e925"; +} +.icon-car-suv:before { + content: "\e926"; +} +.icon-car-truck:before { + content: "\e927"; +} +.icon-car-van:before { + content: "\e928"; +} + diff --git a/TSC2.Client/wwwroot/demos/car/images/1.jpg b/TSC2.Client/wwwroot/demos/car/images/1.jpg new file mode 100644 index 0000000..cfe037b Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/1.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/1.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/1.png new file mode 100644 index 0000000..e1d9c70 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/1.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/10.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/10.png new file mode 100644 index 0000000..1f674a3 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/10.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/11.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/11.png new file mode 100644 index 0000000..365c654 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/11.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/12.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/12.png new file mode 100644 index 0000000..7861043 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/12.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/13.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/13.png new file mode 100644 index 0000000..b709003 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/13.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/14.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/14.png new file mode 100644 index 0000000..aff1e11 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/14.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/15.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/15.png new file mode 100644 index 0000000..5c845e2 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/15.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/16.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/16.png new file mode 100644 index 0000000..cd0168f Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/16.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/17.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/17.png new file mode 100644 index 0000000..c547deb Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/17.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/18.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/18.png new file mode 100644 index 0000000..7edb8f7 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/18.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/19.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/19.png new file mode 100644 index 0000000..f403c81 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/19.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/2.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/2.png new file mode 100644 index 0000000..bc071de Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/2.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/20.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/20.png new file mode 100644 index 0000000..059ffcb Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/20.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/21.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/21.png new file mode 100644 index 0000000..3f4af7a Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/21.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/22.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/22.png new file mode 100644 index 0000000..872d56d Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/22.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/23.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/23.png new file mode 100644 index 0000000..a84e8db Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/23.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/24.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/24.png new file mode 100644 index 0000000..7bcd785 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/24.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/25.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/25.png new file mode 100644 index 0000000..fd52181 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/25.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/26.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/26.png new file mode 100644 index 0000000..48212f4 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/26.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/27.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/27.png new file mode 100644 index 0000000..7f00439 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/27.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/28.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/28.png new file mode 100644 index 0000000..3d1b2d3 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/28.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/29.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/29.png new file mode 100644 index 0000000..28d9f48 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/29.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/3.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/3.png new file mode 100644 index 0000000..263e6ce Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/3.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/30.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/30.png new file mode 100644 index 0000000..0fe9ca5 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/30.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/31.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/31.png new file mode 100644 index 0000000..168bb60 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/31.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/32.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/32.png new file mode 100644 index 0000000..fe11fe1 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/32.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/33.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/33.png new file mode 100644 index 0000000..e667718 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/33.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/34.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/34.png new file mode 100644 index 0000000..3eb786a Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/34.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/35.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/35.png new file mode 100644 index 0000000..3c92b88 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/35.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/36.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/36.png new file mode 100644 index 0000000..740ad16 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/36.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/37.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/37.png new file mode 100644 index 0000000..935ac4e Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/37.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/38.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/38.png new file mode 100644 index 0000000..1fdbaac Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/38.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/39.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/39.png new file mode 100644 index 0000000..326ea3d Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/39.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/4.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/4.png new file mode 100644 index 0000000..772b8e1 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/4.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/40.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/40.png new file mode 100644 index 0000000..eb2cef6 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/40.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/41.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/41.png new file mode 100644 index 0000000..74f5146 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/41.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/42.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/42.png new file mode 100644 index 0000000..69ba049 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/42.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/43.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/43.png new file mode 100644 index 0000000..9aa07d0 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/43.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/44.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/44.png new file mode 100644 index 0000000..fb56e42 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/44.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/45.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/45.png new file mode 100644 index 0000000..a72584a Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/45.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/46.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/46.png new file mode 100644 index 0000000..173d9d9 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/46.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/47.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/47.png new file mode 100644 index 0000000..47303e6 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/47.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/48.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/48.png new file mode 100644 index 0000000..03b91c1 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/48.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/49.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/49.png new file mode 100644 index 0000000..0f1cf4e Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/49.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/5.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/5.png new file mode 100644 index 0000000..c016f4c Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/5.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/50.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/50.png new file mode 100644 index 0000000..a7a931d Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/50.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/51.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/51.png new file mode 100644 index 0000000..7637055 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/51.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/52.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/52.png new file mode 100644 index 0000000..f5f8c81 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/52.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/6.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/6.png new file mode 100644 index 0000000..3c2a67a Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/6.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/7.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/7.png new file mode 100644 index 0000000..74cb6f3 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/7.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/8.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/8.png new file mode 100644 index 0000000..e00822d Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/8.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/9.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/9.png new file mode 100644 index 0000000..710d140 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/9.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/360degree-cars/navs.png b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/navs.png new file mode 100644 index 0000000..e2fd495 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/360degree-cars/navs.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/5.jpg b/TSC2.Client/wwwroot/demos/car/images/5.jpg new file mode 100644 index 0000000..c59b7df Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/5.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/6.jpg b/TSC2.Client/wwwroot/demos/car/images/6.jpg new file mode 100644 index 0000000..9a4e2e3 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/6.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/accessories/engines/1.jpg b/TSC2.Client/wwwroot/demos/car/images/accessories/engines/1.jpg new file mode 100644 index 0000000..7c671a8 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/accessories/engines/1.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/accessories/engines/2.jpg b/TSC2.Client/wwwroot/demos/car/images/accessories/engines/2.jpg new file mode 100644 index 0000000..6356c54 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/accessories/engines/2.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/accessories/engines/3.jpg b/TSC2.Client/wwwroot/demos/car/images/accessories/engines/3.jpg new file mode 100644 index 0000000..cd5b58c Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/accessories/engines/3.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/accessories/engines/4.jpg b/TSC2.Client/wwwroot/demos/car/images/accessories/engines/4.jpg new file mode 100644 index 0000000..e4fd936 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/accessories/engines/4.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/accessories/engines/5.jpg b/TSC2.Client/wwwroot/demos/car/images/accessories/engines/5.jpg new file mode 100644 index 0000000..869257d Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/accessories/engines/5.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/accessories/engines/6.jpg b/TSC2.Client/wwwroot/demos/car/images/accessories/engines/6.jpg new file mode 100644 index 0000000..5b275e6 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/accessories/engines/6.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/accessories/footer.jpg b/TSC2.Client/wwwroot/demos/car/images/accessories/footer.jpg new file mode 100644 index 0000000..40d54e4 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/accessories/footer.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/accessories/lights/1.jpg b/TSC2.Client/wwwroot/demos/car/images/accessories/lights/1.jpg new file mode 100644 index 0000000..e61fdc6 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/accessories/lights/1.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/accessories/lights/2.jpg b/TSC2.Client/wwwroot/demos/car/images/accessories/lights/2.jpg new file mode 100644 index 0000000..a7ab144 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/accessories/lights/2.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/accessories/lights/3.jpg b/TSC2.Client/wwwroot/demos/car/images/accessories/lights/3.jpg new file mode 100644 index 0000000..eac9b58 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/accessories/lights/3.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/accessories/lights/4.jpg b/TSC2.Client/wwwroot/demos/car/images/accessories/lights/4.jpg new file mode 100644 index 0000000..59b16db Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/accessories/lights/4.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/accessories/lights/5.jpg b/TSC2.Client/wwwroot/demos/car/images/accessories/lights/5.jpg new file mode 100644 index 0000000..5d5591f Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/accessories/lights/5.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/accessories/music/1.jpg b/TSC2.Client/wwwroot/demos/car/images/accessories/music/1.jpg new file mode 100644 index 0000000..09f4edf Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/accessories/music/1.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/accessories/music/2.jpg b/TSC2.Client/wwwroot/demos/car/images/accessories/music/2.jpg new file mode 100644 index 0000000..bf6e6bb Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/accessories/music/2.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/accessories/music/3.jpg b/TSC2.Client/wwwroot/demos/car/images/accessories/music/3.jpg new file mode 100644 index 0000000..8f31886 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/accessories/music/3.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/accessories/music/4.jpg b/TSC2.Client/wwwroot/demos/car/images/accessories/music/4.jpg new file mode 100644 index 0000000..c16a88d Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/accessories/music/4.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/accessories/page-title.jpg b/TSC2.Client/wwwroot/demos/car/images/accessories/page-title.jpg new file mode 100644 index 0000000..dd7aa2e Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/accessories/page-title.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/accessories/seats/1.jpg b/TSC2.Client/wwwroot/demos/car/images/accessories/seats/1.jpg new file mode 100644 index 0000000..ba1dfe5 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/accessories/seats/1.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/accessories/seats/2.jpg b/TSC2.Client/wwwroot/demos/car/images/accessories/seats/2.jpg new file mode 100644 index 0000000..21d8ae3 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/accessories/seats/2.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/accessories/seats/3.jpg b/TSC2.Client/wwwroot/demos/car/images/accessories/seats/3.jpg new file mode 100644 index 0000000..c2ac03f Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/accessories/seats/3.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/accessories/seats/4.jpg b/TSC2.Client/wwwroot/demos/car/images/accessories/seats/4.jpg new file mode 100644 index 0000000..1e6e0c5 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/accessories/seats/4.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/accessories/wheels/1.jpg b/TSC2.Client/wwwroot/demos/car/images/accessories/wheels/1.jpg new file mode 100644 index 0000000..168f3b7 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/accessories/wheels/1.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/accessories/wheels/2.jpg b/TSC2.Client/wwwroot/demos/car/images/accessories/wheels/2.jpg new file mode 100644 index 0000000..772957a Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/accessories/wheels/2.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/accessories/wheels/3.jpg b/TSC2.Client/wwwroot/demos/car/images/accessories/wheels/3.jpg new file mode 100644 index 0000000..165d18b Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/accessories/wheels/3.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/accessories/wheels/4.jpg b/TSC2.Client/wwwroot/demos/car/images/accessories/wheels/4.jpg new file mode 100644 index 0000000..93a5a78 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/accessories/wheels/4.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/accessories/wheels/5.jpg b/TSC2.Client/wwwroot/demos/car/images/accessories/wheels/5.jpg new file mode 100644 index 0000000..53d02ca Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/accessories/wheels/5.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/accessories/wheels/6.jpg b/TSC2.Client/wwwroot/demos/car/images/accessories/wheels/6.jpg new file mode 100644 index 0000000..ee22ad7 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/accessories/wheels/6.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/bg.jpg b/TSC2.Client/wwwroot/demos/car/images/bg.jpg new file mode 100644 index 0000000..7bdf5d7 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/bg.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/call.jpg b/TSC2.Client/wwwroot/demos/car/images/call.jpg new file mode 100644 index 0000000..4114569 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/call.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/categories/1.jpg b/TSC2.Client/wwwroot/demos/car/images/categories/1.jpg new file mode 100644 index 0000000..9b2d721 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/categories/1.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/categories/2.jpg b/TSC2.Client/wwwroot/demos/car/images/categories/2.jpg new file mode 100644 index 0000000..99856fa Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/categories/2.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/categories/3.jpg b/TSC2.Client/wwwroot/demos/car/images/categories/3.jpg new file mode 100644 index 0000000..f0a9898 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/categories/3.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/dealers/1.jpg b/TSC2.Client/wwwroot/demos/car/images/dealers/1.jpg new file mode 100644 index 0000000..63a5783 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/dealers/1.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/dealers/2.jpg b/TSC2.Client/wwwroot/demos/car/images/dealers/2.jpg new file mode 100644 index 0000000..ae94922 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/dealers/2.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/dealers/3.jpg b/TSC2.Client/wwwroot/demos/car/images/dealers/3.jpg new file mode 100644 index 0000000..93be367 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/dealers/3.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/dealers/car-interior.jpg b/TSC2.Client/wwwroot/demos/car/images/dealers/car-interior.jpg new file mode 100644 index 0000000..b015243 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/dealers/car-interior.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/dealers/car-light.jpg b/TSC2.Client/wwwroot/demos/car/images/dealers/car-light.jpg new file mode 100644 index 0000000..a676e64 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/dealers/car-light.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/dealers/car-seat.jpg b/TSC2.Client/wwwroot/demos/car/images/dealers/car-seat.jpg new file mode 100644 index 0000000..01a7cea Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/dealers/car-seat.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/dealers/car-wheel.jpg b/TSC2.Client/wwwroot/demos/car/images/dealers/car-wheel.jpg new file mode 100644 index 0000000..f2c3afc Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/dealers/car-wheel.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/features/bg1.png b/TSC2.Client/wwwroot/demos/car/images/features/bg1.png new file mode 100644 index 0000000..c5daa20 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/features/bg1.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/features/section-bg.jpg b/TSC2.Client/wwwroot/demos/car/images/features/section-bg.jpg new file mode 100644 index 0000000..954f0c1 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/features/section-bg.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/filter-cars/1.jpg b/TSC2.Client/wwwroot/demos/car/images/filter-cars/1.jpg new file mode 100644 index 0000000..0449437 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/filter-cars/1.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/filter-cars/2.jpg b/TSC2.Client/wwwroot/demos/car/images/filter-cars/2.jpg new file mode 100644 index 0000000..541a779 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/filter-cars/2.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/filter-cars/3.jpg b/TSC2.Client/wwwroot/demos/car/images/filter-cars/3.jpg new file mode 100644 index 0000000..ad3ecb7 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/filter-cars/3.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/filter-cars/4.jpg b/TSC2.Client/wwwroot/demos/car/images/filter-cars/4.jpg new file mode 100644 index 0000000..9b2d721 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/filter-cars/4.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/filter-cars/5.jpg b/TSC2.Client/wwwroot/demos/car/images/filter-cars/5.jpg new file mode 100644 index 0000000..f0e9732 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/filter-cars/5.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/filter-cars/6.jpg b/TSC2.Client/wwwroot/demos/car/images/filter-cars/6.jpg new file mode 100644 index 0000000..9f70c78 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/filter-cars/6.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/filter-cars/7.jpg b/TSC2.Client/wwwroot/demos/car/images/filter-cars/7.jpg new file mode 100644 index 0000000..bef6be7 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/filter-cars/7.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/footer-bg.jpg b/TSC2.Client/wwwroot/demos/car/images/footer-bg.jpg new file mode 100644 index 0000000..ffef396 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/footer-bg.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/hero-slider/1.jpg b/TSC2.Client/wwwroot/demos/car/images/hero-slider/1.jpg new file mode 100644 index 0000000..f266834 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/hero-slider/1.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/hero-slider/2.jpg b/TSC2.Client/wwwroot/demos/car/images/hero-slider/2.jpg new file mode 100644 index 0000000..ac7bb6f Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/hero-slider/2.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/hero-slider/3.jpg b/TSC2.Client/wwwroot/demos/car/images/hero-slider/3.jpg new file mode 100644 index 0000000..c22c450 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/hero-slider/3.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/hero-slider/4.jpg b/TSC2.Client/wwwroot/demos/car/images/hero-slider/4.jpg new file mode 100644 index 0000000..aff7528 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/hero-slider/4.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/icons/cabriolet.svg b/TSC2.Client/wwwroot/demos/car/images/icons/cabriolet.svg new file mode 100644 index 0000000..40e803f --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/icons/cabriolet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/icons/cuv.svg b/TSC2.Client/wwwroot/demos/car/images/icons/cuv.svg new file mode 100644 index 0000000..7cdf465 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/icons/cuv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/icons/hatchback.svg b/TSC2.Client/wwwroot/demos/car/images/icons/hatchback.svg new file mode 100644 index 0000000..b211111 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/icons/hatchback.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/icons/micro.svg b/TSC2.Client/wwwroot/demos/car/images/icons/micro.svg new file mode 100644 index 0000000..c0c4c49 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/icons/micro.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/icons/minivan.svg b/TSC2.Client/wwwroot/demos/car/images/icons/minivan.svg new file mode 100644 index 0000000..57e247c --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/icons/minivan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/icons/pickup.svg b/TSC2.Client/wwwroot/demos/car/images/icons/pickup.svg new file mode 100644 index 0000000..2a0ed74 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/icons/pickup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/icons/sedan.svg b/TSC2.Client/wwwroot/demos/car/images/icons/sedan.svg new file mode 100644 index 0000000..b4383ba --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/icons/sedan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/icons/supercar.svg b/TSC2.Client/wwwroot/demos/car/images/icons/supercar.svg new file mode 100644 index 0000000..3f5c33a --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/icons/supercar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/icons/suv.svg b/TSC2.Client/wwwroot/demos/car/images/icons/suv.svg new file mode 100644 index 0000000..f17247d --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/icons/suv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/icons/truck.svg b/TSC2.Client/wwwroot/demos/car/images/icons/truck.svg new file mode 100644 index 0000000..ffc0884 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/icons/truck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/icons/van.svg b/TSC2.Client/wwwroot/demos/car/images/icons/van.svg new file mode 100644 index 0000000..8be97f1 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/icons/van.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/logo-footer.png b/TSC2.Client/wwwroot/demos/car/images/logo-footer.png new file mode 100644 index 0000000..1c8dcae Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/logo-footer.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/logo.png b/TSC2.Client/wwwroot/demos/car/images/logo.png new file mode 100644 index 0000000..1a00fb6 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/logo.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/logo@2x.png b/TSC2.Client/wwwroot/demos/car/images/logo@2x.png new file mode 100644 index 0000000..defff9e Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/logo@2x.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/logos/audi.svg b/TSC2.Client/wwwroot/demos/car/images/logos/audi.svg new file mode 100644 index 0000000..facb5bb --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/logos/audi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/mega-menu/1.png b/TSC2.Client/wwwroot/demos/car/images/mega-menu/1.png new file mode 100644 index 0000000..c313693 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/mega-menu/1.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/mega-menu/10.png b/TSC2.Client/wwwroot/demos/car/images/mega-menu/10.png new file mode 100644 index 0000000..6bdb8d1 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/mega-menu/10.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/mega-menu/2.png b/TSC2.Client/wwwroot/demos/car/images/mega-menu/2.png new file mode 100644 index 0000000..34e5f61 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/mega-menu/2.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/mega-menu/3.png b/TSC2.Client/wwwroot/demos/car/images/mega-menu/3.png new file mode 100644 index 0000000..7bb1056 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/mega-menu/3.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/mega-menu/4.png b/TSC2.Client/wwwroot/demos/car/images/mega-menu/4.png new file mode 100644 index 0000000..2d791aa Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/mega-menu/4.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/mega-menu/5.png b/TSC2.Client/wwwroot/demos/car/images/mega-menu/5.png new file mode 100644 index 0000000..a89ae1c Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/mega-menu/5.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/mega-menu/6.png b/TSC2.Client/wwwroot/demos/car/images/mega-menu/6.png new file mode 100644 index 0000000..d58307d Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/mega-menu/6.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/mega-menu/7.png b/TSC2.Client/wwwroot/demos/car/images/mega-menu/7.png new file mode 100644 index 0000000..a2ba45d Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/mega-menu/7.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/mega-menu/8.png b/TSC2.Client/wwwroot/demos/car/images/mega-menu/8.png new file mode 100644 index 0000000..7fbb6c5 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/mega-menu/8.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/mega-menu/9.png b/TSC2.Client/wwwroot/demos/car/images/mega-menu/9.png new file mode 100644 index 0000000..dc97034 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/mega-menu/9.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/moving-car/car-tier.png b/TSC2.Client/wwwroot/demos/car/images/moving-car/car-tier.png new file mode 100644 index 0000000..4bf08c3 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/moving-car/car-tier.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/moving-car/car.jpg b/TSC2.Client/wwwroot/demos/car/images/moving-car/car.jpg new file mode 100644 index 0000000..8736906 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/moving-car/car.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/page-loader.gif b/TSC2.Client/wwwroot/demos/car/images/page-loader.gif new file mode 100644 index 0000000..8054e4d Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/page-loader.gif differ diff --git a/TSC2.Client/wwwroot/demos/car/images/revslider/1.png b/TSC2.Client/wwwroot/demos/car/images/revslider/1.png new file mode 100644 index 0000000..029944f Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/revslider/1.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/revslider/2.png b/TSC2.Client/wwwroot/demos/car/images/revslider/2.png new file mode 100644 index 0000000..7a7fd25 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/revslider/2.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/revslider/3.png b/TSC2.Client/wwwroot/demos/car/images/revslider/3.png new file mode 100644 index 0000000..2d9c951 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/revslider/3.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/revslider/4.png b/TSC2.Client/wwwroot/demos/car/images/revslider/4.png new file mode 100644 index 0000000..1394d77 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/revslider/4.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/revslider/5.png b/TSC2.Client/wwwroot/demos/car/images/revslider/5.png new file mode 100644 index 0000000..9de080d Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/revslider/5.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/revslider/bg.png b/TSC2.Client/wwwroot/demos/car/images/revslider/bg.png new file mode 100644 index 0000000..e90ac3f Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/revslider/bg.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/1.png b/TSC2.Client/wwwroot/demos/car/images/single/1.png new file mode 100644 index 0000000..ad0e73c Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/1.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/2.png b/TSC2.Client/wwwroot/demos/car/images/single/2.png new file mode 100644 index 0000000..cc9d136 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/2.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/3.png b/TSC2.Client/wwwroot/demos/car/images/single/3.png new file mode 100644 index 0000000..8d7fae2 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/3.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/4.png b/TSC2.Client/wwwroot/demos/car/images/single/4.png new file mode 100644 index 0000000..d722355 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/4.png differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/911cars/1.jpg b/TSC2.Client/wwwroot/demos/car/images/single/911cars/1.jpg new file mode 100644 index 0000000..7a7bf79 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/911cars/1.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/911cars/10.jpg b/TSC2.Client/wwwroot/demos/car/images/single/911cars/10.jpg new file mode 100644 index 0000000..2e1ac5f Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/911cars/10.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/911cars/11.jpg b/TSC2.Client/wwwroot/demos/car/images/single/911cars/11.jpg new file mode 100644 index 0000000..aeb3037 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/911cars/11.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/911cars/12.jpg b/TSC2.Client/wwwroot/demos/car/images/single/911cars/12.jpg new file mode 100644 index 0000000..51e26d2 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/911cars/12.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/911cars/2.jpg b/TSC2.Client/wwwroot/demos/car/images/single/911cars/2.jpg new file mode 100644 index 0000000..803d8ec Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/911cars/2.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/911cars/3.jpg b/TSC2.Client/wwwroot/demos/car/images/single/911cars/3.jpg new file mode 100644 index 0000000..02a8d45 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/911cars/3.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/911cars/4.jpg b/TSC2.Client/wwwroot/demos/car/images/single/911cars/4.jpg new file mode 100644 index 0000000..27a382d Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/911cars/4.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/911cars/5.jpg b/TSC2.Client/wwwroot/demos/car/images/single/911cars/5.jpg new file mode 100644 index 0000000..d694840 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/911cars/5.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/911cars/6.jpg b/TSC2.Client/wwwroot/demos/car/images/single/911cars/6.jpg new file mode 100644 index 0000000..f5e45b1 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/911cars/6.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/911cars/7.jpg b/TSC2.Client/wwwroot/demos/car/images/single/911cars/7.jpg new file mode 100644 index 0000000..06e77bf Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/911cars/7.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/911cars/8.jpg b/TSC2.Client/wwwroot/demos/car/images/single/911cars/8.jpg new file mode 100644 index 0000000..7dc4c9f Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/911cars/8.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/911cars/9.jpg b/TSC2.Client/wwwroot/demos/car/images/single/911cars/9.jpg new file mode 100644 index 0000000..2423c9a Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/911cars/9.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/1.jpg b/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/1.jpg new file mode 100644 index 0000000..d5d5e1f Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/1.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/10.jpg b/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/10.jpg new file mode 100644 index 0000000..92f82b8 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/10.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/11.jpg b/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/11.jpg new file mode 100644 index 0000000..2626d2c Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/11.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/12.jpg b/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/12.jpg new file mode 100644 index 0000000..7fba276 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/12.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/2.jpg b/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/2.jpg new file mode 100644 index 0000000..275b042 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/2.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/3.jpg b/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/3.jpg new file mode 100644 index 0000000..17070cc Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/3.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/4.jpg b/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/4.jpg new file mode 100644 index 0000000..5f5ca06 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/4.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/5.jpg b/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/5.jpg new file mode 100644 index 0000000..733b0a1 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/5.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/6.jpg b/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/6.jpg new file mode 100644 index 0000000..bbdedd3 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/6.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/7.jpg b/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/7.jpg new file mode 100644 index 0000000..1224cc3 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/7.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/8.jpg b/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/8.jpg new file mode 100644 index 0000000..c8cbd77 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/8.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/9.jpg b/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/9.jpg new file mode 100644 index 0000000..ab847da Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/911cars/thumbs/9.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/single/features.jpg b/TSC2.Client/wwwroot/demos/car/images/single/features.jpg new file mode 100644 index 0000000..7176e9b Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/single/features.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/alert.svg b/TSC2.Client/wwwroot/demos/car/images/svg/alert.svg new file mode 100644 index 0000000..6402bf0 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/asset.svg b/TSC2.Client/wwwroot/demos/car/images/svg/asset.svg new file mode 100644 index 0000000..558f3b1 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/asset.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/battery.svg b/TSC2.Client/wwwroot/demos/car/images/svg/battery.svg new file mode 100644 index 0000000..bc8291b --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/battery.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/bearing.svg b/TSC2.Client/wwwroot/demos/car/images/svg/bearing.svg new file mode 100644 index 0000000..56ca648 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/bearing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/board1.svg b/TSC2.Client/wwwroot/demos/car/images/svg/board1.svg new file mode 100644 index 0000000..d523649 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/board1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/care.svg b/TSC2.Client/wwwroot/demos/car/images/svg/care.svg new file mode 100644 index 0000000..cee5eb5 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/care.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/cog.svg b/TSC2.Client/wwwroot/demos/car/images/svg/cog.svg new file mode 100644 index 0000000..72ef6c5 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/cog3.svg b/TSC2.Client/wwwroot/demos/car/images/svg/cog3.svg new file mode 100644 index 0000000..0c6c731 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/cog3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/cogs.svg b/TSC2.Client/wwwroot/demos/car/images/svg/cogs.svg new file mode 100644 index 0000000..ae87f81 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/cogs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/cogs2.svg b/TSC2.Client/wwwroot/demos/car/images/svg/cogs2.svg new file mode 100644 index 0000000..7f89eee --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/cogs2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/crane.svg b/TSC2.Client/wwwroot/demos/car/images/svg/crane.svg new file mode 100644 index 0000000..bc3630f --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/crane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/door.svg b/TSC2.Client/wwwroot/demos/car/images/svg/door.svg new file mode 100644 index 0000000..e8014ef --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/door.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/fan.svg b/TSC2.Client/wwwroot/demos/car/images/svg/fan.svg new file mode 100644 index 0000000..e66ecb1 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/fan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/fuel.svg b/TSC2.Client/wwwroot/demos/car/images/svg/fuel.svg new file mode 100644 index 0000000..fcc87e5 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/fuel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/fuel2.svg b/TSC2.Client/wwwroot/demos/car/images/svg/fuel2.svg new file mode 100644 index 0000000..adc1b0c --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/fuel2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/fulltime.svg b/TSC2.Client/wwwroot/demos/car/images/svg/fulltime.svg new file mode 100644 index 0000000..345a582 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/fulltime.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/machine.svg b/TSC2.Client/wwwroot/demos/car/images/svg/machine.svg new file mode 100644 index 0000000..298297d --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/machine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/meter.svg b/TSC2.Client/wwwroot/demos/car/images/svg/meter.svg new file mode 100644 index 0000000..7af3e33 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/meter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/money.svg b/TSC2.Client/wwwroot/demos/car/images/svg/money.svg new file mode 100644 index 0000000..39dc049 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/money.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/note.svg b/TSC2.Client/wwwroot/demos/car/images/svg/note.svg new file mode 100644 index 0000000..269713a --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/note2.svg b/TSC2.Client/wwwroot/demos/car/images/svg/note2.svg new file mode 100644 index 0000000..d523649 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/note2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/paint.svg b/TSC2.Client/wwwroot/demos/car/images/svg/paint.svg new file mode 100644 index 0000000..80f51d6 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/paint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/pump.svg b/TSC2.Client/wwwroot/demos/car/images/svg/pump.svg new file mode 100644 index 0000000..b8110ee --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/pump.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/service.svg b/TSC2.Client/wwwroot/demos/car/images/svg/service.svg new file mode 100644 index 0000000..d060bb0 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/service.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/service2.svg b/TSC2.Client/wwwroot/demos/car/images/svg/service2.svg new file mode 100644 index 0000000..d399a67 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/service2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/signal.svg b/TSC2.Client/wwwroot/demos/car/images/svg/signal.svg new file mode 100644 index 0000000..de2a41f --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/signal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/signal2.svg b/TSC2.Client/wwwroot/demos/car/images/svg/signal2.svg new file mode 100644 index 0000000..d213a36 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/signal2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/stearing.svg b/TSC2.Client/wwwroot/demos/car/images/svg/stearing.svg new file mode 100644 index 0000000..e209aec --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/stearing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/tuning.svg b/TSC2.Client/wwwroot/demos/car/images/svg/tuning.svg new file mode 100644 index 0000000..c8d4b08 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/tuning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/svg/wheel.svg b/TSC2.Client/wwwroot/demos/car/images/svg/wheel.svg new file mode 100644 index 0000000..fac6dc5 --- /dev/null +++ b/TSC2.Client/wwwroot/demos/car/images/svg/wheel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/TSC2.Client/wwwroot/demos/car/images/videos/1.jpg b/TSC2.Client/wwwroot/demos/car/images/videos/1.jpg new file mode 100644 index 0000000..37f30bf Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/videos/1.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/videos/1.mp4 b/TSC2.Client/wwwroot/demos/car/images/videos/1.mp4 new file mode 100644 index 0000000..af3ea2d Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/videos/1.mp4 differ diff --git a/TSC2.Client/wwwroot/demos/car/images/videos/2.jpg b/TSC2.Client/wwwroot/demos/car/images/videos/2.jpg new file mode 100644 index 0000000..6743faf Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/videos/2.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/videos/2.mp4 b/TSC2.Client/wwwroot/demos/car/images/videos/2.mp4 new file mode 100644 index 0000000..6e6cb6c Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/videos/2.mp4 differ diff --git a/TSC2.Client/wwwroot/demos/car/images/videos/3.jpg b/TSC2.Client/wwwroot/demos/car/images/videos/3.jpg new file mode 100644 index 0000000..963f857 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/videos/3.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/videos/3.mp4 b/TSC2.Client/wwwroot/demos/car/images/videos/3.mp4 new file mode 100644 index 0000000..7f6a5e3 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/videos/3.mp4 differ diff --git a/TSC2.Client/wwwroot/demos/car/images/videos/4.jpg b/TSC2.Client/wwwroot/demos/car/images/videos/4.jpg new file mode 100644 index 0000000..b24e6b2 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/videos/4.jpg differ diff --git a/TSC2.Client/wwwroot/demos/car/images/videos/4.mp4 b/TSC2.Client/wwwroot/demos/car/images/videos/4.mp4 new file mode 100644 index 0000000..89d98dc Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/videos/4.mp4 differ diff --git a/TSC2.Client/wwwroot/demos/car/images/videos/5.jpg b/TSC2.Client/wwwroot/demos/car/images/videos/5.jpg new file mode 100644 index 0000000..d3f65d0 Binary files /dev/null and b/TSC2.Client/wwwroot/demos/car/images/videos/5.jpg differ diff --git a/TSC2.Client/wwwroot/js/bundle.js b/TSC2.Client/wwwroot/js/bundle.js new file mode 100644 index 0000000..630f56e --- /dev/null +++ b/TSC2.Client/wwwroot/js/bundle.js @@ -0,0 +1,5 @@ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(e.document)return t(e);throw new Error("jQuery requires a window with a document")}:t(e)}("undefined"!=typeof window?window:this,function(x,Y){"use strict";function v(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item}function z(e){return null!=e&&e===e.window}var t=[],N=Object.getPrototypeOf,o=t.slice,F=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},B=t.push,w=t.indexOf,q={},V=q.toString,R=q.hasOwnProperty,Q=R.toString,H=Q.call(Object),m={},T=x.document,W={type:!0,src:!0,nonce:!0,noModule:!0};function $(e,t,i){var n,r,s=(i=i||T).createElement("script");if(s.text=e,t)for(n in W)(r=t[n]||t.getAttribute&&t.getAttribute(n))&&s.setAttribute(n,r);i.head.appendChild(s).parentNode.removeChild(s)}function U(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?q[V.call(e)]||"object":typeof e}var e="3.7.0",G=/HTML$/i,S=function(e,t){return new S.fn.init(e,t)};function X(e){var t=!!e&&"length"in e&&e.length,i=U(e);return!v(e)&&!z(e)&&("array"===i||0===t||"number"==typeof t&&0+~]|"+i+")"+i+"*"),we=new RegExp(i+"|>"),_e=new RegExp(r),xe=new RegExp("^"+e+"$"),Te={ID:new RegExp("^#("+e+")"),CLASS:new RegExp("^\\.("+e+")"),TAG:new RegExp("^("+e+"|[*])"),ATTR:new RegExp("^"+s),PSEUDO:new RegExp("^"+r),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+i+"*(even|odd|(([+-]|)(\\d*)n|)"+i+"*(?:([+-]|)"+i+"*(\\d+)|))"+i+"*\\)|)","i"),bool:new RegExp("^(?:"+ge+")$","i"),needsContext:new RegExp("^"+i+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+i+"*((?:-\\d)?\\d*)"+i+"*\\)|)(?=[^-]|$)","i")},Se=/^(?:input|select|textarea|button)$/i,ke=/^h\d$/i,Ce=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,Pe=/[+~]/,u=new RegExp("\\\\[\\da-fA-F]{1,6}"+i+"?|\\\\([^\\r\\n\\f])","g"),h=function(e,t){return e="0x"+e.slice(1)-65536,t||(e<0?String.fromCharCode(65536+e):String.fromCharCode(e>>10|55296,1023&e|56320))},Ee=function(){De()},Ae=Fe(function(e){return!0===e.disabled&&b(e,"fieldset")},{dir:"parentNode",next:"legend"});try{P.apply(t=o.call(n.childNodes),n.childNodes),t[n.childNodes.length].nodeType}catch(ne){P={apply:function(e,t){ce.apply(e,o.call(t))},call:function(e){ce.apply(e,o.call(arguments,1))}}}function M(e,t,i,n){var r,s,a,o,l,c,d=t&&t.ownerDocument,u=t?t.nodeType:9;if(i=i||[],"string"!=typeof e||!e||1!==u&&9!==u&&11!==u)return i;if(!n&&(De(t),t=t||k,C)){if(11!==u&&(o=Ce.exec(e)))if(r=o[1]){if(9===u){if(!(c=t.getElementById(r)))return i;if(c.id===r)return P.call(i,c),i}else if(d&&(c=d.getElementById(r))&&M.contains(t,c)&&c.id===r)return P.call(i,c),i}else{if(o[2])return P.apply(i,t.getElementsByTagName(e)),i;if((r=o[3])&&t.getElementsByClassName)return P.apply(i,t.getElementsByClassName(r)),i}if(!(fe[e+" "]||p&&p.test(e))){if(c=e,d=t,1===u&&(we.test(e)||be.test(e))){for((d=Pe.test(e)&&Oe(t.parentNode)||t)==t&&m.scope||((a=t.getAttribute("id"))?a=S.escapeSelector(a):t.setAttribute("id",a=E)),s=(l=ze(e)).length;s--;)l[s]=(a?"#"+a:":scope")+" "+Ne(l[s]);c=l.join(",")}try{return P.apply(i,d.querySelectorAll(c)),i}catch(t){fe(e,!0)}finally{a===E&&t.removeAttribute("id")}}}return Re(e.replace(ee,"$1"),t,i,n)}function Me(){var n=[];return function e(t,i){return n.push(t+" ")>_.cacheLength&&delete e[n.shift()],e[t+" "]=i}}function L(e){return e[E]=!0,e}function Le(e){var t=k.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t)}}function je(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&Ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function Ie(a){return L(function(s){return s=+s,L(function(e,t){for(var i,n=a([],e.length,s),r=n.length;r--;)e[i=n[r]]&&(e[i]=!(t[i]=e[i]))})})}function Oe(e){return e&&void 0!==e.getElementsByTagName&&e}function De(e){return(e=e?e.ownerDocument||e:n)!=k&&9===e.nodeType&&e.documentElement&&(oe=(k=e).documentElement,C=!S.isXMLDoc(k),le=oe.matches||oe.webkitMatchesSelector||oe.msMatchesSelector,n!=k&&(e=k.defaultView)&&e.top!==e&&e.addEventListener("unload",Ee),m.getById=Le(function(e){return oe.appendChild(e).id=S.expando,!k.getElementsByName||!k.getElementsByName(S.expando).length}),m.disconnectedMatch=Le(function(e){return le.call(e,"*")}),m.scope=Le(function(){return k.querySelectorAll(":scope")}),m.cssHas=Le(function(){try{return k.querySelector(":has(*,:jqfake)"),0}catch(e){return 1}}),m.getById?(_.filter.ID=function(e){var t=e.replace(u,h);return function(e){return e.getAttribute("id")===t}},_.find.ID=function(e,t){if(void 0!==t.getElementById&&C)return(t=t.getElementById(e))?[t]:[]}):(_.filter.ID=function(e){var t=e.replace(u,h);return function(e){return(e=void 0!==e.getAttributeNode&&e.getAttributeNode("id"))&&e.value===t}},_.find.ID=function(e,t){if(void 0!==t.getElementById&&C){var i,n,r,s=t.getElementById(e);if(s){if((i=s.getAttributeNode("id"))&&i.value===e)return[s];for(r=t.getElementsByName(e),n=0;s=r[n++];)if((i=s.getAttributeNode("id"))&&i.value===e)return[s]}return[]}}),_.find.TAG=function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):t.querySelectorAll(e)},_.find.CLASS=function(e,t){if(void 0!==t.getElementsByClassName&&C)return t.getElementsByClassName(e)},p=[],Le(function(e){var t;oe.appendChild(e).innerHTML="",e.querySelectorAll("[selected]").length||p.push("\\["+i+"*(?:value|"+ge+")"),e.querySelectorAll("[id~="+E+"-]").length||p.push("~="),e.querySelectorAll("a#"+E+"+*").length||p.push(".#.+[+~]"),e.querySelectorAll(":checked").length||p.push(":checked"),(t=k.createElement("input")).setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),oe.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&p.push(":enabled",":disabled"),(t=k.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||p.push("\\["+i+"*name"+i+"*="+i+"*(?:''|\"\")")}),m.cssHas||p.push(":has"),p=p.length&&new RegExp(p.join("|")),me=function(e,t){var i;return e===t?(ae=!0,0):!e.compareDocumentPosition-!t.compareDocumentPosition||(1&(i=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!m.sortDetached&&t.compareDocumentPosition(e)===i?e===k||e.ownerDocument==n&&M.contains(n,e)?-1:t===k||t.ownerDocument==n&&M.contains(n,t)?1:se?w.call(se,e)-w.call(se,t):0:4&i?-1:1)}),k}for(ne in M.matches=function(e,t){return M(e,null,null,t)},M.matchesSelector=function(e,t){if(De(e),C&&!fe[t+" "]&&(!p||!p.test(t)))try{var i=le.call(e,t);if(i||m.disconnectedMatch||e.document&&11!==e.document.nodeType)return i}catch(e){fe(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(u,h),e[3]=(e[3]||e[4]||e[5]||"").replace(u,h),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||M.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&M.error(e[0]),e},PSEUDO:function(e){var t,i=!e[6]&&e[2];return Te.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":i&&_e.test(i)&&(t=(t=ze(i,!0))&&i.indexOf(")",i.length-t)-i.length)&&(e[0]=e[0].slice(0,t),e[2]=i.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(u,h).toLowerCase();return"*"===e?function(){return!0}:function(e){return b(e,t)}},CLASS:function(e){var t=ue[e+" "];return t||(t=new RegExp("(^|"+i+")"+e+"("+i+"|$)"))&&ue(e,function(e){return t.test("string"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(t,i,n){return function(e){return null==(e=M.attr(e,t))?"!="===i:!i||(e+="","="===i?e===n:"!="===i?e!==n:"^="===i?n&&0===e.indexOf(n):"*="===i?n&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function Ue(e,i,n){return v(i)?S.grep(e,function(e,t){return!!i.call(e,t,e)!==n}):i.nodeType?S.grep(e,function(e){return e===i!==n}):"string"!=typeof i?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/,Ze=((S.fn.init=function(e,t,i){if(e){if(i=i||Ge,"string"!=typeof e)return e.nodeType?(this[0]=e,this.length=1,this):v(e)?void 0!==i.ready?i.ready(e):e(S):S.makeArray(e,this);if(!(n="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:Xe.exec(e))||!n[1]&&t)return(!t||t.jquery?t||i:this.constructor(t)).find(e);if(n[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(n[1],t&&t.nodeType?t.ownerDocument||t:T,!0)),$e.test(n[1])&&S.isPlainObject(t))for(var n in t)v(this[n])?this[n](t[n]):this.attr(n,t[n])}else(i=T.getElementById(n[2]))&&(this[0]=i,this.length=1)}return this}).prototype=S.fn,Ge=S(T),/^(?:parents|prev(?:Until|All))/),Je={children:!0,contents:!0,next:!0,prev:!0};function Ke(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}S.fn.extend({has:function(e){var t=S(e,this),i=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,St=/^$|^module$|\/(?:java|ecma)script/i,s=T.createDocumentFragment().appendChild(T.createElement("div")),g=((r=T.createElement("input")).setAttribute("type","radio"),r.setAttribute("checked","checked"),r.setAttribute("name","t"),s.appendChild(r),m.checkClone=s.cloneNode(!0).cloneNode(!0).lastChild.checked,s.innerHTML="",m.noCloneChecked=!!s.cloneNode(!0).lastChild.defaultValue,s.innerHTML="",m.option=!!s.lastChild,{thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]});function O(e,t){var i=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||"*"):void 0!==e.querySelectorAll?e.querySelectorAll(t||"*"):[];return void 0===t||t&&b(e,t)?S.merge([e],i):i}function kt(e,t){for(var i=0,n=e.length;i",""]);var Ct=/<|&#?\w+;/;function Pt(e,t,i,n,r){for(var s,a,o,l,c,d=t.createDocumentFragment(),u=[],p=0,h=e.length;p\s*$/g;function Yt(e,t){return b(e,"table")&&b(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function zt(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Nt(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Ft(e,t){var i,n,r,s;if(1===t.nodeType){if(y.hasData(e)&&(s=y.get(e).events))for(r in y.remove(t,"handle events"),s)for(i=0,n=s[r].length;i").attr(i.scriptAttrs||{}).prop({charset:i.scriptCharset,src:i.url}).on("load error",r=function(e){n.remove(),r=null,e&&t("error"===e.type?404:200,e.type)}),T.head.appendChild(n[0])},abort:function(){r&&r()}}}),[]),tn=/(=)\?(?=&|$)|\?\?/,nn=(S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=en.pop()||S.expando+"_"+ji.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,i){var n,r,s,a=!1!==e.jsonp&&(tn.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&tn.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return n=e.jsonpCallback=v(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(tn,"$1"+n):!1!==e.jsonp&&(e.url+=(Ii.test(e.url)?"&":"?")+e.jsonp+"="+n),e.converters["script json"]=function(){return s||S.error(n+" was not called"),s[0]},e.dataTypes[0]="json",r=x[n],x[n]=function(){s=arguments},i.always(function(){void 0===r?S(x).removeProp(n):x[n]=r,e[n]&&(e.jsonpCallback=t.jsonpCallback,en.push(n)),s&&v(r)&&r(s[0]),s=r=void 0}),"script"}),m.createHTMLDocument=((e=T.implementation.createHTMLDocument("").body).innerHTML="
",2===e.childNodes.length),S.parseHTML=function(e,t,i){return"string"!=typeof e?[]:("boolean"==typeof t&&(i=t,t=!1),t||(m.createHTMLDocument?((n=(t=T.implementation.createHTMLDocument("")).createElement("base")).href=T.location.href,t.head.appendChild(n)):t=T),n=!i&&[],(i=$e.exec(e))?[t.createElement(i[1])]:(i=Pt([e],t,n),n&&n.length&&S(n).remove(),S.merge([],i.childNodes)));var n},S.fn.load=function(e,t,i){var n,r,s,a=this,o=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(n):e)}).always(i&&function(e,t){a.each(function(){i.apply(this,s||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,i){var n,r,s,a,o=S.css(e,"position"),l=S(e),c={};"static"===o&&(e.style.position="relative"),s=l.offset(),n=S.css(e,"top"),a=S.css(e,"left"),o=("absolute"===o||"fixed"===o)&&-1<(n+a).indexOf("auto")?(r=(o=l.position()).top,o.left):(r=parseFloat(n)||0,parseFloat(a)||0),null!=(t=v(t)?t.call(e,i,S.extend({},s)):t).top&&(c.top=t.top-s.top+r),null!=t.left&&(c.left=t.left-s.left+o),"using"in t?t.using.call(e,c):l.css(c)}},S.fn.extend({offset:function(t){var e,i;return arguments.length?void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)}):(i=this[0])?i.getClientRects().length?(e=i.getBoundingClientRect(),i=i.ownerDocument.defaultView,{top:e.top+i.pageYOffset,left:e.left+i.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,i,n=this[0],r={top:0,left:0};if("fixed"===S.css(n,"position"))t=n.getBoundingClientRect();else{for(t=this.offset(),i=n.ownerDocument,e=n.offsetParent||i.documentElement;e&&(e===i.body||e===i.documentElement)&&"static"===S.css(e,"position");)e=e.parentNode;e&&e!==n&&1===e.nodeType&&((r=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),r.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-r.top-S.css(n,"marginTop",!0),left:t.left-r.left-S.css(n,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){for(var e=this.offsetParent;e&&"static"===S.css(e,"position");)e=e.offsetParent;return e||gt})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,r){var s="pageYOffset"===r;S.fn[t]=function(e){return d(this,function(e,t,i){var n;if(z(e)?n=e:9===e.nodeType&&(n=e.defaultView),void 0===i)return n?n[r]:e[t];n?n.scrollTo(s?n.pageXOffset:i,s?i:n.pageYOffset):e[t]=i},t,e,arguments.length)}}),S.each(["top","left"],function(e,i){S.cssHooks[i]=ti(m.pixelPosition,function(e,t){if(t)return t=ei(e,i),Zt.test(t)?S(e).position()[i]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,o){S.each({padding:"inner"+a,content:o,"":"outer"+a},function(n,s){S.fn[s]=function(e,t){var i=arguments.length&&(n||"boolean"!=typeof e),r=n||(!0===e||!0===t?"margin":"border");return d(this,function(e,t,i){var n;return z(e)?0===s.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(n=e.documentElement,Math.max(e.body["scroll"+a],n["scroll"+a],e.body["offset"+a],n["offset"+a],n["client"+a])):void 0===i?S.css(e,t,r):S.style(e,t,i,r)},o,i?e:void 0,i)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,i){return this.on(e,null,t,i)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,i,n){return this.on(t,e,i,n)},undelegate:function(e,t,i){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",i)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,i){S.fn[i]=function(e,t){return 0n.has(e)&&n.get(e).get(t)||null,remove(e,t){var i;n.has(e)&&((i=n.get(e)).delete(t),0===i.size)&&n.delete(e)}},z="transitionend",N=e=>e&&window.CSS&&window.CSS.escape?e.replace(/#([^\s"#']+)/g,(e,t)=>"#"+CSS.escape(t)):e,F=e=>{e.dispatchEvent(new Event(z))},a=e=>!(!e||"object"!=typeof e)&&void 0!==(e=void 0!==e.jquery?e[0]:e).nodeType,r=e=>a(e)?e.jquery?e[0]:e:"string"==typeof e&&0{if(!a(e)||0===e.getClientRects().length)return!1;const t="visible"===getComputedStyle(e).getPropertyValue("visibility"),i=e.closest("details:not([open])");if(i&&i!==e){const t=e.closest("summary");if(t&&t.parentNode!==i)return!1;if(null===t)return!1}return t},o=e=>!e||e.nodeType!==Node.ELEMENT_NODE||!!e.classList.contains("disabled")||(void 0!==e.disabled?e.disabled:e.hasAttribute("disabled")&&"false"!==e.getAttribute("disabled")),B=e=>{var t;return document.documentElement.attachShadow?"function"==typeof e.getRootNode?(t=e.getRootNode())instanceof ShadowRoot?t:null:e instanceof ShadowRoot?e:e.parentNode?B(e.parentNode):null:null},q=()=>{},V=e=>{e.offsetHeight},R=()=>window.jQuery&&!document.body.hasAttribute("data-bs-no-jquery")?window.jQuery:null,Q=[],l=()=>"rtl"===document.documentElement.dir,e=n=>{var e=()=>{const e=R();if(e){const t=n.NAME,i=e.fn[t];e.fn[t]=n.jQueryInterface,e.fn[t].Constructor=n,e.fn[t].noConflict=()=>(e.fn[t]=i,n.jQueryInterface)}};"loading"===document.readyState?(Q.length||document.addEventListener("DOMContentLoaded",()=>{for(const e of Q)e()}),Q.push(e)):e()},c=(e,t=[],i=e)=>"function"==typeof e?e(...t):i,H=(i,r,e=!0)=>{if(e){e=(()=>{if(!r)return 0;let{transitionDuration:e,transitionDelay:t}=window.getComputedStyle(r);var i=Number.parseFloat(e),n=Number.parseFloat(t);return i||n?(e=e.split(",")[0],t=t.split(",")[0],1e3*(Number.parseFloat(e)+Number.parseFloat(t))):0})()+5;let t=!1;const n=({target:e})=>{e===r&&(t=!0,r.removeEventListener(z,n),c(i))};r.addEventListener(z,n),setTimeout(()=>{t||F(r)},e)}else c(i)},W=(e,t,i,n)=>{var r=e.length;let s=e.indexOf(t);return-1===s?!i&&n?e[r-1]:e[0]:(s+=i?1:-1,n&&(s=(s+r)%r),e[Math.max(0,Math.min(s,r-1))])},$=/[^.]*(?=\..*)\.|.*/,U=/\..*/,G=/::\d+$/,X={};let Z=1;const J={mouseenter:"mouseover",mouseleave:"mouseout"},K=new Set(["click","dblclick","mouseup","mousedown","contextmenu","mousewheel","DOMMouseScroll","mouseover","mouseout","mousemove","selectstart","selectend","keydown","keypress","keyup","orientationchange","touchstart","touchmove","touchend","touchcancel","pointerdown","pointermove","pointerup","pointerleave","pointercancel","gesturestart","gesturechange","gestureend","focus","blur","change","reset","select","submit","focusin","focusout","load","unload","beforeunload","resize","move","DOMContentLoaded","readystatechange","error","abort","scroll"]);function ee(e,t){return t&&t+"::"+Z++||e.uidEvent||Z++}function te(e){var t=ee(e);return e.uidEvent=t,X[t]=X[t]||{},X[t]}function ie(e,t,i=null){return Object.values(e).find(e=>e.callable===t&&e.delegationSelector===i)}function ne(e,t,i){var n="string"==typeof t,t=!n&&t||i,i=ae(e);return[n,t,K.has(i)?i:e]}function re(n,r,s,a,o){if("string"==typeof r&&n){let[e,t,i]=ne(r,s,a);if(r in J){const n=t=>function(e){if(!e.relatedTarget||e.relatedTarget!==e.delegateTarget&&!e.delegateTarget.contains(e.relatedTarget))return t.call(this,e)};t=n(t)}if(h=ie(a=(a=te(n))[i]||(a[i]={}),t,e?s:null))return h.oneOff=h.oneOff&&o;var l,c,d,u,p,h=ee(t,r.replace($,""));(r=e?(d=n,u=s,p=t,function t(i){var n=d.querySelectorAll(u);for(let e=i.target;e&&e!==this;e=e.parentNode)for(const r of n)if(r===e)return oe(i,{delegateTarget:e}),t.oneOff&&f.off(d,i.type,u,p),p.apply(e,[i])}):(l=n,c=t,function e(t){return oe(t,{delegateTarget:l}),e.oneOff&&f.off(l,t.type,c),c.apply(l,[t])})).delegationSelector=e?s:null,r.callable=t,r.oneOff=o,a[r.uidEvent=h]=r,n.addEventListener(i,r,e)}}function se(e,t,i,n,r){(n=ie(t[i],n,r))&&(e.removeEventListener(i,n,Boolean(r)),delete t[i][n.uidEvent])}function ae(e){return e=e.replace(U,""),J[e]||e}const f={on(e,t,i,n){re(e,t,i,n,!1)},one(e,t,i,n){re(e,t,i,n,!0)},off(e,t,i,n){if("string"==typeof t&&e){var[n,r,s]=ne(t,i,n),a=s!==t,o=te(e),l=o[s]||{},c=t.startsWith(".");if(void 0===r){if(c)for(const i of Object.keys(o)){var d=void 0,u=void 0,p=e,h=o,f=i,m=t.slice(1),g=h[f]||{};for([d,u]of Object.entries(g))d.includes(m)&&se(p,h,f,u.callable,u.delegationSelector)}for(const[i,n]of Object.entries(l)){var y=i.replace(G,"");a&&!t.includes(y)||se(e,o,s,n.callable,n.delegationSelector)}}else Object.keys(l).length&&se(e,o,s,r,n?i:null)}},trigger(e,t,i){if("string"!=typeof t||!e)return null;var n=R();let r=null,s=!0,a=!0,o=!1;return t!==ae(t)&&n&&(r=n.Event(t,i),n(e).trigger(r),s=!r.isPropagationStopped(),a=!r.isImmediatePropagationStopped(),o=r.isDefaultPrevented()),n=oe(new Event(t,{bubbles:s,cancelable:!0}),i),o&&n.preventDefault(),a&&e.dispatchEvent(n),n.defaultPrevented&&r&&r.preventDefault(),n}};function oe(e,t={}){for(const[i,n]of Object.entries(t))try{e[i]=n}catch(t){Object.defineProperty(e,i,{configurable:!0,get:()=>n})}return e}function le(t){if("true"===t)return!0;if("false"===t)return!1;if(t===Number(t).toString())return Number(t);if(""===t||"null"===t)return null;if("string"!=typeof t)return t;try{return JSON.parse(decodeURIComponent(t))}catch(e){return t}}function ce(e){return e.replace(/[A-Z]/g,e=>"-"+e.toLowerCase())}const d={setDataAttribute(e,t,i){e.setAttribute("data-bs-"+ce(t),i)},removeDataAttribute(e,t){e.removeAttribute("data-bs-"+ce(t))},getDataAttributes(t){if(!t)return{};var i={};for(const n of Object.keys(t.dataset).filter(e=>e.startsWith("bs")&&!e.startsWith("bsConfig"))){let e=n.replace(/^bs/,"");i[e=e.charAt(0).toLowerCase()+e.slice(1,e.length)]=le(t.dataset[n])}return i},getDataAttribute:(e,t)=>le(e.getAttribute("data-bs-"+ce(t)))};class de{static get Default(){return{}}static get DefaultType(){return{}}static get NAME(){throw new Error('You have to implement the static method "NAME", for each component!')}_getConfig(e){return e=this._mergeConfigObj(e),e=this._configAfterMerge(e),this._typeCheckConfig(e),e}_configAfterMerge(e){return e}_mergeConfigObj(e,t){var i=a(t)?d.getDataAttribute(t,"config"):{};return{...this.constructor.Default,..."object"==typeof i?i:{},...a(t)?d.getDataAttributes(t):{},..."object"==typeof e?e:{}}}_typeCheckConfig(e,t=this.constructor.DefaultType){for(var[i,n]of Object.entries(t)){const t=e[i],s=a(t)?"element":null==(r=t)?""+r:Object.prototype.toString.call(r).match(/\s([a-z]+)/i)[1].toLowerCase();if(!new RegExp(n).test(s))throw new TypeError(this.constructor.NAME.toUpperCase()+`: Option "${i}" provided type "${s}" but expected type "${n}".`)}var r}}class t extends de{constructor(e,t){super(),(e=r(e))&&(this._element=e,this._config=this._getConfig(t),Y.set(this._element,this.constructor.DATA_KEY,this))}dispose(){Y.remove(this._element,this.constructor.DATA_KEY),f.off(this._element,this.constructor.EVENT_KEY);for(const e of Object.getOwnPropertyNames(this))this[e]=null}_queueCallback(e,t,i=!0){H(e,t,i)}_getConfig(e){return e=this._mergeConfigObj(e,this._element),e=this._configAfterMerge(e),this._typeCheckConfig(e),e}static getInstance(e){return Y.get(r(e),this.DATA_KEY)}static getOrCreateInstance(e,t={}){return this.getInstance(e)||new this(e,"object"==typeof t?t:null)}static get VERSION(){return"5.3.2"}static get DATA_KEY(){return"bs."+this.NAME}static get EVENT_KEY(){return"."+this.DATA_KEY}static eventName(e){return""+e+this.EVENT_KEY}}const ue=t=>{let i=t.getAttribute("data-bs-target");if(!i||"#"===i){let e=t.getAttribute("href");if(!e||!e.includes("#")&&!e.startsWith("."))return null;e.includes("#")&&!e.startsWith("#")&&(e="#"+e.split("#")[1]),i=e&&"#"!==e?N(e.trim()):null}return i},u={find:(e,t=document.documentElement)=>[].concat(...Element.prototype.querySelectorAll.call(t,e)),findOne:(e,t=document.documentElement)=>Element.prototype.querySelector.call(t,e),children:(e,t)=>[].concat(...e.children).filter(e=>e.matches(t)),parents(e,t){var i=[];let n=e.parentNode.closest(t);for(;n;)i.push(n),n=n.parentNode.closest(t);return i},prev(e,t){let i=e.previousElementSibling;for(;i;){if(i.matches(t))return[i];i=i.previousElementSibling}return[]},next(e,t){let i=e.nextElementSibling;for(;i;){if(i.matches(t))return[i];i=i.nextElementSibling}return[]},focusableChildren(e){var t=["a","button","input","textarea","select","details","[tabindex]",'[contenteditable="true"]'].map(e=>e+':not([tabindex^="-"])').join(",");return this.find(t,e).filter(e=>!o(e)&&s(e))},getSelectorFromElement(e){return(e=ue(e))&&u.findOne(e)?e:null},getElementFromSelector(e){return(e=ue(e))?u.findOne(e):null},getMultipleElementsFromSelector(e){return(e=ue(e))?u.find(e):[]}},pe=(t,i="hide")=>{const e="click.dismiss"+t.EVENT_KEY,n=t.NAME;f.on(document,e,`[data-bs-dismiss="${n}"]`,function(e){["A","AREA"].includes(this.tagName)&&e.preventDefault(),o(this)||(e=u.getElementFromSelector(this)||this.closest("."+n),t.getOrCreateInstance(e)[i]())})};class he extends t{static get NAME(){return"alert"}close(){var e;f.trigger(this._element,"close.bs.alert").defaultPrevented||(this._element.classList.remove("show"),e=this._element.classList.contains("fade"),this._queueCallback(()=>this._destroyElement(),this._element,e))}_destroyElement(){this._element.remove(),f.trigger(this._element,"closed.bs.alert"),this.dispose()}static jQueryInterface(t){return this.each(function(){var e=he.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}})}}pe(he,"close"),e(he);const fe='[data-bs-toggle="button"]';class me extends t{static get NAME(){return"button"}toggle(){this._element.setAttribute("aria-pressed",this._element.classList.toggle("active"))}static jQueryInterface(t){return this.each(function(){var e=me.getOrCreateInstance(this);"toggle"===t&&e[t]()})}}f.on(document,"click.bs.button.data-api",fe,e=>{e.preventDefault(),e=e.target.closest(fe),me.getOrCreateInstance(e).toggle()}),e(me);const i=".bs.swipe",ge=(i,i,i,i,i,{endCallback:null,leftCallback:null,rightCallback:null}),ye={endCallback:"(function|null)",leftCallback:"(function|null)",rightCallback:"(function|null)"};class ve extends de{constructor(e,t){super(),(this._element=e)&&ve.isSupported()&&(this._config=this._getConfig(t),this._deltaX=0,this._supportPointerEvents=Boolean(window.PointerEvent),this._initEvents())}static get Default(){return ge}static get DefaultType(){return ye}static get NAME(){return"swipe"}dispose(){f.off(this._element,i)}_start(e){this._supportPointerEvents?this._eventIsPointerPenTouch(e)&&(this._deltaX=e.clientX):this._deltaX=e.touches[0].clientX}_end(e){this._eventIsPointerPenTouch(e)&&(this._deltaX=e.clientX-this._deltaX),this._handleSwipe(),c(this._config.endCallback)}_move(e){this._deltaX=e.touches&&1this._start(e)),f.on(this._element,"pointerup.bs.swipe",e=>this._end(e)),this._element.classList.add("pointer-event")):(f.on(this._element,"touchstart.bs.swipe",e=>this._start(e)),f.on(this._element,"touchmove.bs.swipe",e=>this._move(e)),f.on(this._element,"touchend.bs.swipe",e=>this._end(e)))}_eventIsPointerPenTouch(e){return this._supportPointerEvents&&("pen"===e.pointerType||"touch"===e.pointerType)}static isSupported(){return"ontouchstart"in document.documentElement||0this.nextWhenVisible(),this._config.interval)}_maybeEnableCycle(){this._config.ride&&(this._isSliding?f.one(this._element,_e,()=>this.cycle()):this.cycle())}to(e){var t,i=this._getItems();e>i.length-1||e<0||(this._isSliding?f.one(this._element,_e,()=>this.to(e)):(t=this._getItemIndex(this._getActive()))!==e&&(t=tthis._keydown(e)),"hover"===this._config.pause&&(f.on(this._element,"mouseenter.bs.carousel",()=>this.pause()),f.on(this._element,"mouseleave.bs.carousel",()=>this._maybeEnableCycle())),this._config.touch&&ve.isSupported()&&this._addTouchEventListeners()}_addTouchEventListeners(){for(const e of u.find(".carousel-item img",this._element))f.on(e,"dragstart.bs.carousel",e=>e.preventDefault());const e={leftCallback:()=>this._slide(this._directionToOrder(h)),rightCallback:()=>this._slide(this._directionToOrder(we)),endCallback:()=>{"hover"===this._config.pause&&(this.pause(),this.touchTimeout&&clearTimeout(this.touchTimeout),this.touchTimeout=setTimeout(()=>this._maybeEnableCycle(),500+this._config.interval))}};this._swipeHelper=new ve(this._element,e)}_keydown(e){var t;/input|textarea/i.test(e.target.tagName)||(t=Ce[e.key])&&(e.preventDefault(),this._slide(this._directionToOrder(t)))}_getItemIndex(e){return this._getItems().indexOf(e)}_setActiveIndicatorElement(e){var t;this._indicatorsElement&&((t=u.findOne(Se,this._indicatorsElement)).classList.remove(Te),t.removeAttribute("aria-current"),t=u.findOne(`[data-bs-slide-to="${e}"]`,this._indicatorsElement))&&(t.classList.add(Te),t.setAttribute("aria-current","true"))}_updateInterval(){var e=this._activeElement||this._getActive();e&&(e=Number.parseInt(e.getAttribute("data-bs-interval"),10),this._config.interval=e||this._config.defaultInterval)}_slide(t,e=null){if(!this._isSliding){const i=this._getActive(),n=t===be,r=e||W(this._getItems(),i,n,this._config.wrap);if(r!==i){const s=this._getItemIndex(r),a=e=>f.trigger(this._element,e,{relatedTarget:r,direction:this._orderToDirection(t),from:this._getItemIndex(i),to:s});if(!a("slide.bs.carousel").defaultPrevented&&i&&r){e=Boolean(this._interval),this.pause(),this._isSliding=!0,this._setActiveIndicatorElement(s),this._activeElement=r;const o=n?"carousel-item-start":"carousel-item-end",l=n?"carousel-item-next":"carousel-item-prev";r.classList.add(l),V(r),i.classList.add(o),r.classList.add(o),this._queueCallback(()=>{r.classList.remove(o,l),r.classList.add(Te),i.classList.remove(Te,l,o),this._isSliding=!1,a(_e)},i,this._isAnimated()),e&&this.cycle()}}}}_isAnimated(){return this._element.classList.contains("slide")}_getActive(){return u.findOne(".active.carousel-item",this._element)}_getItems(){return u.find(ke,this._element)}_clearInterval(){this._interval&&(clearInterval(this._interval),this._interval=null)}_directionToOrder(e){return l()?e===h?p:be:e===h?be:p}_orderToDirection(e){return l()?e===p?h:we:e===p?we:h}static jQueryInterface(t){return this.each(function(){var e=Ae.getOrCreateInstance(this,t);if("number"!=typeof t){if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}else e.to(t)})}}f.on(document,"click.bs.carousel.data-api","[data-bs-slide], [data-bs-slide-to]",function(e){var t=u.getElementFromSelector(this);t&&t.classList.contains(xe)&&(e.preventDefault(),e=Ae.getOrCreateInstance(t),(t=this.getAttribute("data-bs-slide-to"))?e.to(t):"next"===d.getDataAttribute(this,"slide")?e.next():e.prev(),e._maybeEnableCycle())}),f.on(window,"load.bs.carousel.data-api",()=>{for(const e of u.find('[data-bs-ride="carousel"]'))Ae.getOrCreateInstance(e)}),e(Ae);const Me="show",m="collapse",Le="collapsing",je=(m,m,'[data-bs-toggle="collapse"]'),Ie={parent:null,toggle:!0},Oe={parent:"(null|element)",toggle:"boolean"};class De extends t{constructor(e,t){super(e,t),this._isTransitioning=!1,this._triggerArray=[];const i=u.find(je);for(const e of i){const t=u.getSelectorFromElement(e),i=u.find(t).filter(e=>e===this._element);null!==t&&i.length&&this._triggerArray.push(e)}this._initializeChildren(),this._config.parent||this._addAriaAndCollapsedClass(this._triggerArray,this._isShown()),this._config.toggle&&this.toggle()}static get Default(){return Ie}static get DefaultType(){return Oe}static get NAME(){return"collapse"}toggle(){this._isShown()?this.hide():this.show()}show(){if(!this._isTransitioning&&!this._isShown()){var e=[];if(!((e=this._config.parent?this._getFirstLevelChildren(".collapse.show, .collapse.collapsing").filter(e=>e!==this._element).map(e=>De.getOrCreateInstance(e,{toggle:!1})):e).length&&e[0]._isTransitioning||f.trigger(this._element,"show.bs.collapse").defaultPrevented)){for(const i of e)i.hide();const t=this._getDimension();this._element.classList.remove(m),this._element.classList.add(Le),this._element.style[t]=0,this._addAriaAndCollapsedClass(this._triggerArray,!0),this._isTransitioning=!0;e="scroll"+(t[0].toUpperCase()+t.slice(1));this._queueCallback(()=>{this._isTransitioning=!1,this._element.classList.remove(Le),this._element.classList.add(m,Me),this._element.style[t]="",f.trigger(this._element,"shown.bs.collapse")},this._element,!0),this._element.style[t]=this._element[e]+"px"}}}hide(){if(!this._isTransitioning&&this._isShown()&&!f.trigger(this._element,"hide.bs.collapse").defaultPrevented){var e=this._getDimension();this._element.style[e]=this._element.getBoundingClientRect()[e]+"px",V(this._element),this._element.classList.add(Le),this._element.classList.remove(m,Me);for(const i of this._triggerArray){var t=u.getElementFromSelector(i);t&&!this._isShown(t)&&this._addAriaAndCollapsedClass([i],!1)}this._isTransitioning=!0,this._element.style[e]="",this._queueCallback(()=>{this._isTransitioning=!1,this._element.classList.remove(Le),this._element.classList.add(m),f.trigger(this._element,"hidden.bs.collapse")},this._element,!0)}}_isShown(e=this._element){return e.classList.contains(Me)}_configAfterMerge(e){return e.toggle=Boolean(e.toggle),e.parent=r(e.parent),e}_getDimension(){return this._element.classList.contains("collapse-horizontal")?"width":"height"}_initializeChildren(){if(this._config.parent)for(const t of this._getFirstLevelChildren(je)){var e=u.getElementFromSelector(t);e&&this._addAriaAndCollapsedClass([t],this._isShown(e))}}_getFirstLevelChildren(e){const t=u.find(":scope .collapse .collapse",this._config.parent);return u.find(e,this._config.parent).filter(e=>!t.includes(e))}_addAriaAndCollapsedClass(e,t){if(e.length)for(const i of e)i.classList.toggle("collapsed",!t),i.setAttribute("aria-expanded",t)}static jQueryInterface(t){const i={};return"string"==typeof t&&/show|hide/.test(t)&&(i.toggle=!1),this.each(function(){var e=De.getOrCreateInstance(this,i);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}})}}f.on(document,"click.bs.collapse.data-api",je,function(e){("A"===e.target.tagName||e.delegateTarget&&"A"===e.delegateTarget.tagName)&&e.preventDefault();for(const e of u.getMultipleElementsFromSelector(this))De.getOrCreateInstance(e,{toggle:!1}).toggle()}),e(De);var P="top",E="bottom",A="right",M="left",Ye="auto",L=[P,E,A,M],j="start",b="end",ze="clippingParents",Ne="viewport",Fe="popper",Be="reference",qe=L.reduce(function(e,t){return e.concat([t+"-"+j,t+"-"+b])},[]),Ve=[].concat(L,[Ye]).reduce(function(e,t){return e.concat([t,t+"-"+j,t+"-"+b])},[]),Re="beforeRead",Qe="afterRead",He="beforeMain",We="afterMain",$e="beforeWrite",Ue="afterWrite",Ge=[Re,"read",Qe,He,"main",We,$e,"write",Ue];function g(e){return e?(e.nodeName||"").toLowerCase():null}function w(e){var t;return null==e?window:"[object Window]"!==e.toString()?(t=e.ownerDocument)&&t.defaultView||window:e}function y(e){return e instanceof w(e).Element||e instanceof Element}function v(e){return e instanceof w(e).HTMLElement||e instanceof HTMLElement}function Xe(e){return"undefined"!=typeof ShadowRoot&&(e instanceof w(e).ShadowRoot||e instanceof ShadowRoot)}var Ze={name:"applyStyles",enabled:!0,phase:"write",fn:function(e){var r=e.state;Object.keys(r.elements).forEach(function(e){var t=r.styles[e]||{},i=r.attributes[e]||{},n=r.elements[e];v(n)&&g(n)&&(Object.assign(n.style,t),Object.keys(i).forEach(function(e){var t=i[e];!1===t?n.removeAttribute(e):n.setAttribute(e,!0===t?"":t)}))})},effect:function(e){var n=e.state,r={popper:{position:n.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(n.elements.popper.style,r.popper),n.styles=r,n.elements.arrow&&Object.assign(n.elements.arrow.style,r.arrow),function(){Object.keys(n.elements).forEach(function(e){var t=n.elements[e],i=n.attributes[e]||{},e=Object.keys((n.styles.hasOwnProperty(e)?n.styles:r)[e]).reduce(function(e,t){return e[t]="",e},{});v(t)&&g(t)&&(Object.assign(t.style,e),Object.keys(i).forEach(function(e){t.removeAttribute(e)}))})}},requires:["computeStyles"]};function I(e){return e.split("-")[0]}var C=Math.max,Je=Math.min,Ke=Math.round;function et(){var e=navigator.userAgentData;return null!=e&&e.brands&&Array.isArray(e.brands)?e.brands.map(function(e){return e.brand+"/"+e.version}).join(" "):navigator.userAgent}function tt(){return!/^((?!chrome|android).)*safari/i.test(et())}function it(e,t,i){void 0===t&&(t=!1),void 0===i&&(i=!1);var n=e.getBoundingClientRect(),r=1,s=1,t=(t&&v(e)&&(r=0c[T]&&(k=wt(k)),wt(k)),T=[];if(i&&T.push(S[_]<=0),n&&T.push(S[k]<=0,S[x]<=0),T.every(function(e){return e})){v=w,y=!1;break}d.set(w,T)}if(y)for(var C=m?3:1;0Number.parseInt(e,10)):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(){var e={placement:this._getPlacement(),modifiers:[{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"offset",options:{offset:this._getOffset()}}]};return!this._inNavbar&&"static"!==this._config.display||(d.setDataAttribute(this._menu,"popper","static"),e.modifiers=[{name:"applyStyles",enabled:!1}]),{...e,...c(this._config.popperConfig,[e])}}_selectMenuItem({key:e,target:t}){var i=u.find(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",this._menu).filter(e=>s(e));i.length&&W(i,t,e===Ut,!i.includes(t)).focus()}static jQueryInterface(t){return this.each(function(){var e=S.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}})}static clearMenus(e){if(2!==e.button&&("keyup"!==e.type||"Tab"===e.key))for(const r of u.find('[data-bs-toggle="dropdown"]:not(.disabled):not(:disabled).show')){var t,i,n=S.getInstance(r);n&&!1!==n._config.autoClose&&(t=(i=e.composedPath()).includes(n._menu),i.includes(n._element)||"inside"===n._config.autoClose&&!t||"outside"===n._config.autoClose&&t||n._menu.contains(e.target)&&("keyup"===e.type&&"Tab"===e.key||/input|select|option|textarea|form/i.test(e.target.tagName))||(i={relatedTarget:n._element},"click"===e.type&&(i.clickEvent=e),n._completeHide(i)))}}static dataApiKeydownHandler(e){var t=/input|textarea/i.test(e.target.tagName),i="Escape"===e.key,n=["ArrowUp",Ut].includes(e.key);!n&&!i||t&&!i||(e.preventDefault(),t=this.matches(T)?this:u.prev(this,T)[0]||u.next(this,T)[0]||u.findOne(T,e.delegateTarget.parentNode),i=S.getOrCreateInstance(t),n?(e.stopPropagation(),i.show(),i._selectMenuItem(e)):i._isShown()&&(e.stopPropagation(),i.hide(),t.focus()))}}f.on(document,Xt,T,S.dataApiKeydownHandler),f.on(document,Xt,Jt,S.dataApiKeydownHandler),f.on(document,Gt,S.clearMenus),f.on(document,"keyup.bs.dropdown.data-api",S.clearMenus),f.on(document,Gt,T,function(e){e.preventDefault(),S.getOrCreateInstance(this).toggle()}),e(S);const oi="backdrop",li="mousedown.bs."+oi,ci={className:"modal-backdrop",clickCallback:null,isAnimated:!1,isVisible:!0,rootElement:"body"},di={className:"string",clickCallback:"(function|null)",isAnimated:"boolean",isVisible:"boolean",rootElement:"(element|string)"};class ui extends de{constructor(e){super(),this._config=this._getConfig(e),this._isAppended=!1,this._element=null}static get Default(){return ci}static get DefaultType(){return di}static get NAME(){return oi}show(e){var t;this._config.isVisible?(this._append(),t=this._getElement(),this._config.isAnimated&&V(t),t.classList.add("show"),this._emulateAnimation(()=>{c(e)})):c(e)}hide(e){this._config.isVisible?(this._getElement().classList.remove("show"),this._emulateAnimation(()=>{this.dispose(),c(e)})):c(e)}dispose(){this._isAppended&&(f.off(this._element,li),this._element.remove(),this._isAppended=!1)}_getElement(){var e;return this._element||((e=document.createElement("div")).className=this._config.className,this._config.isAnimated&&e.classList.add("fade"),this._element=e),this._element}_configAfterMerge(e){return e.rootElement=r(e.rootElement),e}_append(){var e;this._isAppended||(e=this._getElement(),this._config.rootElement.append(e),f.on(e,li,()=>{c(this._config.clickCallback)}),this._isAppended=!0)}_emulateAnimation(e){H(e,this._getElement(),this._config.isAnimated)}}const pi=".bs.focustrap",hi=(pi,pi,"backward"),fi={autofocus:!0,trapElement:null},mi={autofocus:"boolean",trapElement:"element"};class gi extends de{constructor(e){super(),this._config=this._getConfig(e),this._isActive=!1,this._lastTabNavDirection=null}static get Default(){return fi}static get DefaultType(){return mi}static get NAME(){return"focustrap"}activate(){this._isActive||(this._config.autofocus&&this._config.trapElement.focus(),f.off(document,pi),f.on(document,"focusin.bs.focustrap",e=>this._handleFocusin(e)),f.on(document,"keydown.tab.bs.focustrap",e=>this._handleKeydown(e)),this._isActive=!0)}deactivate(){this._isActive&&(this._isActive=!1,f.off(document,pi))}_handleFocusin(e){var t=this._config.trapElement;e.target===document||e.target===t||t.contains(e.target)||(0===(e=u.focusableChildren(t)).length?t:this._lastTabNavDirection===hi?e[e.length-1]:e[0]).focus()}_handleKeydown(e){"Tab"===e.key&&(this._lastTabNavDirection=e.shiftKey?hi:"forward")}}const yi=".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",vi=".sticky-top",bi="padding-right",wi="margin-right";class _i{constructor(){this._element=document.body}getWidth(){var e=document.documentElement.clientWidth;return Math.abs(window.innerWidth-e)}hide(){const t=this.getWidth();this._disableOverFlow(),this._setElementAttributes(this._element,bi,e=>e+t),this._setElementAttributes(yi,bi,e=>e+t),this._setElementAttributes(vi,wi,e=>e-t)}reset(){this._resetElementAttributes(this._element,"overflow"),this._resetElementAttributes(this._element,bi),this._resetElementAttributes(yi,bi),this._resetElementAttributes(vi,wi)}isOverflowing(){return 0{var t;e!==this._element&&window.innerWidth>e.clientWidth+r||(this._saveInitialAttribute(e,i),t=window.getComputedStyle(e).getPropertyValue(i),e.style.setProperty(i,n(Number.parseFloat(t))+"px"))})}_saveInitialAttribute(e,t){var i=e.style.getPropertyValue(t);i&&d.setDataAttribute(e,t,i)}_resetElementAttributes(e,i){this._applyManipulationCallback(e,e=>{var t=d.getDataAttribute(e,i);null!==t?(d.removeDataAttribute(e,i),e.style.setProperty(i,t)):e.style.removeProperty(i)})}_applyManipulationCallback(e,t){if(a(e))t(e);else for(const i of u.find(e,this._element))t(i)}}const k=".bs.modal",xi=(k,k,"hidden"+k),Ti="show"+k,Si=(k,k,k,k,k,k,"modal-open"),ki="modal-static",Ci={backdrop:!0,focus:!0,keyboard:!0},Pi={backdrop:"(boolean|string)",focus:"boolean",keyboard:"boolean"};class Ei extends t{constructor(e,t){super(e,t),this._dialog=u.findOne(".modal-dialog",this._element),this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._isShown=!1,this._isTransitioning=!1,this._scrollBar=new _i,this._addEventListeners()}static get Default(){return Ci}static get DefaultType(){return Pi}static get NAME(){return"modal"}toggle(e){return this._isShown?this.hide():this.show(e)}show(e){this._isShown||this._isTransitioning||f.trigger(this._element,Ti,{relatedTarget:e}).defaultPrevented||(this._isShown=!0,this._isTransitioning=!0,this._scrollBar.hide(),document.body.classList.add(Si),this._adjustDialog(),this._backdrop.show(()=>this._showElement(e)))}hide(){!this._isShown||this._isTransitioning||f.trigger(this._element,"hide.bs.modal").defaultPrevented||(this._isShown=!1,this._isTransitioning=!0,this._focustrap.deactivate(),this._element.classList.remove("show"),this._queueCallback(()=>this._hideModal(),this._element,this._isAnimated()))}dispose(){f.off(window,k),f.off(this._dialog,k),this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}handleUpdate(){this._adjustDialog()}_initializeBackDrop(){return new ui({isVisible:Boolean(this._config.backdrop),isAnimated:this._isAnimated()})}_initializeFocusTrap(){return new gi({trapElement:this._element})}_showElement(e){document.body.contains(this._element)||document.body.append(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.scrollTop=0;var t=u.findOne(".modal-body",this._dialog);t&&(t.scrollTop=0),V(this._element),this._element.classList.add("show"),this._queueCallback(()=>{this._config.focus&&this._focustrap.activate(),this._isTransitioning=!1,f.trigger(this._element,"shown.bs.modal",{relatedTarget:e})},this._dialog,this._isAnimated())}_addEventListeners(){f.on(this._element,"keydown.dismiss.bs.modal",e=>{"Escape"===e.key&&(this._config.keyboard?this.hide():this._triggerBackdropTransition())}),f.on(window,"resize.bs.modal",()=>{this._isShown&&!this._isTransitioning&&this._adjustDialog()}),f.on(this._element,"mousedown.dismiss.bs.modal",t=>{f.one(this._element,"click.dismiss.bs.modal",e=>{this._element===t.target&&this._element===e.target&&("static"!==this._config.backdrop?this._config.backdrop&&this.hide():this._triggerBackdropTransition())})})}_hideModal(){this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._backdrop.hide(()=>{document.body.classList.remove(Si),this._resetAdjustments(),this._scrollBar.reset(),f.trigger(this._element,xi)})}_isAnimated(){return this._element.classList.contains("fade")}_triggerBackdropTransition(){if(!f.trigger(this._element,"hidePrevented.bs.modal").defaultPrevented){const e=this._element.scrollHeight>document.documentElement.clientHeight,t=this._element.style.overflowY;"hidden"===t||this._element.classList.contains(ki)||(e||(this._element.style.overflowY="hidden"),this._element.classList.add(ki),this._queueCallback(()=>{this._element.classList.remove(ki),this._queueCallback(()=>{this._element.style.overflowY=t},this._dialog)},this._dialog),this._element.focus())}}_adjustDialog(){const e=this._element.scrollHeight>document.documentElement.clientHeight,t=this._scrollBar.getWidth(),i=0{e.defaultPrevented||f.one(t,xi,()=>{s(this)&&this.focus()})}),(e=u.findOne(".modal.show"))&&Ei.getInstance(e).hide(),Ei.getOrCreateInstance(t).toggle(this)}),pe(Ei),e(Ei);const Ai=".bs.offcanvas",Mi="showing",Li=".offcanvas.show",ji="hidePrevented"+Ai,Ii="hidden"+Ai,Oi={backdrop:!0,keyboard:!0,scroll:!1},Di={backdrop:"(boolean|string)",keyboard:"boolean",scroll:"boolean"};class O extends t{constructor(e,t){super(e,t),this._isShown=!1,this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._addEventListeners()}static get Default(){return Oi}static get DefaultType(){return Di}static get NAME(){return"offcanvas"}toggle(e){return this._isShown?this.hide():this.show(e)}show(e){this._isShown||f.trigger(this._element,"show.bs.offcanvas",{relatedTarget:e}).defaultPrevented||(this._isShown=!0,this._backdrop.show(),this._config.scroll||(new _i).hide(),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.classList.add(Mi),this._queueCallback(()=>{this._config.scroll&&!this._config.backdrop||this._focustrap.activate(),this._element.classList.add("show"),this._element.classList.remove(Mi),f.trigger(this._element,"shown.bs.offcanvas",{relatedTarget:e})},this._element,!0))}hide(){this._isShown&&!f.trigger(this._element,"hide.bs.offcanvas").defaultPrevented&&(this._focustrap.deactivate(),this._element.blur(),this._isShown=!1,this._element.classList.add("hiding"),this._backdrop.hide(),this._queueCallback(()=>{this._element.classList.remove("show","hiding"),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._config.scroll||(new _i).reset(),f.trigger(this._element,Ii)},this._element,!0))}dispose(){this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}_initializeBackDrop(){var e=Boolean(this._config.backdrop);return new ui({className:"offcanvas-backdrop",isVisible:e,isAnimated:!0,rootElement:this._element.parentNode,clickCallback:e?()=>{"static"!==this._config.backdrop?this.hide():f.trigger(this._element,ji)}:null})}_initializeFocusTrap(){return new gi({trapElement:this._element})}_addEventListeners(){f.on(this._element,"keydown.dismiss.bs.offcanvas",e=>{"Escape"===e.key&&(this._config.keyboard?this.hide():f.trigger(this._element,ji))})}static jQueryInterface(t){return this.each(function(){var e=O.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}})}}f.on(document,"click.bs.offcanvas.data-api",'[data-bs-toggle="offcanvas"]',function(e){var t=u.getElementFromSelector(this);["A","AREA"].includes(this.tagName)&&e.preventDefault(),o(this)||(f.one(t,Ii,()=>{s(this)&&this.focus()}),(e=u.findOne(Li))&&e!==t&&O.getInstance(e).hide(),O.getOrCreateInstance(t).toggle(this))}),f.on(window,"load.bs.offcanvas.data-api",()=>{for(const e of u.find(Li))O.getOrCreateInstance(e).show()}),f.on(window,"resize.bs.offcanvas",()=>{for(const e of u.find("[aria-modal][class*=show][class*=offcanvas-]"))"fixed"!==getComputedStyle(e).position&&O.getOrCreateInstance(e).hide()}),pe(O),e(O);const Yi={"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},zi=new Set(["background","cite","href","itemtype","longdesc","poster","src","xlink:href"]),Ni=/^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:/?#]*(?:[/?#]|$))/i,Fi={allowList:Yi,content:{},extraClass:"",html:!1,sanitize:!0,sanitizeFn:null,template:"
"},Bi={allowList:"object",content:"object",extraClass:"(string|function)",html:"boolean",sanitize:"boolean",sanitizeFn:"(null|function)",template:"string"},qi={entry:"(string|element|function|null)",selector:"(string|element)"};class Vi extends de{constructor(e){super(),this._config=this._getConfig(e)}static get Default(){return Fi}static get DefaultType(){return Bi}static get NAME(){return"TemplateFactory"}getContent(){return Object.values(this._config.content).map(e=>this._resolvePossibleFunction(e)).filter(Boolean)}hasContent(){return 0{const i=e.nodeName.toLowerCase();return t.includes(i)?!zi.has(i)||Boolean(Ni.test(e.nodeValue)):t.filter(e=>e instanceof RegExp).some(e=>e.test(i))})(i,s)||t.removeAttribute(i.nodeName)}else t.remove()}return n.body.innerHTML}return e}_resolvePossibleFunction(e){return c(e,[this])}_putElementInTemplate(e,t){this._config.html?(t.innerHTML="",t.append(e)):t.textContent=e.textContent}}const Ri=new Set(["sanitize","allowList","sanitizeFn"]),Qi="fade",Hi="show",Wi="hide.bs.modal",$i="hover",Ui="focus",Gi={AUTO:"auto",TOP:"top",RIGHT:l()?"left":"right",BOTTOM:"bottom",LEFT:l()?"right":"left"},Xi={allowList:Yi,animation:!0,boundary:"clippingParents",container:!1,customClass:"",delay:0,fallbackPlacements:["top","right","bottom","left"],html:!1,offset:[0,6],placement:"top",popperConfig:null,sanitize:!0,sanitizeFn:null,selector:!1,template:'',title:"",trigger:"hover focus"},Zi={allowList:"object",animation:"boolean",boundary:"(string|element)",container:"(string|element|boolean)",customClass:"(string|function)",delay:"(number|object)",fallbackPlacements:"array",html:"boolean",offset:"(array|string|function)",placement:"(string|function)",popperConfig:"(null|object|function)",sanitize:"boolean",sanitizeFn:"(null|function)",selector:"(string|boolean)",template:"string",title:"(string|element|function)",trigger:"string"};class Ji extends t{constructor(e,t){if(void 0===Qt)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");super(e,t),this._isEnabled=!0,this._timeout=0,this._isHovered=null,this._activeTrigger={},this._popper=null,this._templateFactory=null,this._newContent=null,this.tip=null,this._setListeners(),this._config.selector||this._fixTitle()}static get Default(){return Xi}static get DefaultType(){return Zi}static get NAME(){return"tooltip"}enable(){this._isEnabled=!0}disable(){this._isEnabled=!1}toggleEnabled(){this._isEnabled=!this._isEnabled}toggle(){this._isEnabled&&(this._activeTrigger.click=!this._activeTrigger.click,this._isShown()?this._leave():this._enter())}dispose(){clearTimeout(this._timeout),f.off(this._element.closest(".modal"),Wi,this._hideModalHandler),this._element.getAttribute("data-bs-original-title")&&this._element.setAttribute("title",this._element.getAttribute("data-bs-original-title")),this._disposePopper(),super.dispose()}show(){if("none"===this._element.style.display)throw new Error("Please use show on visible elements");if(this._isWithContent()&&this._isEnabled){var e=f.trigger(this._element,this.constructor.eventName("show")),t=(B(this._element)||this._element.ownerDocument.documentElement).contains(this._element);if(!e.defaultPrevented&&t){this._disposePopper();e=this._getTipElement(),t=(this._element.setAttribute("aria-describedby",e.getAttribute("id")),this._config.container);if(this._element.ownerDocument.documentElement.contains(this.tip)||(t.append(e),f.trigger(this._element,this.constructor.eventName("inserted"))),this._popper=this._createPopper(e),e.classList.add(Hi),"ontouchstart"in document.documentElement)for(const i of[].concat(...document.body.children))f.on(i,"mouseover",q);this._queueCallback(()=>{f.trigger(this._element,this.constructor.eventName("shown")),!1===this._isHovered&&this._leave(),this._isHovered=!1},this.tip,this._isAnimated())}}}hide(){if(this._isShown()&&!f.trigger(this._element,this.constructor.eventName("hide")).defaultPrevented){if(this._getTipElement().classList.remove(Hi),"ontouchstart"in document.documentElement)for(const e of[].concat(...document.body.children))f.off(e,"mouseover",q);this._activeTrigger.click=!1,this._activeTrigger[Ui]=!1,this._activeTrigger[$i]=!1,this._isHovered=null,this._queueCallback(()=>{this._isWithActiveTrigger()||(this._isHovered||this._disposePopper(),this._element.removeAttribute("aria-describedby"),f.trigger(this._element,this.constructor.eventName("hidden")))},this.tip,this._isAnimated())}}update(){this._popper&&this._popper.update()}_isWithContent(){return Boolean(this._getTitle())}_getTipElement(){return this.tip||(this.tip=this._createTipElement(this._newContent||this._getContentForTemplate())),this.tip}_createTipElement(e){if(!(e=this._getTemplateFactory(e).toHtml()))return null;e.classList.remove(Qi,Hi),e.classList.add(`bs-${this.constructor.NAME}-auto`);var t=(e=>{for(;e+=Math.floor(1e6*Math.random()),document.getElementById(e););return e})(this.constructor.NAME).toString();return e.setAttribute("id",t),this._isAnimated()&&e.classList.add(Qi),e}setContent(e){this._newContent=e,this._isShown()&&(this._disposePopper(),this.show())}_getTemplateFactory(e){return this._templateFactory?this._templateFactory.changeContent(e):this._templateFactory=new Vi({...this._config,content:e,extraClass:this._resolvePossibleFunction(this._config.customClass)}),this._templateFactory}_getContentForTemplate(){return{".tooltip-inner":this._getTitle()}}_getTitle(){return this._resolvePossibleFunction(this._config.title)||this._element.getAttribute("data-bs-original-title")}_initializeOnDelegatedTarget(e){return this.constructor.getOrCreateInstance(e.delegateTarget,this._getDelegateConfig())}_isAnimated(){return this._config.animation||this.tip&&this.tip.classList.contains(Qi)}_isShown(){return this.tip&&this.tip.classList.contains(Hi)}_createPopper(e){var t=c(this._config.placement,[this,e,this._element]),t=Gi[t.toUpperCase()];return Rt(this._element,e,this._getPopperConfig(t))}_getOffset(){const t=this._config.offset;return"string"==typeof t?t.split(",").map(e=>Number.parseInt(e,10)):"function"==typeof t?e=>t(e,this._element):t}_resolvePossibleFunction(e){return c(e,[this._element])}_getPopperConfig(e){return{...e={placement:e,modifiers:[{name:"flip",options:{fallbackPlacements:this._config.fallbackPlacements}},{name:"offset",options:{offset:this._getOffset()}},{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"arrow",options:{element:`.${this.constructor.NAME}-arrow`}},{name:"preSetPlacement",enabled:!0,phase:"beforeMain",fn:e=>{this._getTipElement().setAttribute("data-popper-placement",e.state.placement)}}]},...c(this._config.popperConfig,[e])}}_setListeners(){const e=this._config.trigger.split(" ");for(const t of e)if("click"===t)f.on(this._element,this.constructor.eventName("click"),this._config.selector,e=>{this._initializeOnDelegatedTarget(e).toggle()});else if("manual"!==t){const e=t===$i?this.constructor.eventName("mouseenter"):this.constructor.eventName("focusin"),i=t===$i?this.constructor.eventName("mouseleave"):this.constructor.eventName("focusout");f.on(this._element,e,this._config.selector,e=>{var t=this._initializeOnDelegatedTarget(e);t._activeTrigger["focusin"===e.type?Ui:$i]=!0,t._enter()}),f.on(this._element,i,this._config.selector,e=>{var t=this._initializeOnDelegatedTarget(e);t._activeTrigger["focusout"===e.type?Ui:$i]=t._element.contains(e.relatedTarget),t._leave()})}this._hideModalHandler=()=>{this._element&&this.hide()},f.on(this._element.closest(".modal"),Wi,this._hideModalHandler)}_fixTitle(){var e=this._element.getAttribute("title");e&&(this._element.getAttribute("aria-label")||this._element.textContent.trim()||this._element.setAttribute("aria-label",e),this._element.setAttribute("data-bs-original-title",e),this._element.removeAttribute("title"))}_enter(){this._isShown()||this._isHovered?this._isHovered=!0:(this._isHovered=!0,this._setTimeout(()=>{this._isHovered&&this.show()},this._config.delay.show))}_leave(){this._isWithActiveTrigger()||(this._isHovered=!1,this._setTimeout(()=>{this._isHovered||this.hide()},this._config.delay.hide))}_setTimeout(e,t){clearTimeout(this._timeout),this._timeout=setTimeout(e,t)}_isWithActiveTrigger(){return Object.values(this._activeTrigger).includes(!0)}_getConfig(e){var t=d.getDataAttributes(this._element);for(const e of Object.keys(t))Ri.has(e)&&delete t[e];return e={...t,..."object"==typeof e&&e?e:{}},e=this._mergeConfigObj(e),e=this._configAfterMerge(e),this._typeCheckConfig(e),e}_configAfterMerge(e){return e.container=!1===e.container?document.body:r(e.container),"number"==typeof e.delay&&(e.delay={show:e.delay,hide:e.delay}),"number"==typeof e.title&&(e.title=e.title.toString()),"number"==typeof e.content&&(e.content=e.content.toString()),e}_getDelegateConfig(){var e,t,i={};for([e,t]of Object.entries(this._config))this.constructor.Default[e]!==t&&(i[e]=t);return i.selector=!1,i.trigger="manual",i}_disposePopper(){this._popper&&(this._popper.destroy(),this._popper=null),this.tip&&(this.tip.remove(),this.tip=null)}static jQueryInterface(t){return this.each(function(){var e=Ji.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}})}}e(Ji);const Ki={...Ji.Default,content:"",offset:[0,8],placement:"right",template:'',trigger:"click"},en={...Ji.DefaultType,content:"(null|string|element|function)"};class tn extends Ji{static get Default(){return Ki}static get DefaultType(){return en}static get NAME(){return"popover"}_isWithContent(){return this._getTitle()||this._getContent()}_getContentForTemplate(){return{".popover-header":this._getTitle(),".popover-body":this._getContent()}}_getContent(){return this._resolvePossibleFunction(this._config.content)}static jQueryInterface(t){return this.each(function(){var e=tn.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}})}}e(tn);const nn="click.bs.scrollspy",rn="active",sn="[href]",an={offset:null,rootMargin:"0px 0px -25%",smoothScroll:!1,target:null,threshold:[.1,.5,1]},on={offset:"(number|null)",rootMargin:"string",smoothScroll:"boolean",target:"element",threshold:"array"};class ln extends t{constructor(e,t){super(e,t),this._targetLinks=new Map,this._observableSections=new Map,this._rootElement="visible"===getComputedStyle(this._element).overflowY?null:this._element,this._activeTarget=null,this._observer=null,this._previousScrollData={visibleEntryTop:0,parentScrollTop:0},this.refresh()}static get Default(){return an}static get DefaultType(){return on}static get NAME(){return"scrollspy"}refresh(){this._initializeTargetsAndObservables(),this._maybeEnableSmoothScroll(),this._observer?this._observer.disconnect():this._observer=this._getNewObserver();for(const e of this._observableSections.values())this._observer.observe(e)}dispose(){this._observer.disconnect(),super.dispose()}_configAfterMerge(e){return e.target=r(e.target)||document.body,e.rootMargin=e.offset?e.offset+"px 0px -30%":e.rootMargin,"string"==typeof e.threshold&&(e.threshold=e.threshold.split(",").map(e=>Number.parseFloat(e))),e}_maybeEnableSmoothScroll(){this._config.smoothScroll&&(f.off(this._config.target,nn),f.on(this._config.target,nn,sn,e=>{var t=this._observableSections.get(e.target.hash);t&&(e.preventDefault(),e=this._rootElement||window,t=t.offsetTop-this._element.offsetTop,e.scrollTo?e.scrollTo({top:t,behavior:"smooth"}):e.scrollTop=t)}))}_getNewObserver(){var e={root:this._rootElement,threshold:this._config.threshold,rootMargin:this._config.rootMargin};return new IntersectionObserver(e=>this._observerCallback(e),e)}_observerCallback(e){const t=e=>this._targetLinks.get("#"+e.target.id),i=e=>{this._previousScrollData.visibleEntryTop=e.target.offsetTop,this._process(t(e))},n=(this._rootElement||document.documentElement).scrollTop,r=n>=this._previousScrollData.parentScrollTop;this._previousScrollData.parentScrollTop=n;for(const s of e)if(s.isIntersecting){const e=s.target.offsetTop>=this._previousScrollData.visibleEntryTop;if(r&&e){if(i(s),!n)return}else r||e||i(s)}else this._activeTarget=null,this._clearActiveClass(t(s))}_initializeTargetsAndObservables(){this._targetLinks=new Map,this._observableSections=new Map;const e=u.find(sn,this._config.target);for(const t of e)if(t.hash&&!o(t)){const e=u.findOne(decodeURI(t.hash),this._element);s(e)&&(this._targetLinks.set(decodeURI(t.hash),t),this._observableSections.set(t.hash,e))}}_process(e){this._activeTarget!==e&&(this._clearActiveClass(this._config.target),(this._activeTarget=e).classList.add(rn),this._activateParents(e),f.trigger(this._element,"activate.bs.scrollspy",{relatedTarget:e}))}_activateParents(e){if(e.classList.contains("dropdown-item"))u.findOne(".dropdown-toggle",e.closest(".dropdown")).classList.add(rn);else for(const t of u.parents(e,".nav, .list-group"))for(const e of u.prev(t,".nav-link, .nav-item > .nav-link, .list-group-item"))e.classList.add(rn)}_clearActiveClass(e){e.classList.remove(rn);var t=u.find(sn+"."+rn,e);for(const e of t)e.classList.remove(rn)}static jQueryInterface(t){return this.each(function(){var e=ln.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}})}}f.on(window,"load.bs.scrollspy.data-api",()=>{for(const e of u.find('[data-bs-spy="scroll"]'))ln.getOrCreateInstance(e)}),e(ln);const cn="ArrowRight",dn="ArrowDown",un="Home",D="active",pn="show",hn=".dropdown-toggle",fn=`:not(${hn})`,mn='[data-bs-toggle="tab"], [data-bs-toggle="pill"], [data-bs-toggle="list"]',gn=`.nav-link${fn}, .list-group-item${fn}, [role="tab"]${fn}, `+mn;D,D,D;class yn extends t{constructor(e){super(e),this._parent=this._element.closest('.list-group, .nav, [role="tablist"]'),this._parent&&(this._setInitialAttributes(this._parent,this._getChildren()),f.on(this._element,"keydown.bs.tab",e=>this._keydown(e)))}static get NAME(){return"tab"}show(){var e,t,i=this._element;this._elemIsActive(i)||(t=(e=this._getActiveElem())?f.trigger(e,"hide.bs.tab",{relatedTarget:i}):null,f.trigger(i,"show.bs.tab",{relatedTarget:e}).defaultPrevented)||t&&t.defaultPrevented||(this._deactivate(e,i),this._activate(i,e))}_activate(e,t){e&&(e.classList.add(D),this._activate(u.getElementFromSelector(e)),this._queueCallback(()=>{"tab"===e.getAttribute("role")?(e.removeAttribute("tabindex"),e.setAttribute("aria-selected",!0),this._toggleDropDown(e,!0),f.trigger(e,"shown.bs.tab",{relatedTarget:t})):e.classList.add(pn)},e,e.classList.contains("fade")))}_deactivate(e,t){e&&(e.classList.remove(D),e.blur(),this._deactivate(u.getElementFromSelector(e)),this._queueCallback(()=>{"tab"===e.getAttribute("role")?(e.setAttribute("aria-selected",!1),e.setAttribute("tabindex","-1"),this._toggleDropDown(e,!1),f.trigger(e,"hidden.bs.tab",{relatedTarget:t})):e.classList.remove(pn)},e,e.classList.contains("fade")))}_keydown(e){var t,i;["ArrowLeft",cn,"ArrowUp",dn,un,"End"].includes(e.key)&&(e.stopPropagation(),e.preventDefault(),i=this._getChildren().filter(e=>!o(e)),i=[un,"End"].includes(e.key)?i[e.key===un?0:i.length-1]:(t=[cn,dn].includes(e.key),W(i,e.target,t,!0)))&&(i.focus({preventScroll:!0}),yn.getOrCreateInstance(i).show())}_getChildren(){return u.find(gn,this._parent)}_getActiveElem(){return this._getChildren().find(e=>this._elemIsActive(e))||null}_setInitialAttributes(e,t){this._setAttributeIfNotExists(e,"role","tablist");for(const e of t)this._setInitialAttributesOnChild(e)}_setInitialAttributesOnChild(e){e=this._getInnerElement(e);var t=this._elemIsActive(e),i=this._getOuterElement(e);e.setAttribute("aria-selected",t),i!==e&&this._setAttributeIfNotExists(i,"role","presentation"),t||e.setAttribute("tabindex","-1"),this._setAttributeIfNotExists(e,"role","tab"),this._setInitialAttributesOnTargetPanel(e)}_setInitialAttributesOnTargetPanel(e){var t=u.getElementFromSelector(e);t&&(this._setAttributeIfNotExists(t,"role","tabpanel"),e.id)&&this._setAttributeIfNotExists(t,"aria-labelledby",""+e.id)}_toggleDropDown(e,i){const n=this._getOuterElement(e);n.classList.contains("dropdown")&&((e=(e,t)=>{(e=u.findOne(e,n))&&e.classList.toggle(t,i)})(hn,D),e(".dropdown-menu",pn),n.setAttribute("aria-expanded",i))}_setAttributeIfNotExists(e,t,i){e.hasAttribute(t)||e.setAttribute(t,i)}_elemIsActive(e){return e.classList.contains(D)}_getInnerElement(e){return e.matches(gn)?e:u.findOne(gn,e)}_getOuterElement(e){return e.closest(".nav-item, .list-group-item")||e}static jQueryInterface(t){return this.each(function(){var e=yn.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}})}}f.on(document,"click.bs.tab",mn,function(e){["A","AREA"].includes(this.tagName)&&e.preventDefault(),o(this)||yn.getOrCreateInstance(this).show()}),f.on(window,"load.bs.tab",()=>{for(const e of u.find('.active[data-bs-toggle="tab"], .active[data-bs-toggle="pill"], .active[data-bs-toggle="list"]'))yn.getOrCreateInstance(e)}),e(yn);const vn="show",bn="showing",wn={animation:"boolean",autohide:"boolean",delay:"number"},_n={animation:!0,autohide:!0,delay:5e3};class xn extends t{constructor(e,t){super(e,t),this._timeout=null,this._hasMouseInteraction=!1,this._hasKeyboardInteraction=!1,this._setListeners()}static get Default(){return _n}static get DefaultType(){return wn}static get NAME(){return"toast"}show(){f.trigger(this._element,"show.bs.toast").defaultPrevented||(this._clearTimeout(),this._config.animation&&this._element.classList.add("fade"),this._element.classList.remove("hide"),V(this._element),this._element.classList.add(vn,bn),this._queueCallback(()=>{this._element.classList.remove(bn),f.trigger(this._element,"shown.bs.toast"),this._maybeScheduleHide()},this._element,this._config.animation))}hide(){this.isShown()&&!f.trigger(this._element,"hide.bs.toast").defaultPrevented&&(this._element.classList.add(bn),this._queueCallback(()=>{this._element.classList.add("hide"),this._element.classList.remove(bn,vn),f.trigger(this._element,"hidden.bs.toast")},this._element,this._config.animation))}dispose(){this._clearTimeout(),this.isShown()&&this._element.classList.remove(vn),super.dispose()}isShown(){return this._element.classList.contains(vn)}_maybeScheduleHide(){!this._config.autohide||this._hasMouseInteraction||this._hasKeyboardInteraction||(this._timeout=setTimeout(()=>{this.hide()},this._config.delay))}_onInteraction(e,t){switch(e.type){case"mouseover":case"mouseout":this._hasMouseInteraction=t;break;case"focusin":case"focusout":this._hasKeyboardInteraction=t}t?this._clearTimeout():(e=e.relatedTarget,this._element===e||this._element.contains(e)||this._maybeScheduleHide())}_setListeners(){f.on(this._element,"mouseover.bs.toast",e=>this._onInteraction(e,!0)),f.on(this._element,"mouseout.bs.toast",e=>this._onInteraction(e,!1)),f.on(this._element,"focusin.bs.toast",e=>this._onInteraction(e,!0)),f.on(this._element,"focusout.bs.toast",e=>this._onInteraction(e,!1))}_clearTimeout(){clearTimeout(this._timeout),this._timeout=null}static jQueryInterface(t){return this.each(function(){var e=xn.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t](this)}})}}return pe(xn),e(xn),{Alert:he,Button:me,Carousel:Ae,Collapse:De,Dropdown:S,Modal:Ei,Offcanvas:O,Popover:tn,ScrollSpy:ln,Tab:yn,Toast:xn,Tooltip:Ji}}),function(l,i,n,o){function c(e,t){this.settings=null,this.options=l.extend({},c.Defaults,t),this.$element=l(e),this._handlers={},this._plugins={},this._supress={},this._current=null,this._speed=null,this._coordinates=[],this._breakpoint=null,this._width=null,this._items=[],this._clones=[],this._mergers=[],this._widths=[],this._invalidated={},this._pipe=[],this._drag={time:null,target:null,pointer:null,stage:{start:null,current:null},direction:null},this._states={current:{},tags:{initializing:["busy"],animating:["busy"],dragging:["interacting"]}},l.each(["onResize","onThrottledResize"],l.proxy(function(e,t){this._handlers[t]=l.proxy(this[t],this)},this)),l.each(c.Plugins,l.proxy(function(e,t){this._plugins[e.charAt(0).toLowerCase()+e.slice(1)]=new t(this)},this)),l.each(c.Workers,l.proxy(function(e,t){this._pipe.push({filter:t.filter,run:l.proxy(t.run,this)})},this)),this.setup(),this.initialize()}c.Defaults={items:3,loop:!1,center:!1,rewind:!1,checkVisibility:!0,mouseDrag:!0,touchDrag:!0,pullDrag:!0,freeDrag:!1,margin:0,stagePadding:0,merge:!1,mergeFit:!0,autoWidth:!1,startPosition:0,rtl:!1,smartSpeed:250,fluidSpeed:!1,dragEndSpeed:!1,responsive:{},responsiveRefreshRate:200,responsiveBaseElement:i,fallbackEasing:"swing",slideTransition:"",info:!1,nestedItemSelector:!1,itemElement:"div",stageElement:"div",refreshClass:"owl-refresh",loadedClass:"owl-loaded",loadingClass:"owl-loading",rtlClass:"owl-rtl",responsiveClass:"owl-responsive",dragClass:"owl-drag",itemClass:"owl-item",stageClass:"owl-stage",stageOuterClass:"owl-stage-outer",grabClass:"owl-grab"},c.Width={Default:"default",Inner:"inner",Outer:"outer"},c.Type={Event:"event",State:"state"},c.Plugins={},c.Workers=[{filter:["width","settings"],run:function(){this._width=this.$element.width()}},{filter:["width","items","settings"],run:function(e){e.current=this._items&&this._items[this.relative(this._current)]}},{filter:["items","settings"],run:function(){this.$stage.children(".cloned").remove()}},{filter:["width","items","settings"],run:function(e){var t=this.settings.margin||"",i=!this.settings.autoWidth,n={width:"auto","margin-left":(n=this.settings.rtl)?t:"","margin-right":n?"":t};i||this.$stage.children().css(n),e.css=n}},{filter:["width","items","settings"],run:function(e){var t,i=(this.width()/this.settings.items).toFixed(3)-this.settings.margin,n=this._items.length,r=!this.settings.autoWidth,s=[];for(e.items={merge:!1,width:i};n--;)t=this._mergers[n],t=this.settings.mergeFit&&Math.min(t,this.settings.items)||t,e.items.merge=1",s)||this.op(t,"<",r)&&this.op(t,">",s))&&a.push(o);this.$stage.children(".active").removeClass("active"),this.$stage.children(":eq("+a.join("), :eq(")+")").addClass("active"),this.$stage.children(".center").removeClass("center"),this.settings.center&&this.$stage.children().eq(this.current()).addClass("center")}}],c.prototype.initializeStage=function(){this.$stage=this.$element.find("."+this.settings.stageClass),this.$stage.length||(this.$element.addClass(this.options.loadingClass),this.$stage=l("<"+this.settings.stageElement+">",{class:this.settings.stageClass}).wrap(l("
",{class:this.settings.stageOuterClass})),this.$element.append(this.$stage.parent()))},c.prototype.initializeItems=function(){var e=this.$element.find(".owl-item");e.length?(this._items=e.get().map(function(e){return l(e)}),this._mergers=this._items.map(function(){return 1}),this.refresh()):(this.replace(this.$element.children().not(this.$stage.parent())),this.isVisible()?this.refresh():this.invalidate("width"),this.$element.removeClass(this.options.loadingClass).addClass(this.options.loadedClass))},c.prototype.initialize=function(){var e,t;this.enter("initializing"),this.trigger("initialize"),this.$element.toggleClass(this.settings.rtlClass,this.settings.rtl),this.settings.autoWidth&&!this.is("pre-loading")&&(e=this.$element.find("img"),t=this.settings.nestedItemSelector?"."+this.settings.nestedItemSelector:o,t=this.$element.children(t).width(),e.length)&&t<=0&&this.preloadAutoWidthImages(e),this.initializeStage(),this.initializeItems(),this.registerEventHandlers(),this.leave("initializing"),this.trigger("initialized")},c.prototype.isVisible=function(){return!this.settings.checkVisibility||this.$element.is(":visible")},c.prototype.setup=function(){var t=this.viewport(),e=this.options.responsive,i=-1,n=null;e?(l.each(e,function(e){e<=t&&i").addClass(this.options.itemClass).append(e)),this.trigger("prepared",{content:t.data}),t.data},c.prototype.update=function(){for(var e=0,t=this._pipe.length,i=l.proxy(function(e){return this[e]},this._invalidated),n={};e",a[e+1]!==o?a[e+1]:t-s)&&(r="left"===n?e+1:e),-1===r},this)),this.settings.loop||(this.op(i,">",a[this.minimum()])?r=i=this.minimum():this.op(i,"<",a[this.maximum()])&&(r=i=this.maximum())),r},c.prototype.animate=function(e){var t=0n););s=t+1}else s=r.center?this._items.length-1:this._items.length-r.items;return e&&(s-=this._clones.length/2),Math.max(s,0)},c.prototype.minimum=function(e){return e?0:this._clones.length/2},c.prototype.items=function(e){return e===o?this._items.slice():(e=this.normalize(e,!0),this._items[e])},c.prototype.mergers=function(e){return e===o?this._mergers.slice():(e=this.normalize(e,!0),this._mergers[e])},c.prototype.clones=function(i){function n(e){return e%2==0?r+e/2:t-(e+1)/2}var t=this._clones.length/2,r=t+this._items.length;return i===o?l.map(this._clones,function(e,t){return n(t)}):l.map(this._clones,function(e,t){return e===i?n(t):null})},c.prototype.speed=function(e){return e!==o&&(this._speed=e),this._speed},c.prototype.coordinates=function(e){var t,i=1,n=e-1;return e===o?l.map(this._coordinates,l.proxy(function(e,t){return this.coordinates(t)},this)):(this.settings.center?(this.settings.rtl&&(i=-1,n=e+1),t=this._coordinates[e],t+=(this.width()-t+(this._coordinates[n]||0))/2*i):t=this._coordinates[n]||0,Math.ceil(t))},c.prototype.duration=function(e,t,i){return 0===i?0:Math.min(Math.max(Math.abs(t-e),1),6)*Math.abs(i||this.settings.smartSpeed)},c.prototype.to=function(e,t){var i=this.current(),n=e-this.relative(i),r=(0s/2&&(n+=-1*r*s),(r=(((e=i+n)-a)%s+s)%s+a)!==e&&r-n<=o&&0":return n?e=":return n?e<=i:i<=e;case"<=":return n?i<=e:e<=i}},c.prototype.on=function(e,t,i,n){e.addEventListener?e.addEventListener(t,i,n):e.attachEvent&&e.attachEvent("on"+t,i)},c.prototype.off=function(e,t,i,n){e.removeEventListener?e.removeEventListener(t,i,n):e.detachEvent&&e.detachEvent("on"+t,i)},c.prototype.trigger=function(e,t,i,n,r){var s={item:{count:this._items.length,index:this.current()}},a=l.camelCase(l.grep(["on",e,i],function(e){return e}).join("-").toLowerCase()),o=l.Event([e,"owl",i||"carousel"].join(".").toLowerCase(),l.extend({relatedTarget:this},s,t));return this._supress[e]||(l.each(this._plugins,function(e,t){t.onTrigger&&t.onTrigger(o)}),this.register({type:c.Type.Event,name:e}),this.$element.trigger(o),this.settings&&"function"==typeof this.settings[a]&&this.settings[a].call(this,o)),o},c.prototype.enter=function(e){l.each([e].concat(this._states.tags[e]||[]),l.proxy(function(e,t){this._states.current[t]===o&&(this._states.current[t]=0),this._states.current[t]++},this))},c.prototype.leave=function(e){l.each([e].concat(this._states.tags[e]||[]),l.proxy(function(e,t){this._states.current[t]--},this))},c.prototype.register=function(i){var t;i.type===c.Type.Event?(l.event.special[i.name]||(l.event.special[i.name]={}),l.event.special[i.name].owl||(t=l.event.special[i.name]._default,l.event.special[i.name]._default=function(e){return!t||!t.apply||e.namespace&&-1!==e.namespace.indexOf("owl")?e.namespace&&-1",{class:"owl-video-tn "+o,srcType:e}):c("
",{class:"owl-video-tn",style:"opacity:1;background-image:url("+e+")"}),t.after(n),t.after('
')}var n,r=e.width&&e.height?"width:"+e.width+"px;height:"+e.height+"px;":"",s=t.find("img"),a="src",o="",l=this._core.settings;if(t.wrap(c("
",{class:"owl-video-wrapper",style:r})),this._core.settings.lazyLoad&&(a="data-src",o="owl-lazy"),s.length)return i(s.attr(a)),s.remove(),!1;"youtube"===e.type?i("//img.youtube.com/vi/"+e.id+"/hqdefault.jpg"):"vimeo"===e.type?c.ajax({type:"GET",url:"//vimeo.com/api/v2/video/"+e.id+".json",jsonp:"callback",dataType:"jsonp",success:function(e){i(e[0].thumbnail_large)}}):"vzaar"===e.type&&c.ajax({type:"GET",url:"//vzaar.com/api/videos/"+e.id+".json",jsonp:"callback",dataType:"jsonp",success:function(e){i(e.framegrab_url)}})},i.prototype.stop=function(){this._core.trigger("stop",null,"video"),this._playing.find(".owl-video-frame").remove(),this._playing.removeClass("owl-video-playing"),this._playing=null,this._core.leave("playing"),this._core.trigger("stopped",null,"video")},i.prototype.play=function(e){var t,e=c(e.target).closest("."+this._core.settings.itemClass),i=this._videos[e.attr("data-video")],n=i.width||"100%",r=i.height||this._core.$stage.height();this._playing||(this._core.enter("playing"),this._core.trigger("play",null,"video"),e=this._core.items(this._core.relative(e.index())),this._core.reset(e.index()),(t=c('')).attr("height",r),t.attr("width",n),"youtube"===i.type?t.attr("src","//www.youtube.com/embed/"+i.id+"?autoplay=1&rel=0&v="+i.id):"vimeo"===i.type?t.attr("src","//player.vimeo.com/video/"+i.id+"?autoplay=1"):"vzaar"===i.type&&t.attr("src","//view.vzaar.com/"+i.id+"/player?autoplay=true"),c(t).wrap('
').insertAfter(e.find(".owl-video")),this._playing=e.addClass("owl-video-playing"))},i.prototype.isInFullScreen=function(){var e=t.fullscreenElement||t.mozFullScreenElement||t.webkitFullscreenElement;return e&&c(e).parent().hasClass("owl-video-frame")},i.prototype.destroy=function(){var e,t;for(e in this._core.$element.off("click.owl.video"),this._handlers)this._core.$element.off(e,this._handlers[e]);for(t in Object.getOwnPropertyNames(this))"function"!=typeof this[t]&&(this[t]=null)},c.fn.owlCarousel.Constructor.Plugins.Video=i}(window.Zepto||window.jQuery,(window,document)),function(a){function t(e){this.core=e,this.core.options=a.extend({},t.Defaults,this.core.options),this.swapping=!0,this.previous=void 0,this.next=void 0,this.handlers={"change.owl.carousel":a.proxy(function(e){e.namespace&&"position"==e.property.name&&(this.previous=this.core.current(),this.next=e.property.value)},this),"drag.owl.carousel dragged.owl.carousel translated.owl.carousel":a.proxy(function(e){e.namespace&&(this.swapping="translated"==e.type)},this),"translate.owl.carousel":a.proxy(function(e){e.namespace&&this.swapping&&(this.core.options.animateOut||this.core.options.animateIn)&&this.swap()},this)},this.core.$element.on(this.handlers)}t.Defaults={animateOut:!1,animateIn:!1},t.prototype.swap=function(){var e,t,i,n,r,s;1===this.core.settings.items&&a.support.animation&&a.support.transition&&(this.core.speed(0),t=a.proxy(this.clear,this),i=this.core.$stage.children().eq(this.previous),n=this.core.$stage.children().eq(this.next),r=this.core.settings.animateIn,s=this.core.settings.animateOut,this.core.current()!==this.previous)&&(s&&(e=this.core.coordinates(this.previous)-this.core.coordinates(this.next),i.one(a.support.animation.end,t).css({left:e+"px"}).addClass("animated owl-animated-out").addClass(s)),r)&&n.one(a.support.animation.end,t).addClass("animated owl-animated-in").addClass(r)},t.prototype.clear=function(e){a(e.target).css({left:""}).removeClass("animated owl-animated-out owl-animated-in").removeClass(this.core.settings.animateIn).removeClass(this.core.settings.animateOut),this.core.onTransitionEnd()},t.prototype.destroy=function(){var e,t;for(e in this.handlers)this.core.$element.off(e,this.handlers[e]);for(t in Object.getOwnPropertyNames(this))"function"!=typeof this[t]&&(this[t]=null)},a.fn.owlCarousel.Constructor.Plugins.Animate=t}(window.Zepto||window.jQuery,(window,document)),function(n,r,t){function i(e){this._core=e,this._call=null,this._time=0,this._timeout=0,this._paused=!0,this._handlers={"changed.owl.carousel":n.proxy(function(e){e.namespace&&"settings"===e.property.name?this._core.settings.autoplay?this.play():this.stop():e.namespace&&"position"===e.property.name&&this._paused&&(this._time=0)},this),"initialized.owl.carousel":n.proxy(function(e){e.namespace&&this._core.settings.autoplay&&this.play()},this),"play.owl.autoplay":n.proxy(function(e,t,i){e.namespace&&this.play(t,i)},this),"stop.owl.autoplay":n.proxy(function(e){e.namespace&&this.stop()},this),"mouseover.owl.autoplay":n.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"mouseleave.owl.autoplay":n.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.play()},this),"touchstart.owl.core":n.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"touchend.owl.core":n.proxy(function(){this._core.settings.autoplayHoverPause&&this.play()},this)},this._core.$element.on(this._handlers),this._core.options=n.extend({},i.Defaults,this._core.options)}i.Defaults={autoplay:!1,autoplayTimeout:5e3,autoplayHoverPause:!1,autoplaySpeed:!1},i.prototype._next=function(e){this._call=r.setTimeout(n.proxy(this._next,this,e),this._timeout*(Math.round(this.read()/this._timeout)+1)-this.read()),this._core.is("interacting")||t.hidden||this._core.next(e||this._core.settings.autoplaySpeed)},i.prototype.read=function(){return(new Date).getTime()-this._time},i.prototype.play=function(e,t){var i;this._core.is("rotating")||this._core.enter("rotating"),e=e||this._core.settings.autoplayTimeout,i=Math.min(this._time%(this._timeout||e),e),this._paused?(this._time=this.read(),this._paused=!1):r.clearTimeout(this._call),this._time+=this.read()%e-i,this._timeout=e,this._call=r.setTimeout(n.proxy(this._next,this,t),e-i)},i.prototype.stop=function(){this._core.is("rotating")&&(this._time=0,this._paused=!0,r.clearTimeout(this._call),this._core.leave("rotating"))},i.prototype.pause=function(){this._core.is("rotating")&&!this._paused&&(this._time=this.read(),this._paused=!0,r.clearTimeout(this._call))},i.prototype.destroy=function(){var e,t;for(e in this.stop(),this._handlers)this._core.$element.off(e,this._handlers[e]);for(t in Object.getOwnPropertyNames(this))"function"!=typeof this[t]&&(this[t]=null)},n.fn.owlCarousel.Constructor.Plugins.autoplay=i}(window.Zepto||window.jQuery,window,document),function(r){"use strict";function t(e){this._core=e,this._initialized=!1,this._pages=[],this._controls={},this._templates=[],this.$element=this._core.$element,this._overrides={next:this._core.next,prev:this._core.prev,to:this._core.to},this._handlers={"prepared.owl.carousel":r.proxy(function(e){e.namespace&&this._core.settings.dotsData&&this._templates.push('
'+r(e.content).find("[data-dot]").addBack("[data-dot]").attr("data-dot")+"
")},this),"added.owl.carousel":r.proxy(function(e){e.namespace&&this._core.settings.dotsData&&this._templates.splice(e.position,0,this._templates.pop())},this),"remove.owl.carousel":r.proxy(function(e){e.namespace&&this._core.settings.dotsData&&this._templates.splice(e.position,1)},this),"changed.owl.carousel":r.proxy(function(e){e.namespace&&"position"==e.property.name&&this.draw()},this),"initialized.owl.carousel":r.proxy(function(e){e.namespace&&!this._initialized&&(this._core.trigger("initialize",null,"navigation"),this.initialize(),this.update(),this.draw(),this._initialized=!0,this._core.trigger("initialized",null,"navigation"))},this),"refreshed.owl.carousel":r.proxy(function(e){e.namespace&&this._initialized&&(this._core.trigger("refresh",null,"navigation"),this.update(),this.draw(),this._core.trigger("refreshed",null,"navigation"))},this)},this._core.options=r.extend({},t.Defaults,this._core.options),this.$element.on(this._handlers)}t.Defaults={nav:!1,navText:['',''],navSpeed:!1,navElement:'button type="button" role="presentation"',navContainer:!1,navContainerClass:"owl-nav",navClass:["owl-prev","owl-next"],slideBy:1,dotClass:"owl-dot",dotsClass:"owl-dots",dots:!0,dotsEach:!1,dotsData:!1,dotsSpeed:!1,dotsContainer:!1},t.prototype.initialize=function(){var e,i=this._core.settings;for(e in this._controls.$relative=(i.navContainer?r(i.navContainer):r("
").addClass(i.navContainerClass).appendTo(this.$element)).addClass("disabled"),this._controls.$previous=r("<"+i.navElement+">").addClass(i.navClass[0]).html(i.navText[0]).prependTo(this._controls.$relative).on("click",r.proxy(function(e){this.prev(i.navSpeed)},this)),this._controls.$next=r("<"+i.navElement+">").addClass(i.navClass[1]).html(i.navText[1]).appendTo(this._controls.$relative).on("click",r.proxy(function(e){this.next(i.navSpeed)},this)),i.dotsData||(this._templates=[r('
",icon:{image:"https://www.google.com/mapfiles/marker.png",shadow:"https://www.google.com/mapfiles/shadow50.png",iconsize:[20,34],shadowsize:[37,34],iconanchor:[9,34],shadowanchor:[6,34]}}}(jQuery),function(u){var p,c,n,d,i,t,r,o,h,f,m,s,g,a=Array.prototype.slice,y=decodeURIComponent,l=u.param,e=u.bbq=u.bbq||{},v=u.event.special,b="hashchange",w="querystring",_="fragment",x="elemUrlAttr",T=/^.*\?|#.*$/g,S={};function k(e){return"string"==typeof e}function C(e){var t=a.call(arguments,1);return function(){return e.apply(this,t.concat(a.call(arguments)))}}function P(e,t,i,n,r){var s,a,o,l;return r=n!==p?(l=(a=i.match(e?f:/^([^#?]*)\??([^#]*)(#?.*)/))[3]||"",2===r&&k(n)?s=n.replace(e?h:T,""):(o=d(a[2]),n=k(n)?d[e?_:w](n):n,s=2===r?n:1===r?u.extend({},n,o):u.extend({},o,n),s=c(s),e&&(s=s.replace(m,y))),a[1]+(e?g:s||!a[1]?"?":"")+s+l):t(i!==p?i:location.href)}function E(e,t,i){return t=t===p||"boolean"==typeof t?(i=t,l[e?_:w]()):k(t)?t.replace(e?h:T,""):t,d(t,i)}function A(n,r,s,a){return k(s)||"object"==typeof s||(a=s,s=r,r=p),this.each(function(){var e=u(this),t=r||o()[(this.nodeName||"").toLowerCase()]||"",i=t&&e.attr(t)||"";e.attr(t,l[n](i,s,a))})}l[w]=C(P,0,function(e){return e.replace(/(?:^[^?#]*\?([^#]*).*$)?.*/,"$1")}),l[_]=n=C(P,1,function(e){return e.replace(f,"$2")}),l.sorted=c=function(e,t){var r=[],s={};return u.each(l(e,t).split("&"),function(e,t){var i=t.replace(/(?:%5B|=).*$/,""),n=s[i];n||(n=s[i]=[],r.push(i)),n.push(t)}),u.map(r.sort(),function(e){return s[e]}).join("&")},n.noEscape=function(e){e=u.map((e=e||"").split(""),encodeURIComponent),m=new RegExp(e.join("|"),"g")},n.noEscape(",/"),n.ajaxCrawlable=function(e){return e!==p&&(g=e?(h=/^.*(?:#!|#)/,f=/^([^#]*)(?:#!|#)?(.*)$/,"#!"):(h=/^.*#/,f=/^([^#]*)#?(.*)$/,"#"),s=!!e),s},n.ajaxCrawlable(0),u.deparam=d=function(e,l){var c={},d={true:!0,false:!1,null:null};return u.each(e.replace(/\+/g," ").split("&"),function(e,t){var i,t=t.split("="),n=y(t[0]),r=c,s=0,a=n.split("]["),o=a.length-1,o=/\[/.test(a[0])&&/\]$/.test(a[o])?(a[o]=a[o].replace(/\]$/,""),(a=a.shift().split("[").concat(a)).length-1):0;if(2===t.length)if(i=y(t[1]),l&&(i=i&&!isNaN(i)?+i:"undefined"===i?p:d[i]!==p?d[i]:i),o)for(;s<=o;s++)r=r[n=""===a[s]?r.length:a[s]]=s').hide().one("load",function(){t||l(n()),m()}).attr("src",t||"javascript:0").insertAfter("body")[0].contentWindow,u.onpropertychange=function(){try{"title"===event.propertyName&&(a.document.title=u.title)}catch(e){}})},h.stop=g,c=function(){return n(a.location.href)},l=function(e,t){var i=a.document,n=r.fn[d].domain;e!==t&&(i.title=u.title,i.open(),n&&i.write('');o.close();t.location.hash=n}}}();return s}()})(jQuery,this); diff --git a/TSC2.Client/wwwroot/js/plugins.imagesloaded.js b/TSC2.Client/wwwroot/js/plugins.imagesloaded.js new file mode 100644 index 0000000..bcccd8a --- /dev/null +++ b/TSC2.Client/wwwroot/js/plugins.imagesloaded.js @@ -0,0 +1,7 @@ +/*! + * imagesLoaded PACKAGED v4.1.4 + * JavaScript is all like "You images are done yet or what?" + * MIT License + */ + +!function(e,t){"function"==typeof define&&define.amd?define("ev-emitter/ev-emitter",t):"object"==typeof module&&module.exports?module.exports=t():e.EvEmitter=t()}("undefined"!=typeof window?window:this,function(){function e(){}var t=e.prototype;return t.on=function(e,t){if(e&&t){var i=this._events=this._events||{},n=i[e]=i[e]||[];return n.indexOf(t)==-1&&n.push(t),this}},t.once=function(e,t){if(e&&t){this.on(e,t);var i=this._onceEvents=this._onceEvents||{},n=i[e]=i[e]||{};return n[t]=!0,this}},t.off=function(e,t){var i=this._events&&this._events[e];if(i&&i.length){var n=i.indexOf(t);return n!=-1&&i.splice(n,1),this}},t.emitEvent=function(e,t){var i=this._events&&this._events[e];if(i&&i.length){i=i.slice(0),t=t||[];for(var n=this._onceEvents&&this._onceEvents[e],o=0;o=0,this.isPrefilling?(this.log("prefill"),this.loadNextPage()):this.stopPrefill()},s.getPrefillDistance=function(){return this.options.elementScroll?this.scroller.clientHeight-this.scroller.scrollHeight:this.windowHeight-this.element.clientHeight},s.stopPrefill=function(){this.log("stopPrefill"),this.off("append",this.prefill)},e}),function(t,e){"function"==typeof define&&define.amd?define("infinite-scroll/js/scroll-watch",["./core","fizzy-ui-utils/utils"],function(i,n){return e(t,i,n)}):"object"==typeof module&&module.exports?module.exports=e(t,require("./core"),require("fizzy-ui-utils")):e(t,t.InfiniteScroll,t.fizzyUIUtils)}(window,function(t,e,i){var n=e.prototype;return e.defaults.scrollThreshold=400,e.create.scrollWatch=function(){this.pageScrollHandler=this.onPageScroll.bind(this),this.resizeHandler=this.onResize.bind(this);var t=this.options.scrollThreshold,e=t||0===t;e&&this.enableScrollWatch()},e.destroy.scrollWatch=function(){this.disableScrollWatch()},n.enableScrollWatch=function(){this.isScrollWatching||(this.isScrollWatching=!0,this.updateMeasurements(),this.updateScroller(),this.on("last",this.disableScrollWatch),this.bindScrollWatchEvents(!0))},n.disableScrollWatch=function(){this.isScrollWatching&&(this.bindScrollWatchEvents(!1),delete this.isScrollWatching)},n.bindScrollWatchEvents=function(e){var i=e?"addEventListener":"removeEventListener";this.scroller[i]("scroll",this.pageScrollHandler),t[i]("resize",this.resizeHandler)},n.onPageScroll=e.throttle(function(){var t=this.getBottomDistance();t<=this.options.scrollThreshold&&this.dispatchEvent("scrollThreshold")}),n.getBottomDistance=function(){return this.options.elementScroll?this.getElementBottomDistance():this.getWindowBottomDistance()},n.getWindowBottomDistance=function(){var e=this.top+this.element.clientHeight,i=t.pageYOffset+this.windowHeight;return e-i},n.getElementBottomDistance=function(){var t=this.scroller.scrollHeight,e=this.scroller.scrollTop+this.scroller.clientHeight;return t-e},n.onResize=function(){this.updateMeasurements()},i.debounceMethod(e,"onResize",150),e}),function(t,e){"function"==typeof define&&define.amd?define("infinite-scroll/js/history",["./core","fizzy-ui-utils/utils"],function(i,n){return e(t,i,n)}):"object"==typeof module&&module.exports?module.exports=e(t,require("./core"),require("fizzy-ui-utils")):e(t,t.InfiniteScroll,t.fizzyUIUtils)}(window,function(t,e,i){var n=e.prototype;e.defaults.history="replace";var o=document.createElement("a");return e.create.history=function(){if(this.options.history){o.href=this.getAbsolutePath();var t=o.origin||o.protocol+"//"+o.host,e=t==location.origin;return e?void(this.options.append?this.createHistoryAppend():this.createHistoryPageLoad()):void console.error("[InfiniteScroll] cannot set history with different origin: "+o.origin+" on "+location.origin+" . History behavior disabled.")}},n.createHistoryAppend=function(){this.updateMeasurements(),this.updateScroller(),this.scrollPages=[{top:0,path:location.href,title:document.title}],this.scrollPageIndex=0,this.scrollHistoryHandler=this.onScrollHistory.bind(this),this.unloadHandler=this.onUnload.bind(this),this.scroller.addEventListener("scroll",this.scrollHistoryHandler),this.on("append",this.onAppendHistory),this.bindHistoryAppendEvents(!0)},n.bindHistoryAppendEvents=function(e){var i=e?"addEventListener":"removeEventListener";this.scroller[i]("scroll",this.scrollHistoryHandler),t[i]("unload",this.unloadHandler)},n.createHistoryPageLoad=function(){this.on("load",this.onPageLoadHistory)},e.destroy.history=n.destroyHistory=function(){var t=this.options.history&&this.options.append;t&&this.bindHistoryAppendEvents(!1)},n.onAppendHistory=function(t,e,i){if(i&&i.length){var n=i[0],r=this.getElementScrollY(n);o.href=e,this.scrollPages.push({top:r,path:o.href,title:t.title})}},n.getElementScrollY=function(t){return this.options.elementScroll?this.getElementElementScrollY(t):this.getElementWindowScrollY(t)},n.getElementWindowScrollY=function(e){var i=e.getBoundingClientRect();return i.top+t.pageYOffset},n.getElementElementScrollY=function(t){return t.offsetTop-this.top},n.onScrollHistory=function(){for(var t,e,i=this.getScrollViewY(),n=0;n=i)break;t=n,e=o}t!=this.scrollPageIndex&&(this.scrollPageIndex=t,this.setHistory(e.title,e.path))},i.debounceMethod(e,"onScrollHistory",150),n.getScrollViewY=function(){return this.options.elementScroll?this.scroller.scrollTop+this.scroller.clientHeight/2:t.pageYOffset+this.windowHeight/2},n.setHistory=function(t,e){var i=this.options.history,n=i&&history[i+"State"];n&&(history[i+"State"](null,t,e),this.options.historyTitle&&(document.title=t),this.dispatchEvent("history",null,[t,e]))},n.onUnload=function(){var e=this.scrollPageIndex;if(0!==e){var i=this.scrollPages[e],n=t.pageYOffset-i.top+this.top;this.destroyHistory(),scrollTo(0,n)}},n.onPageLoadHistory=function(t,e){this.setHistory(t.title,e)},e}),function(t,e){"function"==typeof define&&define.amd?define("infinite-scroll/js/button",["./core","fizzy-ui-utils/utils"],function(i,n){return e(t,i,n)}):"object"==typeof module&&module.exports?module.exports=e(t,require("./core"),require("fizzy-ui-utils")):e(t,t.InfiniteScroll,t.fizzyUIUtils)}(window,function(t,e,i){function n(t,e){this.element=t,this.infScroll=e,this.clickHandler=this.onClick.bind(this),this.element.addEventListener("click",this.clickHandler),e.on("request",this.disable.bind(this)),e.on("load",this.enable.bind(this)),e.on("error",this.hide.bind(this)),e.on("last",this.hide.bind(this))}return e.create.button=function(){var t=i.getQueryElement(this.options.button);if(t)return void(this.button=new n(t,this))},e.destroy.button=function(){this.button&&this.button.destroy()},n.prototype.onClick=function(t){t.preventDefault(),this.infScroll.loadNextPage()},n.prototype.enable=function(){this.element.removeAttribute("disabled")},n.prototype.disable=function(){this.element.disabled="disabled"},n.prototype.hide=function(){this.element.style.display="none"},n.prototype.destroy=function(){this.element.removeEventListener("click",this.clickHandler)},e.Button=n,e}),function(t,e){"function"==typeof define&&define.amd?define("infinite-scroll/js/status",["./core","fizzy-ui-utils/utils"],function(i,n){return e(t,i,n)}):"object"==typeof module&&module.exports?module.exports=e(t,require("./core"),require("fizzy-ui-utils")):e(t,t.InfiniteScroll,t.fizzyUIUtils)}(window,function(t,e,i){function n(t){r(t,"none")}function o(t){r(t,"block")}function r(t,e){t&&(t.style.display=e)}var s=e.prototype;return e.create.status=function(){var t=i.getQueryElement(this.options.status);t&&(this.statusElement=t,this.statusEventElements={request:t.querySelector(".infinite-scroll-request"),error:t.querySelector(".infinite-scroll-error"),last:t.querySelector(".infinite-scroll-last")},this.on("request",this.showRequestStatus),this.on("error",this.showErrorStatus),this.on("last",this.showLastStatus),this.bindHideStatus("on"))},s.bindHideStatus=function(t){var e=this.options.append?"append":"load";this[t](e,this.hideAllStatus)},s.showRequestStatus=function(){this.showStatus("request")},s.showErrorStatus=function(){this.showStatus("error")},s.showLastStatus=function(){this.showStatus("last"),this.bindHideStatus("off")},s.showStatus=function(t){o(this.statusElement),this.hideStatusEventElements();var e=this.statusEventElements[t];o(e)},s.hideAllStatus=function(){n(this.statusElement),this.hideStatusEventElements()},s.hideStatusEventElements=function(){for(var t in this.statusEventElements){var e=this.statusEventElements[t];n(e)}},e}),function(t,e){"function"==typeof define&&define.amd?define(["infinite-scroll/js/core","infinite-scroll/js/page-load","infinite-scroll/js/scroll-watch","infinite-scroll/js/history","infinite-scroll/js/button","infinite-scroll/js/status"],e):"object"==typeof module&&module.exports&&(module.exports=e(require("./core"),require("./page-load"),require("./scroll-watch"),require("./history"),require("./button"),require("./status")))}(window,function(t){return t}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("imagesloaded/imagesloaded",["ev-emitter/ev-emitter"],function(i){return e(t,i)}):"object"==typeof module&&module.exports?module.exports=e(t,require("ev-emitter")):t.imagesLoaded=e(t,t.EvEmitter)}("undefined"!=typeof window?window:this,function(t,e){function i(t,e){for(var i in e)t[i]=e[i];return t}function n(t){if(Array.isArray(t))return t;var e="object"==typeof t&&"number"==typeof t.length;return e?h.call(t):[t]}function o(t,e,r){if(!(this instanceof o))return new o(t,e,r);var s=t;return"string"==typeof t&&(s=document.querySelectorAll(t)),s?(this.elements=n(s),this.options=i({},this.options),"function"==typeof e?r=e:i(this.options,e),r&&this.on("always",r),this.getImages(),l&&(this.jqDeferred=new l.Deferred),void setTimeout(this.check.bind(this))):void a.error("Bad element for imagesLoaded "+(s||t))}function r(t){this.img=t}function s(t,e){this.url=t,this.element=e,this.img=new Image}var l=t.jQuery,a=t.console,h=Array.prototype.slice;o.prototype=Object.create(e.prototype),o.prototype.options={},o.prototype.getImages=function(){this.images=[],this.elements.forEach(this.addElementImages,this)},o.prototype.addElementImages=function(t){"IMG"==t.nodeName&&this.addImage(t),this.options.background===!0&&this.addElementBackgroundImages(t);var e=t.nodeType;if(e&&c[e]){for(var i=t.querySelectorAll("img"),n=0;n