+
+
@Model.Name
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.VendorDetailsTop, additionalData = Model })
+ @*description*@
+ @if (!string.IsNullOrWhiteSpace(Model.Description))
+ {
+
+ @Html.Raw(Model.Description)
+
+ }
+ @*contact vendor*@
+ @if (Model.AllowCustomersToContactVendors)
+ {
+
+ @T("ContactVendor")
+
+ }
+ @await Html.PartialAsync("_CatalogSelectors", Model.CatalogProductsModel)
+ @{
+ var catalogProductsViewData = new ViewDataDictionary(ViewData)
+ {
+ ["fetchUrl"] = Html.Raw(Url.RouteUrl("GetVendorProducts", new { vendorId = Model.Id }))
+ };
+ }
+ @await Html.PartialAsync("_CatalogProducts", Model.CatalogProductsModel, catalogProductsViewData)
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.VendorDetailsBottom, additionalData = Model })
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Catalog/VendorAll.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Catalog/VendorAll.cshtml
new file mode 100644
index 0000000..2630874
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Catalog/VendorAll.cshtml
@@ -0,0 +1,42 @@
+@model IList
+@using Nop.Core.Domain.Vendors
+@{
+ Layout = "_ColumnsTwo";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.Vendors").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-vendor-list-page");
+}
+
+
+
@T("Vendors.List")
+
+
+
+
+ @foreach (var item in Model)
+ {
+
+ }
+
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Catalog/_CatalogFilters.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Catalog/_CatalogFilters.cshtml
new file mode 100644
index 0000000..8573bcb
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Catalog/_CatalogFilters.cshtml
@@ -0,0 +1,43 @@
+@model CatalogProductsModel
+
+@if (!Model.PriceRangeFilter.Enabled &&
+ !Model.SpecificationFilter.Enabled &&
+ !Model.ManufacturerFilter.Enabled)
+{
+ return;
+}
+
+
+ @if (Model.PriceRangeFilter.Enabled)
+ {
+ @await Html.PartialAsync("_FilterPriceBox", Model.PriceRangeFilter)
+ }
+
+ @if (Model.SpecificationFilter.Enabled)
+ {
+ @await Html.PartialAsync("_FilterSpecsBox", Model.SpecificationFilter)
+ }
+
+ @if (Model.ManufacturerFilter.Enabled)
+ {
+ @await Html.PartialAsync("_FilterManufacturerBox", Model.ManufacturerFilter)
+ }
+
+
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Catalog/_CatalogProducts.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Catalog/_CatalogProducts.cshtml
new file mode 100644
index 0000000..5605f35
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Catalog/_CatalogProducts.cshtml
@@ -0,0 +1,32 @@
+@model CatalogProductsModel
+
+
+
+
+
+
+ @await Html.PartialAsync("_ProductsInGridOrLines", Model)
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Catalog/_CatalogSelectors.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Catalog/_CatalogSelectors.cshtml
new file mode 100644
index 0000000..5fbc566
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Catalog/_CatalogSelectors.cshtml
@@ -0,0 +1,106 @@
+@model CatalogProductsModel
+
+@if (Model.Products.Count <= 0 &&
+ !Model.PriceRangeFilter.Enabled &&
+ !Model.SpecificationFilter.Enabled &&
+ !Model.ManufacturerFilter.Enabled)
+{
+ return;
+}
+
+
+ @*view mode*@
+
+
+ @if (Model.AllowProductViewModeChanging)
+ {
+
+
+
+ @T("Catalog.OrderBy")
+
+
+ @Html.DropDownList("products-orderby", Model.AvailableSortOptions, new { @class = "form-control custom-select", aria_label = T("Catalog.OrderBy.Label") })
+
+
+
+
+ }
+
+ @if (Model.AllowCustomersToSelectPageSize)
+ {
+
+
+
+ @T("Catalog.PageSize")
+
+
+ @Html.DropDownList("products-pagesize", Model.PageSizeOptions, new { @class = "form-control custom-select", aria_label = T("Catalog.PageSize.Label") })
+
+
+ @T("Catalog.PageSize.PerPage")
+
+
+
+
+ }
+
+ @if (Model.AllowProductViewModeChanging)
+ {
+
+
@T("Catalog.ViewMode")
+ @if (Model.AvailableViewModes.Count > 1)
+ {
+ var gridMode = Model.AvailableViewModes[0];
+ var listMode = Model.AvailableViewModes[1];
+
+
+
+ }
+
+
+ }
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Catalog/_FilterManufacturerBox.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Catalog/_FilterManufacturerBox.cshtml
new file mode 100644
index 0000000..5e1ee3a
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Catalog/_FilterManufacturerBox.cshtml
@@ -0,0 +1,41 @@
+@model ManufacturerFilterModel
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Catalog/_FilterPriceBox.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Catalog/_FilterPriceBox.cshtml
new file mode 100644
index 0000000..5055942
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Catalog/_FilterPriceBox.cshtml
@@ -0,0 +1,56 @@
+@model PriceRangeFilterModel
+
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Catalog/_FilterSpecsBox.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Catalog/_FilterSpecsBox.cshtml
new file mode 100644
index 0000000..a5ad1ad
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Catalog/_FilterSpecsBox.cshtml
@@ -0,0 +1,57 @@
+@model SpecificationFilterModel
+
+
+
+
+ @foreach (var attr in Model.Attributes)
+ {
+
+ }
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Catalog/_ProductsInGridOrLines.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Catalog/_ProductsInGridOrLines.cshtml
new file mode 100644
index 0000000..f7f1161
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Catalog/_ProductsInGridOrLines.cshtml
@@ -0,0 +1,47 @@
+@model CatalogProductsModel
+
+@if (!string.IsNullOrEmpty(Model.WarningMessage))
+{
+
+ @Model.WarningMessage
+
+}
+
+@if (Model.Products.Count > 0)
+{
+
+
+ @foreach (var product in Model.Products)
+ {
+
+
+
+ @await Html.PartialAsync("_ProductBox", product)
+
+
+
+ }
+
+
+
+ var pager = Html.Pager(Model)
+ .QueryParam("pagenumber")
+ // for search page
+ .BooleanParameterName("advs")
+ .BooleanParameterName("isc")
+ .BooleanParameterName("sid")
+ .RenderEmptyParameters(true);
+
+ @if (!await pager.IsEmpty())
+ {
+
+ }
+}
+else if (!string.IsNullOrEmpty(Model.NoResultMessage))
+{
+
+ @Model.NoResultMessage
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/BillingAddress.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/BillingAddress.cshtml
new file mode 100644
index 0000000..55ed17b
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/BillingAddress.cshtml
@@ -0,0 +1,242 @@
+@using Nop.Core
+@using Nop.Services.Customers
+@model CheckoutBillingAddressModel
+@inject IWebHelper webHelper
+@inject IWorkContext workContext
+@inject ICustomerService _customerService
+@{
+ Layout = "_ColumnsOne";
+
+ //scripts
+
+
+ var storeLocation = webHelper.GetStoreLocation();
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.Checkout").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-checkout-page");
+ NopHtml.AppendPageCssClassParts("html-billing-address-page");
+}
+
+ @await Component.InvokeAsync(typeof(CheckoutProgressViewComponent), new { step = CheckoutProgressStep.Address })
+
+
@T("Checkout.BillingAddress")
+
+
+
+
+
+
+ @T("Checkout.OrderSummary")
+
+ @await Component.InvokeAsync(typeof(OrderSummaryViewComponent))
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/Completed.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/Completed.cshtml
new file mode 100644
index 0000000..da310c5
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/Completed.cshtml
@@ -0,0 +1,39 @@
+@model CheckoutCompletedModel
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.Checkout").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-checkout-page");
+ NopHtml.AppendPageCssClassParts("html-order-completed-page");
+}
+
+ @if (!Model.OnePageCheckoutEnabled)
+ {
+ @await Component.InvokeAsync(typeof(CheckoutProgressViewComponent), new { step = CheckoutProgressStep.Complete })
+ }
+
+
@T("Checkout.ThankYou")
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CheckoutCompletedTop, additionalData = Model })
+
+
+ @T("Checkout.YourOrderHasBeenSuccessfullyProcessed")
+
+
+
+ @T("Checkout.OrderNumber"): @Model.CustomOrderNumber
+
+
+
+
+ @T("Checkout.ThankYou.Continue")
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CheckoutCompletedBottom, additionalData = Model })
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/Confirm.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/Confirm.cshtml
new file mode 100644
index 0000000..59b825d
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/Confirm.cshtml
@@ -0,0 +1,117 @@
+@model CheckoutConfirmModel
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.Checkout").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-checkout-page");
+ NopHtml.AppendPageCssClassParts("html-order-confirm-page");
+}
+
+ @await Component.InvokeAsync(typeof(CheckoutProgressViewComponent), new { step = CheckoutProgressStep.Confirm })
+
+
@T("Checkout.ConfirmYourOrder")
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CheckoutConfirmTop, additionalData = Model })
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CheckoutConfirmBottom, additionalData = Model })
+
+ @await Component.InvokeAsync(typeof(OrderSummaryViewComponent), new { prepareAndDisplayOrderReviewData = true })
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/OnePageCheckout.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/OnePageCheckout.cshtml
new file mode 100644
index 0000000..0015a84
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/OnePageCheckout.cshtml
@@ -0,0 +1,228 @@
+@model OnePageCheckoutModel
+@using Nop.Core
+@using Nop.Services.Customers
+@inject IWebHelper webHelper
+@inject IWorkContext workContext
+@inject ICustomerService _customerService
+@{
+ Layout = "_ColumnsOne";
+
+ //scripts
+
+
+
+ var storeLocation = webHelper.GetStoreLocation();
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.Checkout").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-checkout-page");
+}
+@{
+ //step numbers
+ var billingAddressStepNumber = 1;
+ var shippingAddressStepNumber = 2;
+ var shippingMethodStepNumber = 3;
+ var paymentMethodStepNumber = 4;
+ var paymentInfoStepNumber = 5;
+ var confirmOrderStepNumber = 6;
+ if (!Model.ShippingRequired)
+ {
+ paymentMethodStepNumber = paymentMethodStepNumber - 2;
+ paymentInfoStepNumber = paymentInfoStepNumber - 2;
+ confirmOrderStepNumber = confirmOrderStepNumber - 2;
+ }
+ if (Model.DisableBillingAddressCheckoutStep)
+ {
+ shippingAddressStepNumber--;
+ shippingMethodStepNumber--;
+ paymentMethodStepNumber--;
+ paymentInfoStepNumber--;
+ confirmOrderStepNumber--;
+ }
+}
+
+
+
@T("Checkout")
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OpcContentBefore, additionalData = Model })
+
+
+
+ @billingAddressStepNumber
+
@T("Checkout.BillingAddress")
+
+
+
+
+
+ @T("Common.Save")
+
+
+ @T("Common.LoadingNextStep")
+
+ @T("Common.LoadingNextStep")
+
+
+
+ @if (Model.ShippingRequired)
+ {
+
+
+ @shippingAddressStepNumber
+
@T("Checkout.ShippingAddress")
+
+
+
+
+
+ @shippingMethodStepNumber
+
@T("Checkout.ShippingMethod")
+
+
+
+ }
+
+
+ @paymentMethodStepNumber
+
@T("Checkout.PaymentMethod")
+
+
+
+
+
+ @paymentInfoStepNumber
+
@T("Checkout.PaymentInfo")
+
+
+
+
+
+ @confirmOrderStepNumber
+
@T("Checkout.ConfirmOrder")
+
+
+
+ @*confirm order content will be loaded here*@
+
+
+
+
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OpcContentAfter, additionalData = Model })
+
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/OpcBillingAddress.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/OpcBillingAddress.cshtml
new file mode 100644
index 0000000..be90a47
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/OpcBillingAddress.cshtml
@@ -0,0 +1,91 @@
+@model CheckoutBillingAddressModel
+@using Nop.Core;
+@inject IWebHelper webHelper
+
+@{
+ var storeLocation = webHelper.GetStoreLocation();
+}
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OpCheckoutBillingAddressTop, additionalData = Model })
+ @if (Model.ShipToSameAddressAllowed)
+ {
+
+
+
+
+ @T("Checkout.ShipToSameAddress")
+
+
+
+ }
+ @if (Model.ExistingAddresses.Count > 0)
+ {
+
+
@T("Checkout.SelectBillingAddressOrEnterNewOne")
+ @if (Model.InvalidExistingAddresses.Count > 0)
+ {
+
+ @string.Format(T("Checkout.Addresses.Invalid").Text, Model.InvalidExistingAddresses.Count)
+
+ }
+
+
+
+
+ @foreach (var address in Model.ExistingAddresses)
+ {
+ var addressLine = "";
+ addressLine += address.FirstName;
+ addressLine += " " + address.LastName;
+ addressLine += ", " + address.AddressLine;
+ //how should we render "FormattedCustomAddressAttributes" here?
+ @(addressLine)
+ }
+ @T("Checkout.NewAddress")
+
+
+
+ @T("Common.Edit")
+
+ @T("Common.Delete")
+
+
+
+
+
+
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OpCheckoutBillingAddressMiddle, additionalData = Model })
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OpCheckoutBillingAddressBottom, additionalData = Model })
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/OpcConfirmOrder.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/OpcConfirmOrder.cshtml
new file mode 100644
index 0000000..cd81b8e
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/OpcConfirmOrder.cshtml
@@ -0,0 +1,66 @@
+@model CheckoutConfirmModel
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OpCheckoutConfirmTop, additionalData = Model })
+ @if (!string.IsNullOrEmpty(Model.MinOrderTotalWarning) || Model.Warnings.Count > 0)
+ {
+
+ @if (!string.IsNullOrEmpty(Model.MinOrderTotalWarning))
+ {
+
+ @Model.MinOrderTotalWarning
+
+ }
+ @if (Model.Warnings.Count > 0)
+ {
+
+
+ @foreach (var warning in Model.Warnings)
+ {
+ @warning
+ }
+
+
+ }
+
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OpCheckoutConfirmBottom, additionalData = Model })
+
+ @await Component.InvokeAsync(typeof(OrderSummaryViewComponent), new { prepareAndDisplayOrderReviewData = true })
+
+ @if (string.IsNullOrEmpty(Model.MinOrderTotalWarning) && Model.TermsOfServiceOnOrderConfirmPage)
+ {
+
+
@T("Checkout.TermsOfService.PleaseAccept")
+
+
+ }
+
+ @if (Model.DisplayCaptcha)
+ {
+
+ }
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/OpcPaymentInfo.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/OpcPaymentInfo.cshtml
new file mode 100644
index 0000000..dd5071b
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/OpcPaymentInfo.cshtml
@@ -0,0 +1,17 @@
+@model CheckoutPaymentInfoModel
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OpCheckoutPaymentInfoTop, additionalData = Model })
+
+
+ @await Component.InvokeAsync(Model.PaymentViewComponent)
+
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OpCheckoutPaymentInfoBottom, additionalData = Model })
+ @if (Model.DisplayOrderTotals)
+ {
+
+ @await Component.InvokeAsync(typeof(OrderSummaryViewComponent))
+
+ }
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/OpcPaymentMethods.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/OpcPaymentMethods.cshtml
new file mode 100644
index 0000000..441c0a6
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/OpcPaymentMethods.cshtml
@@ -0,0 +1,75 @@
+@model CheckoutPaymentMethodModel
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OpCheckoutPaymentMethodTop, additionalData = Model })
+
+ @if (Model.DisplayRewardPoints && Model.PaymentMethods.Count > 0)
+ {
+
+ }
+ @if (Model.PaymentMethods.Count > 0)
+ {
+
+ @for (var i = 0; i < Model.PaymentMethods.Count; i++)
+ {
+ var paymentMethod = Model.PaymentMethods[i];
+ var paymentMethodName = paymentMethod.Name;
+ if (!string.IsNullOrEmpty(paymentMethod.Fee))
+ {
+ paymentMethodName = T("Checkout.SelectPaymentMethod.MethodAndFee", paymentMethodName, paymentMethod.Fee).Text;
+ }
+
+
+ @if (!string.IsNullOrEmpty(paymentMethod.LogoUrl))
+ {
+
+
+
+
+
+ }
+
+
+
+ @paymentMethodName
+
+ @if (!string.IsNullOrEmpty(paymentMethod.Description))
+ {
+
@paymentMethod.Description
+ }
+
+
+
+ }
+
+ }
+ else
+ {
+
+ @T("Checkout.NoPaymentMethods")
+
+ }
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OpCheckoutPaymentMethodBottom, additionalData = Model })
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/OpcShippingAddress.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/OpcShippingAddress.cshtml
new file mode 100644
index 0000000..e7ca6fe
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/OpcShippingAddress.cshtml
@@ -0,0 +1,86 @@
+@model CheckoutShippingAddressModel
+@using Nop.Core;
+@inject IWebHelper webHelper
+
+@{
+ var storeLocation = webHelper.GetStoreLocation();
+}
+
+
+ @if (Model.DisplayPickupInStore && Model.PickupPointsModel.AllowPickupInStore)
+ {
+ @await Html.PartialAsync("_PickupPoints", Model.PickupPointsModel)
+
+ }
+ @if (Model.PickupPointsModel == null || !Model.PickupPointsModel.PickupInStoreOnly)
+ {
+
+ }
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/OpcShippingMethods.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/OpcShippingMethods.cshtml
new file mode 100644
index 0000000..342b1d8
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/OpcShippingMethods.cshtml
@@ -0,0 +1,66 @@
+@model CheckoutShippingMethodModel
+
+
+ @if (Model.DisplayPickupInStore && Model.PickupPointsModel.AllowPickupInStore)
+ {
+ @await Html.PartialAsync("_PickupPoints", Model.PickupPointsModel)
+
+ }
+ @if (Model.PickupPointsModel == null || !Model.PickupPointsModel.PickupInStoreOnly)
+ {
+
+ }
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/PaymentInfo.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/PaymentInfo.cshtml
new file mode 100644
index 0000000..7d25285
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/PaymentInfo.cshtml
@@ -0,0 +1,37 @@
+@model CheckoutPaymentInfoModel
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.Checkout").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-checkout-page");
+ NopHtml.AppendPageCssClassParts("html-payment-info-page");
+}
+
+ @await Component.InvokeAsync(typeof(CheckoutProgressViewComponent), new { step = CheckoutProgressStep.Payment })
+
+
@T("Checkout.PaymentInfo")
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CheckoutPaymentInfoTop, additionalData = Model })
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CheckoutPaymentInfoBottom, additionalData = Model })
+
+
+ @T("Checkout.OrderSummary")
+
+ @await Component.InvokeAsync(typeof(OrderSummaryViewComponent), "ShoppingCart")
+
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/PaymentMethod.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/PaymentMethod.cshtml
new file mode 100644
index 0000000..f13fd15
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/PaymentMethod.cshtml
@@ -0,0 +1,104 @@
+@model CheckoutPaymentMethodModel
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.Checkout").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-checkout-page");
+ NopHtml.AppendPageCssClassParts("html-payment-method-page");
+}
+
+ @await Component.InvokeAsync(typeof(CheckoutProgressViewComponent), new { step = CheckoutProgressStep.Payment })
+
+
@T("Checkout.SelectPaymentMethod")
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CheckoutPaymentMethodTop, additionalData = Model })
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CheckoutPaymentMethodBottom, additionalData = Model })
+
+
+ @T("Checkout.OrderSummary")
+
+ @await Component.InvokeAsync(typeof(OrderSummaryViewComponent))
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/ShippingAddress.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/ShippingAddress.cshtml
new file mode 100644
index 0000000..584fd92
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/ShippingAddress.cshtml
@@ -0,0 +1,220 @@
+@inject IWebHelper webHelper
+@using Nop.Core
+@model CheckoutShippingAddressModel
+@{
+ Layout = "_ColumnsOne";
+
+ var storeLocation = webHelper.GetStoreLocation();
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.Checkout").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-checkout-page");
+ NopHtml.AppendPageCssClassParts("html-shipping-address-page");
+}
+
+
+
+
+
+ @await Component.InvokeAsync(typeof(CheckoutProgressViewComponent), new { step = CheckoutProgressStep.Address })
+
+
@T("Checkout.ShippingAddress")
+
+
+
+
+
+
+ @T("Checkout.OrderSummary")
+
+ @await Component.InvokeAsync(typeof(OrderSummaryViewComponent))
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/ShippingMethod.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/ShippingMethod.cshtml
new file mode 100644
index 0000000..7532735
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/ShippingMethod.cshtml
@@ -0,0 +1,83 @@
+@model CheckoutShippingMethodModel
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.Checkout").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-checkout-page");
+ NopHtml.AppendPageCssClassParts("html-shipping-method-page");
+}
+
+ @await Component.InvokeAsync(typeof(CheckoutProgressViewComponent), new { step = CheckoutProgressStep.Shipping })
+
+
@T("Checkout.SelectShippingMethod")
+
+
+
+
+
+ @T("Checkout.OrderSummary")
+
+ @await Component.InvokeAsync(typeof(OrderSummaryViewComponent))
+
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/_PickupPoints.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/_PickupPoints.cshtml
new file mode 100644
index 0000000..8626bf5
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Checkout/_PickupPoints.cshtml
@@ -0,0 +1,212 @@
+@model CheckoutPickupPointsModel
+@using System.Text
+
+@if (!Model.PickupInStoreOnly && Model.PickupPoints.Any())
+{
+
+
+
+
+
+ @T("Checkout.PickupPoints")
+
+
+
+
+ @T("Checkout.PickupPoints.Description")
+
+
+
+}
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Common/ContactUs.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Common/ContactUs.cshtml
new file mode 100644
index 0000000..b7ad785
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Common/ContactUs.cshtml
@@ -0,0 +1,93 @@
+@model ContactUsModel
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.ContactUs").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-contact-page");
+}
+
+
+
@T("PageTitle.ContactUs")
+
+
+ @await Component.InvokeAsync(typeof(TopicBlockViewComponent), new { systemName = "ContactUs" })
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ContactUsTop, additionalData = Model })
+ @if (Model.SuccessfullySent)
+ {
+
+ @Model.Result
+
+ }
+ else
+ {
+
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ContactUsBottom, additionalData = Model })
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Common/ContactVendor.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Common/ContactVendor.cshtml
new file mode 100644
index 0000000..d2e0e5a
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Common/ContactVendor.cshtml
@@ -0,0 +1,92 @@
+@model ContactVendorModel
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.ContactVendor", Model.VendorName).Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-contact-page");
+}
+
+
+
@T("PageTitle.ContactVendor", Model.VendorName)
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ContactVendorTop, additionalData = Model })
+ @if (Model.SuccessfullySent)
+ {
+
+ @Model.Result
+
+ }
+ else
+ {
+
+
+
+
+
+ @if (Model.SubjectEnabled)
+ {
+
+ }
+
+ @if (Model.DisplayCaptcha)
+ {
+
+ }
+
+
+
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ContactVendorBottom, additionalData = Model })
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Common/PageNotFound.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Common/PageNotFound.cshtml
new file mode 100644
index 0000000..cbd9cc0
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Common/PageNotFound.cshtml
@@ -0,0 +1,16 @@
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.PageNotFound").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-not-found-page");
+}
+
+
+
@T("PageTitle.PageNotFound")
+
+
+ @await Component.InvokeAsync(typeof(TopicBlockViewComponent), new { systemName = "PageNotFound" })
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Common/Sitemap.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Common/Sitemap.cshtml
new file mode 100644
index 0000000..a724fcf
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Common/Sitemap.cshtml
@@ -0,0 +1,46 @@
+@model SitemapModel
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.Sitemap").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-sitemap-page");
+}
+
+
+
@T("Sitemap")
+
+
+
+ @T("Sitemap.Description")
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.SitemapBefore, additionalData = Model })
+ @foreach (var itemGroup in Model.Items.GroupBy(itemGroup => itemGroup.GroupTitle))
+ {
+
+
+
@itemGroup.Key
+
+
+
+ @foreach (var item in itemGroup.ToList())
+ {
+ @item.Name
+ }
+
+
+
+ }
+ @{
+ var pager = Html.Pager(Model.PageModel).QueryParam("pagenumber");
+ if (!(await pager.IsEmpty()))
+ {
+
+ }
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.SitemapAfter, additionalData = Model })
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Common/StoreClosed.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Common/StoreClosed.cshtml
new file mode 100644
index 0000000..152d0a6
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Common/StoreClosed.cshtml
@@ -0,0 +1,16 @@
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.StoreClosed").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-store-closed-page");
+}
+
+
+
@T("StoreClosed")
+
+
+ @T("StoreClosed.Hint")
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/AccountActivation.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/AccountActivation.cshtml
new file mode 100644
index 0000000..84ff731
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/AccountActivation.cshtml
@@ -0,0 +1,22 @@
+@model AccountActivationModel
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.AccountActivation").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-account-activation-page");
+}
+
+
+
@T("Account.AccountActivation")
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/AddressAdd.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/AddressAdd.cshtml
new file mode 100644
index 0000000..6141418
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/AddressAdd.cshtml
@@ -0,0 +1,36 @@
+@model CustomerAddressEditModel
+@{
+ Layout = "_ColumnsTwo";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.Account").Text);
+ NopHtml.AppendPageCssClassParts("html-account-page");
+ //page class
+ NopHtml.AppendPageCssClassParts("html-address-edit-page");
+}
+@section left
+{
+ @await Component.InvokeAsync(typeof(CustomerNavigationViewComponent), new { selectedTabId = CustomerNavigationEnum.Addresses })
+}
+
+
+
+
@T("Account.MyAccount") - @T("Account.CustomerAddresses.AddNew")
+
+
+
+ @{
+ var dataDictAddress = new ViewDataDictionary(ViewData);
+ dataDictAddress.TemplateInfo.HtmlFieldPrefix = "Address";
+ @await Html.PartialAsync("_CreateOrUpdateAddress", Model.Address, dataDictAddress)
+ }
+
+
+
+ @T("Common.Save")
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/AddressEdit.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/AddressEdit.cshtml
new file mode 100644
index 0000000..6420465
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/AddressEdit.cshtml
@@ -0,0 +1,36 @@
+@model CustomerAddressEditModel
+@{
+ Layout = "_ColumnsTwo";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.Account").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-account-page");
+ NopHtml.AppendPageCssClassParts("html-address-edit-page");
+}
+@section left
+{
+ @await Component.InvokeAsync(typeof(CustomerNavigationViewComponent), new { selectedTabId = CustomerNavigationEnum.Addresses })
+}
+
+
+
+
@T("Account.MyAccount") - @T("Account.CustomerAddresses.Edit")
+
+
+
+ @{
+ var dataDictAddress = new ViewDataDictionary(ViewData);
+ dataDictAddress.TemplateInfo.HtmlFieldPrefix = "Address";
+ @await Html.PartialAsync("_CreateOrUpdateAddress", Model.Address, dataDictAddress)
+ }
+
+
+
+ @T("Common.Save")
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/Addresses.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/Addresses.cshtml
new file mode 100644
index 0000000..c0ead30
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/Addresses.cshtml
@@ -0,0 +1,120 @@
+@model CustomerAddressListModel
+@{
+ Layout = "_ColumnsTwo";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.Account").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-account-page");
+ NopHtml.AppendPageCssClassParts("html-address-list-page");
+}
+@section left
+ {
+ @await Component.InvokeAsync(typeof(CustomerNavigationViewComponent), new { selectedTabId = CustomerNavigationEnum.Addresses })
+}
+
+
+
@T("Account.MyAccount") - @T("Account.CustomerAddresses")
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerAddressesTop, additionalData = Model })
+
+ @if (Model.Addresses.Count > 0)
+ {
+
+ @for (var i = 0; i < Model.Addresses.Count; i++)
+ {
+ var address = Model.Addresses[i];
+
+
+
+
+
+
+ @address.FirstName @address.LastName
+
+
+ @T("Address.Fields.Email"):
+ @address.Email
+
+ @if (address.PhoneEnabled)
+ {
+
+ @T("Address.Fields.PhoneNumber"):
+ @address.PhoneNumber
+
+ }
+ @if (address.FaxEnabled)
+ {
+
+ @T("Address.Fields.FaxNumber"):
+ @address.FaxNumber
+
+ }
+ @if (address.CompanyEnabled && !string.IsNullOrEmpty(address.Company))
+ {
+ @address.Company
+ }
+ @foreach (var item in address.AddressFields)
+ {
+ @item.Value
+ }
+ @if (!string.IsNullOrEmpty(address.FormattedCustomAddressAttributes))
+ {
+
+ @Html.Raw(address.FormattedCustomAddressAttributes)
+
+ }
+
+ @*
+ @T("Common.Edit")
+
+ @T("Common.Delete")
+
*@
+
+
+ }
+
+
+ }
+ else
+ {
+
+ @T("Account.CustomerAddresses.NoAddresses")
+
+ }
+
+ @T("Common.AddNew")
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerAddressesBottom, additionalData = Model })
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/Avatar.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/Avatar.cshtml
new file mode 100644
index 0000000..ab2f482
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/Avatar.cshtml
@@ -0,0 +1,52 @@
+@model CustomerAvatarModel
+@{
+ Layout = "_ColumnsTwo";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.Account").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-account-page");
+ NopHtml.AppendPageCssClassParts("html-avatar-page");
+}
+@section left
+{
+ @await Component.InvokeAsync(typeof(CustomerNavigationViewComponent), new { selectedTabId = CustomerNavigationEnum.Avatar })
+}
+
+
+
+
@T("Account.MyAccount") - @T("Account.Avatar")
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerAvatarTop, additionalData = Model })
+
+
+ @if (!string.IsNullOrEmpty(Model.AvatarUrl))
+ {
+
+
+
+ }
+
+
+
+ @T("Common.Upload")
+ @if (!string.IsNullOrEmpty(Model.AvatarUrl))
+ {
+ @T("Account.Avatar.RemoveAvatar")
+ }
+
+
+ @T("Account.Avatar.UploadRules")
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerAvatarBottom, additionalData = Model })
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/ChangePassword.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/ChangePassword.cshtml
new file mode 100644
index 0000000..b72ce89
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/ChangePassword.cshtml
@@ -0,0 +1,69 @@
+@model ChangePasswordModel
+@{
+ Layout = "_ColumnsTwo";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.Account").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-account-page");
+ NopHtml.AppendPageCssClassParts("html-change-password-page");
+ var returnUrl = Context.Request.Query["returnUrl"];
+}
+@section left
+{
+ @await Component.InvokeAsync(typeof(CustomerNavigationViewComponent), new { selectedTabId = CustomerNavigationEnum.ChangePassword })
+}
+
+
+
+
@T("Account.MyAccount") - @T("Account.ChangePassword")
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerChangePasswordTop, additionalData = Model })
+
+
+
+
+
+
+ @T("Account.ChangePassword.Button")
+
+
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerChangePasswordBottom, additionalData = Model })
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/CheckGiftCardBalance.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/CheckGiftCardBalance.cshtml
new file mode 100644
index 0000000..09f7247
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/CheckGiftCardBalance.cshtml
@@ -0,0 +1,92 @@
+@model CheckGiftCardBalanceModel
+
+@using Nop.Core
+@using Nop.Services.Customers
+@using Nop.Web.Framework.UI;
+@inject IWorkContext workContext
+@inject ICustomerService customerService
+
+@{
+ var isRegisterCustomer = await customerService.IsRegisteredAsync(await workContext.GetCurrentCustomerAsync());
+ Layout = isRegisterCustomer ? "_ColumnsTwo" : "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.CheckGiftCardBalance").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-account-page");
+}
+
+@if (isRegisterCustomer)
+{
+ @section left
+ {
+ @await Component.InvokeAsync(typeof(CustomerNavigationViewComponent), new { selectedTabId = CustomerNavigationEnum.CheckGiftCardBalance })
+ }
+}
+
+
+
+
+ @if (isRegisterCustomer)
+ {
+
@T("Account.MyAccount") - @T("PageTitle.CheckGiftCardBalance")
+ }
+ else
+ {
+ @T("PageTitle.CheckGiftCardBalance")
+ }
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerCheckGiftCardBalanceTop, additionalData = Model })
+ @if (!string.IsNullOrEmpty(Model.Message))
+ {
+
+ @Model.Message
+
+ }
+ @if (!string.IsNullOrEmpty(Model.Result))
+ {
+
+ @string.Format(T("ShoppingCart.Totals.GiftCardInfo.Remaining").Text, @Model.Result)
+
+ }
+
+
+
+
+ @T("CheckGiftCard.GiftCardCouponCode.Button")
+
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerCheckGiftCardBalanceBottom, additionalData = Model })
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/ConfigureMultiFactorAuthenticationProvider.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/ConfigureMultiFactorAuthenticationProvider.cshtml
new file mode 100644
index 0000000..5c5c139
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/ConfigureMultiFactorAuthenticationProvider.cshtml
@@ -0,0 +1,42 @@
+@model MultiFactorAuthenticationProviderModel
+
+@using Nop.Core
+@using Nop.Services.Customers
+@inject IWorkContext workContext
+@inject ICustomerService customerService
+
+@{
+ var isRegisterCustomer = await customerService.IsRegisteredAsync(await workContext.GetCurrentCustomerAsync());
+ Layout = isRegisterCustomer ? "_ColumnsTwo" : "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.MultiFactorAuthentication").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-account-page");
+}
+
+@if (isRegisterCustomer)
+{
+ @section left
+ {
+ @await Component.InvokeAsync(typeof(CustomerNavigationViewComponent), new { selectedTabId = CustomerNavigationEnum.MultiFactorAuthentication })
+ }
+}
+
+
+
+ @if (isRegisterCustomer)
+ {
+
@T("PageTitle.MultiFactorAuthentication") - @Model.Name
+ }
+ else
+ {
+ @T("PageTitle.MultiFactorAuthentication")
+ }
+
+
+
+ @(await Component.InvokeAsync(Model.ViewComponent))
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/DownloadableProducts.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/DownloadableProducts.cshtml
new file mode 100644
index 0000000..8798f11
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/DownloadableProducts.cshtml
@@ -0,0 +1,104 @@
+@model CustomerDownloadableProductsModel
+@using Nop.Core.Domain.Catalog
+@{
+ Layout = "_ColumnsTwo";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.Account").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-account-page");
+ NopHtml.AppendPageCssClassParts("html-downloadable-products-page");
+}
+@section left
+{
+ @await Component.InvokeAsync(typeof(CustomerNavigationViewComponent), new { selectedTabId = CustomerNavigationEnum.DownloadableProducts })
+}
+
+
+
@T("Account.MyAccount") - @T("Account.DownloadableProducts")
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerDownloadableProductsTop, additionalData = Model })
+ @if (Model.Items.Count > 0)
+ {
+
+
+
+
+
+
+
+
+
+
+
+ @T("DownloadableProducts.Fields.Order")
+
+
+ @T("DownloadableProducts.Fields.Date")
+
+
+ @T("DownloadableProducts.Fields.Product")
+
+
+ @T("DownloadableProducts.Fields.Download")
+
+
+
+
+ @for (var i = 0; i < Model.Items.Count; i++)
+ {
+ var item = Model.Items[i];
+
+
+ @item.CustomOrderNumber
+
+
+ @item.CreatedOn.ToString("d")
+
+
+ @item.ProductName
+ @if (!string.IsNullOrEmpty(item.ProductAttributes))
+ {
+
+ @Html.Raw(item.ProductAttributes)
+
+ }
+
+
+ @if (item.DownloadId > 0)
+ {
+
+ }
+ else
+ {
+
+ @T("DownloadableProducts.Fields.Download.NA")
+
+ }
+ @if (item.LicenseId > 0)
+ {
+
+ }
+
+
+ }
+
+
+
+ }
+ else
+ {
+
+
+ @T("DownloadableProducts.NoItems")
+
+
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerDownloadableProductsBottom, additionalData = Model })
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/EmailRevalidation.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/EmailRevalidation.cshtml
new file mode 100644
index 0000000..c453bda
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/EmailRevalidation.cshtml
@@ -0,0 +1,22 @@
+@model EmailRevalidationModel
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.AccountActivation").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-email-revalidation-page");
+}
+
+
+
@T("Account.EmailRevalidation")
+
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/GdprTools.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/GdprTools.cshtml
new file mode 100644
index 0000000..36d74fd
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/GdprTools.cshtml
@@ -0,0 +1,61 @@
+@{
+ Layout = "_ColumnsTwo";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.Account").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-account-page");
+ NopHtml.AppendPageCssClassParts("html-gdpt-tools-page");
+}
+@section left
+ {
+ @await Component.InvokeAsync(typeof(CustomerNavigationViewComponent), new { selectedTabId = CustomerNavigationEnum.GdprTools })
+}
+
+
+
+
@T("Account.MyAccount") - @T("Account.Gdpr")
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerGdprToolsTop, additionalData = Model })
+ @if (!string.IsNullOrEmpty(Model.Result))
+ {
+
+ @Model.Result
+
+ }
+
+
+
+ @T("Account.Gdpr.Export")
+
+
+ @T("Account.Gdpr.Export.Hint")
+
+
+ @T("Account.Gdpr.Export.Button")
+
+
+
+
+ @T("Account.Gdpr.Delete")
+
+
+ @T("Account.Gdpr.Delete.Hint")
+
+
+ @T("Account.Gdpr.Delete.Button")
+
+
+
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerGdprToolsBottom, additionalData = Model })
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/Info.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/Info.cshtml
new file mode 100644
index 0000000..5e2f21e
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/Info.cshtml
@@ -0,0 +1,590 @@
+@using Nop.Core
+@model CustomerInfoModel
+@inject Nop.Core.IWebHelper webHelper
+@{
+ Layout = "_ColumnsTwo";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.Account").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-account-page");
+ NopHtml.AppendPageCssClassParts("html-customer-info-page");
+}
+
+@section left
+ {
+ @await Component.InvokeAsync(typeof(CustomerNavigationViewComponent), new { selectedTabId = CustomerNavigationEnum.Info })
+}
+
+
+
+
@T("Account.MyAccount") - @T("Account.CustomerInfo")
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerInfoTop, additionalData = Model })
+
+
+
+
+ @T("Account.YourPersonalDetails")
+
+
+
+ @if (Model.CompanyEnabled || Model.DisplayVatNumber)
+ {
+
+
+ @T("Account.CompanyDetails")
+
+
+
+ }
+ @if (Model.StreetAddressEnabled ||
+ Model.StreetAddress2Enabled ||
+ Model.ZipPostalCodeEnabled ||
+ Model.CityEnabled ||
+ Model.CountyEnabled ||
+ Model.CountryEnabled)
+ {
+
+
+ @T("Account.YourAddress")
+
+
+
+ }
+ @if (Model.PhoneEnabled || Model.FaxEnabled)
+ {
+
+
+ @T("Account.YourContactInformation")
+
+
+
+ }
+ @if (Model.NewsletterEnabled || Model.CustomerAttributes.Count > 0)
+ {
+
+
+ @T("Account.Options")
+
+
+
+ }
+ @if (Model.AllowCustomersToSetTimeZone || Model.SignatureEnabled)
+ {
+
+
+ @T("Account.Preferences")
+
+
+
+ }
+ @if (Model.NumberOfExternalAuthenticationProviders > 0)
+ {
+
+
+ @T("Account.AssociatedExternalAuth")
+
+ @if (Model.AssociatedExternalAuthRecords.Count > 0)
+ {
+ //existing associated external records
+
+
+
+
+
+
+
+
+
+
+ @T("Account.AssociatedExternalAuth.AuthMethodName")
+
+
+ @T("Account.AssociatedExternalAuth.Email")
+
+
+ @T("Account.AssociatedExternalAuth.ExternalIdentifier")
+
+ @if (Model.AllowCustomersToRemoveAssociations)
+ {
+
+ @T("Account.AssociatedExternalAuth.Remove")
+
+ }
+
+
+
+ @foreach (var item in Model.AssociatedExternalAuthRecords)
+ {
+
+
+ @item.AuthMethodName
+
+
+ @item.Email
+
+
+ @CommonHelper.EnsureMaximumLength(item.ExternalIdentifier, 40, "...")
+
+ @if (Model.AllowCustomersToRemoveAssociations)
+ {
+
+ @T("Account.AssociatedExternalAuth.Remove")
+
+ }
+
+ }
+
+
+
+ }
+ @if (Model.NumberOfExternalAuthenticationProviders > Model.AssociatedExternalAuthRecords.Count)
+ {
+ //we can add more external records
+ var loginUrl = Url.RouteUrl("Login", null, webHelper.GetCurrentRequestProtocol());
+
+ }
+
+ }
+
+ @if (Model.GdprConsents.Count > 0)
+ {
+
+
+ @T("Account.UserAgreement")
+
+
+
+ }
+
+
+
+ @T("Common.Save")
+
+
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerInfoBottom, additionalData = Model })
+
+
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/Login.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/Login.cshtml
new file mode 100644
index 0000000..352ddb2
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/Login.cshtml
@@ -0,0 +1,178 @@
+@model LoginModel
+@using Nop.Core
+@using Nop.Core.Domain.Customers
+
+@inject IWebHelper webHelper
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.Login").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-login-page");
+
+ //register URL with return URL (if specified)
+ var registerUrl = Url.RouteUrl("Register", new { returnUrl = this.Context.Request.Query["returnUrl"] }, webHelper.GetCurrentRequestProtocol());
+}
+
+
+
@T("Account.Login.Welcome")
+
+ @await Html.PartialAsync("_ExternalAuthentication.Errors")
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.LoginTop, additionalData = Model })
+
+
+
+
+ @if (Model.RegistrationType == UserRegistrationType.Disabled)
+ {
+
+
+ @T("Account.Register")
+
+
+ @T("Account.Register.Result.Disabled")
+
+
+ }
+ else
+
+ if (Model.CheckoutAsGuest)
+ {
+
+
+ @T("Account.Login.CheckoutAsGuestOrRegister")
+
+
+ @await Component.InvokeAsync(typeof(TopicBlockViewComponent), new { systemName = "CheckoutAsGuestOrRegister" })
+
+
+
+
+ }
+
+ else
+ {
+
+
+ @T("Account.Login.NewCustomer")
+
+
+
+
+ @T("Account.Login.NewCustomerText")
+
+
+ @T("Account.Register")
+
+
+
+
+
+
+ }
+
+
+
+
+ @T("Account.Login.Unsuccessful")
+
+ @T("Account.Login.ReturningCustomer")
+
+
+
+
+
+
+
+
+ @if (Model.RegistrationType == UserRegistrationType.Disabled)
+ {
+
+
+ @T("Account.Register")
+
+
+ @T("Account.Register.Result.Disabled")
+
+
+ }
+
+
+
+ @await Component.InvokeAsync(typeof(ExternalMethodsViewComponent), "ExternalAuthentication")
+
+ @await Component.InvokeAsync(typeof(TopicBlockViewComponent), new { systemName = "LoginRegistrationInfo" })
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.LoginBottom, additionalData = Model })
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/MultiFactorAuthentication.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/MultiFactorAuthentication.cshtml
new file mode 100644
index 0000000..bdcce9e
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/MultiFactorAuthentication.cshtml
@@ -0,0 +1,85 @@
+@model MultiFactorAuthenticationModel
+
+@using Nop.Core
+@using Nop.Services.Customers
+@inject IWorkContext workContext
+@inject ICustomerService customerService
+
+@{
+ var isRegisterCustomer = await customerService.IsRegisteredAsync(await workContext.GetCurrentCustomerAsync());
+ Layout = isRegisterCustomer ? "_ColumnsTwo" : "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.MultiFactorAuthentication").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-account-page");
+}
+
+@if (isRegisterCustomer)
+{
+ @section left
+ {
+ @await Component.InvokeAsync(typeof(CustomerNavigationViewComponent), new { selectedTabId = CustomerNavigationEnum.MultiFactorAuthentication })
+ }
+}
+
+
+
+ @if (isRegisterCustomer)
+ {
+
@T("Account.MyAccount") - @T("PageTitle.MultiFactorAuthentication")
+ }
+ else
+ {
+ @T("PageTitle.MultiFactorAuthentication")
+ }
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerMultiFactorAuthenticationTop, additionalData = Model })
+
+ @T("Account.MultiFactorAuthentication.Description")
+
+
+
+
+ @T("Account.MultiFactorAuthentication.Settings")
+
+
+
+
+
+ @T("Account.MultiFactorAuthentication.Providers")
+
+
+
+
+
+ @T("Common.Save")
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerMultiFactorAuthenticationBottom, additionalData = Model })
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/MultiFactorVerification.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/MultiFactorVerification.cshtml
new file mode 100644
index 0000000..698ff58
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/MultiFactorVerification.cshtml
@@ -0,0 +1,19 @@
+@model MultiFactorAuthenticationProviderModel
+
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.MultiFactorVerification").Text);
+}
+
+
+
+
@T("Account.Login.Welcome")
+
+
+
+ @(await Component.InvokeAsync(Model.ViewComponent))
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/PasswordRecovery.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/PasswordRecovery.cshtml
new file mode 100644
index 0000000..3e5fc00
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/PasswordRecovery.cshtml
@@ -0,0 +1,45 @@
+@model PasswordRecoveryModel
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.PasswordRecovery").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-password-recovery-page");
+}
+
+
+
@T("Account.PasswordRecovery")
+
+
+
+
+ @T("Account.PasswordRecovery.Tooltip")
+
+
+ @if (Model.DisplayCaptcha)
+ {
+
+ }
+
+
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/PasswordRecoveryConfirm.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/PasswordRecoveryConfirm.cshtml
new file mode 100644
index 0000000..a17034b
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/PasswordRecoveryConfirm.cshtml
@@ -0,0 +1,62 @@
+@model PasswordRecoveryConfirmModel
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.PasswordRecovery").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-password-recovery-page");
+}
+
+
+
@T("Account.PasswordRecovery")
+
+
+ @if (!string.IsNullOrEmpty(Model.Result))
+ {
+
+ @Model.Result
+
+
+ }
+ @if (!Model.DisablePasswordChanging)
+ {
+
+
+
+
+
+ }
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/Register.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/Register.cshtml
new file mode 100644
index 0000000..9cd035b
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/Register.cshtml
@@ -0,0 +1,551 @@
+@model RegisterModel
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.Register").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-registration-page");
+}
+
+
+
+
@T("Account.Register")
+
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.RegisterTop, additionalData = Model })
+
+
+
+
+
+ @T("Account.YourPersonalDetails")
+
+
+
+ @if (Model.CompanyEnabled || Model.DisplayVatNumber)
+ {
+
+
+ @T("Account.CompanyDetails")
+
+
+
+ }
+ @if (Model.StreetAddressEnabled ||
+ Model.StreetAddress2Enabled ||
+ Model.ZipPostalCodeEnabled ||
+ Model.CityEnabled ||
+ Model.CountyEnabled ||
+ Model.CountryEnabled)
+ {
+
+
+ @T("Account.YourAddress")
+
+
+
+ }
+ @if (Model.PhoneEnabled || Model.FaxEnabled)
+ {
+
+
+ @T("Account.YourContactInformation")
+
+
+
+ }
+ @if (Model.NewsletterEnabled || Model.CustomerAttributes.Count > 0)
+ {
+
+
+ @T("Account.Options")
+
+
+
+ }
+ @if (Model.AllowCustomersToSetTimeZone)
+ {
+
+
+ @T("Account.Preferences")
+
+
+
+ }
+
+
+ @T("Account.YourPassword")
+
+
+
+
+ @if (Model.AcceptPrivacyPolicyEnabled || Model.GdprConsents.Count > 0)
+ {
+
+
+ @T("Account.UserAgreement")
+
+
+
+
+ @if (Model.GdprConsents.Count > 0)
+ {
+
+ }
+ }
+
+
+
+ @await Component.InvokeAsync(typeof(ExternalMethodsViewComponent), "ExternalAuthentication")
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.RegisterBottom, additionalData = Model })
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/RegisterResult.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/RegisterResult.cshtml
new file mode 100644
index 0000000..eddf1b1
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/RegisterResult.cshtml
@@ -0,0 +1,25 @@
+@model RegisterResultModel
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.Register").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-registration-result-page");
+}
+
+
+
+
+
@T("Account.Register")
+
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/UserAgreement.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/UserAgreement.cshtml
new file mode 100644
index 0000000..7e056a5
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/UserAgreement.cshtml
@@ -0,0 +1,38 @@
+@model UserAgreementModel
+@{
+ Layout = "_ColumnsOne";
+
+ //page class
+ NopHtml.AppendPageCssClassParts("html-user-agreement-page");
+}
+
+
+
+
@T("DownloadableProducts.UserAgreement")
+
+
+
+
+
+
+ @Html.Raw(Model.UserAgreementText)
+
+
+
+
+ @T("Common.Continue")
+
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/_CheckUsernameAvailability.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/_CheckUsernameAvailability.cshtml
new file mode 100644
index 0000000..264c334
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/_CheckUsernameAvailability.cshtml
@@ -0,0 +1,47 @@
+
+@T("Account.CheckUsernameAvailability.Button")
+@T("Common.Wait")
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/_CustomerAttributes.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/_CustomerAttributes.cshtml
new file mode 100644
index 0000000..bceb2ca
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/_CustomerAttributes.cshtml
@@ -0,0 +1,87 @@
+@model IList
+@using Nop.Core.Domain.Catalog
+@using Nop.Services.Customers
+
+@foreach (var attribute in Model)
+{
+ var controlId = $"{NopCustomerServicesDefaults.CustomerAttributePrefix}{attribute.Id}";
+ var textPrompt = attribute.Name;
+
+
+
@textPrompt:
+
+ @switch (attribute.AttributeControlType)
+ {
+ case AttributeControlType.DropdownList:
+ {
+
+ @if (!attribute.IsRequired)
+ {
+ ---
+ }
+ @foreach (var attributeValue in attribute.Values)
+ {
+ @attributeValue.Name
+ }
+
+ }
+ break;
+ case AttributeControlType.RadioList:
+ {
+
+ }
+ break;
+ case AttributeControlType.Checkboxes:
+ case AttributeControlType.ReadonlyCheckboxes:
+ {
+
+ }
+ break;
+ case AttributeControlType.TextBox:
+ {
+
+ }
+ break;
+ case AttributeControlType.MultilineTextbox:
+ {
+
@(attribute.DefaultValue)
+ }
+ break;
+ case AttributeControlType.Datepicker:
+ case AttributeControlType.FileUpload:
+ case AttributeControlType.ColorSquares:
+ case AttributeControlType.ImageSquares:
+ {
+ //not support attribute type
+ }
+ break;
+ }
+
+
+ @if (attribute.IsRequired)
+ {
+
+ }
+
+
+}
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/_ExternalAuthentication.Errors.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/_ExternalAuthentication.Errors.cshtml
new file mode 100644
index 0000000..587f89a
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/_ExternalAuthentication.Errors.cshtml
@@ -0,0 +1,23 @@
+@using Nop.Core.Http.Extensions
+@using Nop.Services.Authentication
+
+@{
+ var session = Context.Session;
+
+ var errors = await session.GetAsync>(NopAuthenticationDefaults.ExternalAuthenticationErrorsSessionKey);
+
+ if (errors != null)
+ session.Remove(NopAuthenticationDefaults.ExternalAuthenticationErrorsSessionKey);
+}
+@using Nop.Services.Authentication.External
+@if (errors != null && errors.Count > 0)
+{
+
+
+ @foreach (var error in errors)
+ {
+ @error
+ }
+
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/_MultiFactorAuthenticationProviders.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/_MultiFactorAuthenticationProviders.cshtml
new file mode 100644
index 0000000..70d8a7c
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Customer/_MultiFactorAuthenticationProviders.cshtml
@@ -0,0 +1,32 @@
+@model IList
+
+
+ @foreach (var provider in Model)
+ {
+
+
+ @if (!string.IsNullOrEmpty(provider.LogoUrl))
+ {
+
+
+
+
+
+ }
+
+
+
@provider.Name
+ @if (!string.IsNullOrEmpty(provider.Description))
+ {
+
@provider.Description
+ }
+
+
+
+ @T("Common.Config")
+
+
+
+ }
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Home/Index.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Home/Index.cshtml
new file mode 100644
index 0000000..6265f35
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Home/Index.cshtml
@@ -0,0 +1,44 @@
+@using Nop.Services.Localization
+@using Nop.Core
+@inject ILocalizationService localizationService
+@inject IStoreContext storeContext
+
+@{
+ Layout = "_ColumnsOne";
+
+ var homepageTitle = await localizationService.GetLocalizedAsync(await storeContext.GetCurrentStoreAsync(), s => s.HomepageTitle);
+
+ //title
+ if (!string.IsNullOrEmpty(homepageTitle))
+ {
+ NopHtml.AddTitleParts(homepageTitle);
+ }
+
+ var homepageDescription = await localizationService.GetLocalizedAsync(await storeContext.GetCurrentStoreAsync(), s => s.HomepageDescription);
+
+ //meta
+ if (!string.IsNullOrEmpty(homepageDescription))
+ {
+ NopHtml.AddMetaDescriptionParts(homepageDescription);
+ }
+
+ //page class
+ NopHtml.AppendPageCssClassParts("html-home-page");
+}
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.HomepageTop })
+ @await Component.InvokeAsync(typeof(TopicBlockViewComponent), new { systemName = "HomepageText" })
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.HomepageBeforeCategories })
+ @await Component.InvokeAsync(typeof(HomepageCategoriesViewComponent))
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.HomepageBeforeProducts })
+ @await Component.InvokeAsync(typeof(HomepageProductsViewComponent))
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.HomepageBeforeBestSellers })
+ @await Component.InvokeAsync(typeof(HomepageBestSellersViewComponent))
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.HomepageBeforeNews })
+ @await Component.InvokeAsync(typeof(HomepageNewsViewComponent))
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.HomepageBeforePoll })
+ @await Component.InvokeAsync(typeof(HomepagePollsViewComponent))
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.HomepageBottom })
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Install/Index.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Install/Index.cshtml
new file mode 100644
index 0000000..0d36fac
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Install/Index.cshtml
@@ -0,0 +1,303 @@
+@model InstallModel
+
+@{
+ Layout = null;
+}
+
+
+
+ @ILS.GetResource("Title")
+
+
+
+ @if (ILS.GetCurrentLanguage().IsRightToLeft)
+ {
+
+
+ }
+ else
+ {
+
+
+ }
+
+
+
+
+
+
+
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Install/_Install.ConnectionString.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Install/_Install.ConnectionString.cshtml
new file mode 100644
index 0000000..528e163
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Install/_Install.ConnectionString.cshtml
@@ -0,0 +1,67 @@
+@model InstallModel
+
+
+
+
+
+ @ILS.GetResource("ServerName")
+
+
+
+
+
+
+
+ @ILS.GetResource("DatabaseName")
+
+
+
+
+
+
+
+
+
+
+
+ @ILS.GetResource("IntegratedAuthentication")
+
+
+
+
+
+
+
+ @ILS.GetResource("SqlUsername")
+
+
+
+
+
+
+
+ @ILS.GetResource("SqlPassword")
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Install/_ViewImports.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Install/_ViewImports.cshtml
new file mode 100644
index 0000000..fcd1800
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Install/_ViewImports.cshtml
@@ -0,0 +1,13 @@
+@*localization service for installation service
+ we do not use standard nopCommerce localization because database is not installed yet
+ locale resources for installation process are stored into \App_Data\Localization\Installation directory*@
+@inject IInstallationLocalizationService ILS
+
+@removeTagHelper *, Nop.Web.Framework
+@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
+
+@using Nop.Data
+@using Nop.Services.Common
+@using static Nop.Services.Common.NopLinksDefaults
+@using Nop.Web.Models.Install
+@using Nop.Web.Infrastructure.Installation
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/News/List.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/News/List.cshtml
new file mode 100644
index 0000000..8c9fabd
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/News/List.cshtml
@@ -0,0 +1,51 @@
+@model NewsItemListModel
+
+@using Nop.Core.Domain.News
+
+@{
+ Layout = "_ColumnsTwo";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.NewsArchive").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-news-list-page");
+}
+
+
+
+
@T("News")
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.NewsListPageBeforeItems, additionalData = Model })
+
+ @foreach (var item in Model.NewsItems)
+ {
+
+
+
+
+ @Html.Raw(item.Short)
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.NewsListPageInsideItem, additionalData = item })
+
+
+ }
+
+ @{
+ var pager = Html.Pager(Model.PagingFilteringContext).QueryParam("pagenumber");
+ }
+ @if (!(await pager.IsEmpty()))
+ {
+
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.NewsListPageAfterItems, additionalData = Model })
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/News/NewsItem.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/News/NewsItem.cshtml
new file mode 100644
index 0000000..609f141
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/News/NewsItem.cshtml
@@ -0,0 +1,152 @@
+@inject Nop.Services.Html.IHtmlFormatter htmlFormatter
+@model NewsItemModel
+@{
+ Layout = "_ColumnsTwo";
+
+ //title
+ NopHtml.AddTitleParts(!string.IsNullOrEmpty(Model.MetaTitle) ? Model.MetaTitle : Model.Title);
+ //meta
+ NopHtml.AddMetaDescriptionParts(Model.MetaDescription);
+ NopHtml.AddMetaKeywordParts(Model.MetaKeywords);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-news-item-page");
+}
+
+
+
@Model.Title
+
+
+
+ @Model.CreatedOn.ToString("D")
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.NewsItemPageBeforeBody, additionalData = Model })
+
+ @Html.Raw(Model.Full)
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.NewsItemPageBeforeComments, additionalData = Model })
+ @if (Model.AllowComments)
+ {
+
+ if (Model.Comments.Count > 0)
+ {
+
+ }
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.NewsItemPageAfterComments, additionalData = Model })
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Newsletter/SubscriptionActivation.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Newsletter/SubscriptionActivation.cshtml
new file mode 100644
index 0000000..dbf3691
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Newsletter/SubscriptionActivation.cshtml
@@ -0,0 +1,19 @@
+@model SubscriptionActivationModel
+@{
+ Layout = "_ColumnsOne";
+
+ //page class
+ NopHtml.AppendPageCssClassParts("html-newsletter-page");
+}
+
+
+
@T("Newsletter.Title")
+
+
+
+
+ @Model.Result
+
+
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Order/CustomerOrders.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Order/CustomerOrders.cshtml
new file mode 100644
index 0000000..c69fdf9
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Order/CustomerOrders.cshtml
@@ -0,0 +1,169 @@
+@model CustomerOrderListModel
+@{
+ Layout = "_ColumnsTwo";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.Account").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-account-page");
+ NopHtml.AppendPageCssClassParts("html-order-list-page");
+}
+@section left
+{
+ @await Component.InvokeAsync(typeof(CustomerNavigationViewComponent), new { selectedTabId = CustomerNavigationEnum.Orders })
+}
+
+
+
@T("Account.MyAccount") - @T("Account.CustomerOrders")
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerOrdersTop, additionalData = Model })
+ @if (Model.RecurringOrders.Count > 0)
+ {
+
+
+ @T("Account.CustomerOrders.RecurringOrders")
+
+
+ @{
+ var canRetryRecurringOrders = Model.RecurringOrders.Any(recurring => recurring.CanRetryLastPayment);
+ }
+
+
+
+
+
+
+
+
+
+ @if (canRetryRecurringOrders)
+ {
+
+ }
+
+
+
+
+
+ @T("Account.CustomerOrders.RecurringOrders.StartDate")
+
+
+ @T("Account.CustomerOrders.RecurringOrders.CycleInfo")
+
+
+ @T("Account.CustomerOrders.RecurringOrders.NextPayment")
+
+
+ @T("Account.CustomerOrders.RecurringOrders.TotalCycles")
+
+
+ @T("Account.CustomerOrders.RecurringOrders.CyclesRemaining")
+
+
+ @T("Account.CustomerOrders.RecurringOrders.InitialOrder")
+
+ @if (canRetryRecurringOrders)
+ {
+
+ @T("Account.CustomerOrders.RecurringOrders.RetryLastPayment")
+
+ }
+
+ @T("Account.CustomerOrders.RecurringOrders.Cancel")
+
+
+
+
+ @foreach (var item in Model.RecurringOrders)
+ {
+
+
+ @item.StartDate
+
+
+ @item.CycleInfo
+
+
+ @item.NextPayment
+
+
+ @item.TotalCycles
+
+
+ @item.CyclesRemaining
+
+
+ @string.Format(T("Account.CustomerOrders.RecurringOrders.ViewInitialOrder").Text, item.InitialOrderNumber)
+
+ @if (canRetryRecurringOrders)
+ {
+
+ @if (item.CanRetryLastPayment)
+ {
+ @T("Account.CustomerOrders.RecurringOrders.RetryLastPayment")
+ }
+
+ }
+
+ @if (item.CanCancel)
+ {
+ @T("Account.CustomerOrders.RecurringOrders.Cancel")
+ }
+
+
+ }
+
+
+
+
+
+ if (Model.RecurringPaymentErrors.Any())
+ {
+
+
+ @foreach (var error in Model.RecurringPaymentErrors)
+ {
+ @error
+ }
+
+
+ }
+ }
+
+ @if (Model.Orders.Count > 0)
+ {
+
+ @foreach (var order in Model.Orders)
+ {
+
+
+
+ @T("Account.CustomerOrders.OrderStatus"): @order.OrderStatus
+ @T("Account.CustomerOrders.OrderDate"): @order.CreatedOn.ToString()
+ @T("Account.CustomerOrders.OrderTotal"): @order.OrderTotal
+
+
+ }
+
+ }
+ else
+ {
+
+
+ @T("Account.CustomerOrders.NoOrders")
+
+
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerOrdersBottom, additionalData = Model })
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Order/CustomerRewardPoints.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Order/CustomerRewardPoints.cshtml
new file mode 100644
index 0000000..64acde4
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Order/CustomerRewardPoints.cshtml
@@ -0,0 +1,106 @@
+@model CustomerRewardPointsModel
+@{
+ Layout = "_ColumnsTwo";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.Account").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-account-page");
+ NopHtml.AppendPageCssClassParts("html-reward-points-page");
+}
+@section left
+{
+ @await Component.InvokeAsync(typeof(CustomerNavigationViewComponent), new { selectedTabId = CustomerNavigationEnum.RewardPoints })
+}
+
+
+
@T("Account.MyAccount") - @T("Account.RewardPoints")
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerRewardPointsTop, additionalData = Model })
+
+
@T("RewardPoints.CurrentBalance", Model.RewardPointsBalance, Model.RewardPointsAmount)
+ @if (Model.MinimumRewardPointsBalance > 0)
+ {
+
@T("RewardPoints.MinimumBalance", Model.MinimumRewardPointsBalance, Model.MinimumRewardPointsAmount)
+ }
+
+
+
+ @T("RewardPoints.History")
+
+ @if (Model.RewardPoints.Count > 0)
+ {
+
+
+
+
+
+
+
+
+
+
+
+
+ @T("RewardPoints.Fields.CreatedDate")
+
+
+ @T("RewardPoints.Fields.Points")
+
+
+ @T("RewardPoints.Fields.PointsBalance")
+
+
+ @T("RewardPoints.Fields.Message")
+
+
+ @T("RewardPoints.Fields.EndDate")
+
+
+
+
+ @for (var i = 0; i < Model.RewardPoints.Count; i++)
+ {
+ var item = Model.RewardPoints[i];
+
+
+ @item.CreatedOn
+
+
+ @item.Points
+
+
+ @item.PointsBalance
+
+
+ @item.Message
+
+
+ @item.EndDate
+
+
+ }
+
+
+
+ var pager = await Html.PagerAsync(Model.PagerModel);
+ if (!string.IsNullOrEmpty(await pager.RenderHtmlContentAsync()))
+ {
+
+ }
+ }
+ else
+ {
+
+
+ @T("RewardPoints.NoHistory")
+
+
+ }
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerRewardPointsBottom, additionalData = Model })
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Order/Details.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Order/Details.cshtml
new file mode 100644
index 0000000..7abdb71
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Order/Details.cshtml
@@ -0,0 +1,701 @@
+@model OrderDetailsModel
+
+@using Nop.Core.Domain.Catalog
+@using Nop.Core.Domain.Media
+
+@inject MediaSettings mediaSettings
+
+@{
+ if (!Model.PrintMode)
+ {
+ Layout = "_ColumnsOne";
+ }
+ else
+ {
+ Layout = "_Print";
+ }
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.OrderDetails").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-order-details-page");
+}
+@if (Model.PrintMode)
+{
+
+}
+
+ @if (!Model.PrintMode)
+ {
+
+
@T("Order.OrderInformation")
+
@T("Order.Print")
+ @if (!Model.PdfInvoiceDisabled)
+ {
+
@T("Order.GetPDFInvoice")
+ }
+
+ }
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OrderDetailsPageTop, additionalData = Model })
+
+
+ @T("Order.Order#")@Model.CustomOrderNumber
+
+
+
+ @T("Order.OrderDate"): @Model.CreatedOn.ToString("D")
+
+
+ @T("Order.OrderStatus"): @Model.OrderStatus
+
+
+ @T("Order.OrderTotal"): @Model.OrderTotal
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OrderDetailsPageOverview, additionalData = Model })
+
+
+
+
+
+ @T("Order.BillingAddress")
+
+
+
+ @Model.BillingAddress.FirstName @Model.BillingAddress.LastName
+
+
+ @T("Order.Email"): @Model.BillingAddress.Email
+
+ @if (Model.BillingAddress.PhoneEnabled)
+ {
+
+ @T("Order.Phone"): @Model.BillingAddress.PhoneNumber
+
+ }
+ @if (Model.BillingAddress.FaxEnabled)
+ {
+
+ @T("Order.Fax"): @Model.BillingAddress.FaxNumber
+
+ }
+ @if (Model.BillingAddress.CompanyEnabled && !string.IsNullOrEmpty(Model.BillingAddress.Company))
+ {
+
+ @Model.BillingAddress.Company
+
+ }
+ @foreach (var item in Model.BillingAddress.AddressFields)
+ {
+ @item.Value
+ }
+ @if (!string.IsNullOrEmpty(Model.VatNumber))
+ {
+
+
+ @T("Order.VATNumber")
+
+
+ @Model.VatNumber
+
+
+ }
+ @if (!string.IsNullOrEmpty(Model.BillingAddress.FormattedCustomAddressAttributes))
+ {
+
+ @Html.Raw(Model.BillingAddress.FormattedCustomAddressAttributes)
+
+ }
+ @if (Model.CustomValues != null)
+ {
+ foreach (var item in Model.CustomValues)
+ {
+
+
+ @item.Key:
+
+
+ @(item.Value != null ? item.Value.ToString() : "")
+
+
+ }
+ }
+
+
+
+ @if (Model.IsShippable)
+ {
+
+
+
+
+ @(Model.PickupInStore ? T("Order.PickupAddress") : T("Order.ShippingAddress"))
+
+
+ @if (!Model.PickupInStore)
+ {
+
+ @Model.ShippingAddress.FirstName @Model.ShippingAddress.LastName
+
+
+ @T("Order.Email"): @Model.ShippingAddress.Email
+
+ if (Model.ShippingAddress.PhoneEnabled)
+ {
+
+ @T("Order.Phone"): @Model.ShippingAddress.PhoneNumber
+
+ }
+ if (Model.ShippingAddress.FaxEnabled)
+ {
+
+ @T("Order.Fax"): @Model.ShippingAddress.FaxNumber
+
+ }
+ if (Model.ShippingAddress.CompanyEnabled && !string.IsNullOrEmpty(Model.ShippingAddress.Company))
+ {
+
+ @Model.ShippingAddress.Company
+
+ }
+ @foreach (var item in Model.ShippingAddress.AddressFields)
+ {
+ @item.Value
+ }
+ if (!string.IsNullOrEmpty(Model.ShippingAddress.FormattedCustomAddressAttributes))
+ {
+
+ @Html.Raw(Model.ShippingAddress.FormattedCustomAddressAttributes)
+
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OrderDetailsShippingAddress, additionalData = Model })
+ }
+ else
+ {
+ @foreach (var item in Model.PickupAddress.AddressFields)
+ {
+ @item.Value
+ }
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OrderDetailsBillingAddress, additionalData = Model })
+
+
+
+
+ }
+ @if (!string.IsNullOrEmpty(Model.PaymentMethod))
+ {
+
+
+ @T("Order.Payment")
+
+
+
+
+ @T("Order.Payment.Method"):
+
+
+ @Model.PaymentMethod
+
+
+ @if (!Model.PrintMode)
+ {
+
+
+ @T("Order.Payment.Status"):
+
+
+ @Model.PaymentMethodStatus
+
+
+ }
+ @if (!Model.PrintMode && Model.CanRePostProcessPayment)
+ {
+ @*Complete payment (for redirection payment methods)*@
+
+
+ @T("Order.RetryPayment")
+
+ @T("Order.RetryPayment.Hint")
+
+
+
+ }
+
+
+ }
+
+
+ @T("Order.Shipping")
+
+
+
+
+ @T("Order.Shipping.Name"):
+
+
+ @Model.ShippingMethod
+
+
+ @if (!Model.PrintMode)
+ {
+
+
+ @T("Order.Shipping.Status"):
+
+
+ @Model.ShippingStatus
+
+
+ }
+
+
+
+ @if (!Model.PrintMode && Model.Shipments.Count > 0)
+ {
+
+
+ @T("Order.Shipments")
+
+
+
+
+
+
+
+
+
+
+
+
+
+ @T("Order.Shipments.ID")
+
+
+ @T("Order.Shipments.TrackingNumber")
+
+ @if (Model.PickupInStore)
+ {
+
+ @T("Order.Shipments.ReadyForPickupDate")
+
+ }
+ else
+ {
+
+ @T("Order.Shipments.ShippedDate")
+
+ }
+
+ @T("Order.Shipments.DeliveryDate")
+
+
+ @T("Order.Shipments.ViewDetails")
+
+
+
+
+ @foreach (var item in Model.Shipments)
+ {
+
+
+ @T("Order.Shipments.ID"):
+ @item.Id.ToString()
+
+
+ @T("Order.Shipments.TrackingNumber"):
+ @item.TrackingNumber
+
+ @if (Model.PickupInStore)
+ {
+
+ @T("Order.Shipments.ReadyForPickupDate"):
+ @if (item.ReadyForPickupDate.HasValue)
+ {
+ @item.ReadyForPickupDate.Value.ToString("D")
+ }
+ else
+ {
+ @T("Order.Shipments.ReadyForPickupDate.NotYet")
+ }
+
+ }
+ else
+ {
+
+ @T("Order.Shipments.ShippedDate"):
+ @if (item.ShippedDate.HasValue)
+ {
+ @item.ShippedDate.Value.ToString("D")
+ }
+ else
+ {
+ @T("Order.Shipments.ShippedDate.NotYet")
+ }
+
+ }
+
+ @T("Order.Shipments.DeliveryDate"):
+ @if (item.DeliveryDate.HasValue)
+ {
+ @item.DeliveryDate.Value.ToString("D")
+ }
+ else
+ {
+ @T("Order.Shipments.DeliveryDate.NotYet")
+ }
+
+
+ @T("Order.Shipments.ViewDetails")
+
+
+ }
+
+
+
+
+ }
+ @if (Model.Items.Count > 0)
+ {
+ if (!Model.PrintMode && Model.OrderNotes.Count > 0)
+ {
+
+
+ @T("Order.Notes")
+
+
+
+
+
+
+
+
+
+
+ @T("Order.Notes.CreatedOn")
+
+
+ @T("Order.Notes.Note")
+
+
+
+
+ @foreach (var item in Model.OrderNotes)
+ {
+
+
+ @item.CreatedOn.ToString()
+
+
+ @Html.Raw(item.Note)
+ @if (item.HasDownload)
+ {
+
+ @T("Order.Notes.Download")
+
+ }
+
+
+ }
+
+
+
+
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OrderDetailsPageBeforeproducts, additionalData = Model })
+
+
+ @T("Order.Product(s)")
+
+
+
+
+ @if (Model.ShowSku)
+ {
+
+ }
+
+ @if (Model.ShowProductThumbnail)
+ {
+
+ }
+
+
+ @if (Model.ShowVendorName)
+ {
+
+ }
+
+
+
+
+
+
+ @if (Model.ShowSku)
+ {
+
+ @T("Order.Product(s).SKU")
+
+ }
+ @if (Model.ShowProductThumbnail)
+ {
+
+ @T("Order.Product(s).Image")
+
+ }
+
+ @T("Order.Product(s).Name")
+
+ @if (Model.ShowVendorName)
+ {
+
+ @T("Order.Product(s).VendorName")
+
+ }
+
+ @T("Order.Product(s).Price")
+
+
+ @T("Order.Product(s).Quantity")
+
+
+ @T("Order.Product(s).Total")
+
+
+
+
+ @foreach (var item in Model.Items)
+ {
+
+ @if (Model.ShowSku)
+ {
+
+ @T("Order.Product(s).SKU"):
+ @item.Sku
+
+ }
+ @if (Model.ShowProductThumbnail)
+ {
+
+
+
+
+
+ }
+
+ @if (!Model.PrintMode)
+ {
+ @item.ProductName
+ }
+ else
+ {
+ @item.ProductName
+ }
+ @if (!string.IsNullOrEmpty(item.AttributeInfo))
+ {
+
+ @Html.Raw(item.AttributeInfo)
+
+ }
+ @if (!string.IsNullOrEmpty(item.RentalInfo))
+ {
+
+ @Html.Raw(item.RentalInfo)
+
+ }
+ @if (item.DownloadId > 0)
+ {
+
+ }
+ @if (item.LicenseId > 0)
+ {
+
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OrderDetailsProductLine, additionalData = item })
+
+ @if (Model.ShowVendorName)
+ {
+
+ @T("Order.Product(s).VendorName"):
+ @item.VendorName
+
+ }
+
+ @T("Order.Product(s).Price"):
+ @item.UnitPrice
+
+
+ @T("Order.Product(s).Quantity"):
+ @item.Quantity
+
+
+ @T("Order.Product(s).Total"):
+ @item.SubTotal
+
+
+ }
+
+
+
+ @if (Model.Items.Count > 0 && Model.DisplayTaxShippingInfo)
+ {
+ var inclTax = Model.PricesIncludeTax;
+ //tax info is already included in the price (incl/excl tax). that's why we display only shipping info here
+ //of course, you can modify appropriate locales to include VAT info there
+
+ @T(inclTax ? "Order.TaxShipping.InclTax" : "Order.TaxShipping.ExclTax", Url.RouteTopicUrl("shippinginfo"))
+
+ }
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OrderDetailsPageAfterproducts, additionalData = Model })
+
+ @if (!string.IsNullOrEmpty(Model.CheckoutAttributeInfo))
+ {
+
+ @Html.Raw(Model.CheckoutAttributeInfo)
+
+ }
+
+
+
+
+
+
+
+ @T("Order.SubTotal"):
+
+
+ @Model.OrderSubtotal
+
+
+ @if (!string.IsNullOrEmpty(Model.OrderSubTotalDiscount))
+ {
+
+
+ @T("Order.SubTotalDiscount"):
+
+
+ @Model.OrderSubTotalDiscount
+
+
+ }
+ @if (Model.IsShippable)
+ {
+
+
+ @T("Order.Shipping"):
+
+
+ @Model.OrderShipping
+
+
+ }
+ @if (!string.IsNullOrEmpty(Model.PaymentMethodAdditionalFee))
+ {
+
+
+ @T("Order.PaymentMethodAdditionalFee"):
+
+
+ @Model.PaymentMethodAdditionalFee
+
+
+ }
+ @if (Model.DisplayTaxRates && Model.TaxRates.Count > 0)
+ {
+ foreach (var taxRate in Model.TaxRates)
+ {
+
+
+ @string.Format(T("Order.TaxRateLine").Text, taxRate.Rate):
+
+
+ @taxRate.Value
+
+
+ }
+ }
+ @if (Model.DisplayTax)
+ {
+
+
+ @T("Order.Tax"):
+
+
+ @Model.Tax
+
+
+ }
+ @if (!string.IsNullOrEmpty(Model.OrderTotalDiscount))
+ {
+
+
+ @T("Order.TotalDiscount"):
+
+
+ @Model.OrderTotalDiscount
+
+
+ }
+ @if (Model.GiftCards.Count > 0)
+ {
+ foreach (var gc in Model.GiftCards)
+ {
+
+
+ @string.Format(T("Order.GiftCardInfo").Text, gc.CouponCode):
+
+
+ @gc.Amount
+
+
+ }
+ }
+ @if (Model.RedeemedRewardPoints > 0)
+ {
+
+
+ @string.Format(T("Order.RewardPoints").Text, Model.RedeemedRewardPoints):
+
+
+ @Model.RedeemedRewardPointsAmount
+
+
+ }
+
+
+ @T("Order.OrderTotal"):
+
+
+ @Model.OrderTotal
+
+
+
+
+
+ @if (!Model.PrintMode)
+ {
+
+ @if (Model.IsReOrderAllowed)
+ {
+ @T("Order.Reorder")
+ }
+ @if (Model.IsReturnRequestAllowed)
+ {
+ @T("Order.ReturnItems")
+ }
+
+ }
+
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OrderDetailsPageBottom, additionalData = Model })
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Order/ShipmentDetails.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Order/ShipmentDetails.cshtml
new file mode 100644
index 0000000..5064d5b
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Order/ShipmentDetails.cshtml
@@ -0,0 +1,276 @@
+@model ShipmentDetailsModel
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.ShipmentDetails").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-shipment-details-page");
+}
+
+
+
@string.Format(T("Order.Shipments.Information").Text, Model.Id)
+
+
+
+
+
+
+ @T("Order.Shipments.Order#")@Model.Order.Id
+
+
+
+ @T("Order.Shipments.ShippingMethod"): @Model.Order.ShippingMethod
+
+ @if (Model.Order.PickupInStore)
+ {
+
+ @T("Order.Shipments.ReadyForPickupDate"):
+ @if (Model.ReadyForPickupDate.HasValue)
+ {
+ @Model.ReadyForPickupDate.Value.ToString("D")
+ }
+ else
+ {
+ @T("Order.Shipments.ReadyForPickupDate.NotYet")
+ }
+
+ }
+ else {
+
+ @T("Order.Shipments.ShippedDate"):
+ @if (Model.ShippedDate.HasValue)
+ {
+ @Model.ShippedDate.Value.ToString("D")
+ }
+ else
+ {
+ @T("Order.Shipments.ShippedDate.NotYet")
+ }
+
+ }
+
+ @T("Order.Shipments.DeliveryDate"):
+ @if (Model.DeliveryDate.HasValue)
+ {
+ @Model.DeliveryDate.Value.ToString("D")
+ }
+ else
+ {
+ @T("Order.Shipments.DeliveryDate.NotYet")
+ }
+
+ @if (!string.IsNullOrEmpty(Model.TrackingNumber))
+ {
+
+ @T("Order.Shipments.TrackingNumber"):
+ @if (!string.IsNullOrEmpty(Model.TrackingNumberUrl))
+ {
+ @Model.TrackingNumber
+ }
+ else
+ {
+ @Model.TrackingNumber
+ }
+
+ }
+
+
+
+
+
+ @if (!Model.Order.PickupInStore)
+ {
+
+ @T("Order.Shipments.ShippingAddress")
+
+
+
+ @Model.Order.ShippingAddress.FirstName @Model.Order.ShippingAddress.LastName
+
+
+ @T("Order.Shipments.Email"): @Model.Order.ShippingAddress.Email
+
+
+ @T("Order.Shipments.Phone"): @Model.Order.ShippingAddress.PhoneNumber
+
+
+ @T("Order.Shipments.Fax"): @Model.Order.ShippingAddress.FaxNumber
+
+ @if (!string.IsNullOrEmpty(Model.Order.ShippingAddress.Company))
+ {
+
+ @Model.Order.ShippingAddress.Company
+
+ }
+
+ @Model.Order.ShippingAddress.Address1
+
+ @if (!string.IsNullOrEmpty(Model.Order.ShippingAddress.Address2))
+ {
+
+ @Model.Order.ShippingAddress.Address2
+
+ }
+
+ @Model.Order.ShippingAddress.City, @Model.Order.ShippingAddress.County, @Model.Order.ShippingAddress.StateProvinceName
+ @Model.Order.ShippingAddress.ZipPostalCode
+
+ @if (!string.IsNullOrEmpty(Model.Order.ShippingAddress.CountryName))
+ {
+
+ @Model.Order.ShippingAddress.CountryName
+
+ }
+
+ }
+ else
+ {
+
+ @T("Order.Shipments.PickupAddress")
+
+
+
+ @Model.Order.PickupAddress.Address1
+
+
+ @Model.Order.PickupAddress.City, @Model.Order.PickupAddress.County, @Model.Order.PickupAddress.StateProvinceName
+ @Model.Order.PickupAddress.ZipPostalCode
+
+ @if (!string.IsNullOrEmpty(Model.Order.PickupAddress.CountryName))
+ {
+
+ @Model.Order.PickupAddress.CountryName
+
+ }
+
+ }
+
+
+
+
+ @if (Model.Items.Count > 0)
+ {
+
+
+ @T("Order.Shipments.Product(s)")
+
+
+
+
+ @if (Model.ShowSku)
+ {
+
+ }
+
+
+
+
+
+ @if (Model.ShowSku)
+ {
+
+ @T("Order.Shipments.Product(s).SKU")
+
+ }
+
+ @T("Order.Shipments.Product(s).Name")
+
+
+ @T("Order.Shipments.Product(s).Quantity")
+
+
+
+
+ @foreach (var item in Model.Items)
+ {
+
+ @if (Model.ShowSku)
+ {
+
+ @item.Sku
+
+ }
+
+ @item.ProductName
+ @if (!string.IsNullOrEmpty(item.AttributeInfo))
+ {
+
+ @Html.Raw(item.AttributeInfo)
+
+ }
+ @if (!string.IsNullOrEmpty(item.RentalInfo))
+ {
+
+ @Html.Raw(item.RentalInfo)
+
+ }
+
+
+ @item.QuantityShipped
+
+
+ }
+
+
+
+
+ }
+ @if (Model.ShipmentStatusEvents.Count > 0)
+ {
+
+
+ @T("Order.ShipmentStatusEvents")
+
+
+
+
+
+
+
+
+
+
+
+
+ @T("Order.ShipmentStatusEvents.Event")
+
+
+ @T("Order.ShipmentStatusEvents.Location")
+
+
+ @T("Order.ShipmentStatusEvents.Country")
+
+
+ @T("Order.ShipmentStatusEvents.Date")
+
+
+
+
+ @foreach (var item in Model.ShipmentStatusEvents)
+ {
+
+
+ @item.EventName
+
+
+ @item.Location
+
+
+ @item.Country
+
+
+ @if (item.Date.HasValue)
+ {
+ @item.Date.Value.ToString("D")
+ }
+
+
+ }
+
+
+
+
+ }
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/PrivateMessages/Index.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/PrivateMessages/Index.cshtml
new file mode 100644
index 0000000..37bdedb
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/PrivateMessages/Index.cshtml
@@ -0,0 +1,43 @@
+@model PrivateMessageIndexModel
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.PrivateMessages").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-private-messages");
+ NopHtml.AppendPageCssClassParts("html-private-messages-page");
+}
+
+
+
@T("PrivateMessages.PrivateMessages")
+
+
+ @{
+ var selectSentTab = Model.SentItemsTabSelected ? ".tabs( 'option', 'active', 1 )" : "";
+ }
+
+
+
+
+
+ @await Component.InvokeAsync(typeof(PrivateMessagesInboxViewComponent), new { pageNumber = Model.InboxPage, tab = "inbox" })
+
+
+ @await Component.InvokeAsync(typeof(PrivateMessagesSentItemsViewComponent), new { pageNumber = Model.SentItemsPage, tab = "sent" })
+
+
+
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/PrivateMessages/SendPM.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/PrivateMessages/SendPM.cshtml
new file mode 100644
index 0000000..26925cc
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/PrivateMessages/SendPM.cshtml
@@ -0,0 +1,66 @@
+@model SendPrivateMessageModel
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.SendPM").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-private-messages");
+ NopHtml.AppendPageCssClassParts("html-private-message-send-page");
+}
+
+
+
+
+
@T("PrivateMessages.Send.PostMessage")
+
+
+
+
+
+
+
+
+ @T("PrivateMessages.Send.SendButton")
+ @T("PrivateMessages.Send.CancelButton")
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/PrivateMessages/ViewPM.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/PrivateMessages/ViewPM.cshtml
new file mode 100644
index 0000000..ba72342
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/PrivateMessages/ViewPM.cshtml
@@ -0,0 +1,43 @@
+@model PrivateMessageModel
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.ViewPM").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-private-messages");
+ NopHtml.AppendPageCssClassParts("html-private-message-view-page");
+}
+
+
+
@T("PrivateMessages.View.ViewMessage")
+
+
+
+
+
+ @T("PrivateMessages.View.From")
+ @Model.CustomerFromName
+
+
+ @T("PrivateMessages.View.To")
+ @Model.CustomerToName
+
+
+ @T("PrivateMessages.View.Subject")
+ @Model.Subject
+
+
+
+ @Html.Raw(Model.Message)
+
+
+
+ @T("PrivateMessages.View.ReplyButton")
+
+ @T("PrivateMessages.View.DeleteButton")
+
+ @T("PrivateMessages.View.BackButton")
+
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/CompareProducts.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/CompareProducts.cshtml
new file mode 100644
index 0000000..478c1fc
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/CompareProducts.cshtml
@@ -0,0 +1,186 @@
+@model CompareProductsModel
+
+@using Nop.Core.Domain.Catalog
+@{
+ Layout = "_ColumnsTwo";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.CompareProducts").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-compare-products-page");
+}
+@{
+ var columnWidth = "";
+ if (Model.Products.Count > 0)
+ {
+ columnWidth = Math.Round((decimal)(90M / Model.Products.Count), 0).ToString() + "%";
+ }
+
+ var uniqueGroupes = new List();
+ foreach (var group in Model.Products.SelectMany(p => p.ProductSpecificationModel.Groups))
+ {
+ if (!uniqueGroupes.Any(g => g.Id == group.Id))
+ uniqueGroupes.Add(group);
+ }
+}
+
+
+
@T("Products.Compare.Title")
+
+
+ @if (Model.Products.Count > 0)
+ {
+
@T("Products.Compare.Clear")
+
+
+
+
+
+ @foreach (var product in Model.Products)
+ {
+
+ @T("Common.Remove")
+
+ }
+
+
+
+ @foreach (var product in Model.Products)
+ {
+ var picture = product.PictureModels.FirstOrDefault();
+
+
+
+ }
+
+
+
+ @T("Products.Compare.Name")
+
+ @foreach (var product in Model.Products)
+ {
+
+ @product.Name
+
+ }
+
+
+
+ @T("Products.Compare.Price")
+
+ @foreach (var product in Model.Products)
+ {
+
+ @product.ProductPrice.Price
+
+ }
+
+ @if (Model.IncludeShortDescriptionInCompareProducts)
+ {
+
+
+ @T("Products.Compare.ShortDescription")
+
+ @foreach (var product in Model.Products)
+ {
+
+ @Html.Raw(product.ShortDescription)
+
+ }
+
+ }
+ @if (Model.IncludeFullDescriptionInCompareProducts)
+ {
+
+
+ @T("Products.Compare.FullDescription")
+
+ @foreach (var product in Model.Products)
+ {
+
+ @Html.Raw(product.FullDescription)
+
+ }
+
+ }
+ @foreach (var group in uniqueGroupes)
+ {
+ if (group.Attributes.Count > 0)
+ {
+ @if (group.Id > 0)
+ {
+
+
+ @group.Name
+
+
+ }
+
+ var uniqueGroupAttributes = new List();
+ foreach (var attribute in Model.Products.SelectMany(p => p.ProductSpecificationModel.Groups.Where(g => g.Id == group.Id).SelectMany(g => g.Attributes)))
+ {
+ if (!uniqueGroupAttributes.Any(sa => sa.Id == attribute.Id))
+ uniqueGroupAttributes.Add(attribute);
+ }
+ @foreach (var specificationAttribute in uniqueGroupAttributes)
+ {
+
+
+ @specificationAttribute.Name
+
+ @foreach (var product in Model.Products)
+ {
+ var foundProductSpec = product.ProductSpecificationModel.Groups
+ .Where(g => g.Id == group.Id)
+ .SelectMany(g => g.Attributes)
+ .FirstOrDefault(sa => sa.Id == specificationAttribute.Id);
+
+
+ @if (foundProductSpec != null)
+ {
+ for (int i = 0; i < foundProductSpec.Values.Count; i++)
+ {
+ var value = foundProductSpec.Values[i];
+
+ if (string.IsNullOrEmpty(value.ColorSquaresRgb))
+ {
+ @Html.Raw(value.ValueRaw)
+ if (i != foundProductSpec.Values.Count - 1)
+ {
+ ,
+ }
+ }
+ else
+ {
+
+
+
+
+
+ }
+ }
+ }
+ else
+ {
+
+ }
+
+ }
+
+ }
+ }
+ }
+
+
+
+ }
+ else
+ {
+
+
+ @T("Products.Compare.NoItems")
+
+
+ }
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/CustomerProductReviews.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/CustomerProductReviews.cshtml
new file mode 100644
index 0000000..ee96b6d
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/CustomerProductReviews.cshtml
@@ -0,0 +1,104 @@
+@using Nop.Core.Domain.Catalog
+@inject Nop.Services.Html.IHtmlFormatter htmlFormatter
+@model CustomerProductReviewsModel
+@{
+ Layout = "_ColumnsTwo";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.CustomerProductReviews").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-account-page");
+ NopHtml.AppendPageCssClassParts("html-my-product-reviews-list-page");
+}
+@section left
+{
+ @await Component.InvokeAsync(typeof(CustomerNavigationViewComponent), new { selectedTabId = CustomerNavigationEnum.ProductReviews })
+}
+
+
+
@T("Account.MyAccount") - @T("Account.CustomerProductReviews")
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerProductReviewsTop, additionalData = Model })
+ @if (Model.ProductReviews.Count > 0)
+ {
+ foreach (var review in Model.ProductReviews)
+ {
+ var ratingPercent = review.Rating * 20;
+
+
+
+ @review.Title @(!string.IsNullOrEmpty(review.ApprovalStatus) ? $" - {review.ApprovalStatus}" : null)
+
+
+
+
+
+ @Html.Raw(htmlFormatter.FormatText(review.ReviewText, false, true, false, false, false, false))
+
+ @foreach (var reviewType in review.AdditionalProductReviewList.Where(x => x.Rating > 0))
+ {
+ var ratingExtPercent = reviewType.Rating * 20;
+
+
+ @reviewType.Name
+
+
+
+
+ }
+
+
+ @T("Account.CustomerProductReviews.ProductReviewFor"):
+ @review.ProductName
+
+
+
|
+
+ @T("Reviews.Date"):
+ @review.WrittenOnStr
+
+
+ @if (!string.IsNullOrEmpty(review.ReplyText))
+ {
+
+
+
+ @Html.Raw(htmlFormatter.FormatText(review.ReplyText, false, true, false, false, false, false))
+
+
+ }
+
+
+ }
+ var pager = await Html.PagerAsync(Model.PagerModel);
+ if (!string.IsNullOrEmpty(await pager.RenderHtmlContentAsync()))
+ {
+
+ }
+ }
+ else
+ {
+
+
+ @T("Account.CustomerProductReviews.NoRecords")
+
+
+ }
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerProductReviewsBottom, additionalData = Model })
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/ProductEmailAFriend.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/ProductEmailAFriend.cshtml
new file mode 100644
index 0000000..b7947f6
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/ProductEmailAFriend.cshtml
@@ -0,0 +1,84 @@
+@model ProductEmailAFriendModel
+@using Nop.Core.Domain.Catalog
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(Model.ProductName);
+ //page class
+ NopHtml.AddTitleParts(T("PageTitle.ProductEmailAFriend").Text);
+ NopHtml.AppendPageCssClassParts("html-email-a-friend-page");
+}
+
+
+
@T("Products.EmailAFriend.Title")
+
+
+
+ @if (Model.SuccessfullySent)
+ {
+
+ @Model.Result
+
+ }
+ else
+ {
+
+
+
+
+
+
+ @T("Products.EmailAFriend.Button")
+
+
+
+
+ }
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/ProductTemplate.Grouped.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/ProductTemplate.Grouped.cshtml
new file mode 100644
index 0000000..37491e8
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/ProductTemplate.Grouped.cshtml
@@ -0,0 +1,260 @@
+@model ProductDetailsModel
+
+@using Nop.Core
+@using Nop.Core.Domain.Catalog
+@using Nop.Core.Domain.Seo
+@using Nop.Services.Html
+
+@inject IHtmlFormatter htmlFormatter
+@inject IWebHelper webHelper
+@inject SeoSettings seoSettings
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(!string.IsNullOrEmpty(Model.MetaTitle) ? Model.MetaTitle : Model.Name);
+ //meta
+ NopHtml.AddMetaDescriptionParts(Model.MetaDescription);
+ NopHtml.AddMetaKeywordParts(Model.MetaKeywords);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-product-details-page");
+
+ //canonical URL
+ if (seoSettings.CanonicalUrlsEnabled)
+ {
+ var productUrl = Url.RouteUrl(new { SeName = Model.SeName }, webHelper.GetCurrentRequestProtocol()).ToLowerInvariant();
+ NopHtml.AddCanonicalUrlParts(productUrl, seoSettings.QueryStringInCanonicalUrlsEnabled);
+ }
+
+ //open graph META tags
+ if (seoSettings.OpenGraphMetaTags)
+ {
+ NopHtml.AddHeadCustomParts(" ");
+ NopHtml.AddHeadCustomParts(" ");
+ NopHtml.AddHeadCustomParts(" ");
+ NopHtml.AddHeadCustomParts(" ");
+ NopHtml.AddHeadCustomParts(" ");
+ NopHtml.AddHeadCustomParts(" ");
+ NopHtml.AddHeadCustomParts(" ");
+ }
+
+ //Twitter META tags
+ if (seoSettings.TwitterMetaTags)
+ {
+ NopHtml.AddHeadCustomParts(" ");
+ NopHtml.AddHeadCustomParts(" ");
+ NopHtml.AddHeadCustomParts(" ");
+ NopHtml.AddHeadCustomParts(" ");
+ NopHtml.AddHeadCustomParts(" ");
+ NopHtml.AddHeadCustomParts(" ");
+ }
+}
+
+@section Breadcrumb
+ {
+ @await Html.PartialAsync("_ProductBreadcrumb", Model.Breadcrumb)
+}
+@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsAfterBreadcrumb, additionalData = Model })
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsTop, additionalData = Model })
+
+ @if (seoSettings.MicrodataEnabled)
+ {
+
+ }
+
+
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsEssentialTop, additionalData = Model })
+
+ @await Html.PartialAsync("_ProductDetailsPictures", Model)
+
+ @await Html.PartialAsync("_ProductDetailsVideos", Model)
+
+
+
+ @await Html.PartialAsync("_Discontinued", Model)
+
+
+ @Model.Name
+
+
+ @if (!string.IsNullOrEmpty(Model.ShortDescription))
+ {
+
+ @Html.Raw(Model.ShortDescription)
+
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsOverviewTop, additionalData = Model })
+
+ @await Html.PartialAsync("_ProductReviewOverview", Model.ProductReviewOverview)
+
+ @await Html.PartialAsync("_ProductManufacturers", Model.ProductManufacturers)
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsInsideOverviewButtonsBefore, additionalData = Model })
+ @await Html.PartialAsync("_CompareProductsButton", Model)
+ @await Html.PartialAsync("_ProductEmailAFriendButton", Model)
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsInsideOverviewButtonsAfter, additionalData = Model })
+
+ @await Html.PartialAsync("_ShareButton", Model)
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsOverviewBottom, additionalData = Model })
+
+
+
+
+
+
+
+
+
+
+ @if (!String.IsNullOrEmpty(Model.FullDescription))
+ {
+
+ @Html.Raw(Model.FullDescription)
+
+ }
+
+
+ @await Html.PartialAsync("_ProductTags", Model.ProductTags)
+
+
+ @await Html.PartialAsync("_ProductSpecifications", Model.ProductSpecificationModel)
+
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsEssentialBottom, additionalData = Model })
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsBeforeCollateral, additionalData = Model })
+
+
+
+
+ @foreach (var variant in Model.AssociatedProducts)
+ {
+
+
+ @if (!string.IsNullOrWhiteSpace(variant.DefaultPictureModel.ImageUrl))
+ {
+
+
+
+ }
+
+ @if (!string.IsNullOrWhiteSpace(variant.Name))
+ {
+
+ @variant.Name
+
+ }
+ @if (!string.IsNullOrWhiteSpace(variant.ShortDescription))
+ {
+
+ @Html.Raw(variant.ShortDescription)
+
+ }
+
+ @await Html.PartialAsync("_Availability", variant)
+
+ @await Html.PartialAsync("_SKU_Man_GTIN_Ven", variant)
+
+ @await Html.PartialAsync("_DeliveryInfo", variant)
+
+ @await Html.PartialAsync("_DownloadSample", variant)
+
+ @{
+ var dataDictAttributes = new ViewDataDictionary(ViewData);
+ dataDictAttributes.TemplateInfo.HtmlFieldPrefix = $"attributes_{variant.Id}";
+ @await Html.PartialAsync("_ProductAttributes", variant, dataDictAttributes)
+ }
+
+ @{
+ var dataDictGiftCard = new ViewDataDictionary(ViewData);
+ dataDictGiftCard.TemplateInfo.HtmlFieldPrefix = $"giftcard_{variant.Id}";
+ @await Html.PartialAsync("_GiftCardInfo", variant.GiftCard, dataDictGiftCard)
+ }
+
+ @{
+ var dataDictRental = new ViewDataDictionary(ViewData);
+ dataDictRental.TemplateInfo.HtmlFieldPrefix = $"rental_{variant.Id}";
+ @await Html.PartialAsync("_RentalInfo", variant, dataDictRental)
+ }
+
+ @{
+ var dataDictPrice = new ViewDataDictionary(ViewData);
+ dataDictPrice.TemplateInfo.HtmlFieldPrefix = $"price_{variant.Id}";
+ @await Html.PartialAsync("_ProductPrice", variant.ProductPrice, dataDictPrice)
+ }
+
+ @await Html.PartialAsync("_ProductTierPrices", variant.TierPrices)
+ @{
+ var dataDictAddToCart = new ViewDataDictionary(ViewData);
+ dataDictAddToCart.TemplateInfo.HtmlFieldPrefix = $"addtocart_{variant.Id}";
+ @await Html.PartialAsync("_AddToCart", variant.AddToCart, dataDictAddToCart)
+ }
+
+ @{
+ var dataDictEstimateShipping = new ViewDataDictionary(ViewData);
+ dataDictEstimateShipping.TemplateInfo.HtmlFieldPrefix = $"estimate_shipping_{variant.Id}";
+ @await Html.PartialAsync("_ProductEstimateShipping", variant.ProductEstimateShipping, dataDictEstimateShipping)
+ }
+
+ @{
+ var dataDictAddToWishlist = new ViewDataDictionary(ViewData);
+ dataDictAddToWishlist.TemplateInfo.HtmlFieldPrefix = $"addtocart_{variant.Id}";
+ @await Html.PartialAsync("_AddToWishlist", variant.AddToCart, dataDictAddToWishlist)
+ }
+
+
+
+
+ }
+ @if (!Model.AssociatedProducts.Any())
+ {
+
+ @T("Products.NoAssociatedProducts")
+
+ }
+
+ @await Html.PartialAsync("_ProductSpecifications", Model.ProductSpecificationModel)
+ @await Html.PartialAsync("_ProductTags", Model.ProductTags)
+
+
+ @*we do not display "also purchased" for grouped products
+ @await Component.InvokeAsync(typeof(ProductsAlsoPurchasedViewComponent), new { productId = Model.Id })*@
+ @await Component.InvokeAsync(typeof(RelatedProductsViewComponent), new { productId = Model.Id })
+
+
+
+ @if (Model.ProductReviewOverview.AllowCustomerReviews)
+ {
+ @await Html.PartialAsync("_ProductReviews", Model.ProductReviews)
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsBottom, additionalData = Model })
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/ProductTemplate.Simple.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/ProductTemplate.Simple.cshtml
new file mode 100644
index 0000000..0994653
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/ProductTemplate.Simple.cshtml
@@ -0,0 +1,220 @@
+@model ProductDetailsModel
+
+@using Nop.Core
+@using Nop.Core.Domain.Catalog
+@using Nop.Core.Domain.Seo
+@using Nop.Services.Html
+
+@inject IHtmlFormatter htmlFormatter
+@inject IWebHelper webHelper
+@inject SeoSettings seoSettings
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(!string.IsNullOrEmpty(Model.MetaTitle) ? Model.MetaTitle : Model.Name);
+ //meta
+ NopHtml.AddMetaDescriptionParts(Model.MetaDescription);
+ NopHtml.AddMetaKeywordParts(Model.MetaKeywords);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-product-details-page");
+
+ //canonical URL
+ if (seoSettings.CanonicalUrlsEnabled)
+ {
+ var productUrl = Url.RouteUrl(new { SeName = Model.SeName }, webHelper.GetCurrentRequestProtocol()).ToLowerInvariant();
+ NopHtml.AddCanonicalUrlParts(productUrl, seoSettings.QueryStringInCanonicalUrlsEnabled);
+ }
+
+ //open graph META tags
+ if (seoSettings.OpenGraphMetaTags)
+ {
+ NopHtml.AddHeadCustomParts(" ");
+ NopHtml.AddHeadCustomParts(" ");
+ NopHtml.AddHeadCustomParts(" ");
+ NopHtml.AddHeadCustomParts(" ");
+ NopHtml.AddHeadCustomParts(" ");
+ NopHtml.AddHeadCustomParts(" ");
+ NopHtml.AddHeadCustomParts(" ");
+ }
+
+ //Twitter META tags
+ if (seoSettings.TwitterMetaTags)
+ {
+ NopHtml.AddHeadCustomParts(" ");
+ NopHtml.AddHeadCustomParts(" ");
+ NopHtml.AddHeadCustomParts(" ");
+ NopHtml.AddHeadCustomParts(" ");
+ NopHtml.AddHeadCustomParts(" ");
+ NopHtml.AddHeadCustomParts(" ");
+ }
+}
+
+@section Breadcrumb
+{
+ @await Html.PartialAsync("_ProductBreadcrumb", Model.Breadcrumb)
+}
+@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsAfterBreadcrumb, additionalData = Model })
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsTop, additionalData = Model })
+
+ @if (seoSettings.MicrodataEnabled)
+ {
+
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsEssentialTop, additionalData = Model })
+
+
+
+
+
+ @await Html.PartialAsync("_ProductDetailsPictures", Model)
+
+ @await Html.PartialAsync("_ProductDetailsVideos", Model)
+
+
+
+ @await Html.PartialAsync("_Discontinued", Model)
+
+
+ @Model.Name
+
+
+ @if (!string.IsNullOrEmpty(Model.ShortDescription))
+ {
+
+ @Html.Raw(Model.ShortDescription)
+
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsOverviewTop, additionalData = Model })
+
+ @await Html.PartialAsync("_ProductReviewOverview", Model.ProductReviewOverview)
+
+ @await Html.PartialAsync("_ProductManufacturers", Model.ProductManufacturers)
+
+ @await Html.PartialAsync("_Availability", Model)
+
+ @await Html.PartialAsync("_SKU_Man_GTIN_Ven", Model)
+
+ @await Html.PartialAsync("_DeliveryInfo", Model)
+
+ @await Html.PartialAsync("_DownloadSample", Model)
+
+ @{
+ var dataDictAttributes = new ViewDataDictionary(ViewData);
+ dataDictAttributes.TemplateInfo.HtmlFieldPrefix = $"attributes_{Model.Id}";
+ @await Html.PartialAsync("_ProductAttributes", Model, dataDictAttributes)
+ }
+
+ @{
+ var dataDictGiftCard = new ViewDataDictionary(ViewData);
+ dataDictGiftCard.TemplateInfo.HtmlFieldPrefix = $"giftcard_{Model.Id}";
+ @await Html.PartialAsync("_GiftCardInfo", Model.GiftCard, dataDictGiftCard)
+ }
+
+ @{
+ var dataDictRental = new ViewDataDictionary(ViewData);
+ dataDictRental.TemplateInfo.HtmlFieldPrefix = $"rental_{Model.Id}";
+ @await Html.PartialAsync("_RentalInfo", Model, dataDictRental)
+ }
+
+ @{
+ var dataDictPrice = new ViewDataDictionary(ViewData);
+ dataDictPrice.TemplateInfo.HtmlFieldPrefix = $"price_{Model.Id}";
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductPriceTop, additionalData = Model })
+ @await Html.PartialAsync("_ProductPrice", Model.ProductPrice, dataDictPrice)
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductPriceBottom, additionalData = Model })
+ @await Html.PartialAsync("_ProductTierPrices", Model.TierPrices)
+
+ var dataDictAddToCart = new ViewDataDictionary(ViewData);
+ dataDictAddToCart.TemplateInfo.HtmlFieldPrefix = $"addtocart_{Model.Id}";
+ @await Html.PartialAsync("_AddToCart", Model.AddToCart, dataDictAddToCart)
+
+ @await Html.PartialAsync("_ProductEstimateShipping", Model.ProductEstimateShipping)
+ }
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsInsideOverviewButtonsBefore, additionalData = Model })
+ @{
+ var dataDictAddToWishlist = new ViewDataDictionary(ViewData);
+ dataDictAddToWishlist.TemplateInfo.HtmlFieldPrefix = $"addtocart_{Model.Id}";
+ @await Html.PartialAsync("_AddToWishlist", Model.AddToCart, dataDictAddToWishlist)
+ }
+ @await Html.PartialAsync("_CompareProductsButton", Model)
+ @await Html.PartialAsync("_ProductEmailAFriendButton", Model)
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsInsideOverviewButtonsAfter, additionalData = Model })
+
+ @await Html.PartialAsync("_ShareButton", Model)
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsOverviewBottom, additionalData = Model })
+
+
+
+
+
+
+
+
+
+
+ @if (!String.IsNullOrEmpty(Model.FullDescription))
+ {
+
+ @Html.Raw(Model.FullDescription)
+
+ }
+
+ @if (Model.ProductTags.Count > 0)
+ {
+
+ @await Html.PartialAsync("_ProductTags", Model.ProductTags)
+
+ }
+ @if (Model.ProductSpecificationModel.Groups.SelectMany(g => g.Attributes).ToList().Count > 0)
+ {
+
+ @await Html.PartialAsync("_ProductSpecifications", Model.ProductSpecificationModel)
+
+ }
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsEssentialBottom, additionalData = Model })
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsBeforeCollateral, additionalData = Model })
+
+ @await Html.PartialAsync("_ProductSpecifications", Model.ProductSpecificationModel)
+ @await Html.PartialAsync("_ProductTags", Model.ProductTags)
+
+ @await Component.InvokeAsync(typeof(ProductsAlsoPurchasedViewComponent), new { productId = Model.Id })
+ @await Component.InvokeAsync(typeof(RelatedProductsViewComponent), new { productId = Model.Id })
+
+
+
+ @if (Model.ProductReviewOverview.AllowCustomerReviews)
+ {
+ @await Html.PartialAsync("_ProductReviews", Model.ProductReviews)
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsBottom, additionalData = Model })
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/RecentlyViewedProducts.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/RecentlyViewedProducts.cshtml
new file mode 100644
index 0000000..eb0ed77
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/RecentlyViewedProducts.cshtml
@@ -0,0 +1,35 @@
+@model IList
+@{
+ Layout = "_ColumnsTwo";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.RecentlyViewedProducts").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-recently-viewed-products-page");
+}
+
+
+
@T("Products.RecentlyViewedProducts")
+
+
+ @if (Model.Count > 0)
+ {
+
+
+
+ @foreach (var product in Model)
+ {
+
+
+
+ @await Html.PartialAsync("_ProductBox", product)
+
+
+
+ }
+
+
+
+ }
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_AddToCart.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_AddToCart.cshtml
new file mode 100644
index 0000000..cfc708c
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_AddToCart.cshtml
@@ -0,0 +1,104 @@
+@model ProductDetailsModel.AddToCartModel
+@using Nop.Core.Domain.Orders
+@if (Model.UpdatedShoppingCartItemId > 0)
+{
+
+}
+@if (!Model.DisableBuyButton || Model.CustomerEntersPrice)
+{
+
+ @if (Model.CustomerEntersPrice)
+ {
+
+ }
+ @if (!string.IsNullOrEmpty(Model.MinimumQuantityNotification))
+ {
+
@Model.MinimumQuantityNotification
+ }
+ @if (!Model.DisableBuyButton)
+ {
+
+
+ @if (Model.AllowedQuantities.Count > 0)
+ {
+
+
+ }
+ else
+ {
+
+
+ }
+ @{
+ var addToCartText = "";
+ if (Model.UpdatedShoppingCartItemId > 0 && Model.UpdateShoppingCartItemType.HasValue && Model.UpdateShoppingCartItemType.Value == ShoppingCartType.ShoppingCart)
+ {
+ addToCartText = T("ShoppingCart.AddToCart.Update").Text;
+ }
+ else
+ {
+ addToCartText = T("ShoppingCart.AddToCart").Text;
+ if (Model.IsRental)
+ {
+ addToCartText = T("ShoppingCart.Rent").Text;
+ }
+ if (Model.AvailableForPreOrder)
+ {
+ addToCartText = T("ShoppingCart.PreOrder").Text;
+ }
+ }
+ @addToCartText
+ }
+
+ if (!string.IsNullOrEmpty(Model.PreOrderAvailabilityStartDateTimeUserTime))
+ {
+
+ @T("ShoppingCart.PreOrderAvailability"):
+ @Html.Raw(Model.PreOrderAvailabilityStartDateTimeUserTime)
+
+ }
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsAddInfo, additionalData = Model })
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_AddToWishlist.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_AddToWishlist.cshtml
new file mode 100644
index 0000000..f3ad5fb
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_AddToWishlist.cshtml
@@ -0,0 +1,17 @@
+@model ProductDetailsModel.AddToCartModel
+@using Nop.Core.Domain.Orders
+@if (!Model.DisableWishlistButton)
+{
+ var addToWishlistText = "";
+ if (Model.UpdatedShoppingCartItemId > 0 && Model.UpdateShoppingCartItemType.HasValue && Model.UpdateShoppingCartItemType.Value == ShoppingCartType.Wishlist)
+ {
+ addToWishlistText = T("Products.Wishlist.AddToWishlist.Update").Text;
+ }
+ else
+ {
+ addToWishlistText = T("Products.Wishlist.AddToWishlist").Text;
+ }
+
+ @addToWishlistText
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_Availability.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_Availability.cshtml
new file mode 100644
index 0000000..92204f6
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_Availability.cshtml
@@ -0,0 +1,14 @@
+@model ProductDetailsModel
+@if (!string.IsNullOrWhiteSpace(Model.StockAvailability) || Model.DisplayBackInStockSubscription)
+{
+
+ @if (!string.IsNullOrWhiteSpace(Model.StockAvailability))
+ {
+
+ @T("Products.Availability"):
+ @Model.StockAvailability
+
+ }
+ @await Html.PartialAsync("_BackInStockSubscription", Model)
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_BackInStockSubscription.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_BackInStockSubscription.cshtml
new file mode 100644
index 0000000..e5c7463
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_BackInStockSubscription.cshtml
@@ -0,0 +1,15 @@
+@model ProductDetailsModel
+@if (Model.DisplayBackInStockSubscription)
+{
+
+ @T("BackInStockSubscriptions.NotifyMeWhenAvailable")
+
+
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_CompareProductsButton.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_CompareProductsButton.cshtml
new file mode 100644
index 0000000..a7c78d5
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_CompareProductsButton.cshtml
@@ -0,0 +1,10 @@
+@model ProductDetailsModel
+@{
+ var addtocomparelink = Url.RouteUrl("AddProductToCompare", new { productId = Model.Id });
+}
+@if (Model.CompareProductsEnabled)
+{
+
+ @T("Products.Compare.AddToCompareList")
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_DeliveryInfo.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_DeliveryInfo.cshtml
new file mode 100644
index 0000000..fc33c6e
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_DeliveryInfo.cshtml
@@ -0,0 +1,30 @@
+@model ProductDetailsModel
+@if (Model.FreeShippingNotificationEnabled && Model.IsFreeShipping || !string.IsNullOrWhiteSpace(Model.DeliveryDate))
+{
+
+
+
+ @if (Model.FreeShippingNotificationEnabled && Model.IsFreeShipping)
+ {
+
+
+ @T("Products.FreeShipping")
+
+ }
+ @if (!string.IsNullOrWhiteSpace(Model.DeliveryDate))
+ {
+
+ @T("Products.DeliveryDate"):
+ @Model.DeliveryDate
+
+ }
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_Discontinued.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_Discontinued.cshtml
new file mode 100644
index 0000000..43987e3
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_Discontinued.cshtml
@@ -0,0 +1,7 @@
+@model ProductDetailsModel
+@if (Model.DisplayDiscontinuedMessage)
+{
+
+
@T("Products.Discontinued")
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_DownloadSample.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_DownloadSample.cshtml
new file mode 100644
index 0000000..f8a9ccd
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_DownloadSample.cshtml
@@ -0,0 +1,7 @@
+@model ProductDetailsModel
+@if (Model.HasSampleDownload)
+{
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_GiftCardInfo.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_GiftCardInfo.cshtml
new file mode 100644
index 0000000..f3a3746
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_GiftCardInfo.cshtml
@@ -0,0 +1,47 @@
+@model ProductDetailsModel.GiftCardModel
+@if (Model.IsGiftCard)
+{
+
+
+ @if (Model.GiftCardType == Nop.Core.Domain.Catalog.GiftCardType.Virtual)
+ {
+
+ }
+
+ @if (Model.GiftCardType == Nop.Core.Domain.Catalog.GiftCardType.Virtual)
+ {
+
+ }
+
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductAttributes.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductAttributes.cshtml
new file mode 100644
index 0000000..c3f567e
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductAttributes.cshtml
@@ -0,0 +1,555 @@
+@model ProductDetailsModel
+@using Nop.Core
+@using Nop.Core.Domain.Catalog
+@using Nop.Core.Domain.Media
+@using System.Text
+@using Nop.Services.Catalog
+@using Nop.Services.Media
+@inject IDownloadService downloadService
+@inject CatalogSettings catalogSettings
+@if (Model.ProductAttributes.Count > 0)
+{
+
+
+ @foreach (var attribute in Model.ProductAttributes)
+ {
+ var controlId = $"{NopCatalogDefaults.ProductAttributePrefix}{attribute.Id}";
+ var textPrompt = !string.IsNullOrEmpty(attribute.TextPrompt) ? attribute.TextPrompt : attribute.Name;
+
+
+
+
+ @switch (attribute.AttributeControlType)
+ {
+ case AttributeControlType.DropdownList:
+ {
+
value.CustomerEntersQty) ? Html.Raw($"onchange=\"showHideDropdownQuantity('{controlId}')\"") : null)>
+ @T("Products.ProductAttributes.DropdownList.DefaultItem")
+ @foreach (var attributeValue in attribute.Values)
+ {
+ var attributeName = attributeValue.PriceAdjustmentValue == 0 ?
+ attributeValue.Name :
+ T("Products.ProductAttributes.PriceAdjustment", attributeValue.Name, attributeValue.PriceAdjustment,
+ attributeValue.CustomerEntersQty ? T("Products.ProductAttributes.PriceAdjustment.PerItem").Text : string.Empty).Text;
+ @attributeName
+ }
+
+ foreach (var attributeValue in attribute.Values.Where(value => value.CustomerEntersQty))
+ {
+
+
+
@(T("Products.ProductAttributes.PriceAdjustment.Quantity").Text)
+
+
+
+
+
+ }
+
+ }
+ break;
+ case AttributeControlType.RadioList:
+ {
+
+
+ }
+ break;
+ case AttributeControlType.Checkboxes:
+ case AttributeControlType.ReadonlyCheckboxes:
+ {
+
+ @foreach (var attributeValue in attribute.Values)
+ {
+ var attributeName = string.IsNullOrEmpty(attributeValue.PriceAdjustment) ?
+ attributeValue.Name :
+ T("Products.ProductAttributes.PriceAdjustment", attributeValue.Name, attributeValue.PriceAdjustment,
+ attributeValue.CustomerEntersQty ? T("Products.ProductAttributes.PriceAdjustment.PerItem").Text : string.Empty).Text;
+
+
+
+ @attributeName
+
+
+ @if (attributeValue.CustomerEntersQty)
+ {
+
+
+
@(T("Products.ProductAttributes.PriceAdjustment.Quantity").Text)
+
+
+
+
+
+
+ }
+
+ }
+
+ }
+ break;
+ case AttributeControlType.TextBox:
+ {
+
+ }
+ break;
+ case AttributeControlType.MultilineTextbox:
+ {
+
@(attribute.DefaultValue)
+ }
+ break;
+ case AttributeControlType.Datepicker:
+ {
+
+ }
+ break;
+ case AttributeControlType.FileUpload:
+ {
+ Download download = null;
+ if (!string.IsNullOrEmpty(attribute.DefaultValue))
+ {
+ download = await downloadService.GetDownloadByGuidAsync(new Guid(attribute.DefaultValue));
+ }
+
+ //register CSS and JS
+
+
+
+ //ex. ['jpg', 'jpeg', 'png', 'gif'] or []
+ var allowedFileExtensions = string.Join(", ", attribute.AllowedFileExtensions.Select(x => "'" + x.Trim() + "'").ToList());
+
+ if (download != null)
+ {
+
+ }
+ else
+ {
+
+ }
+
+ @*fine uploader container*@
+
+ @*fine uploader template (keep it synchronized to \Content\fineuploader\templates\default.html)*@
+
+
+
+
+
+ }
+ break;
+ case AttributeControlType.ColorSquares:
+ {
+
+ foreach (var attributeValue in attribute.Values.Where(value => value.CustomerEntersQty))
+ {
+
+
+
@(T("Products.ProductAttributes.PriceAdjustment.Quantity").Text)
+
+
+
+
+
+ }
+
+ }
+ break;
+ case AttributeControlType.ImageSquares:
+ {
+
+ foreach (var attributeValue in attribute.Values.Where(value => value.CustomerEntersQty))
+ {
+
+
+
@(T("Products.ProductAttributes.PriceAdjustment.Quantity").Text)
+
+
+
+
+
+ }
+
+ }
+ break;
+ }
+
+
+
+
+ }
+
+
+
+
+ if (Model.AllowAddingOnlyExistingAttributeCombinations && catalogSettings.AttributeValueOutOfStockDisplayType == AttributeValueOutOfStockDisplayType.Disable)
+ {
+
+
+
+ }
+
+ //dynamic update support
+ var attributesHaveConditions = Model.ProductAttributes.Any(x => x.HasCondition);
+ var attributesHaveAssociatedPictures = Model.ProductAttributes.Any(x => x.ProductId > 0);
+ var attributeChangeScriptsBuilder = new StringBuilder();
+ var attributeChangeHandlerFuncName = $"attribute_change_handler_{Model.Id}";
+ if (catalogSettings.AjaxProcessAttributeChange)
+ {
+ if (Model.AllowAddingOnlyExistingAttributeCombinations && catalogSettings.AttributeValueOutOfStockDisplayType == AttributeValueOutOfStockDisplayType.Disable)
+ {
+
+ }
+ else
+ {
+ //generate change event script
+ foreach (var attribute in Model.ProductAttributes)
+ {
+ var controlId = $"{NopCatalogDefaults.ProductAttributePrefix}{attribute.Id}";
+ switch (attribute.AttributeControlType)
+ {
+ case AttributeControlType.DropdownList:
+ {
+ attributeChangeScriptsBuilder.AppendFormat("$('#{0}').on('change', function(){{{1}();}});\n", controlId, attributeChangeHandlerFuncName);
+ }
+ break;
+ case AttributeControlType.RadioList:
+ case AttributeControlType.ColorSquares:
+ case AttributeControlType.ImageSquares:
+ {
+ foreach (var attributeValue in attribute.Values)
+ {
+ attributeChangeScriptsBuilder.AppendFormat("$('#{0}_{1}').on('click', function(){{{2}();}});\n", controlId, attributeValue.Id, attributeChangeHandlerFuncName);
+ }
+ }
+ break;
+ case AttributeControlType.Checkboxes:
+ case AttributeControlType.ReadonlyCheckboxes:
+ {
+ foreach (var attributeValue in attribute.Values)
+ {
+ attributeChangeScriptsBuilder.AppendFormat("$('#{0}_{1}').on('click', function(){{{2}();}});\n", controlId, attributeValue.Id, attributeChangeHandlerFuncName);
+ }
+ }
+ break;
+ default:
+ break;
+ }
+ }
+ }
+
+ foreach (var attribute in Model.ProductAttributes)
+ {
+ foreach (var attributeValue in attribute.Values.Where(value => value.CustomerEntersQty))
+ {
+ var controlId = $"{NopCatalogDefaults.ProductAttributePrefix}{attribute.Id}";
+ attributeChangeScriptsBuilder.AppendFormat("$('#{0}_{1}_qty').on('input propertychange paste', function(){{{2}();}});\n", controlId, attributeValue.Id, attributeChangeHandlerFuncName);
+ }
+ }
+
+ //render scripts
+ //almost the same implementation is used in the \Views\Product\_RentalInfo.cshtml file
+
+ }
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductBreadcrumb.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductBreadcrumb.cshtml
new file mode 100644
index 0000000..3033559
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductBreadcrumb.cshtml
@@ -0,0 +1,46 @@
+@model ProductDetailsModel.ProductBreadcrumbModel
+@using Nop.Core.Domain.Catalog
+@using Nop.Core.Domain.Common
+@using Nop.Core.Domain.Seo
+@inject CommonSettings commonSettings
+@inject SeoSettings seoSettings
+@{
+ var breadcrumbDelimiter = commonSettings.BreadcrumbDelimiter;
+}
+@if (Model.Enabled)
+{
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductBreadcrumbBefore, additionalData = Model })
+
+
+
+ @T("Products.Breadcrumb.Top")
+
+
+ @breadcrumbDelimiter
+
+ @foreach (var category in Model.CategoryBreadcrumb)
+ {
+
+
+ @category.Name
+
+ @breadcrumbDelimiter
+
+ }
+
+
+ @Model.ProductName
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductBreadcrumbAfter, additionalData = Model })
+
+
+ @if (seoSettings.MicrodataEnabled)
+ {
+
+ }
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductDetailsPictures.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductDetailsPictures.cshtml
new file mode 100644
index 0000000..8839850
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductDetailsPictures.cshtml
@@ -0,0 +1,96 @@
+@model ProductDetailsModel
+
+
+
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsBeforePictures, additionalData = Model })
+
+ @if (Model.DefaultPictureZoomEnabled && Model.PictureModels.Count == 1)
+ {
+
+
+
+
+ }
+ else
+ {
+
+ }
+
+ @if (Model.PictureModels.Count > 1 && Model.DefaultPictureZoomEnabled)
+ {
+
+ @foreach (var picture in Model.PictureModels)
+ {
+
+
+
+ }
+
+
+
+ }
+ else
+ {
+ if (Model.PictureModels.Count > 1)
+ {
+
+ @foreach (var picture in Model.PictureModels)
+ {
+
+
+
+ }
+
+
+ }
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsAfterPictures, additionalData = Model })
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductEmailAFriendButton.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductEmailAFriendButton.cshtml
new file mode 100644
index 0000000..a82e3b9
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductEmailAFriendButton.cshtml
@@ -0,0 +1,7 @@
+@model ProductDetailsModel
+@if (Model.EmailAFriendEnabled)
+{
+
+ @T("Products.EmailAFriend")
+
+}
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductEstimateShipping.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductEstimateShipping.cshtml
new file mode 100644
index 0000000..14d41a4
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductEstimateShipping.cshtml
@@ -0,0 +1,146 @@
+@model ProductDetailsModel.ProductEstimateShippingModel
+
+@if (Model.Enabled)
+{
+
+
+
+
+
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductManufacturers.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductManufacturers.cshtml
new file mode 100644
index 0000000..18dd8d3
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductManufacturers.cshtml
@@ -0,0 +1,26 @@
+@model IList
+@using Nop.Core.Domain.Catalog
+@if (Model.Count > 0)
+{
+
+ @if (Model.Count == 1)
+ {
+
@T("Products.Manufacturer"):
+ }
+ else
+ {
+
@T("Products.Manufacturers"):
+ }
+
+ @for (var i = 0; i < Model.Count; i++)
+ {
+ var item = Model[i];
+ @item.Name
+ if (i != Model.Count - 1)
+ {
+ ,
+ }
+ }
+
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductPrice.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductPrice.cshtml
new file mode 100644
index 0000000..662b075
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductPrice.cshtml
@@ -0,0 +1,77 @@
+@model ProductDetailsModel.ProductPriceModel
+@using Nop.Core
+@using Nop.Core.Domain.Tax
+@inject IWorkContext workContext
+@if (!Model.CustomerEntersPrice)
+{
+
+ @if (Model.CallForPrice)
+ {
+ @*call for price*@
+
+ @T("Products.CallForPrice")
+
+ }
+ else
+ {
+ if (Model.IsRental)
+ {
+
+ @T("Products.Price.RentalPrice"):
+ @Model.RentalPrice
+
+ }
+ if (!string.IsNullOrWhiteSpace(Model.OldPrice))
+ {
+ @*old price*@
+
+ @T("Products.Price.OldPrice"):
+ @Model.OldPrice
+
+ }
+
+ @if (!string.IsNullOrWhiteSpace(Model.OldPrice) || !string.IsNullOrWhiteSpace(Model.PriceWithDiscount))
+ {
+ @*display "Price:" label if we have old price or discounted one*@
+ @T("Products.Price"):
+ }
+ @*render price*@
+ id="price-value-@(Model.ProductId)" class="price-value-@(Model.ProductId)" }>
+ @Html.Raw(Model.Price)
+
+
+ if (!string.IsNullOrWhiteSpace(Model.PriceWithDiscount))
+ {
+ @*discounted price*@
+
+ @T("Products.Price.WithDiscount"):
+
+ @Html.Raw(Model.PriceWithDiscount)
+
+
+ }
+ if (!string.IsNullOrEmpty(Model.BasePricePAngV))
+ {
+
+ @Model.BasePricePAngV
+
+ }
+ if (Model.DisplayTaxShippingInfo)
+ {
+ var inclTax = await workContext.GetTaxDisplayTypeAsync() == TaxDisplayType.IncludingTax;
+ //tax info is already included in the price (incl/excl tax). that's why we display only shipping info here
+ //of course, you can modify appropriate locales to include VAT info there
+
+ @T(inclTax ? "Products.Price.TaxShipping.InclTax" : "Products.Price.TaxShipping.ExclTax", Url.RouteTopicUrl("shippinginfo"))
+
+ }
+ }
+
+}
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductReviewHelpfulness.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductReviewHelpfulness.cshtml
new file mode 100644
index 0000000..e726155
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductReviewHelpfulness.cshtml
@@ -0,0 +1,48 @@
+@model ProductReviewHelpfulnessModel
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductReviewOverview.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductReviewOverview.cshtml
new file mode 100644
index 0000000..41ace4c
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductReviewOverview.cshtml
@@ -0,0 +1,36 @@
+@model ProductReviewOverviewModel
+@{
+ var ratingPercent = 0;
+ var noReviews = Model.TotalReviews == 0;
+ if (!noReviews)
+ {
+ ratingPercent = ((Model.RatingSum * 100) / Model.TotalReviews) / 5;
+ }
+}
+@if (Model.AllowCustomerReviews)
+{
+
+
+
+ @if (Model.TotalReviews > 0)
+ {
+
+ }
+ @if (Model.CanAddNewReview && Model.CanCurrentCustomerLeaveReview)
+ {
+
+ }
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductReviews.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductReviews.cshtml
new file mode 100644
index 0000000..8595119
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductReviews.cshtml
@@ -0,0 +1,244 @@
+@model ProductReviewsModel
+
+@inject Nop.Services.Html.IHtmlFormatter htmlFormatter
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductReviewsPageTop, additionalData = Model })
+ @if (Model.Items.Count > 0)
+ {
+
+
+
+ @T("Reviews.ExistingReviews")
+
+ @foreach (var review in Model.Items)
+ {
+ var ratingPercent = review.Rating * 20;
+
+
+
+
+ @if (!string.IsNullOrEmpty(review.CustomerAvatarUrl))
+ {
+
+ @if (review.AllowViewingProfiles)
+ {
+
+
+
+ }
+ else
+ {
+
+ }
+
+ }
+
+ @Html.Raw(htmlFormatter.FormatText(review.ReviewText, false, true, false, false, false, false))
+
+
+ @foreach (var reviewType in review.AdditionalProductReviewList.Where(x => x.Rating > 0 && x.VisibleToAllCustomers))
+ {
+ var ratingExtPercent = reviewType.Rating * 20;
+
+
+ @reviewType.Name
+
+
+
+
+ @reviewType.Rating
+
+
+
+
+ }
+
+
+ @T("Reviews.From"):
+ @if (review.AllowViewingProfiles)
+ {
+ @(review.CustomerName)
+ }
+ else
+ {
+ @review.CustomerName
+ }
+
+
|
+
+ @T("Reviews.Date"):
+ @review.WrittenOnStr
+
+
+ @await Html.PartialAsync("_ProductReviewHelpfulness", review.Helpfulness)
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductReviewsPageInsideReview, additionalData = review })
+ @if (!string.IsNullOrEmpty(review.ReplyText))
+ {
+
+
+
+ @Html.Raw(htmlFormatter.FormatText(review.ReplyText, false, true, false, false, false, false))
+
+
+ }
+
+
+ }
+
+ }
+
+ @if (!Model.AddProductReview.CanCurrentCustomerLeaveReview)
+ {
+
+ @T("Reviews.OnlyRegisteredUsersCanWriteReviews")
+
+ }
+ else if (!Model.AddProductReview.CanAddNewReview)
+ {
+
+ @T("Reviews.AlreadyAddedProductReviews")
+
+ }
+ else
+ {
+
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductReviewsPageBottom, additionalData = Model })
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductSpecifications.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductSpecifications.cshtml
new file mode 100644
index 0000000..5483a4c
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductSpecifications.cshtml
@@ -0,0 +1,73 @@
+@model ProductSpecificationModel
+
+@using Nop.Core.Domain.Catalog;
+
+@if (Model.Groups.SelectMany(g => g.Attributes).ToList().Count > 0)
+{
+
+
+ @T("Products.Specs")
+
+
+
+
+
+ @T("Products.Specs.AttributeName")
+ @T("Products.Specs.AttributeValue")
+
+
+
+ @foreach (var group in Model.Groups)
+ {
+ @if (group.Attributes.Count > 0)
+ {
+ @if (group.Id > 0)
+ {
+
+ }
+
+ @for (int i = 0; i < group.Attributes.Count; i++)
+ {
+ var attr = group.Attributes[i];
+
+
+
+ @attr.Name
+
+
+ @for (int j = 0; j < attr.Values.Count; j++)
+ {
+ var value = attr.Values[j];
+
+ @if (!string.IsNullOrEmpty(value.ColorSquaresRgb) && (value.AttributeTypeId == (int)SpecificationAttributeType.Option))
+ {
+
+
+
+
+
+ }
+ else
+ {
+ @Html.Raw(value.ValueRaw)
+
+ if (j != attr.Values.Count - 1)
+ {
+ ,
+ }
+ }
+ }
+
+
+ }
+ }
+ }
+
+
+
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductTags.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductTags.cshtml
new file mode 100644
index 0000000..0f4f6e6
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductTags.cshtml
@@ -0,0 +1,24 @@
+@model IList
+@using Nop.Core.Domain.Catalog
+@if (Model.Count > 0)
+{
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductTierPrices.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductTierPrices.cshtml
new file mode 100644
index 0000000..d3e028c
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ProductTierPrices.cshtml
@@ -0,0 +1,39 @@
+@model IList
+@{
+ //When there is just one tier (with qty 1), there are no actual savings in the list.
+ var displayTierPrices = Model.Count > 0 && !(Model.Count == 1 && Model[0].Quantity <= 1);
+}
+@if (displayTierPrices)
+{
+
+
+ @T("Products.TierPrices")
+
+
+
+
+
+ @foreach (var tierPrice in Model)
+ {
+
+ @(tierPrice.Quantity)+
+
+ }
+
+
+
+ @foreach (var tierPrice in Model)
+ {
+
+ @tierPrice.Price
+
+ }
+
+
+
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_RentalInfo.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_RentalInfo.cshtml
new file mode 100644
index 0000000..faf2419
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_RentalInfo.cshtml
@@ -0,0 +1,89 @@
+@model ProductDetailsModel
+@using Nop.Core.Domain.Catalog
+@using Nop.Services.Helpers
+@inject CatalogSettings catalogSettings
+@inject IUserAgentHelper userAgentHelper
+@if (Model.IsRental)
+{
+
+ @{
+ var startDateControlId = $"rental_start_date_{Model.Id}";
+ var endDateControlId = $"rental_end_date_{Model.Id}";
+ var dateControlChangeHandlerFuncName = $"on_rental_datepicker_select_{Model.Id}";
+ var datePickerFormat = Html.GetJQueryDateFormat();//java-script format
+ var isMobileDevice = userAgentHelper.IsMobileDevice();
+
+
+
+
+
+ @T("Products.RentalStartDate")
+
+ *
+
+
+ readonly} />
+
+
+
+
+
+
+
+
+ @T("Products.RentalEndDate"):
+
+ *
+
+
+ readonly} />
+
+
+
+
+
+ }
+
+
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_SKU_Man_GTIN_Ven.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_SKU_Man_GTIN_Ven.cshtml
new file mode 100644
index 0000000..5af17ed
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_SKU_Man_GTIN_Ven.cshtml
@@ -0,0 +1,37 @@
+@model ProductDetailsModel
+@using Nop.Core.Domain.Catalog
+@using Nop.Core.Domain.Vendors
+
+ @*SKU*@
+ @if ((!string.IsNullOrWhiteSpace(Model.Sku) || Model.ManageInventoryMethod == ManageInventoryMethod.ManageStockByAttributes) && Model.ShowSku )
+ {
+
+ @T("Products.Sku"):
+ @Model.Sku
+
+ }
+ @*Manufacturer part number*@
+ @if ((!string.IsNullOrWhiteSpace(Model.ManufacturerPartNumber) || Model.ManageInventoryMethod == ManageInventoryMethod.ManageStockByAttributes) && Model.ShowManufacturerPartNumber)
+ {
+
+ @T("Products.ManufacturerPartNumber"):
+ @Model.ManufacturerPartNumber
+
+ }
+ @*GTIN*@
+ @if ((!string.IsNullOrWhiteSpace(Model.Gtin) || Model.ManageInventoryMethod == ManageInventoryMethod.ManageStockByAttributes) && Model.ShowGtin)
+ {
+
+ @T("Products.GTIN"):
+ @Model.Gtin
+
+ }
+ @*Vendor*@
+ @if (Model.ShowVendor)
+ {
+
+ }
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ShareButton.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ShareButton.cshtml
new file mode 100644
index 0000000..fca11d6
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Product/_ShareButton.cshtml
@@ -0,0 +1,7 @@
+@model ProductDetailsModel
+@if (!string.IsNullOrWhiteSpace(Model.PageShareCode))
+{
+
+ @Html.Raw(Model.PageShareCode)
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Profile/Components/ProfileInfo/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Profile/Components/ProfileInfo/Default.cshtml
new file mode 100644
index 0000000..a84a810
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Profile/Components/ProfileInfo/Default.cshtml
@@ -0,0 +1,52 @@
+@model ProfileInfoModel
+
+ @if (!string.IsNullOrEmpty(Model.AvatarUrl))
+ {
+
+
+
+ }
+
+
+ @T("Profile.Statistics")
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProfilePageInfoUserdetails, additionalData = Model })
+
+ @if (Model.LocationEnabled)
+ {
+
+ @T("Profile.Country"):
+ @Model.Location
+
+ }
+ @if (Model.TotalPostsEnabled)
+ {
+
+ @T("Profile.TotalPosts"):
+ @Model.TotalPosts
+
+ }
+ @if (Model.JoinDateEnabled)
+ {
+
+ @T("Profile.JoinDate"):
+ @Model.JoinDate
+
+ }
+ @if (Model.DateOfBirthEnabled)
+ {
+
+ @T("Profile.DateOfBirth"):
+ @Model.DateOfBirth
+
+ }
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProfilePageInfoUserstats, additionalData = Model })
+
+ @if (Model.PMEnabled)
+ {
+
+ @Html.RouteLink(T("Forum.PrivateMessages.PM").Text, "SendPM", new { toCustomerId = Model.CustomerProfileId }, new { @class = "pm-button" })
+
+ }
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Profile/Components/ProfilePosts/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Profile/Components/ProfilePosts/Default.cshtml
new file mode 100644
index 0000000..b7c42d7
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Profile/Components/ProfilePosts/Default.cshtml
@@ -0,0 +1,40 @@
+@model ProfilePostsModel
+@if (Model.Posts.Count > 0)
+{
+
+
+ @foreach (var item in Model.Posts)
+ {
+
+
+ @T("Profile.Topic"):
+ @Html.RouteLink(item.ForumTopicTitle, "TopicSlug", new { id = item.ForumTopicId, slug = item.ForumTopicSlug })
+
+
+
@Html.Raw(item.ForumPostText)
+
+
+ @T("Profile.PostedOn"):
+ @item.Posted
+
+
+ }
+
+}
+else
+{
+
+
+ @T("Profile.LatestPosts.NoPosts")
+
+
+}
+@{
+ var pager = await Html.PagerAsync(Model.PagerModel);
+}
+@if (!string.IsNullOrEmpty(await pager.RenderHtmlContentAsync()))
+{
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Profile/Index.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Profile/Index.cshtml
new file mode 100644
index 0000000..f164096
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Profile/Index.cshtml
@@ -0,0 +1,42 @@
+@model ProfileIndexModel
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.Profile").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-profile-page");
+}
+
+
+
@Model.ProfileTitle
+
+
+ @{
+ var selectPostsTab = Model.ForumsEnabled && Model.PagingPosts ? ".tabs( 'option', 'active', 1 )" : "";
+ }
+
+
+
+
+ @await Component.InvokeAsync(typeof(ProfileInfoViewComponent), new { customerProfileId = Model.CustomerProfileId })
+
+ @if (Model.ForumsEnabled)
+ {
+
+ @await Component.InvokeAsync(typeof(ProfilePostsViewComponent), new { customerProfileId = Model.CustomerProfileId, pageNumber = Model.PostsPage })
+
+ }
+
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/ReturnRequest/CustomerReturnRequests.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/ReturnRequest/CustomerReturnRequests.cshtml
new file mode 100644
index 0000000..378dd08
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/ReturnRequest/CustomerReturnRequests.cshtml
@@ -0,0 +1,72 @@
+@model CustomerReturnRequestsModel
+
+@using Nop.Core.Domain.Catalog
+
+@inject Nop.Services.Html.IHtmlFormatter htmlFormatter
+@{
+ Layout = "_ColumnsTwo";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.Account").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-account-page");
+ NopHtml.AppendPageCssClassParts("html-return-request-list-page");
+}
+@section left
+{
+ @await Component.InvokeAsync(typeof(CustomerNavigationViewComponent), new { selectedTabId = CustomerNavigationEnum.ReturnRequests })
+}
+
+
+
@T("Account.MyAccount") - @T("Account.CustomerReturnRequests")
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerReturnRequestsTop, additionalData = Model })
+ @foreach (var item in Model.Items)
+ {
+
+
+ @string.Format(T("Account.CustomerReturnRequests.Title").Text, item.CustomNumber, item.ReturnRequestStatus)
+
+
+
+ @T("Account.CustomerReturnRequests.Item")
+ @item.ProductName
+ x @item.Quantity
+
+
+ @T("Account.CustomerReturnRequests.Reason")
+ @item.ReturnReason
+
+
+ @T("Account.CustomerReturnRequests.Action")
+ @item.ReturnAction
+
+
+ @T("Account.CustomerReturnRequests.Date")
+ @item.CreatedOn.ToString()
+
+ @if (item.UploadedFileGuid != Guid.Empty)
+ {
+
+ @T("Account.CustomerReturnRequests.UploadedFile")
+
+
+ @T("Account.CustomerReturnRequests.UploadedFile.Download")
+
+
+
+ }
+ @if (!string.IsNullOrEmpty(item.Comments))
+ {
+
+ }
+
+
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerReturnRequestsBottom, additionalData = Model })
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/ReturnRequest/ReturnRequest.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/ReturnRequest/ReturnRequest.cshtml
new file mode 100644
index 0000000..5bbd36c
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/ReturnRequest/ReturnRequest.cshtml
@@ -0,0 +1,206 @@
+@model SubmitReturnRequestModel
+@using Nop.Core.Domain.Catalog
+
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.ReturnItems").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-return-request-page");
+}
+
+
+
@Html.Raw(string.Format(T("ReturnRequests.Title").Text, Url.RouteUrl("OrderDetails", new { orderId = Model.OrderId }), Model.CustomOrderNumber))
+
+
+ @if (!string.IsNullOrEmpty(Model.Result))
+ {
+
+ @Model.Result
+
+ }
+ else
+ {
+
+
+
+ @T("ReturnRequests.SelectProduct(s)")
+
+
+
+
+
+
+
+
+
+
+
+ @T("ReturnRequests.Products.Name")
+
+
+ @T("ReturnRequests.Products.Price")
+
+
+ @T("ReturnRequests.Products.Quantity")
+
+
+
+
+ @foreach (var item in Model.Items)
+ {
+
+
+ @item.ProductName
+ @if (!string.IsNullOrEmpty(item.AttributeInfo))
+ {
+
+ @Html.Raw(item.AttributeInfo)
+
+ }
+
+
+ @item.UnitPrice
+
+
+
+ @for (var i = 0; i <= item.Quantity; i++)
+ {
+ @(i)
+ }
+
+
+
+ }
+
+
+
+
+
+
+
+ @T("ReturnRequests.WhyReturning")
+
+
+
+
+
+
+ @T("ReturnRequests.Submit")
+
+
+
+
+ }
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/AdminHeaderLinks/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/AdminHeaderLinks/Default.cshtml
new file mode 100644
index 0000000..e9e6c75
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/AdminHeaderLinks/Default.cshtml
@@ -0,0 +1,22 @@
+@model AdminHeaderLinksModel
+@if (Model.IsCustomerImpersonated || Model.DisplayAdminLink)
+{
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/BlogRssHeaderLink/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/BlogRssHeaderLink/Default.cshtml
new file mode 100644
index 0000000..ad00f12
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/BlogRssHeaderLink/Default.cshtml
@@ -0,0 +1,10 @@
+@using Nop.Core
+@inject Nop.Services.Localization.ILocalizationService localizationService
+@inject IStoreContext storeContext
+@inject IWebHelper webHelper
+@inject IWorkContext workContext
+@{
+ var link = Url.RouteUrl("BlogRSS", new { languageId = (await workContext.GetWorkingLanguageAsync()).Id }, webHelper.GetCurrentRequestProtocol());
+ var storeName = await localizationService.GetLocalizedAsync(await storeContext.GetCurrentStoreAsync(), x => x.Name);
+}
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/CategoryNavigation/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/CategoryNavigation/Default.cshtml
new file mode 100644
index 0000000..0eb8dcb
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/CategoryNavigation/Default.cshtml
@@ -0,0 +1,88 @@
+@model CategoryNavigationModel
+@using Nop.Core.Domain.Catalog
+
+@functions {
+ bool BreadCrumbContainsCurrentCategoryId(CategorySimpleModel category)
+ {
+ if (Model.CurrentCategoryId == 0)
+ return false;
+
+ if (category.Id == Model.CurrentCategoryId)
+ return true;
+
+ foreach (var subCategory in category.SubCategories)
+ {
+ if (BreadCrumbContainsCurrentCategoryId(subCategory))
+ {
+ return true;
+ }
+ }
+
+ return false;
+ }
+
+ async Task CategoryLine(CategoryNavigationModel.CategoryLineModel lineModel)
+ {
+ var active = lineModel.Category.Id == lineModel.CurrentCategoryId || lineModel.Category.SubCategories.Count(BreadCrumbContainsCurrentCategoryId) > 0;
+ var last = lineModel.Category.Id == lineModel.CurrentCategoryId;
+ var liClass = active ? "active" : "inactive";
+ if (last)
+ {
+ liClass += " last";
+ }
+
+
+
+ @lineModel.Category.Name
+
+ @if (lineModel.Category.NumberOfProducts.HasValue)
+ {
+ @T("Categories.TotalProducts", lineModel.Category.NumberOfProducts.Value)
+ }
+
+ @{
+ if (lineModel.Category.Id == lineModel.CurrentCategoryId ||
+ lineModel.Category.SubCategories.Count(BreadCrumbContainsCurrentCategoryId) > 0)
+ {
+ if (lineModel.Category.SubCategories.Count > 0)
+ {
+
+ @foreach (var subCategory in lineModel.Category.SubCategories)
+ {
+ var categoryLineModel = new CategoryNavigationModel.CategoryLineModel
+ {
+ CurrentCategoryId = lineModel.CurrentCategoryId,
+ Category = subCategory
+ };
+ await CategoryLine(categoryLineModel);
+ }
+
+ }
+ }
+ }
+
+ }
+}
+
+@if (Model.Categories.Count > 0)
+{
+
+
+
+
+
+ @foreach (var category in Model.Categories)
+ {
+ var categoryLineModel = new CategoryNavigationModel.CategoryLineModel
+ {
+ CurrentCategoryId = Model.CurrentCategoryId,
+ Category = category
+ };
+ await CategoryLine(categoryLineModel);
+ }
+
+
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/CheckoutProgress/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/CheckoutProgress/Default.cshtml
new file mode 100644
index 0000000..9835bd9
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/CheckoutProgress/Default.cshtml
@@ -0,0 +1,39 @@
+@model CheckoutProgressModel
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/CrossSellProducts/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/CrossSellProducts/Default.cshtml
new file mode 100644
index 0000000..4befd9e
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/CrossSellProducts/Default.cshtml
@@ -0,0 +1,23 @@
+@model IList
+@if (Model.Count > 0)
+{
+
+
+ @T("ShoppingCart.CrossSells")
+
+
+
+ @foreach (var product in Model)
+ {
+
+
+
+ @await Html.PartialAsync("_ProductBox", product)
+
+
+
+ }
+
+
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/CurrencySelector/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/CurrencySelector/Default.cshtml
new file mode 100644
index 0000000..57848ba
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/CurrencySelector/Default.cshtml
@@ -0,0 +1,19 @@
+@model CurrencySelectorModel
+
+@inject Nop.Core.IWebHelper webHelper
+
+@if (Model.AvailableCurrencies.Count > 1)
+{
+
+ @{
+ var returnUrl = webHelper.GetRawUrl(Context.Request);
+ var currencies = await Model.AvailableCurrencies.SelectAwait(async x => new SelectListItem
+ {
+ Text = x.Name,
+ Value = Url.RouteUrl("ChangeCurrency", new { customercurrency = x.Id, returnUrl }, webHelper.GetCurrentRequestProtocol()),
+ Selected = x.Id.Equals(Model.CurrentCurrencyId)
+ }).ToListAsync();
+
+ }
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/CustomerNavigation/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/CustomerNavigation/Default.cshtml
new file mode 100644
index 0000000..ff8a0bc
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/CustomerNavigation/Default.cshtml
@@ -0,0 +1,18 @@
+@model CustomerNavigationModel
+
+
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.AccountNavigationBefore, additionalData = Model })
+ @foreach (var item in Model.CustomerNavigationItems)
+ {
+
+ @(item.Title)
+
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.AccountNavigationAfter, additionalData = Model })
+
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/EuCookieLaw/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/EuCookieLaw/Default.cshtml
new file mode 100644
index 0000000..1b9e6a6
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/EuCookieLaw/Default.cshtml
@@ -0,0 +1,33 @@
+
+
+
+
+
@T("EUCookieLaw.Description2")
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/ExternalMethods/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/ExternalMethods/Default.cshtml
new file mode 100644
index 0000000..5e4b31a
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/ExternalMethods/Default.cshtml
@@ -0,0 +1,9 @@
+@model List
+@if (Model.Any())
+{
+ @T("Account.AssociatedExternalAuth.Or")
+}
+@foreach (var authenticationMethod in Model)
+{
+ @await Component.InvokeAsync(authenticationMethod.ViewComponent)
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/Favicon/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/Favicon/Default.cshtml
new file mode 100644
index 0000000..4d0d9ea
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/Favicon/Default.cshtml
@@ -0,0 +1,2 @@
+@model FaviconAndAppIconsModel
+@Html.Raw(Model.HeadCode)
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/FlyoutShoppingCart/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/FlyoutShoppingCart/Default.cshtml
new file mode 100644
index 0000000..8341535
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/FlyoutShoppingCart/Default.cshtml
@@ -0,0 +1,71 @@
+@model MiniShoppingCartModel
+@using Nop.Core.Domain.Catalog
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/Footer/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/Footer/Default.cshtml
new file mode 100644
index 0000000..cd2d598
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/Footer/Default.cshtml
@@ -0,0 +1,184 @@
+@model FooterModel
+
+@using Nop.Core
+@using Nop.Core.Domain.Tax
+@using Nop.Core.Domain.Topics
+
+@inject IWorkContext workContext
+
+
+
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.Footer, additionalData = Model })
+
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/HeaderLinks/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/HeaderLinks/Default.cshtml
new file mode 100644
index 0000000..aa946d3
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/HeaderLinks/Default.cshtml
@@ -0,0 +1,83 @@
+@model HeaderLinksModel
+@using Nop.Core.Domain.Customers
+@inject Nop.Core.IWebHelper webHelper
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/HomepageBestSellers/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/HomepageBestSellers/Default.cshtml
new file mode 100644
index 0000000..3e9dc68
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/HomepageBestSellers/Default.cshtml
@@ -0,0 +1,23 @@
+@model IList
+@if (Model.Count > 0)
+{
+
+
+ @T("Bestsellers")
+
+
+
+ @foreach (var item in Model)
+ {
+
+
+
+ @await Html.PartialAsync("_ProductBox", item)
+
+
+
+ }
+
+
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/HomepageCategories/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/HomepageCategories/Default.cshtml
new file mode 100644
index 0000000..c7e1c2c
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/HomepageCategories/Default.cshtml
@@ -0,0 +1,32 @@
+@model IList
+@using Nop.Core.Domain.Catalog
+@if (Model.Count > 0)
+{
+
+
+
+ @foreach (var item in Model)
+ {
+
+ }
+
+
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/HomepageNews/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/HomepageNews/Default.cshtml
new file mode 100644
index 0000000..f18933f
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/HomepageNews/Default.cshtml
@@ -0,0 +1,37 @@
+@model HomepageNewsItemsModel
+@using Nop.Core.Domain.News
+@if (Model.NewsItems.Count > 0)
+{
+
+
+ @T("News")
+
+
+
+ @foreach (var item in Model.NewsItems)
+ {
+
+
+
+
+
+ @Html.Raw(item.Short)
+
+
+
+
+
+ }
+
+
+
+
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/HomepagePolls/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/HomepagePolls/Default.cshtml
new file mode 100644
index 0000000..68a9839
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/HomepagePolls/Default.cshtml
@@ -0,0 +1,13 @@
+@model IList
+@if (Model.Count > 0)
+{
+
+
+ @T("Polls.Title")
+
+ @foreach (var poll in Model)
+ {
+ @await Html.PartialAsync("_Poll", poll)
+ }
+
+}
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/HomepageProducts/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/HomepageProducts/Default.cshtml
new file mode 100644
index 0000000..5eca487
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/HomepageProducts/Default.cshtml
@@ -0,0 +1,23 @@
+@model IList
+@if (Model.Count > 0)
+{
+
+
+ @T("Homepage.Products")
+
+
+
+ @foreach (var item in Model)
+ {
+
+
+
+ @await Html.PartialAsync("_ProductBox", item)
+
+
+
+ }
+
+
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/LanguageSelector/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/LanguageSelector/Default.cshtml
new file mode 100644
index 0000000..b1be081
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/LanguageSelector/Default.cshtml
@@ -0,0 +1,38 @@
+@model LanguageSelectorModel
+
+@inject Nop.Core.IWebHelper webHelper
+
+@if (Model.AvailableLanguages.Count > 1)
+{
+
+ @{
+ var returnUrl = webHelper.GetRawUrl(Context.Request);
+
+ if (Model.UseImages)
+ {
+
+ @foreach (var lang in Model.AvailableLanguages)
+ {
+
+
+
+
+
+ }
+
+ }
+ else
+ {
+ var languages = await Model.AvailableLanguages.SelectAwait(async lang => new SelectListItem
+ {
+ Text = lang.Name,
+ Value = Url.RouteUrl("ChangeLanguage", new { langid = lang.Id, returnUrl }, webHelper.GetCurrentRequestProtocol()),
+ Selected = lang.Id.Equals(Model.CurrentLanguageId)
+ }).ToListAsync();
+
+
+ }
+ }
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/Logo/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/Logo/Default.cshtml
new file mode 100644
index 0000000..bcc2c73
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/Logo/Default.cshtml
@@ -0,0 +1,4 @@
+@model LogoModel
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/ManufacturerNavigation/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/ManufacturerNavigation/Default.cshtml
new file mode 100644
index 0000000..6fa9d40
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/ManufacturerNavigation/Default.cshtml
@@ -0,0 +1,26 @@
+@model ManufacturerNavigationModel
+@using Nop.Core.Domain.Catalog
+@if (Model.Manufacturers.Count > 0)
+{
+
+
+
+
+ @if (Model.TotalManufacturers > Model.Manufacturers.Count)
+ {
+
+ }
+
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/NewsRssHeaderLink/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/NewsRssHeaderLink/Default.cshtml
new file mode 100644
index 0000000..254fec7
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/NewsRssHeaderLink/Default.cshtml
@@ -0,0 +1,10 @@
+@using Nop.Core
+@inject Nop.Services.Localization.ILocalizationService localizationService
+@inject IStoreContext storeContext
+@inject IWebHelper webHelper
+@inject IWorkContext workContext
+@{
+ var link = Url.RouteUrl("NewsRSS", new { languageId = (await workContext.GetWorkingLanguageAsync()).Id }, webHelper.GetCurrentRequestProtocol());
+ var storeName = await localizationService.GetLocalizedAsync(await storeContext.GetCurrentStoreAsync(), x => x.Name);
+}
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/NewsletterBox/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/NewsletterBox/Default.cshtml
new file mode 100644
index 0000000..d9db615
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/NewsletterBox/Default.cshtml
@@ -0,0 +1,120 @@
+@model NewsletterBoxModel
+
+
+ @T("Newsletter.Title")
+
+
+
+
+
+
@T(Model.AllowToUnsubscribe ? "Newsletter.Options.Send" : "Newsletter.Options.Subscribe")
+
+ @if (Model.AllowToUnsubscribe)
+ {
+
+ }
+ @if (Model.DisplayCaptcha)
+ {
+
+ }
+
+
+ @T("Common.Wait")
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/OrderSummary/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/OrderSummary/Default.cshtml
new file mode 100644
index 0000000..ddd92c6
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/OrderSummary/Default.cshtml
@@ -0,0 +1,405 @@
+@model ShoppingCartModel
+@using Nop.Core
+@using Nop.Core.Domain.Catalog
+@using Nop.Core.Domain.Media
+@using Nop.Core.Domain.Orders
+@using Nop.Core.Domain.Tax
+@inject IWebHelper webHelper
+@inject IWorkContext workContext
+@inject MediaSettings mediaSettings
+@inject OrderSettings orderSettings
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OrderSummaryContentBefore, additionalData = Model })
+ @await Html.PartialAsync("_OrderReviewData", Model.OrderReviewData)
+ @if (Model.Items.Count > 0)
+ {
+ if (Model.Warnings.Count > 0)
+ {
+
+
+ @foreach (var warning in Model.Warnings)
+ {
+ @warning
+ }
+
+
+ }
+ @*we add enctype = "multipart/form-data" because "File upload" attribute control type requires it*@
+
+
+
+
+ @if (Model.IsEditable)
+ {
+
+ }
+ @if (Model.ShowSku)
+ {
+
+ }
+ @if (Model.ShowProductImages)
+ {
+
+ }
+
+ @if (Model.ShowVendorName)
+ {
+
+ }
+
+
+
+
+
+
+ @if (Model.IsEditable)
+ {
+
+ @T("ShoppingCart.Remove")
+
+ }
+ @if (Model.ShowSku)
+ {
+
+ @T("ShoppingCart.SKU")
+
+ }
+ @if (Model.ShowProductImages)
+ {
+
+ @T("ShoppingCart.Image")
+
+ }
+
+ @T("ShoppingCart.Product(s)")
+
+ @if (Model.ShowVendorName)
+ {
+
+ @T("ShoppingCart.VendorName")
+
+ }
+
+ @T("ShoppingCart.UnitPrice")
+
+
+ @T("ShoppingCart.Quantity")
+
+
+ @T("ShoppingCart.ItemTotal")
+
+
+
+
+
+ @foreach (var item in Model.Items)
+ {
+
+ @if (Model.IsEditable)
+ {
+
+ @if (item.DisableRemoval)
+ {
+
+ }
+ else
+ {
+
+
+
+
+ }
+
+ }
+ @if (Model.ShowSku)
+ {
+
+ @T("ShoppingCart.SKU"):
+ @item.Sku
+
+ }
+ @if (Model.ShowProductImages)
+ {
+
+
+
+
+
+ }
+
+ @item.ProductName
+ @if (!string.IsNullOrEmpty(item.AttributeInfo))
+ {
+
+ @Html.Raw(item.AttributeInfo)
+
+ }
+ @if (!string.IsNullOrEmpty(item.RecurringInfo))
+ {
+
+ @Html.Raw(item.RecurringInfo)
+
+ }
+ @if (!string.IsNullOrEmpty(item.RentalInfo))
+ {
+
+ @Html.Raw(item.RentalInfo)
+
+ }
+ @if (Model.IsEditable && item.AllowItemEditing)
+ {
+ var editCartItemUrl = Url.RouteUrl(new { SeName = item.ProductSeName }, webHelper.GetCurrentRequestProtocol());
+ editCartItemUrl = webHelper.ModifyQueryString(editCartItemUrl, "updatecartitemid", item.Id.ToString());
+
+ }
+ @if (item.Warnings.Count > 0)
+ {
+
+
+ @foreach (var warning in item.Warnings)
+ {
+ @Html.Raw(warning)
+ }
+
+
+ }
+
+ @if (Model.ShowVendorName)
+ {
+
+ @T("ShoppingCart.VendorName"):
+ @item.VendorName
+
+ }
+
+ @T("ShoppingCart.UnitPrice"):
+ @item.UnitPrice
+
+
+ @T("ShoppingCart.Quantity"):
+ @if (Model.IsEditable)
+ {
+ if (item.AllowedQuantities.Count > 0)
+ {
+
+ @foreach (var qty in item.AllowedQuantities)
+ {
+ @qty.Value
+ }
+
+ }
+ else
+ {
+
+
+ }
+ }
+ else
+ {
+ @item.Quantity
+ }
+
+
+ @T("ShoppingCart.ItemTotal"):
+ @item.SubTotal
+ @if (!string.IsNullOrEmpty(item.Discount))
+ {
+
+ @T("ShoppingCart.ItemYouSave", item.Discount)
+
+ if (item.MaximumDiscountedQty.HasValue)
+ {
+
+ @T("ShoppingCart.MaximumDiscountedQty", item.MaximumDiscountedQty.Value)
+
+ }
+ }
+
+
+ }
+
+
+
+ @if (Model.IsEditable && Model.Items.Count > 0 && Model.DisplayTaxShippingInfo)
+ {
+ var inclTax = await workContext.GetTaxDisplayTypeAsync() == TaxDisplayType.IncludingTax;
+ //tax info is already included in the price (incl/excl tax). that's why we display only shipping info here
+ //of course, you can modify appropriate locales to include VAT info there
+
+ @T(inclTax ? "ShoppingCart.TaxShipping.InclTax" : "ShoppingCart.TaxShipping.ExclTax", Url.RouteTopicUrl("shippinginfo"))
+
+ }
+
+ @if (Model.IsEditable)
+ {
+
+ @T("ShoppingCart.UpdateCart")
+ @T("ShoppingCart.ContinueShopping")
+ @await Component.InvokeAsync(typeof(ShoppingCartEstimateShippingViewComponent))
+
+ }
+ @if (Model.IsEditable)
+ {
+ @await Html.PartialAsync("_CheckoutAttributes", Model)
+ }
+ @await Component.InvokeAsync(typeof(SelectedCheckoutAttributesViewComponent))
+
+
+ @if (Model.IsEditable)
+ {
+ @await Component.InvokeAsync(typeof(CrossSellProductsViewComponent))
+ }
+
+ }
+ else
+ {
+
+
+ @T("ShoppingCart.CartIsEmpty")
+
+
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OrderSummaryContentAfter, additionalData = Model })
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/OrderTotals/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/OrderTotals/Default.cshtml
new file mode 100644
index 0000000..e4315be
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/OrderTotals/Default.cshtml
@@ -0,0 +1,160 @@
+@model OrderTotalsModel
+
+
+
+
+
+ @T("ShoppingCart.Totals.SubTotal"):
+
+
+ @Model.SubTotal
+
+
+ @if (!string.IsNullOrEmpty(Model.SubTotalDiscount))
+ {
+
+
+ @T("ShoppingCart.Totals.SubTotalDiscount"):
+
+
+ @Model.SubTotalDiscount
+
+
+ }
+ @if (!Model.HideShippingTotal)
+ {
+
+
+ @T("ShoppingCart.Totals.Shipping"):
+ @if (Model.RequiresShipping && !string.IsNullOrEmpty(Model.SelectedShippingMethod))
+ {
+ @T("ShoppingCart.Totals.Shipping.Method", Model.SelectedShippingMethod)
+ }
+
+
+ @if (Model.RequiresShipping)
+ {
+ if (!string.IsNullOrEmpty(Model.Shipping))
+ {
+ @Model.Shipping
+ }
+ else
+ {
+ @T("ShoppingCart.Totals.CalculatedDuringCheckout")
+ }
+ }
+ else
+ {
+ @T("ShoppingCart.Totals.Shipping.NotRequired")
+ }
+
+
+ }
+ @if (!string.IsNullOrEmpty(Model.PaymentMethodAdditionalFee))
+ {
+
+
+ @T("ShoppingCart.Totals.PaymentMethodAdditionalFee"):
+
+
+ @Model.PaymentMethodAdditionalFee
+
+
+ }
+ @if (Model.DisplayTaxRates && Model.TaxRates.Count > 0)
+ {
+ foreach (var taxRate in Model.TaxRates)
+ {
+
+
+ @string.Format(T("ShoppingCart.Totals.TaxRateLine").Text, taxRate.Rate):
+
+
+ @taxRate.Value
+
+
+ }
+ }
+ @if (Model.DisplayTax)
+ {
+
+
+ @T("ShoppingCart.Totals.Tax"):
+
+
+ @Model.Tax
+
+
+ }
+ @if (!string.IsNullOrEmpty(Model.OrderTotalDiscount))
+ {
+
+
+ @T("ShoppingCart.Totals.OrderTotalDiscount"):
+
+
+ @Model.OrderTotalDiscount
+
+
+ }
+ @if (Model.GiftCards.Count > 0)
+ {
+ foreach (var gc in Model.GiftCards)
+ {
+
+
+ @T("ShoppingCart.Totals.GiftCardInfo"):
+ @T("ShoppingCart.Totals.GiftCardInfo.Code", gc.CouponCode)
+ @if (Model.IsEditable)
+ {
+ //little hack here with empty "value" element
+
+ }
+ @string.Format(T("ShoppingCart.Totals.GiftCardInfo.Remaining").Text, gc.Remaining)
+
+
+ @gc.Amount
+
+
+ }
+ }
+ @if (Model.RedeemedRewardPoints > 0)
+ {
+
+
+ @string.Format(T("ShoppingCart.Totals.RewardPoints").Text, Model.RedeemedRewardPoints):
+
+
+ @Model.RedeemedRewardPointsAmount
+
+
+ }
+
+
+ @T("ShoppingCart.Totals.OrderTotal"):
+
+
+ @if (!string.IsNullOrEmpty(Model.OrderTotal))
+ {
+ @Model.OrderTotal
+ }
+ else
+ {
+ @T("ShoppingCart.Totals.CalculatedDuringCheckout")
+ }
+
+
+ @if (Model.WillEarnRewardPoints > 0)
+ {
+
+
+ @T("ShoppingCart.Totals.RewardPoints.WillEarn"):
+
+
+ @string.Format(T("ShoppingCart.Totals.RewardPoints.WillEarn.Point").Text, Model.WillEarnRewardPoints)
+
+
+ }
+
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/PollBlock/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/PollBlock/Default.cshtml
new file mode 100644
index 0000000..35cf6a1
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/PollBlock/Default.cshtml
@@ -0,0 +1,9 @@
+@model PollModel
+
+
+
+ @await Html.PartialAsync("_Poll", Model)
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/PopularProductTags/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/PopularProductTags/Default.cshtml
new file mode 100644
index 0000000..3ce4972
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/PopularProductTags/Default.cshtml
@@ -0,0 +1,26 @@
+@model PopularProductTagsModel
+@using Nop.Core.Domain.Catalog
+@if (Model.Tags.Count > 0)
+{
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/PrivateMessagesInbox/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/PrivateMessagesInbox/Default.cshtml
new file mode 100644
index 0000000..75bb4e3
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/PrivateMessagesInbox/Default.cshtml
@@ -0,0 +1,97 @@
+@model PrivateMessageListModel
+
+
+ @if (Model.Messages.Count > 0)
+ {
+
+
+ @{
+ var pager = await Html.PagerAsync(Model.PagerModel);
+ }
+ @if (!string.IsNullOrEmpty(await pager.RenderHtmlContentAsync()))
+ {
+
+ }
+
+ @T("PrivateMessages.Inbox.DeleteSelected")
+ @T("PrivateMessages.Inbox.MarkAsUnread")
+
+
+ }
+ else
+ {
+
@T("PrivateMessages.Inbox.NoItems")
+ }
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/PrivateMessagesSentItems/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/PrivateMessagesSentItems/Default.cshtml
new file mode 100644
index 0000000..da80ff7
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/PrivateMessagesSentItems/Default.cshtml
@@ -0,0 +1,97 @@
+@model PrivateMessageListModel
+
+
+ @if (Model.Messages.Count > 0)
+ {
+
+
+ @{
+ var pager = await Html.PagerAsync(Model.PagerModel);
+ }
+ @if (!string.IsNullOrEmpty(await pager.RenderHtmlContentAsync()))
+ {
+
+ }
+
+ @T("PrivateMessages.Inbox.DeleteSelected")
+
+
+ }
+ else
+ {
+
@T("PrivateMessages.Sent.NoItems")
+ }
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/ProductsAlsoPurchased/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/ProductsAlsoPurchased/Default.cshtml
new file mode 100644
index 0000000..4ccad06
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/ProductsAlsoPurchased/Default.cshtml
@@ -0,0 +1,23 @@
+@model IList
+@if (Model.Count > 0)
+{
+
+
+ @T("Products.AlsoPurchased")
+
+
+
+ @foreach (var item in Model)
+ {
+
+
+
+ @await Html.PartialAsync("_ProductBox", item)
+
+
+
+ }
+
+
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/RecentlyViewedProductsBlock/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/RecentlyViewedProductsBlock/Default.cshtml
new file mode 100644
index 0000000..f680d0e
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/RecentlyViewedProductsBlock/Default.cshtml
@@ -0,0 +1,28 @@
+@model IList
+@using Nop.Core.Domain.Catalog
+@if (Model.Count > 0)
+{
+
+
+
+
+ @for (var i = 0; i < Model.Count; i++)
+ {
+ var product = Model[i];
+ var picture = product.PictureModels.FirstOrDefault();
+
+ @if (picture != null && !string.IsNullOrEmpty(picture.ImageUrl))
+ {
+
+
+
+ }
+ @product.Name
+
+ }
+
+
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/RelatedProducts/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/RelatedProducts/Default.cshtml
new file mode 100644
index 0000000..8456886
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/RelatedProducts/Default.cshtml
@@ -0,0 +1,23 @@
+@model IList
+@if (Model.Count > 0)
+{
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/SearchBox/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/SearchBox/Default.cshtml
new file mode 100644
index 0000000..d55fdc6
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/SearchBox/Default.cshtml
@@ -0,0 +1,66 @@
+@model SearchBoxModel
+@using Nop.Core.Domain.Media
+
+@inject MediaSettings mediaSettings
+
+
+ @if (Model.ShowSearchBox)
+ {
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.SearchBoxBeforeSearchButton, additionalData = Model })
+ @T("Search.Button")
+ @if (Model.SearchTermMinimumLength > 0)
+ {
+
+ }
+
+ @if (Model.AutoCompleteEnabled)
+ {
+
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.SearchBox, additionalData = Model })
+ }
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/SelectedCheckoutAttributes/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/SelectedCheckoutAttributes/Default.cshtml
new file mode 100644
index 0000000..e0b793a
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/SelectedCheckoutAttributes/Default.cshtml
@@ -0,0 +1,4 @@
+@model string
+
+ @Html.Raw(Model)
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/ShoppingCartEstimateShipping/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/ShoppingCartEstimateShipping/Default.cshtml
new file mode 100644
index 0000000..d5cda46
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/ShoppingCartEstimateShipping/Default.cshtml
@@ -0,0 +1,92 @@
+@model EstimateShippingModel
+
+
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/SocialButtons/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/SocialButtons/Default.cshtml
new file mode 100644
index 0000000..d00a39e
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/SocialButtons/Default.cshtml
@@ -0,0 +1,29 @@
+@model SocialModel
+
+ @if (!string.IsNullOrEmpty(Model.FacebookLink))
+ {
+
+ }
+ @if (!string.IsNullOrEmpty(Model.TwitterLink))
+ {
+
+ }
+ @if (Model.NewsEnabled)
+ {
+
+ }
+ @if (!string.IsNullOrEmpty(Model.YoutubeLink))
+ {
+
+ }
+ @if (!string.IsNullOrEmpty(Model.InstagramLink))
+ {
+
+ }
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/StoreThemeSelector/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/StoreThemeSelector/Default.cshtml
new file mode 100644
index 0000000..3c10f03
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/StoreThemeSelector/Default.cshtml
@@ -0,0 +1,17 @@
+@model StoreThemeSelectorModel
+
+@inject Nop.Core.IWebHelper webHelper
+
+@if (Model.AvailableStoreThemes.Count > 1)
+{
+ var returnUrl = webHelper.GetRawUrl(Context.Request);
+ var themes = await Model.AvailableStoreThemes.SelectAwait(async x => new SelectListItem
+ {
+ Text = x.Title,
+ Value = Url.RouteUrl("SetStoreTheme", new { themename = x.Name, returnUrl }, webHelper.GetCurrentRequestProtocol()),
+ Selected = x.Name.Equals(Model.CurrentStoreTheme.Name, StringComparison.InvariantCultureIgnoreCase)
+ }).ToListAsync();
+
+
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/TaxTypeSelector/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/TaxTypeSelector/Default.cshtml
new file mode 100644
index 0000000..bc8678f
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/TaxTypeSelector/Default.cshtml
@@ -0,0 +1,24 @@
+@model TaxTypeSelectorModel
+@using Nop.Core.Domain.Tax
+@inject Nop.Core.IWebHelper webHelper
+
+@{
+ var returnUrl = webHelper.GetRawUrl(Context.Request);
+
+ var taxTypes = new List();
+ taxTypes.Add(new SelectListItem
+ {
+ Text = T("Tax.Inclusive").Text,
+ Value = Url.RouteUrl("ChangeTaxType", new { customertaxtype = ((int)TaxDisplayType.IncludingTax), returnUrl }, webHelper.GetCurrentRequestProtocol()),
+ Selected = Model.CurrentTaxType == TaxDisplayType.IncludingTax
+ });
+ taxTypes.Add(new SelectListItem
+ {
+ Text = T("Tax.Exclusive").Text,
+ Value = Url.RouteUrl("ChangeTaxType", new { customertaxtype = ((int)TaxDisplayType.ExcludingTax), returnUrl }, webHelper.GetCurrentRequestProtocol()),
+ Selected = Model.CurrentTaxType == TaxDisplayType.ExcludingTax
+ });
+}
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/TopMenu/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/TopMenu/Default.cshtml
new file mode 100644
index 0000000..f6d51e6
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/TopMenu/Default.cshtml
@@ -0,0 +1,201 @@
+@model TopMenuModel
+@using Nop.Core.Domain.Catalog
+@using Nop.Core.Domain.Topics
+
+@functions {
+ async Task CategoryLine(TopMenuModel.CategoryLineModel lineModel)
+ {
+
+
+
+ @lineModel.Category.Name
+ @if (lineModel.Category.NumberOfProducts.HasValue)
+ {
+ @T("Categories.TotalProducts", lineModel.Category.NumberOfProducts.Value)
+ }
+
+ @{
+ //subcategories
+ var subCategories = lineModel.ResponsiveMobileMenu ?
+ //responsive (all categories)
+ lineModel.Category.SubCategories :
+ //standard design (only categories with "IncludeInTopMenu")
+ lineModel.Category.SubCategories.Where(x => x.IncludeInTopMenu).ToList();
+
+ var levelClass = "";
+ if (lineModel.Level == 0)
+ {
+ levelClass = "first-level";
+ }
+ if (subCategories.Count > 0)
+ {
+
+
+ }
+ }
+
+ }
+}
+
+
+
+
+@{
+ var rootCategoriesResponsive = Model.Categories.ToList();
+ //name it "Categories" if we have only categories. Otherwise, "Menu"
+ var responsiveMenuTitle = Model.HasOnlyCategories ? T("Categories") : T("Menu");
+
+
+
+
+ @if (Model.UseAjaxMenu)
+ {
+
+
+
+
+ }
+ else
+ {
+
+
+ }
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/TopicBlock/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/TopicBlock/Default.cshtml
new file mode 100644
index 0000000..58c46da
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/TopicBlock/Default.cshtml
@@ -0,0 +1,89 @@
+@model TopicModel
+@if (Model.IsPasswordProtected)
+{
+
+
+
+
+
+ @T("Topic.EnterPassword")
+
+
+
+ @T("Topic.Button")
+
+
+
+
+
+
+
+
+
@Model.Title
+
+
+ @Html.Raw(Model.Body)
+
+
+
+
+
+}
+else
+{
+
+
+
+ @if (!string.IsNullOrEmpty(Model.Title))
+ {
+
+
@Model.Title
+
+ }
+
+ @Html.Raw(Model.Body)
+
+
+
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/VendorNavigation/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/VendorNavigation/Default.cshtml
new file mode 100644
index 0000000..fa37a58
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/VendorNavigation/Default.cshtml
@@ -0,0 +1,26 @@
+@model VendorNavigationModel
+@using Nop.Core.Domain.Vendors
+@if (Model.Vendors.Count > 0)
+{
+
+
+
+
+ @foreach (var vendor in Model.Vendors)
+ {
+
+ @vendor.Name
+
+ }
+
+ @if (Model.TotalVendors > Model.Vendors.Count)
+ {
+
+ }
+
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/Widget/Default.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/Widget/Default.cshtml
new file mode 100644
index 0000000..8457911
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Components/Widget/Default.cshtml
@@ -0,0 +1,5 @@
+@model List
+@foreach (var widget in Model)
+{
+ @await Component.InvokeAsync(widget.WidgetViewComponent, widget.WidgetViewComponentArguments);
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Head.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Head.cshtml
new file mode 100644
index 0000000..413d080
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/Head.cshtml
@@ -0,0 +1,35 @@
+@using Nop.Core
+@using Nop.Core.Domain.Catalog
+@using Nop.Services.Helpers
+@using Nop.Web.Framework.UI
+
+@inject CatalogSettings catalogSettings
+@inject IWorkContext workContext
+@inject IThemeContext themeContext
+@inject IUserAgentHelper userAgentHelper
+@{
+ var themeName = await themeContext.GetWorkingThemeNameAsync();
+ var supportRtl = await Html.ShouldUseRtlThemeAsync();
+
+
+ //add main CSS file
+
+ // NopHtml.AppendCssFileParts($"~/Themes/{themeName}/Content/css/styles{(supportRtl ? ".rtl" : "")}.css");
+ NopHtml.AppendCssFileParts($"~/Themes/{themeName}/Content/css/responsive{(supportRtl ? ".rtl" : "")}.css");
+ NopHtml.AppendCssFileParts($"~/Themes/{themeName}/Content/css/cypher{(supportRtl ? ".rtl" : "")}.css");
+ NopHtml.AppendCssFileParts($"~/Themes/{themeName}/Content/css/bootstrap.min{(supportRtl ? ".rtl" : "")}.css");
+
+ NopHtml.AppendCssFileParts($"~/Themes/{themeName}/Content/css/font-awesome.min.css");
+
+ //add swiper css file
+ if (catalogSettings.DisplayAllPicturesOnCatalogPages)
+ {
+ NopHtml.AppendCssFileParts("~/lib_npm/swiper/swiper-bundle.min.css");
+ }
+
+ //add jQuery UI css file
+ NopHtml.AppendCssFileParts("~/lib_npm/jquery-ui-dist/jquery-ui.min.css");
+ //add browser specific JS files
+
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_AddressAttributes.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_AddressAttributes.cshtml
new file mode 100644
index 0000000..f5b2a57
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_AddressAttributes.cshtml
@@ -0,0 +1,85 @@
+@model IList
+@using Nop.Core.Domain.Catalog;
+@foreach (var attribute in Model)
+{
+ var controlId = attribute.ControlId;
+ var textPrompt = attribute.Name;
+
+
+
@textPrompt:
+
+ @switch (attribute.AttributeControlType)
+ {
+ case AttributeControlType.DropdownList:
+ {
+
+ @if (!attribute.IsRequired)
+ {
+ ---
+ }
+ @foreach (var attributeValue in attribute.Values)
+ {
+ @attributeValue.Name
+ }
+
+ }
+ break;
+ case AttributeControlType.RadioList:
+ {
+
+ }
+ break;
+ case AttributeControlType.Checkboxes:
+ case AttributeControlType.ReadonlyCheckboxes:
+ {
+
+ }
+ break;
+ case AttributeControlType.TextBox:
+ {
+
+ }
+ break;
+ case AttributeControlType.MultilineTextbox:
+ {
+
@(attribute.DefaultValue)
+ }
+ break;
+ case AttributeControlType.Datepicker:
+ case AttributeControlType.FileUpload:
+ case AttributeControlType.ColorSquares:
+ case AttributeControlType.ImageSquares:
+ {
+ //not support attribute type
+ }
+ break;
+ }
+
+
+ @if (attribute.IsRequired)
+ {
+
+ }
+
+
+}
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_CheckoutAttributes.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_CheckoutAttributes.cshtml
new file mode 100644
index 0000000..a106688
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_CheckoutAttributes.cshtml
@@ -0,0 +1,291 @@
+@model ShoppingCartModel
+@using System.Text
+@using Nop.Core
+@using Nop.Core.Domain.Catalog
+@using Nop.Core.Domain.Media
+@using Nop.Services.Media
+@inject IDownloadService downloadService
+@inject CatalogSettings catalogSettings
+
+@if (Model.CheckoutAttributes.Count > 0)
+{
+ var attributeChangeScriptsBuilder = new StringBuilder();
+
+ @foreach (var attribute in Model.CheckoutAttributes)
+ {
+ var controlId = $"checkout_attribute_{attribute.Id}";
+ var textPrompt = !string.IsNullOrEmpty(attribute.TextPrompt) ? attribute.TextPrompt : attribute.Name;
+
+
+
+ @textPrompt
+
+ @if (attribute.IsRequired)
+ {
+ *
+ }
+
+
+
+ @switch (attribute.AttributeControlType)
+ {
+ case AttributeControlType.DropdownList:
+ {
+
+ @if (!attribute.IsRequired)
+ {
+ ---
+ }
+ @foreach (var attributeValue in attribute.Values)
+ {
+ var attributeName = string.IsNullOrEmpty(attributeValue.PriceAdjustment) ?
+ attributeValue.Name :
+ T("ShoppingCart.CheckoutAttributes.PriceAdjustment", attributeValue.Name, attributeValue.PriceAdjustment).Text;
+ @attributeName
+ }
+
+ attributeChangeScriptsBuilder.AppendFormat("$('#{0}').on('change', function(){{checkoutAttributeChange();}});\n", controlId);
+ }
+ break;
+ case AttributeControlType.RadioList:
+ {
+
+ }
+ break;
+ case AttributeControlType.Checkboxes:
+ case AttributeControlType.ReadonlyCheckboxes:
+ {
+
+ }
+ break;
+ case AttributeControlType.TextBox:
+ {
+
+ }
+ break;
+ case AttributeControlType.MultilineTextbox:
+ {
+
@(attribute.DefaultValue)
+ }
+ break;
+ case AttributeControlType.Datepicker:
+ {
+
+ }
+ break;
+ case AttributeControlType.FileUpload:
+ {
+ Download download = null;
+ if (!string.IsNullOrEmpty(attribute.DefaultValue))
+ {
+ download = await downloadService.GetDownloadByGuidAsync(new Guid(attribute.DefaultValue));
+ }
+
+ //register CSS and JS
+
+
+
+ //ex. ['jpg', 'jpeg', 'png', 'gif'] or []
+ var allowedFileExtensions = string.Join(", ", attribute.AllowedFileExtensions.Select(x => "'" + x.Trim() + "'").ToList());
+
+ if (download != null)
+ {
+
+ }
+ else
+ {
+
+ }
+
+ @*fine uploader container*@
+
+ @*fine uploader template (keep it synchronized to \Content\fineuploader\templates\default.html)*@
+
+
+
+
+ }
+ break;
+ case AttributeControlType.ColorSquares:
+ {
+
+
+ }
+ break;
+ case AttributeControlType.ImageSquares:
+ {
+ //not support attribute type
+ }
+ break;
+ }
+
+
+
+ }
+
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_ColumnsOne.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_ColumnsOne.cshtml
new file mode 100644
index 0000000..28e94b1
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_ColumnsOne.cshtml
@@ -0,0 +1,17 @@
+@{
+ Layout = "_Root";
+}
+
+
+
+@if (IsSectionDefined("Breadcrumb"))
+{
+ @section Breadcrumb {
+ @await RenderSectionAsync("Breadcrumb", false)
+ }
+}
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.MainColumnBefore })
+ @RenderBody()
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.MainColumnAfter })
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_ColumnsTwo.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_ColumnsTwo.cshtml
new file mode 100644
index 0000000..f13a218
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_ColumnsTwo.cshtml
@@ -0,0 +1,64 @@
+@{
+ Layout = "_Root";
+}
+@{
+ //current category ID
+ var currentCategoryId = 0;
+ if (Url.ActionContext.RouteData.Values["controller"].ToString().Equals("catalog", StringComparison.InvariantCultureIgnoreCase) &&
+ Url.ActionContext.RouteData.Values["action"].ToString().Equals("category", StringComparison.InvariantCultureIgnoreCase))
+ {
+ currentCategoryId = Convert.ToInt32(Url.ActionContext.RouteData.Values["categoryId"].ToString());
+ }
+
+
+ //current manufacturer ID
+ var currentManufacturerId = 0;
+ if (Url.ActionContext.RouteData.Values["controller"].ToString().Equals("catalog", StringComparison.InvariantCultureIgnoreCase) &&
+ Url.ActionContext.RouteData.Values["action"].ToString().Equals("manufacturer", StringComparison.InvariantCultureIgnoreCase))
+ {
+ currentManufacturerId = Convert.ToInt32(Url.ActionContext.RouteData.Values["manufacturerId"].ToString());
+ }
+
+
+ //current product ID
+ var currentProductId = 0;
+ if (Url.ActionContext.RouteData.Values["controller"].ToString().Equals("product", StringComparison.InvariantCultureIgnoreCase) &&
+ Url.ActionContext.RouteData.Values["action"].ToString().Equals("productdetails", StringComparison.InvariantCultureIgnoreCase))
+ {
+ currentProductId = Convert.ToInt32(Url.ActionContext.RouteData.Values["productId"].ToString());
+ }
+}
+
+@if (IsSectionDefined("Breadcrumb"))
+{
+ @section Breadcrumb {
+ @await RenderSectionAsync("Breadcrumb", false)
+ }
+}
+
+
+ @if (IsSectionDefined("left"))
+ {
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.LeftSideColumnBefore })
+ @await RenderSectionAsync("left")
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.LeftSideColumnAfter })
+ }
+ else
+ {
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.LeftSideColumnBefore })
+ @await RenderSectionAsync("CatalogFilters", false);
+ @await Component.InvokeAsync(typeof(CategoryNavigationViewComponent), new { currentCategoryId = currentCategoryId, currentProductId = currentProductId })
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.LeftSideColumnAfterCategoryNavigation })
+ @await Component.InvokeAsync(typeof(ManufacturerNavigationViewComponent), new { currentManufacturerId = currentManufacturerId })
+ @await Component.InvokeAsync(typeof(VendorNavigationViewComponent))
+ @await Component.InvokeAsync(typeof(RecentlyViewedProductsBlockViewComponent), new { productThumbPictureSize = 64 })
+ @await Component.InvokeAsync(typeof(PopularProductTagsViewComponent))
+ @await Component.InvokeAsync(typeof(PollBlockViewComponent), new { systemKeyword = "LeftColumnPoll" })
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.LeftSideColumnAfter })
+ }
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.MainColumnBefore })
+ @RenderBody()
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.MainColumnAfter })
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_CreateOrUpdateAddress.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_CreateOrUpdateAddress.cshtml
new file mode 100644
index 0000000..474afd2
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_CreateOrUpdateAddress.cshtml
@@ -0,0 +1,201 @@
+@model AddressModel
+
+
+
+
+
+
+ @if (Model.CompanyEnabled)
+ {
+
+
+
+
+
+
+
+ @if (Model.CompanyRequired)
+ {
+
+ }
+
+
+ }
+
+ @if (Model.CountryEnabled)
+ {
+
+ }
+
+ @if (Model.CountryEnabled && Model.StateProvinceEnabled)
+ {
+
+
+
+
+
+
+
+ @T("Common.Wait...")
+
+
+ }
+ @if (Model.CountyEnabled)
+ {
+
+
+
+
+
+
+
+ @if (Model.CountyRequired)
+ {
+
+ }
+
+
+ }
+ @if (Model.CityEnabled)
+ {
+
+
+
+
+
+
+
+ @if (Model.CityRequired)
+ {
+
+ }
+
+
+ }
+ @if (Model.StreetAddressEnabled)
+ {
+
+
+
+
+
+
+
+ @if (Model.StreetAddressRequired)
+ {
+
+ }
+
+
+ }
+ @if (Model.StreetAddress2Enabled)
+ {
+
+
+
+
+
+
+
+ @if (Model.StreetAddress2Required)
+ {
+
+ }
+
+
+ }
+ @if (Model.ZipPostalCodeEnabled)
+ {
+
+
+
+
+
+
+
+ @if (Model.ZipPostalCodeRequired)
+ {
+
+ }
+
+
+ }
+ @if (Model.PhoneEnabled)
+ {
+
+
+
+
+
+
+
+ @if (Model.PhoneRequired)
+ {
+
+ }
+
+
+ }
+ @if (Model.FaxEnabled)
+ {
+
+
+
+
+
+
+
+ @if (Model.FaxRequired)
+ {
+
+ }
+
+
+ }
+ @if (Model.CustomAddressAttributes.Count > 0)
+ {
+ @await Html.PartialAsync("_AddressAttributes", Model.CustomAddressAttributes)
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.AddressBottom, additionalData = Model })
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_DiscountBox.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_DiscountBox.cshtml
new file mode 100644
index 0000000..cb35ace
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_DiscountBox.cshtml
@@ -0,0 +1,45 @@
+@model ShoppingCartModel.DiscountBoxModel
+@if (Model.Display)
+{
+
+
+
+
+ @T("ShoppingCart.DiscountCouponCode.Tooltip")
+
+
+
+
+ @T("ShoppingCart.DiscountCouponCode.Button")
+
+
+ @foreach (var message in Model.Messages)
+ {
+
+ @message
+
+ }
+ @foreach (var discount in Model.AppliedDiscountsWithCodes)
+ {
+
+ @string.Format(T("ShoppingCart.DiscountCouponCode.CurrentCode").Text, discount.CouponCode)
+ @*empty value (little hack for FormValueExistsAttribute)*@
+
+
+ }
+
+
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_EstimateShippingPopUp.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_EstimateShippingPopUp.cshtml
new file mode 100644
index 0000000..8ca7fca
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_EstimateShippingPopUp.cshtml
@@ -0,0 +1,87 @@
+@model EstimateShippingModel
+
+
+
+
+
+
+ @T("Shipping.EstimateShippingPopUp.ShipToTitle")
+
+
+
+
+
+
+
+
+
+ @if (Model.UseCity)
+ {
+
+ }
+ else
+ {
+
+ }
+
+
+
+
+
+ @T("Shipping.EstimateShippingPopUp.ChooseShippingTitle")
+
+
+
+
+
+
@T("Shipping.EstimateShippingPopUp.NoShippingOptions")
+
+
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_Header.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_Header.cshtml
new file mode 100644
index 0000000..91c3572
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_Header.cshtml
@@ -0,0 +1,35 @@
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_JavaScriptDisabledWarning.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_JavaScriptDisabledWarning.cshtml
new file mode 100644
index 0000000..82b805e
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_JavaScriptDisabledWarning.cshtml
@@ -0,0 +1,16 @@
+@using Nop.Core.Domain.Common
+@inject CommonSettings CommonSettings
+@if (CommonSettings.DisplayJavaScriptDisabledWarning)
+{
+
+
+
+ JavaScript seems to be disabled in your browser.
+
+
+ You must have JavaScript enabled in your browser to utilize the functionality of
+ this website.
+
+
+
+}
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_Notifications.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_Notifications.cshtml
new file mode 100644
index 0000000..96ab0ca
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_Notifications.cshtml
@@ -0,0 +1,81 @@
+@using Newtonsoft.Json
+@using Nop.Core.Domain.Messages
+@using Nop.Services.Messages
+@inject MessagesSettings messagesSettings
+@{
+ var successMessages = new List();
+ var errorMessages = new List();
+ var warningMessages = new List();
+
+ //Get messages from TempData
+ var notes = TempData.ContainsKey(NopMessageDefaults.NotificationListKey)
+ ? JsonConvert.DeserializeObject>(TempData[NopMessageDefaults.NotificationListKey].ToString())
+ : null;
+
+ if (notes != null)
+ {
+ foreach (var note in notes)
+ {
+ switch (note.Type)
+ {
+ case NotifyType.Success:
+ successMessages.Add(note.Message);
+ break;
+ case NotifyType.Error:
+ errorMessages.Add(note.Message);
+ break;
+ case NotifyType.Warning:
+ warningMessages.Add(note.Message);
+ break;
+
+ }
+ }
+ }
+}
+@if (successMessages.Any() || warningMessages.Any() || errorMessages.Any())
+{
+ if (messagesSettings.UsePopupNotifications)
+ {
+
+ }
+ else
+ {
+
+ }
+}
+
+
+
+
+
+
+
+
+
+
+
+@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.Notifications })
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_OrderReviewData.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_OrderReviewData.cshtml
new file mode 100644
index 0000000..0413715
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_OrderReviewData.cshtml
@@ -0,0 +1,157 @@
+@model ShoppingCartModel.OrderReviewDataModel
+@if (Model.Display)
+{
+
+
+
+
+ @T("Order.BillingAddress")
+
+
+
+ @Model.BillingAddress.FirstName @Model.BillingAddress.LastName
+
+
+ @T("Order.Email"): @Model.BillingAddress.Email
+
+ @if (Model.BillingAddress.PhoneEnabled)
+ {
+
+ @T("Order.Phone"): @Model.BillingAddress.PhoneNumber
+
+ }
+ @if (Model.BillingAddress.FaxEnabled)
+ {
+
+ @T("Order.Fax"): @Model.BillingAddress.FaxNumber
+
+ }
+ @if (Model.BillingAddress.CompanyEnabled && !string.IsNullOrEmpty(Model.BillingAddress.Company))
+ {
+
+ @Model.BillingAddress.Company
+
+ }
+ @foreach (var item in Model.BillingAddress.AddressFields)
+ {
+ @item.Value
+ }
+ @if (!string.IsNullOrEmpty(Model.BillingAddress.FormattedCustomAddressAttributes))
+ {
+
+ @Html.Raw(Model.BillingAddress.FormattedCustomAddressAttributes)
+
+ }
+ @if (Model.CustomValues != null)
+ {
+ foreach (var item in Model.CustomValues)
+ {
+
+
+ @item.Key:
+
+
+ @(item.Value != null ? item.Value.ToString() : "")
+
+
+ }
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OrderSummaryBillingAddress, additionalData = Model })
+
+
+
+ @if (!string.IsNullOrEmpty(Model.PaymentMethod))
+ {
+
+
+ @T("Order.Payment")
+
+
+
+
+ @T("Order.Payment.Method"):
+
+
+ @Model.PaymentMethod
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OrderSummaryPaymentMethodInfo, additionalData = Model })
+
+
+ }
+
+ @if (Model.IsShippable)
+ {
+
+
+
+ @(Model.SelectedPickupInStore ? T("Order.PickupAddress") : T("Order.ShippingAddress"))
+
+
+ @if (!Model.SelectedPickupInStore)
+ {
+
+ @Model.ShippingAddress.FirstName @Model.ShippingAddress.LastName
+
+
+ @T("Order.Email"): @Model.ShippingAddress.Email
+
+ if (Model.ShippingAddress.PhoneEnabled)
+ {
+
+ @T("Order.Phone"): @Model.ShippingAddress.PhoneNumber
+
+ }
+ if (Model.ShippingAddress.FaxEnabled)
+ {
+
+ @T("Order.Fax"): @Model.ShippingAddress.FaxNumber
+
+ }
+ if (Model.ShippingAddress.CompanyEnabled && !string.IsNullOrEmpty(Model.ShippingAddress.Company))
+ {
+
+ @Model.ShippingAddress.Company
+
+ }
+ @foreach (var item in Model.ShippingAddress.AddressFields)
+ {
+ @item.Value
+ }
+ if (!string.IsNullOrEmpty(Model.ShippingAddress.FormattedCustomAddressAttributes))
+ {
+
+ @Html.Raw(Model.ShippingAddress.FormattedCustomAddressAttributes)
+
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OrderSummaryShippingAddress, additionalData = Model })
+ }
+ else
+ {
+ @foreach (var item in Model.PickupAddress.AddressFields)
+ {
+ @item.Value
+ }
+ }
+
+
+
+
+
+ @T("Order.Shipping")
+
+
+
+
+ @T("Order.Shipping.Name"):
+
+
+ @Model.ShippingMethod
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OrderSummaryShippingMethodInfo, additionalData = Model })
+
+
+ }
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_Poll.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_Poll.cshtml
new file mode 100644
index 0000000..c57c24b
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_Poll.cshtml
@@ -0,0 +1,77 @@
+@model PollModel
+
+
@Model.Name
+ @if (Model.AlreadyVoted)
+ {
+
+ @foreach (var item in Model.Answers)
+ {
+
+ @string.Format(T("Polls.VotesResultLine").Text, item.Name, item.NumberOfVotes, item.PercentOfTotalVotes.ToString("0.0"))
+
+ }
+
+
@string.Format(T("Polls.TotalVotes").Text, Model.TotalVotes)
+ }
+ else
+ {
+
+
+ @T("Polls.Vote")
+ @T("Common.Wait")
+
+
+
+
+
+ }
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_Print.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_Print.cshtml
new file mode 100644
index 0000000..4f2c4a0
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_Print.cshtml
@@ -0,0 +1,36 @@
+@inject Nop.Core.Domain.Common.CommonSettings commonSettings
+@inject IThemeContext themeContext
+
+@{
+ var themeName = await themeContext.GetWorkingThemeNameAsync();
+ var title = await NopHtml.GenerateTitleAsync();
+}
+
+
+
+ @title
+
+
+
+ @NopHtml.GenerateCssFiles()
+ @NopHtml.GenerateScripts(ResourceLocation.Head)
+ @NopHtml.GenerateInlineScripts(ResourceLocation.Head)
+
+
+ @RenderBody()
+
+
+
+ @*when jQuery migrate script logging is active you will see the log in the browser console*@
+ @if (commonSettings.JqueryMigrateScriptLoggingActive)
+ {
+
+ }
+ else
+ {
+
+ }
+ @NopHtml.GenerateScripts(ResourceLocation.Footer)
+ @NopHtml.GenerateInlineScripts(ResourceLocation.Footer)
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_ProductBox.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_ProductBox.cshtml
new file mode 100644
index 0000000..59a2a43
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_ProductBox.cshtml
@@ -0,0 +1,139 @@
+@model ProductOverviewModel
+@using Nop.Core
+@using Nop.Core.Domain.Catalog
+@using Nop.Core.Domain.Orders
+@using Nop.Core.Domain.Tax
+@inject CatalogSettings catalogSettings
+@inject IWorkContext workContext
+@{
+ //prepare "Add to cart" AJAX link
+ var addtocartlink = "";
+ var shoppingCartTypeId = (int)ShoppingCartType.ShoppingCart;
+ var quantity = 1;
+ if (Model.ProductPrice.ForceRedirectionAfterAddingToCart)
+ {
+ addtocartlink = Url.RouteUrl("AddProductToCart-Catalog", new { productId = Model.Id, shoppingCartTypeId = shoppingCartTypeId, quantity = quantity, forceredirection = Model.ProductPrice.ForceRedirectionAfterAddingToCart });
+ }
+ else
+ {
+ addtocartlink = Url.RouteUrl("AddProductToCart-Catalog", new { productId = Model.Id, shoppingCartTypeId = shoppingCartTypeId, quantity = quantity });
+ }
+
+ var addtowishlistlink = Url.RouteUrl("AddProductToCart-Catalog", new { productId = Model.Id, shoppingCartTypeId = (int)ShoppingCartType.Wishlist, quantity = quantity });
+ var addtocomparelink = Url.RouteUrl("AddProductToCompare", new { productId = Model.Id });
+}
+
+
+ @if (Model.PictureModels.Count > 1)
+ {
+
+
+ @foreach (var picture in Model.PictureModels)
+ {
+
+
+
+ }
+
+
+
+
+
+
+ }
+ else
+ {
+ var picture = Model.PictureModels.FirstOrDefault();
+
+
+
+ }
+
+
+
+ @if (catalogSettings.ShowSkuOnCatalogPages && !string.IsNullOrEmpty(Model.Sku))
+ {
+
+ @Model.Sku
+
+ }
+ @if (Model.ReviewOverviewModel.AllowCustomerReviews)
+ {
+ var ratingPercent = 0;
+ if (Model.ReviewOverviewModel.TotalReviews != 0)
+ {
+ ratingPercent = ((Model.ReviewOverviewModel.RatingSum*100)/Model.ReviewOverviewModel.TotalReviews)/5;
+ }
+
+ }
+
+ @Html.Raw(Model.ShortDescription)
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductBoxAddinfoBefore, additionalData = Model })
+
+ @if (!string.IsNullOrEmpty(Model.ProductPrice.OldPrice))
+ {
+
@Model.ProductPrice.OldPrice
+ }
+
@Model.ProductPrice.Price
+ @if (Model.ProductPrice.DisplayTaxShippingInfo)
+ {
+ var inclTax = await workContext.GetTaxDisplayTypeAsync() == TaxDisplayType.IncludingTax;
+ //tax info is already included in the price (incl/excl tax). that's why we display only shipping info here
+ //of course, you can modify appropriate locales to include VAT info there
+
+ @T(inclTax ? "Products.Price.TaxShipping.InclTax" : "Products.Price.TaxShipping.ExclTax", Url.RouteTopicUrl("shippinginfo"))
+
+ }
+ @if (!string.IsNullOrEmpty(Model.ProductPrice.BasePricePAngV))
+ {
+
+ @Model.ProductPrice.BasePricePAngV
+
+ }
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductBoxAddinfoMiddle, additionalData = Model })
+
+ @*@T("Products.Details") *@
+ @if (!Model.ProductPrice.DisableBuyButton)
+ {
+ var addToCartText = T("ShoppingCart.AddToCart").Text;
+ if (Model.ProductPrice.IsRental)
+ {
+ addToCartText = T("ShoppingCart.Rent").Text;
+ }
+ if (Model.ProductPrice.AvailableForPreOrder)
+ {
+ addToCartText = T("ShoppingCart.PreOrder").Text;
+ }
+ @(addToCartText)
+ }
+ @if (!Model.ProductPrice.DisableAddToCompareListButton)
+ {
+
+ @T("ShoppingCart.AddToCompareList")
+ }
+ @if (!Model.ProductPrice.DisableWishlistButton)
+ {
+ @T("ShoppingCart.AddToWishlist")
+ }
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductBoxAddinfoAfter, additionalData = Model })
+
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_Root.Head.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_Root.Head.cshtml
new file mode 100644
index 0000000..9188db9
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_Root.Head.cshtml
@@ -0,0 +1,83 @@
+@using Nop.Core.Configuration
+@using Nop.Core.Domain.Catalog
+@using Nop.Core.Domain.Common
+@using Nop.Core.Domain.Seo
+@using Nop.Services.Security
+@using Nop.Core.Events
+@inject CatalogSettings catalogSettings
+@inject CommonSettings commonSettings
+@inject IEventPublisher eventPublisher
+@inject IPermissionService permissionService
+@inject SeoSettings seoSettings
+@inject AppSettings appSettings
+@{
+ if (catalogSettings.DisplayAllPicturesOnCatalogPages)
+ {
+ NopHtml.AppendScriptParts(ResourceLocation.Footer, "~/lib_npm/swiper/swiper-bundle.min.js");
+ }
+
+ NopHtml.AppendScriptParts(ResourceLocation.Footer, "~/Themes/CypherClean/Content/scripts/bootstrap.bundle.min.js");
+ NopHtml.AppendScriptParts(ResourceLocation.Footer, "~/Themes/CypherClean/Content/scripts/tether.min.js");
+ NopHtml.AppendScriptParts(ResourceLocation.Footer, "~/js/public.countryselect.js");
+ NopHtml.AppendScriptParts(ResourceLocation.Footer, "~/js/public.ajaxcart.js");
+ NopHtml.AppendScriptParts(ResourceLocation.Footer, "~/js/public.common.js");
+ //when jQuery migrate script logging is active you will see the log in the browser console
+ if (commonSettings.JqueryMigrateScriptLoggingActive)
+ {
+ NopHtml.AppendScriptParts(ResourceLocation.Footer, "~/lib_npm/jquery-migrate/jquery-migrate.js");
+ }
+ else
+ {
+ NopHtml.AppendScriptParts(ResourceLocation.Footer, "~/lib_npm/jquery-migrate/jquery-migrate.min.js");
+ }
+ NopHtml.AppendScriptParts(ResourceLocation.Footer, "~/lib_npm/jquery-ui-dist/jquery-ui.min.js");
+ NopHtml.AppendScriptParts(ResourceLocation.Footer, "~/lib_npm/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js");
+ NopHtml.AppendScriptParts(ResourceLocation.Footer, "~/lib_npm/jquery-validation/jquery.validate.min.js");
+ NopHtml.AppendScriptParts(ResourceLocation.Footer, "~/lib_npm/jquery/jquery.min.js");
+
+ //custom tag(s);
+ if (!string.IsNullOrEmpty(seoSettings.CustomHeadTags))
+ {
+ NopHtml.AppendHeadCustomParts(seoSettings.CustomHeadTags);
+ }
+ //event
+ await eventPublisher.PublishAsync(new PageRenderingEvent(NopHtml));
+ var title = await NopHtml.GenerateTitleAsync();
+ var description = await @NopHtml.GenerateMetaDescriptionAsync();
+ var keywords = await NopHtml.GenerateMetaKeywordsAsync();
+}
+
+
+
+ @title
+
+
+
+
+
+ @NopHtml.GenerateHeadCustom()
+ @*This is used so that themes can inject content into the header*@
+ @await Html.PartialAsync("Head")
+
+ @NopHtml.GenerateCssFiles()
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.HeadHtmlTag })
+ @NopHtml.GenerateScripts(ResourceLocation.Head)
+ @NopHtml.GenerateCanonicalUrls()
+ @await Component.InvokeAsync(typeof(NewsRssHeaderLinkViewComponent))
+ @await Component.InvokeAsync(typeof(BlogRssHeaderLinkViewComponent))
+ @*Insert favicon and app icons head code*@
+ @await Component.InvokeAsync(typeof(FaviconViewComponent))
+ @NopHtml.GenerateScripts(ResourceLocation.Head)
+ @NopHtml.GenerateInlineScripts(ResourceLocation.Head)
+
+ @Html.Raw(commonSettings.HeaderCustomHtml)
+
+
+
+ @RenderBody()
+ @NopHtml.GenerateScripts(ResourceLocation.Footer)
+ @NopHtml.GenerateInlineScripts(ResourceLocation.Footer)
+ @Html.Raw(commonSettings.FooterCustomHtml)
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_Root.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_Root.cshtml
new file mode 100644
index 0000000..02f1c69
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Shared/_Root.cshtml
@@ -0,0 +1,41 @@
+@{
+ Layout = "_Root.Head";
+}
+@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.BodyStartHtmlTagAfter })
+@{ await Html.RenderPartialAsync("_Notifications"); }
+@{ await Html.RenderPartialAsync("_JavaScriptDisabledWarning"); }
+
+
+ @await Component.InvokeAsync(typeof(AdminHeaderLinksViewComponent))
+ @{ await Html.RenderPartialAsync("_Header"); }
+
+ @* *@
+
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ContentBefore })
+
+ @if (IsSectionDefined("Breadcrumb"))
+ {
+ @RenderSection("Breadcrumb")
+ }
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ContentAfter })
+
+ @await Component.InvokeAsync(typeof(FooterViewComponent))
+
+
+
+@await Component.InvokeAsync(typeof(EuCookieLawViewComponent))
+@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.BodyEndHtmlTagBefore })
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/ShoppingCart/Cart.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/ShoppingCart/Cart.cshtml
new file mode 100644
index 0000000..69b1690
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/ShoppingCart/Cart.cshtml
@@ -0,0 +1,21 @@
+@model ShoppingCartModel
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.ShoppingCart").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-shopping-cart-page");
+}
+@if (!Model.OnePageCheckoutEnabled)
+{
+ @await Component.InvokeAsync(typeof(CheckoutProgressViewComponent), new {step = CheckoutProgressStep.Cart})
+}
+
+
+
@T("ShoppingCart")
+
+
+ @await Component.InvokeAsync(typeof(OrderSummaryViewComponent), new { overriddenModel = Model})
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/ShoppingCart/EmailWishlist.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/ShoppingCart/EmailWishlist.cshtml
new file mode 100644
index 0000000..6762d3a
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/ShoppingCart/EmailWishlist.cshtml
@@ -0,0 +1,76 @@
+@model WishlistEmailAFriendModel
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.WishlistEmailAFriend").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-email-a-friend-page");
+}
+
+
+
@T("Wishlist.EmailAFriend.Title")
+
+
+ @if (Model.SuccessfullySent)
+ {
+
+ @Model.Result
+
+ }
+ else
+ {
+
+
+
+
+
+ }
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/ShoppingCart/Wishlist.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/ShoppingCart/Wishlist.cshtml
new file mode 100644
index 0000000..cea8e9f
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/ShoppingCart/Wishlist.cshtml
@@ -0,0 +1,290 @@
+@model WishlistModel
+@using Nop.Core
+@using Nop.Core.Domain.Catalog
+@using Nop.Core.Domain.Media
+@using Nop.Core.Domain.Tax
+@inject IWebHelper webHelper
+@inject IWorkContext workContext
+@inject MediaSettings mediaSettings
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.Wishlist").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-wishlist-page");
+}
+
+
+
+ @if (Model.IsEditable)
+ {
+ @T("Wishlist")
+ }
+ else
+ {
+ @string.Format(T("Wishlist.WishlistOf").Text, Model.CustomerFullname)
+ }
+
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.WishlistTop, additionalData = Model })
+ @if (Model.Items.Count > 0)
+ {
+
+ @if (Model.Warnings.Count > 0)
+ {
+
+
+ @foreach (var warning in Model.Warnings)
+ {
+ @warning
+ }
+
+
+ }
+
+
+ @if (Model.Items.Count > 0 && Model.DisplayTaxShippingInfo)
+ {
+ var inclTax = await workContext.GetTaxDisplayTypeAsync() == TaxDisplayType.IncludingTax;
+ //tax info is already included in the price (incl/excl tax). that's why we display only shipping info here
+ //of course, you can modify appropriate locales to include VAT info there
+
+ @T(inclTax ? "Wishlist.TaxShipping.InclTax" : "Wishlist.TaxShipping.ExclTax", Url.RouteTopicUrl("shippinginfo"))
+
+ }
+
+ @if (Model.IsEditable)
+ {
+ @T("Wishlist.UpdateCart")
+ }
+ @if (Model.DisplayAddToCart)
+ {
+ @T("ShoppingCart.AddToCart")
+ }
+ @if (Model.IsEditable && Model.EmailWishlistEnabled)
+ {
+ @T("Wishlist.EmailAFriend")
+ }
+
+
+
+ }
+ else
+ {
+
+
+ @T("Wishlist.CartIsEmpty")
+
+
+ }
+ @if (Model.IsEditable && Model.Items.Count > 0)
+ {
+ var wishlistUrl = Url.RouteUrl("Wishlist", new { customerGuid = Model.CustomerGuid }, webHelper.GetCurrentRequestProtocol());
+
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.WishlistBottom, additionalData = Model })
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/ShoppingCart/_GiftCardBox.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/ShoppingCart/_GiftCardBox.cshtml
new file mode 100644
index 0000000..b8dce37
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/ShoppingCart/_GiftCardBox.cshtml
@@ -0,0 +1,39 @@
+@model ShoppingCartModel.GiftCardBoxModel
+@if (Model.Display)
+{
+
+
+
+
@T("ShoppingCart.GiftCardCouponCode.Tooltip")
+ @*
+
+ @T("ShoppingCart.GiftCardCouponCode.Button")
+
*@
+
+
+
+ @T("ShoppingCart.GiftCardCouponCode.Button")
+
+
+ @if (!string.IsNullOrEmpty(Model.Message))
+ {
+
+ @Model.Message
+
+ }
+
+
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Topic/TopicDetails.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Topic/TopicDetails.cshtml
new file mode 100644
index 0000000..8b94134
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Topic/TopicDetails.cshtml
@@ -0,0 +1,100 @@
+@model TopicModel
+@using Nop.Core
+@using Nop.Core.Domain.Seo
+@using Nop.Core.Domain.Topics
+@inject IWebHelper webHelper
+@inject SeoSettings seoSettings
+@{
+ var isPopup = ViewBag.IsPopup ?? false;
+
+ if (!isPopup)
+ {
+ Layout = "_ColumnsOne";
+ }
+
+ if (!Model.IsPasswordProtected)
+ {
+ //title
+ NopHtml.AddTitleParts(!string.IsNullOrEmpty(Model.MetaTitle) ? Model.MetaTitle : Model.Title);
+ //meta
+ NopHtml.AddMetaDescriptionParts(Model.MetaDescription);
+ NopHtml.AddMetaKeywordParts(Model.MetaKeywords);
+ }
+
+ if (seoSettings.CanonicalUrlsEnabled)
+ {
+ var topicUrl = Url.RouteUrl(new { SeName = Model.SeName }, webHelper.GetCurrentRequestProtocol()).ToLowerInvariant();
+ NopHtml.AddCanonicalUrlParts(topicUrl, seoSettings.QueryStringInCanonicalUrlsEnabled);
+ }
+
+ //page class
+ NopHtml.AppendPageCssClassParts("html-topic-page");
+}
+@if (Model.IsPasswordProtected)
+{
+
+
+
+
+
+ @T("Topic.EnterPassword")
+
+
+
+ @T("Topic.Button")
+
+
+
+
+}
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerTopicDetailsTop, additionalData = Model })
+
+
@Model.Title
+
+
+ @Html.Raw(Model.Body)
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerTopicDetailsBottom, additionalData = Model })
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Vendor/ApplyVendor.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Vendor/ApplyVendor.cshtml
new file mode 100644
index 0000000..1b19613
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Vendor/ApplyVendor.cshtml
@@ -0,0 +1,129 @@
+@model ApplyVendorModel
+@{
+ Layout = "_ColumnsOne";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.Vendors.Apply").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-apply-vendor-page");
+}
+
+
+
@T("PageTitle.Vendors.Apply")
+
+
+ @await Component.InvokeAsync(typeof(TopicBlockViewComponent), new { systemName = "ApplyVendor" })
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ApplyVendorTop, additionalData = Model })
+ @if (Model.DisableFormInput)
+ {
+
+ @Model.Result
+
+ }
+ else
+ {
+
+
+
+
+
+ }
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ApplyVendorBottom, additionalData = Model })
+
+
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Vendor/Info.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Vendor/Info.cshtml
new file mode 100644
index 0000000..eb71c11
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Vendor/Info.cshtml
@@ -0,0 +1,91 @@
+@model VendorInfoModel
+@{
+ Layout = "_ColumnsTwo";
+
+ //title
+ NopHtml.AddTitleParts(T("PageTitle.VendorInfo").Text);
+ //page class
+ NopHtml.AppendPageCssClassParts("html-account-page");
+ NopHtml.AppendPageCssClassParts("html-vendorinfo-page");
+}
+@section left
+{
+ @await Component.InvokeAsync(typeof(CustomerNavigationViewComponent), new { selectedTabId = CustomerNavigationEnum.VendorInfo })
+}
+
+
+
+
@T("Account.MyAccount") - @T("Account.VendorInfo")
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.VendorInfoTop, additionalData = Model })
+
+
+
+ @if (Model.VendorAttributes.Count > 0)
+ {
+
+
+ @await Html.PartialAsync("_VendorAttributes", Model.VendorAttributes)
+
+
+ }
+
+
+
+ @T("Common.Save")
+
+
+
+
+ @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.VendorInfoBottom, additionalData = Model })
+
+
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Vendor/_VendorAttributes.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Vendor/_VendorAttributes.cshtml
new file mode 100644
index 0000000..71347e1
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/Vendor/_VendorAttributes.cshtml
@@ -0,0 +1,93 @@
+@model IList
+
+@using Nop.Core.Domain.Catalog;
+@using Nop.Services.Vendors
+
+@foreach (var attribute in Model)
+{
+ var controlId = $"{NopVendorDefaults.VendorAttributePrefix}{attribute.Id}";
+ var textPrompt = attribute.Name;
+
+
+
@textPrompt:
+
+ @switch (attribute.AttributeControlType)
+ {
+ case AttributeControlType.DropdownList:
+ {
+
+ @if (!attribute.IsRequired)
+ {
+ ---
+ }
+ @foreach (var attributeValue in attribute.Values)
+ {
+ @attributeValue.Name
+ }
+
+ }
+ break;
+ case AttributeControlType.RadioList:
+ {
+
+ }
+ break;
+ case AttributeControlType.Checkboxes:
+ case AttributeControlType.ReadonlyCheckboxes:
+ {
+
+ }
+ break;
+ case AttributeControlType.TextBox:
+ {
+
+ }
+ break;
+ case AttributeControlType.MultilineTextbox:
+ {
+
@(attribute.DefaultValue)
+ }
+ break;
+ case AttributeControlType.Datepicker:
+ case AttributeControlType.FileUpload:
+ case AttributeControlType.ColorSquares:
+ case AttributeControlType.ImageSquares:
+ {
+ //not support attribute type
+ }
+ break;
+ }
+
+
+
+ @if (attribute.IsRequired)
+ {
+
+ @if (attribute.IsRequired)
+ {
+
+ }
+
+ }
+
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/_ViewImports.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/_ViewImports.cshtml
new file mode 100644
index 0000000..188b4d4
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/_ViewImports.cshtml
@@ -0,0 +1,44 @@
+@inherits Nop.Web.Framework.Mvc.Razor.NopRazorPage
+
+@inject INopHtmlHelper NopHtml
+
+@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
+@*we remove the default InputTagHelper to prevent the checkbox duplicating: https://stackoverflow.com/questions/42544961/asp-net-core-custom-input-tag-helper-rendering-duplicate-checkboxes*@
+@removeTagHelper Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper, Microsoft.AspNetCore.Mvc.TagHelpers
+@addTagHelper *, Nop.Web.Framework
+
+@using System.Globalization;
+@using System.Text.Encodings.Web
+@using Microsoft.AspNetCore.Mvc.ViewFeatures
+@using Microsoft.Extensions.Primitives
+@using static Nop.Services.Common.NopLinksDefaults
+@using Nop.Web.Components
+@using Nop.Web.Extensions
+@using Nop.Web.Framework
+@using Nop.Web.Framework.Events
+@using Nop.Web.Framework.Extensions
+@using Nop.Web.Framework.Infrastructure
+@using Nop.Web.Framework.Models
+@using Nop.Web.Framework.Models.Cms
+@using Nop.Web.Framework.Mvc.Routing
+@using Nop.Web.Framework.Security.Captcha
+@using Nop.Web.Framework.Security.Honeypot
+@using Nop.Web.Framework.Themes
+@using Nop.Web.Framework.UI
+@using Nop.Web.Models.Blogs
+@using Nop.Web.Models.Boards
+@using Nop.Web.Models.Catalog
+@using Nop.Web.Models.Checkout
+@using Nop.Web.Models.Common
+@using Nop.Web.Models.Customer
+@using Nop.Web.Models.Media
+@using Nop.Web.Models.News
+@using Nop.Web.Models.Newsletter
+@using Nop.Web.Models.Order
+@using Nop.Web.Models.Polls
+@using Nop.Web.Models.PrivateMessages
+@using Nop.Web.Models.Profile
+@using Nop.Web.Models.ShoppingCart
+@using Nop.Web.Models.Sitemap
+@using Nop.Web.Models.Topics
+@using Nop.Web.Models.Vendors
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/_ViewStart.cshtml b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/_ViewStart.cshtml
new file mode 100644
index 0000000..adce9b1
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/Views/_ViewStart.cshtml
@@ -0,0 +1,3 @@
+@{
+ Layout = "_ColumnsOne";
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/theme.json b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/theme.json
new file mode 100644
index 0000000..bc06ead
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/Cypher_Bootstrap5/theme.json
@@ -0,0 +1,7 @@
+{
+ "SystemName": "Cypher_Bootstrap5",
+ "FriendlyName": "Cypher_Bootstrap5",
+ "SupportRTL": true,
+ "PreviewImageUrl": "~/Themes/Cypher_Bootstrap5/Cypher_Bootstrap5-Theme.png",
+ "PreviewText": "Cypher_Bootstrap5 theme is best and simple free nopCommerce Theme developed on Bootstrap UI framwork 5.3 using HTML5 and CSS3 language. The theme looks exceptional on any device and offers a great e-commerce shopping experience both on desktop and mobile."
+}
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap-grid.min.css b/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap-grid.min.css
new file mode 100644
index 0000000..e092221
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap-grid.min.css
@@ -0,0 +1,7 @@
+/*!
+ * Bootstrap Grid v5.0.2 (https://getbootstrap.com/)
+ * Copyright 2011-2021 The Bootstrap Authors
+ * Copyright 2011-2021 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
+ */.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--bs-gutter-x,.75rem);padding-left:var(--bs-gutter-x,.75rem);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x) * -.5);margin-left:calc(var(--bs-gutter-x) * -.5)}.row>*{box-sizing:border-box;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}@media (min-width:576px){.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}}@media (min-width:768px){.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}}@media (min-width:992px){.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}}@media (min-width:1200px){.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}}@media (min-width:1400px){.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}
+/*# sourceMappingURL=bootstrap-grid.min.css.map */
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap-grid.rtl.min.css b/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap-grid.rtl.min.css
new file mode 100644
index 0000000..ecaad35
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap-grid.rtl.min.css
@@ -0,0 +1,7 @@
+/*!
+ * Bootstrap Grid v5.0.2 (https://getbootstrap.com/)
+ * Copyright 2011-2021 The Bootstrap Authors
+ * Copyright 2011-2021 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
+ */.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-left:var(--bs-gutter-x,.75rem);padding-right:var(--bs-gutter-x,.75rem);margin-left:auto;margin-right:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-left:calc(var(--bs-gutter-x) * -.5);margin-right:calc(var(--bs-gutter-x) * -.5)}.row>*{box-sizing:border-box;flex-shrink:0;width:100%;max-width:100%;padding-left:calc(var(--bs-gutter-x) * .5);padding-right:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-right:8.33333333%}.offset-2{margin-right:16.66666667%}.offset-3{margin-right:25%}.offset-4{margin-right:33.33333333%}.offset-5{margin-right:41.66666667%}.offset-6{margin-right:50%}.offset-7{margin-right:58.33333333%}.offset-8{margin-right:66.66666667%}.offset-9{margin-right:75%}.offset-10{margin-right:83.33333333%}.offset-11{margin-right:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-right:0}.offset-sm-1{margin-right:8.33333333%}.offset-sm-2{margin-right:16.66666667%}.offset-sm-3{margin-right:25%}.offset-sm-4{margin-right:33.33333333%}.offset-sm-5{margin-right:41.66666667%}.offset-sm-6{margin-right:50%}.offset-sm-7{margin-right:58.33333333%}.offset-sm-8{margin-right:66.66666667%}.offset-sm-9{margin-right:75%}.offset-sm-10{margin-right:83.33333333%}.offset-sm-11{margin-right:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-right:0}.offset-md-1{margin-right:8.33333333%}.offset-md-2{margin-right:16.66666667%}.offset-md-3{margin-right:25%}.offset-md-4{margin-right:33.33333333%}.offset-md-5{margin-right:41.66666667%}.offset-md-6{margin-right:50%}.offset-md-7{margin-right:58.33333333%}.offset-md-8{margin-right:66.66666667%}.offset-md-9{margin-right:75%}.offset-md-10{margin-right:83.33333333%}.offset-md-11{margin-right:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-right:0}.offset-lg-1{margin-right:8.33333333%}.offset-lg-2{margin-right:16.66666667%}.offset-lg-3{margin-right:25%}.offset-lg-4{margin-right:33.33333333%}.offset-lg-5{margin-right:41.66666667%}.offset-lg-6{margin-right:50%}.offset-lg-7{margin-right:58.33333333%}.offset-lg-8{margin-right:66.66666667%}.offset-lg-9{margin-right:75%}.offset-lg-10{margin-right:83.33333333%}.offset-lg-11{margin-right:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-right:0}.offset-xl-1{margin-right:8.33333333%}.offset-xl-2{margin-right:16.66666667%}.offset-xl-3{margin-right:25%}.offset-xl-4{margin-right:33.33333333%}.offset-xl-5{margin-right:41.66666667%}.offset-xl-6{margin-right:50%}.offset-xl-7{margin-right:58.33333333%}.offset-xl-8{margin-right:66.66666667%}.offset-xl-9{margin-right:75%}.offset-xl-10{margin-right:83.33333333%}.offset-xl-11{margin-right:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-right:0}.offset-xxl-1{margin-right:8.33333333%}.offset-xxl-2{margin-right:16.66666667%}.offset-xxl-3{margin-right:25%}.offset-xxl-4{margin-right:33.33333333%}.offset-xxl-5{margin-right:41.66666667%}.offset-xxl-6{margin-right:50%}.offset-xxl-7{margin-right:58.33333333%}.offset-xxl-8{margin-right:66.66666667%}.offset-xxl-9{margin-right:75%}.offset-xxl-10{margin-right:83.33333333%}.offset-xxl-11{margin-right:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-left:0!important;margin-right:0!important}.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-3{margin-left:1rem!important;margin-right:1rem!important}.mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-5{margin-left:3rem!important;margin-right:3rem!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-left:0!important}.me-1{margin-left:.25rem!important}.me-2{margin-left:.5rem!important}.me-3{margin-left:1rem!important}.me-4{margin-left:1.5rem!important}.me-5{margin-left:3rem!important}.me-auto{margin-left:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-right:0!important}.ms-1{margin-right:.25rem!important}.ms-2{margin-right:.5rem!important}.ms-3{margin-right:1rem!important}.ms-4{margin-right:1.5rem!important}.ms-5{margin-right:3rem!important}.ms-auto{margin-right:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-left:0!important;padding-right:0!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-3{padding-left:1rem!important;padding-right:1rem!important}.px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-5{padding-left:3rem!important;padding-right:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-left:0!important}.pe-1{padding-left:.25rem!important}.pe-2{padding-left:.5rem!important}.pe-3{padding-left:1rem!important}.pe-4{padding-left:1.5rem!important}.pe-5{padding-left:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-right:0!important}.ps-1{padding-right:.25rem!important}.ps-2{padding-right:.5rem!important}.ps-3{padding-right:1rem!important}.ps-4{padding-right:1.5rem!important}.ps-5{padding-right:3rem!important}@media (min-width:576px){.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-left:0!important;margin-right:0!important}.mx-sm-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-sm-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-sm-3{margin-left:1rem!important;margin-right:1rem!important}.mx-sm-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-sm-5{margin-left:3rem!important;margin-right:3rem!important}.mx-sm-auto{margin-left:auto!important;margin-right:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-left:0!important}.me-sm-1{margin-left:.25rem!important}.me-sm-2{margin-left:.5rem!important}.me-sm-3{margin-left:1rem!important}.me-sm-4{margin-left:1.5rem!important}.me-sm-5{margin-left:3rem!important}.me-sm-auto{margin-left:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-right:0!important}.ms-sm-1{margin-right:.25rem!important}.ms-sm-2{margin-right:.5rem!important}.ms-sm-3{margin-right:1rem!important}.ms-sm-4{margin-right:1.5rem!important}.ms-sm-5{margin-right:3rem!important}.ms-sm-auto{margin-right:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-left:0!important;padding-right:0!important}.px-sm-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-sm-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-sm-3{padding-left:1rem!important;padding-right:1rem!important}.px-sm-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-sm-5{padding-left:3rem!important;padding-right:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-left:0!important}.pe-sm-1{padding-left:.25rem!important}.pe-sm-2{padding-left:.5rem!important}.pe-sm-3{padding-left:1rem!important}.pe-sm-4{padding-left:1.5rem!important}.pe-sm-5{padding-left:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-right:0!important}.ps-sm-1{padding-right:.25rem!important}.ps-sm-2{padding-right:.5rem!important}.ps-sm-3{padding-right:1rem!important}.ps-sm-4{padding-right:1.5rem!important}.ps-sm-5{padding-right:3rem!important}}@media (min-width:768px){.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-left:0!important;margin-right:0!important}.mx-md-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-md-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-md-3{margin-left:1rem!important;margin-right:1rem!important}.mx-md-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-md-5{margin-left:3rem!important;margin-right:3rem!important}.mx-md-auto{margin-left:auto!important;margin-right:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-left:0!important}.me-md-1{margin-left:.25rem!important}.me-md-2{margin-left:.5rem!important}.me-md-3{margin-left:1rem!important}.me-md-4{margin-left:1.5rem!important}.me-md-5{margin-left:3rem!important}.me-md-auto{margin-left:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-right:0!important}.ms-md-1{margin-right:.25rem!important}.ms-md-2{margin-right:.5rem!important}.ms-md-3{margin-right:1rem!important}.ms-md-4{margin-right:1.5rem!important}.ms-md-5{margin-right:3rem!important}.ms-md-auto{margin-right:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-left:0!important;padding-right:0!important}.px-md-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-md-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-md-3{padding-left:1rem!important;padding-right:1rem!important}.px-md-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-md-5{padding-left:3rem!important;padding-right:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-left:0!important}.pe-md-1{padding-left:.25rem!important}.pe-md-2{padding-left:.5rem!important}.pe-md-3{padding-left:1rem!important}.pe-md-4{padding-left:1.5rem!important}.pe-md-5{padding-left:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-right:0!important}.ps-md-1{padding-right:.25rem!important}.ps-md-2{padding-right:.5rem!important}.ps-md-3{padding-right:1rem!important}.ps-md-4{padding-right:1.5rem!important}.ps-md-5{padding-right:3rem!important}}@media (min-width:992px){.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-left:0!important;margin-right:0!important}.mx-lg-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-lg-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-lg-3{margin-left:1rem!important;margin-right:1rem!important}.mx-lg-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-lg-5{margin-left:3rem!important;margin-right:3rem!important}.mx-lg-auto{margin-left:auto!important;margin-right:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-left:0!important}.me-lg-1{margin-left:.25rem!important}.me-lg-2{margin-left:.5rem!important}.me-lg-3{margin-left:1rem!important}.me-lg-4{margin-left:1.5rem!important}.me-lg-5{margin-left:3rem!important}.me-lg-auto{margin-left:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-right:0!important}.ms-lg-1{margin-right:.25rem!important}.ms-lg-2{margin-right:.5rem!important}.ms-lg-3{margin-right:1rem!important}.ms-lg-4{margin-right:1.5rem!important}.ms-lg-5{margin-right:3rem!important}.ms-lg-auto{margin-right:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-left:0!important;padding-right:0!important}.px-lg-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-lg-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-lg-3{padding-left:1rem!important;padding-right:1rem!important}.px-lg-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-lg-5{padding-left:3rem!important;padding-right:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-left:0!important}.pe-lg-1{padding-left:.25rem!important}.pe-lg-2{padding-left:.5rem!important}.pe-lg-3{padding-left:1rem!important}.pe-lg-4{padding-left:1.5rem!important}.pe-lg-5{padding-left:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-right:0!important}.ps-lg-1{padding-right:.25rem!important}.ps-lg-2{padding-right:.5rem!important}.ps-lg-3{padding-right:1rem!important}.ps-lg-4{padding-right:1.5rem!important}.ps-lg-5{padding-right:3rem!important}}@media (min-width:1200px){.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-left:0!important;margin-right:0!important}.mx-xl-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-xl-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-xl-3{margin-left:1rem!important;margin-right:1rem!important}.mx-xl-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-xl-5{margin-left:3rem!important;margin-right:3rem!important}.mx-xl-auto{margin-left:auto!important;margin-right:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-left:0!important}.me-xl-1{margin-left:.25rem!important}.me-xl-2{margin-left:.5rem!important}.me-xl-3{margin-left:1rem!important}.me-xl-4{margin-left:1.5rem!important}.me-xl-5{margin-left:3rem!important}.me-xl-auto{margin-left:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-right:0!important}.ms-xl-1{margin-right:.25rem!important}.ms-xl-2{margin-right:.5rem!important}.ms-xl-3{margin-right:1rem!important}.ms-xl-4{margin-right:1.5rem!important}.ms-xl-5{margin-right:3rem!important}.ms-xl-auto{margin-right:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-left:0!important;padding-right:0!important}.px-xl-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-xl-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-xl-3{padding-left:1rem!important;padding-right:1rem!important}.px-xl-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-xl-5{padding-left:3rem!important;padding-right:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-left:0!important}.pe-xl-1{padding-left:.25rem!important}.pe-xl-2{padding-left:.5rem!important}.pe-xl-3{padding-left:1rem!important}.pe-xl-4{padding-left:1.5rem!important}.pe-xl-5{padding-left:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-right:0!important}.ps-xl-1{padding-right:.25rem!important}.ps-xl-2{padding-right:.5rem!important}.ps-xl-3{padding-right:1rem!important}.ps-xl-4{padding-right:1.5rem!important}.ps-xl-5{padding-right:3rem!important}}@media (min-width:1400px){.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-left:0!important;margin-right:0!important}.mx-xxl-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-xxl-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-xxl-3{margin-left:1rem!important;margin-right:1rem!important}.mx-xxl-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-xxl-5{margin-left:3rem!important;margin-right:3rem!important}.mx-xxl-auto{margin-left:auto!important;margin-right:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-left:0!important}.me-xxl-1{margin-left:.25rem!important}.me-xxl-2{margin-left:.5rem!important}.me-xxl-3{margin-left:1rem!important}.me-xxl-4{margin-left:1.5rem!important}.me-xxl-5{margin-left:3rem!important}.me-xxl-auto{margin-left:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-right:0!important}.ms-xxl-1{margin-right:.25rem!important}.ms-xxl-2{margin-right:.5rem!important}.ms-xxl-3{margin-right:1rem!important}.ms-xxl-4{margin-right:1.5rem!important}.ms-xxl-5{margin-right:3rem!important}.ms-xxl-auto{margin-right:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-left:0!important;padding-right:0!important}.px-xxl-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-xxl-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-xxl-3{padding-left:1rem!important;padding-right:1rem!important}.px-xxl-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-xxl-5{padding-left:3rem!important;padding-right:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-left:0!important}.pe-xxl-1{padding-left:.25rem!important}.pe-xxl-2{padding-left:.5rem!important}.pe-xxl-3{padding-left:1rem!important}.pe-xxl-4{padding-left:1.5rem!important}.pe-xxl-5{padding-left:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-right:0!important}.ps-xxl-1{padding-right:.25rem!important}.ps-xxl-2{padding-right:.5rem!important}.ps-xxl-3{padding-right:1rem!important}.ps-xxl-4{padding-right:1.5rem!important}.ps-xxl-5{padding-right:3rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}
+/*# sourceMappingURL=bootstrap-grid.rtl.min.css.map */
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap-reboot.min.css b/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap-reboot.min.css
new file mode 100644
index 0000000..4542440
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap-reboot.min.css
@@ -0,0 +1,8 @@
+/*!
+ * Bootstrap Reboot v5.0.2 (https://getbootstrap.com/)
+ * Copyright 2011-2021 The Bootstrap Authors
+ * Copyright 2011-2021 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
+ * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
+ */*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){h1{font-size:2.5rem}}h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){h2{font-size:2rem}}h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){h3{font-size:1.75rem}}h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){h4{font-size:1.5rem}}h5{font-size:1.25rem}h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:.875em}mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}
+/*# sourceMappingURL=bootstrap-reboot.min.css.map */
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap-reboot.rtl.min.css b/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap-reboot.rtl.min.css
new file mode 100644
index 0000000..c86ad46
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap-reboot.rtl.min.css
@@ -0,0 +1,8 @@
+/*!
+ * Bootstrap Reboot v5.0.2 (https://getbootstrap.com/)
+ * Copyright 2011-2021 The Bootstrap Authors
+ * Copyright 2011-2021 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
+ * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
+ */*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){h1{font-size:2.5rem}}h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){h2{font-size:2rem}}h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){h3{font-size:1.75rem}}h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){h4{font-size:1.5rem}}h5{font-size:1.25rem}h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-right:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-right:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:.875em}mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:right}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:right;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:right}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}[type=email],[type=number],[type=tel],[type=url]{direction:ltr}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}
+/*# sourceMappingURL=bootstrap-reboot.rtl.min.css.map */
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap-utilities.min.css b/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap-utilities.min.css
new file mode 100644
index 0000000..bd71a55
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap-utilities.min.css
@@ -0,0 +1,7 @@
+/*!
+ * Bootstrap Utilities v5.0.2 (https://getbootstrap.com/)
+ * Copyright 2011-2021 The Bootstrap Authors
+ * Copyright 2011-2021 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
+ */.clearfix::after{display:block;clear:both;content:""}.link-primary{color:#0d6efd}.link-primary:focus,.link-primary:hover{color:#0a58ca}.link-secondary{color:#6c757d}.link-secondary:focus,.link-secondary:hover{color:#565e64}.link-success{color:#198754}.link-success:focus,.link-success:hover{color:#146c43}.link-info{color:#0dcaf0}.link-info:focus,.link-info:hover{color:#3dd5f3}.link-warning{color:#ffc107}.link-warning:focus,.link-warning:hover{color:#ffcd39}.link-danger{color:#dc3545}.link-danger:focus,.link-danger:hover{color:#b02a37}.link-light{color:#f8f9fa}.link-light:focus,.link-light:hover{color:#f9fafb}.link-dark{color:#212529}.link-dark:focus,.link-dark:hover{color:#1a1e21}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:calc(3 / 4 * 100%)}.ratio-16x9{--bs-aspect-ratio:calc(9 / 16 * 100%)}.ratio-21x9{--bs-aspect-ratio:calc(9 / 21 * 100%)}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #dee2e6!important}.border-0{border:0!important}.border-top{border-top:1px solid #dee2e6!important}.border-top-0{border-top:0!important}.border-end{border-right:1px solid #dee2e6!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:1px solid #dee2e6!important}.border-start-0{border-left:0!important}.border-primary{border-color:#0d6efd!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#198754!important}.border-info{border-color:#0dcaf0!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#212529!important}.border-white{border-color:#fff!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{color:#0d6efd!important}.text-secondary{color:#6c757d!important}.text-success{color:#198754!important}.text-info{color:#0dcaf0!important}.text-warning{color:#ffc107!important}.text-danger{color:#dc3545!important}.text-light{color:#f8f9fa!important}.text-dark{color:#212529!important}.text-white{color:#fff!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-reset{color:inherit!important}.bg-primary{background-color:#0d6efd!important}.bg-secondary{background-color:#6c757d!important}.bg-success{background-color:#198754!important}.bg-info{background-color:#0dcaf0!important}.bg-warning{background-color:#ffc107!important}.bg-danger{background-color:#dc3545!important}.bg-light{background-color:#f8f9fa!important}.bg-dark{background-color:#212529!important}.bg-body{background-color:#fff!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.25rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.2rem!important}.rounded-2{border-radius:.25rem!important}.rounded-3{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-end{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-start{border-bottom-left-radius:.25rem!important;border-top-left-radius:.25rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}
+/*# sourceMappingURL=bootstrap-utilities.min.css.map */
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap-utilities.rtl.min.css b/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap-utilities.rtl.min.css
new file mode 100644
index 0000000..2a40497
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap-utilities.rtl.min.css
@@ -0,0 +1,7 @@
+/*!
+ * Bootstrap Utilities v5.0.2 (https://getbootstrap.com/)
+ * Copyright 2011-2021 The Bootstrap Authors
+ * Copyright 2011-2021 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
+ */.clearfix::after{display:block;clear:both;content:""}.link-primary{color:#0d6efd}.link-primary:focus,.link-primary:hover{color:#0a58ca}.link-secondary{color:#6c757d}.link-secondary:focus,.link-secondary:hover{color:#565e64}.link-success{color:#198754}.link-success:focus,.link-success:hover{color:#146c43}.link-info{color:#0dcaf0}.link-info:focus,.link-info:hover{color:#3dd5f3}.link-warning{color:#ffc107}.link-warning:focus,.link-warning:hover{color:#ffcd39}.link-danger{color:#dc3545}.link-danger:focus,.link-danger:hover{color:#b02a37}.link-light{color:#f8f9fa}.link-light:focus,.link-light:hover{color:#f9fafb}.link-dark{color:#212529}.link-dark:focus,.link-dark:hover{color:#1a1e21}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;right:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:calc(3 / 4 * 100%)}.ratio-16x9{--bs-aspect-ratio:calc(9 / 16 * 100%)}.ratio-21x9{--bs-aspect-ratio:calc(9 / 21 * 100%)}.fixed-top{position:fixed;top:0;left:0;right:0;z-index:1030}.fixed-bottom{position:fixed;left:0;bottom:0;right:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;left:0;bottom:0;right:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:right!important}.float-end{float:left!important}.float-none{float:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{right:0!important}.start-50{right:50%!important}.start-100{right:100%!important}.end-0{left:0!important}.end-50{left:50%!important}.end-100{left:100%!important}.translate-middle{transform:translate(50%,-50%)!important}.translate-middle-x{transform:translateX(50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #dee2e6!important}.border-0{border:0!important}.border-top{border-top:1px solid #dee2e6!important}.border-top-0{border-top:0!important}.border-end{border-left:1px solid #dee2e6!important}.border-end-0{border-left:0!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-bottom-0{border-bottom:0!important}.border-start{border-right:1px solid #dee2e6!important}.border-start-0{border-right:0!important}.border-primary{border-color:#0d6efd!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#198754!important}.border-info{border-color:#0dcaf0!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#212529!important}.border-white{border-color:#fff!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-left:0!important;margin-right:0!important}.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-3{margin-left:1rem!important;margin-right:1rem!important}.mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-5{margin-left:3rem!important;margin-right:3rem!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-left:0!important}.me-1{margin-left:.25rem!important}.me-2{margin-left:.5rem!important}.me-3{margin-left:1rem!important}.me-4{margin-left:1.5rem!important}.me-5{margin-left:3rem!important}.me-auto{margin-left:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-right:0!important}.ms-1{margin-right:.25rem!important}.ms-2{margin-right:.5rem!important}.ms-3{margin-right:1rem!important}.ms-4{margin-right:1.5rem!important}.ms-5{margin-right:3rem!important}.ms-auto{margin-right:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-left:0!important;padding-right:0!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-3{padding-left:1rem!important;padding-right:1rem!important}.px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-5{padding-left:3rem!important;padding-right:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-left:0!important}.pe-1{padding-left:.25rem!important}.pe-2{padding-left:.5rem!important}.pe-3{padding-left:1rem!important}.pe-4{padding-left:1.5rem!important}.pe-5{padding-left:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-right:0!important}.ps-1{padding-right:.25rem!important}.ps-2{padding-right:.5rem!important}.ps-3{padding-right:1rem!important}.ps-4{padding-right:1.5rem!important}.ps-5{padding-right:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:right!important}.text-end{text-align:left!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-primary{color:#0d6efd!important}.text-secondary{color:#6c757d!important}.text-success{color:#198754!important}.text-info{color:#0dcaf0!important}.text-warning{color:#ffc107!important}.text-danger{color:#dc3545!important}.text-light{color:#f8f9fa!important}.text-dark{color:#212529!important}.text-white{color:#fff!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-reset{color:inherit!important}.bg-primary{background-color:#0d6efd!important}.bg-secondary{background-color:#6c757d!important}.bg-success{background-color:#198754!important}.bg-info{background-color:#0dcaf0!important}.bg-warning{background-color:#ffc107!important}.bg-danger{background-color:#dc3545!important}.bg-light{background-color:#f8f9fa!important}.bg-dark{background-color:#212529!important}.bg-body{background-color:#fff!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.25rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.2rem!important}.rounded-2{border-radius:.25rem!important}.rounded-3{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-right-radius:.25rem!important;border-top-left-radius:.25rem!important}.rounded-end{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-bottom{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-start{border-bottom-right-radius:.25rem!important;border-top-right-radius:.25rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:right!important}.float-sm-end{float:left!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-left:0!important;margin-right:0!important}.mx-sm-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-sm-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-sm-3{margin-left:1rem!important;margin-right:1rem!important}.mx-sm-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-sm-5{margin-left:3rem!important;margin-right:3rem!important}.mx-sm-auto{margin-left:auto!important;margin-right:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-left:0!important}.me-sm-1{margin-left:.25rem!important}.me-sm-2{margin-left:.5rem!important}.me-sm-3{margin-left:1rem!important}.me-sm-4{margin-left:1.5rem!important}.me-sm-5{margin-left:3rem!important}.me-sm-auto{margin-left:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-right:0!important}.ms-sm-1{margin-right:.25rem!important}.ms-sm-2{margin-right:.5rem!important}.ms-sm-3{margin-right:1rem!important}.ms-sm-4{margin-right:1.5rem!important}.ms-sm-5{margin-right:3rem!important}.ms-sm-auto{margin-right:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-left:0!important;padding-right:0!important}.px-sm-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-sm-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-sm-3{padding-left:1rem!important;padding-right:1rem!important}.px-sm-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-sm-5{padding-left:3rem!important;padding-right:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-left:0!important}.pe-sm-1{padding-left:.25rem!important}.pe-sm-2{padding-left:.5rem!important}.pe-sm-3{padding-left:1rem!important}.pe-sm-4{padding-left:1.5rem!important}.pe-sm-5{padding-left:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-right:0!important}.ps-sm-1{padding-right:.25rem!important}.ps-sm-2{padding-right:.5rem!important}.ps-sm-3{padding-right:1rem!important}.ps-sm-4{padding-right:1.5rem!important}.ps-sm-5{padding-right:3rem!important}.text-sm-start{text-align:right!important}.text-sm-end{text-align:left!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:right!important}.float-md-end{float:left!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-left:0!important;margin-right:0!important}.mx-md-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-md-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-md-3{margin-left:1rem!important;margin-right:1rem!important}.mx-md-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-md-5{margin-left:3rem!important;margin-right:3rem!important}.mx-md-auto{margin-left:auto!important;margin-right:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-left:0!important}.me-md-1{margin-left:.25rem!important}.me-md-2{margin-left:.5rem!important}.me-md-3{margin-left:1rem!important}.me-md-4{margin-left:1.5rem!important}.me-md-5{margin-left:3rem!important}.me-md-auto{margin-left:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-right:0!important}.ms-md-1{margin-right:.25rem!important}.ms-md-2{margin-right:.5rem!important}.ms-md-3{margin-right:1rem!important}.ms-md-4{margin-right:1.5rem!important}.ms-md-5{margin-right:3rem!important}.ms-md-auto{margin-right:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-left:0!important;padding-right:0!important}.px-md-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-md-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-md-3{padding-left:1rem!important;padding-right:1rem!important}.px-md-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-md-5{padding-left:3rem!important;padding-right:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-left:0!important}.pe-md-1{padding-left:.25rem!important}.pe-md-2{padding-left:.5rem!important}.pe-md-3{padding-left:1rem!important}.pe-md-4{padding-left:1.5rem!important}.pe-md-5{padding-left:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-right:0!important}.ps-md-1{padding-right:.25rem!important}.ps-md-2{padding-right:.5rem!important}.ps-md-3{padding-right:1rem!important}.ps-md-4{padding-right:1.5rem!important}.ps-md-5{padding-right:3rem!important}.text-md-start{text-align:right!important}.text-md-end{text-align:left!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:right!important}.float-lg-end{float:left!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-left:0!important;margin-right:0!important}.mx-lg-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-lg-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-lg-3{margin-left:1rem!important;margin-right:1rem!important}.mx-lg-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-lg-5{margin-left:3rem!important;margin-right:3rem!important}.mx-lg-auto{margin-left:auto!important;margin-right:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-left:0!important}.me-lg-1{margin-left:.25rem!important}.me-lg-2{margin-left:.5rem!important}.me-lg-3{margin-left:1rem!important}.me-lg-4{margin-left:1.5rem!important}.me-lg-5{margin-left:3rem!important}.me-lg-auto{margin-left:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-right:0!important}.ms-lg-1{margin-right:.25rem!important}.ms-lg-2{margin-right:.5rem!important}.ms-lg-3{margin-right:1rem!important}.ms-lg-4{margin-right:1.5rem!important}.ms-lg-5{margin-right:3rem!important}.ms-lg-auto{margin-right:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-left:0!important;padding-right:0!important}.px-lg-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-lg-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-lg-3{padding-left:1rem!important;padding-right:1rem!important}.px-lg-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-lg-5{padding-left:3rem!important;padding-right:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-left:0!important}.pe-lg-1{padding-left:.25rem!important}.pe-lg-2{padding-left:.5rem!important}.pe-lg-3{padding-left:1rem!important}.pe-lg-4{padding-left:1.5rem!important}.pe-lg-5{padding-left:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-right:0!important}.ps-lg-1{padding-right:.25rem!important}.ps-lg-2{padding-right:.5rem!important}.ps-lg-3{padding-right:1rem!important}.ps-lg-4{padding-right:1.5rem!important}.ps-lg-5{padding-right:3rem!important}.text-lg-start{text-align:right!important}.text-lg-end{text-align:left!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:right!important}.float-xl-end{float:left!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-left:0!important;margin-right:0!important}.mx-xl-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-xl-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-xl-3{margin-left:1rem!important;margin-right:1rem!important}.mx-xl-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-xl-5{margin-left:3rem!important;margin-right:3rem!important}.mx-xl-auto{margin-left:auto!important;margin-right:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-left:0!important}.me-xl-1{margin-left:.25rem!important}.me-xl-2{margin-left:.5rem!important}.me-xl-3{margin-left:1rem!important}.me-xl-4{margin-left:1.5rem!important}.me-xl-5{margin-left:3rem!important}.me-xl-auto{margin-left:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-right:0!important}.ms-xl-1{margin-right:.25rem!important}.ms-xl-2{margin-right:.5rem!important}.ms-xl-3{margin-right:1rem!important}.ms-xl-4{margin-right:1.5rem!important}.ms-xl-5{margin-right:3rem!important}.ms-xl-auto{margin-right:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-left:0!important;padding-right:0!important}.px-xl-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-xl-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-xl-3{padding-left:1rem!important;padding-right:1rem!important}.px-xl-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-xl-5{padding-left:3rem!important;padding-right:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-left:0!important}.pe-xl-1{padding-left:.25rem!important}.pe-xl-2{padding-left:.5rem!important}.pe-xl-3{padding-left:1rem!important}.pe-xl-4{padding-left:1.5rem!important}.pe-xl-5{padding-left:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-right:0!important}.ps-xl-1{padding-right:.25rem!important}.ps-xl-2{padding-right:.5rem!important}.ps-xl-3{padding-right:1rem!important}.ps-xl-4{padding-right:1.5rem!important}.ps-xl-5{padding-right:3rem!important}.text-xl-start{text-align:right!important}.text-xl-end{text-align:left!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:right!important}.float-xxl-end{float:left!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-left:0!important;margin-right:0!important}.mx-xxl-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-xxl-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-xxl-3{margin-left:1rem!important;margin-right:1rem!important}.mx-xxl-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-xxl-5{margin-left:3rem!important;margin-right:3rem!important}.mx-xxl-auto{margin-left:auto!important;margin-right:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-left:0!important}.me-xxl-1{margin-left:.25rem!important}.me-xxl-2{margin-left:.5rem!important}.me-xxl-3{margin-left:1rem!important}.me-xxl-4{margin-left:1.5rem!important}.me-xxl-5{margin-left:3rem!important}.me-xxl-auto{margin-left:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-right:0!important}.ms-xxl-1{margin-right:.25rem!important}.ms-xxl-2{margin-right:.5rem!important}.ms-xxl-3{margin-right:1rem!important}.ms-xxl-4{margin-right:1.5rem!important}.ms-xxl-5{margin-right:3rem!important}.ms-xxl-auto{margin-right:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-left:0!important;padding-right:0!important}.px-xxl-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-xxl-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-xxl-3{padding-left:1rem!important;padding-right:1rem!important}.px-xxl-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-xxl-5{padding-left:3rem!important;padding-right:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-left:0!important}.pe-xxl-1{padding-left:.25rem!important}.pe-xxl-2{padding-left:.5rem!important}.pe-xxl-3{padding-left:1rem!important}.pe-xxl-4{padding-left:1.5rem!important}.pe-xxl-5{padding-left:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-right:0!important}.ps-xxl-1{padding-right:.25rem!important}.ps-xxl-2{padding-right:.5rem!important}.ps-xxl-3{padding-right:1rem!important}.ps-xxl-4{padding-right:1.5rem!important}.ps-xxl-5{padding-right:3rem!important}.text-xxl-start{text-align:right!important}.text-xxl-end{text-align:left!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}
+/*# sourceMappingURL=bootstrap-utilities.rtl.min.css.map */
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap.min.css b/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap.min.css
index ed3905e..edfbbb0 100644
--- a/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap.min.css
+++ b/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap.min.css
@@ -1,6 +1,7 @@
-/*!
- * Bootstrap v3.3.7 (http://getbootstrap.com)
- * Copyright 2011-2016 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-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}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}
+@charset "UTF-8";/*!
+ * Bootstrap v5.0.2 (https://getbootstrap.com/)
+ * Copyright 2011-2021 The Bootstrap Authors
+ * Copyright 2011-2021 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
+ */:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0))}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-font-sans-serif);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6c757d}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--bs-gutter-x,.75rem);padding-left:var(--bs-gutter-x,.75rem);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x) * -.5);margin-left:calc(var(--bs-gutter-x) * -.5)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-bg:transparent;--bs-table-accent-bg:transparent;--bs-table-striped-color:#212529;--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:#212529;--bs-table-active-bg:rgba(0, 0, 0, 0.1);--bs-table-hover-color:#212529;--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:last-child)>:last-child>*{border-bottom-color:currentColor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-striped>tbody>tr:nth-of-type(odd){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg:#cfe2ff;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:#000;border-color:#bacbe6}.table-secondary{--bs-table-bg:#e2e3e5;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:#000;border-color:#cbccce}.table-success{--bs-table-bg:#d1e7dd;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:#000;border-color:#bcd0c7}.table-info{--bs-table-bg:#cff4fc;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:#000;border-color:#badce3}.table-warning{--bs-table-bg:#fff3cd;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:#000;border-color:#e6dbb9}.table-danger{--bs-table-bg:#f8d7da;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:#000;border-color:#dfc2c4}.table-light{--bs-table-bg:#f8f9fa;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:#000;border-color:#dfe0e1}.table-dark{--bs-table-bg:#212529;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:#fff;border-color:#373b3e}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + (.5rem + 2px));padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + (1rem + 2px));padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + (.75rem + 2px))}textarea.form-control-sm{min-height:calc(1.5em + (.5rem + 2px))}textarea.form-control-lg{min-height:calc(1.5em + (1rem + 2px))}.form-control-color{max-width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(0.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(25,135,84,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#198754}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#198754}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#198754}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:1}.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#dc3545}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#dc3545}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#dc3545}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:2}.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus{z-index:3}.btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-primary:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-success{color:#fff;background-color:#198754;border-color:#198754}.btn-success:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-success,.btn-success:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-info{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-info:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-info.disabled,.btn-info:disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-warning{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-light.disabled,.btn-light:disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-dark{color:#fff;background-color:#212529;border-color:#212529}.btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-primary{color:#0d6efd;border-color:#0d6efd}.btn-outline-primary:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#0d6efd;background-color:transparent}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-success{color:#198754;border-color:#198754}.btn-outline-success:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#fff;background-color:#198754;border-color:#198754}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#198754;background-color:transparent}.btn-outline-info{color:#0dcaf0;border-color:#0dcaf0}.btn-outline-info:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#0dcaf0;background-color:transparent}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-dark{color:#212529;border-color:#212529}.btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#fff;background-color:#212529;border-color:#212529}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#212529;background-color:transparent}.btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}.btn-link:hover{color:#0a58ca}.btn-link.disabled,.btn-link:disabled{color:#6c757d}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#1e2125;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}.dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#0d6efd;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:#0a58ca}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background:0 0;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:0 0;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#0d6efd}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.55)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image: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")}.navbar-dark .navbar-text{color:rgba(255,255,255,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem 1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.5rem 1rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.5rem;margin-bottom:-.5rem;margin-left:-.5rem;border-bottom:0}.card-header-pills{margin-right:-.5rem;margin-left:-.5rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#212529;text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#0c63e4;background-color:#e7f1ff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(-180deg)}.accordion-button::after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-body{padding:1rem 1.25rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#0d6efd;text-decoration:none;background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#0a58ca;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;color:#0a58ca;background-color:#e9ecef;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem 1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}.alert-primary .alert-link{color:#06357a}.alert-secondary{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}.alert-secondary .alert-link{color:#34383c}.alert-success{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-success .alert-link{color:#0c4128}.alert-info{color:#055160;background-color:#cff4fc;border-color:#b6effb}.alert-info .alert-link{color:#04414d}.alert-warning{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}.alert-warning .alert-link{color:#523e02}.alert-danger{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.alert-danger .alert-link{color:#6a1a21}.alert-light{color:#636464;background-color:#fefefe;border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}.alert-dark .alert-link{color:#101214}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:1rem}}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#0d6efd;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#212529;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#084298;background-color:#cfe2ff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#084298;background-color:#bacbe6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-secondary{color:#41464b;background-color:#e2e3e5}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#41464b;background-color:#cbccce}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-success{color:#0f5132;background-color:#d1e7dd}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#0f5132;background-color:#bcd0c7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-info{color:#055160;background-color:#cff4fc}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#055160;background-color:#badce3}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-warning{color:#664d03;background-color:#fff3cd}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#664d03;background-color:#e6dbb9}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-danger{color:#842029;background-color:#f8d7da}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#842029;background-color:#dfc2c4}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border-radius:.25rem}.toast:not(.showing):not(.show){opacity:0}.toast.hide{display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1060;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.offcanvas{position:fixed;bottom:0;z-index:1050;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin-top:-.5rem;margin-right:-.5rem;margin-bottom:-.5rem}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-end{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-top{top:0;right:0;left:0;height:30vh;max-height:100%;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom{right:0;left:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.clearfix::after{display:block;clear:both;content:""}.link-primary{color:#0d6efd}.link-primary:focus,.link-primary:hover{color:#0a58ca}.link-secondary{color:#6c757d}.link-secondary:focus,.link-secondary:hover{color:#565e64}.link-success{color:#198754}.link-success:focus,.link-success:hover{color:#146c43}.link-info{color:#0dcaf0}.link-info:focus,.link-info:hover{color:#3dd5f3}.link-warning{color:#ffc107}.link-warning:focus,.link-warning:hover{color:#ffcd39}.link-danger{color:#dc3545}.link-danger:focus,.link-danger:hover{color:#b02a37}.link-light{color:#f8f9fa}.link-light:focus,.link-light:hover{color:#f9fafb}.link-dark{color:#212529}.link-dark:focus,.link-dark:hover{color:#1a1e21}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:calc(3 / 4 * 100%)}.ratio-16x9{--bs-aspect-ratio:calc(9 / 16 * 100%)}.ratio-21x9{--bs-aspect-ratio:calc(9 / 21 * 100%)}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #dee2e6!important}.border-0{border:0!important}.border-top{border-top:1px solid #dee2e6!important}.border-top-0{border-top:0!important}.border-end{border-right:1px solid #dee2e6!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:1px solid #dee2e6!important}.border-start-0{border-left:0!important}.border-primary{border-color:#0d6efd!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#198754!important}.border-info{border-color:#0dcaf0!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#212529!important}.border-white{border-color:#fff!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{color:#0d6efd!important}.text-secondary{color:#6c757d!important}.text-success{color:#198754!important}.text-info{color:#0dcaf0!important}.text-warning{color:#ffc107!important}.text-danger{color:#dc3545!important}.text-light{color:#f8f9fa!important}.text-dark{color:#212529!important}.text-white{color:#fff!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-reset{color:inherit!important}.bg-primary{background-color:#0d6efd!important}.bg-secondary{background-color:#6c757d!important}.bg-success{background-color:#198754!important}.bg-info{background-color:#0dcaf0!important}.bg-warning{background-color:#ffc107!important}.bg-danger{background-color:#dc3545!important}.bg-light{background-color:#f8f9fa!important}.bg-dark{background-color:#212529!important}.bg-body{background-color:#fff!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.25rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.2rem!important}.rounded-2{border-radius:.25rem!important}.rounded-3{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-end{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-start{border-bottom-left-radius:.25rem!important;border-top-left-radius:.25rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}
/*# sourceMappingURL=bootstrap.min.css.map */
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap.min_v3.css b/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap.min_v3.css
new file mode 100644
index 0000000..ed3905e
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap.min_v3.css
@@ -0,0 +1,6 @@
+/*!
+ * Bootstrap v3.3.7 (http://getbootstrap.com)
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-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}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}
+/*# sourceMappingURL=bootstrap.min.css.map */
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap.min.rtl.css b/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap.min_v3.rtl.css
similarity index 100%
rename from Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap.min.rtl.css
rename to Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap.min_v3.rtl.css
diff --git a/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap.rtl.min.css b/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap.rtl.min.css
new file mode 100644
index 0000000..ab22676
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/bootstrap.rtl.min.css
@@ -0,0 +1,7 @@
+@charset "UTF-8";/*!
+ * Bootstrap v5.0.2 (https://getbootstrap.com/)
+ * Copyright 2011-2021 The Bootstrap Authors
+ * Copyright 2011-2021 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
+ */:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0))}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-font-sans-serif);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-right:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-right:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:right}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:right;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:right}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}[type=email],[type=number],[type=tel],[type=url]{direction:ltr}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-right:0;list-style:none}.list-inline{padding-right:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-left:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6c757d}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-left:var(--bs-gutter-x,.75rem);padding-right:var(--bs-gutter-x,.75rem);margin-left:auto;margin-right:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-left:calc(var(--bs-gutter-x) * -.5);margin-right:calc(var(--bs-gutter-x) * -.5)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-left:calc(var(--bs-gutter-x) * .5);padding-right:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-right:8.33333333%}.offset-2{margin-right:16.66666667%}.offset-3{margin-right:25%}.offset-4{margin-right:33.33333333%}.offset-5{margin-right:41.66666667%}.offset-6{margin-right:50%}.offset-7{margin-right:58.33333333%}.offset-8{margin-right:66.66666667%}.offset-9{margin-right:75%}.offset-10{margin-right:83.33333333%}.offset-11{margin-right:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-right:0}.offset-sm-1{margin-right:8.33333333%}.offset-sm-2{margin-right:16.66666667%}.offset-sm-3{margin-right:25%}.offset-sm-4{margin-right:33.33333333%}.offset-sm-5{margin-right:41.66666667%}.offset-sm-6{margin-right:50%}.offset-sm-7{margin-right:58.33333333%}.offset-sm-8{margin-right:66.66666667%}.offset-sm-9{margin-right:75%}.offset-sm-10{margin-right:83.33333333%}.offset-sm-11{margin-right:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-right:0}.offset-md-1{margin-right:8.33333333%}.offset-md-2{margin-right:16.66666667%}.offset-md-3{margin-right:25%}.offset-md-4{margin-right:33.33333333%}.offset-md-5{margin-right:41.66666667%}.offset-md-6{margin-right:50%}.offset-md-7{margin-right:58.33333333%}.offset-md-8{margin-right:66.66666667%}.offset-md-9{margin-right:75%}.offset-md-10{margin-right:83.33333333%}.offset-md-11{margin-right:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-right:0}.offset-lg-1{margin-right:8.33333333%}.offset-lg-2{margin-right:16.66666667%}.offset-lg-3{margin-right:25%}.offset-lg-4{margin-right:33.33333333%}.offset-lg-5{margin-right:41.66666667%}.offset-lg-6{margin-right:50%}.offset-lg-7{margin-right:58.33333333%}.offset-lg-8{margin-right:66.66666667%}.offset-lg-9{margin-right:75%}.offset-lg-10{margin-right:83.33333333%}.offset-lg-11{margin-right:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-right:0}.offset-xl-1{margin-right:8.33333333%}.offset-xl-2{margin-right:16.66666667%}.offset-xl-3{margin-right:25%}.offset-xl-4{margin-right:33.33333333%}.offset-xl-5{margin-right:41.66666667%}.offset-xl-6{margin-right:50%}.offset-xl-7{margin-right:58.33333333%}.offset-xl-8{margin-right:66.66666667%}.offset-xl-9{margin-right:75%}.offset-xl-10{margin-right:83.33333333%}.offset-xl-11{margin-right:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-right:0}.offset-xxl-1{margin-right:8.33333333%}.offset-xxl-2{margin-right:16.66666667%}.offset-xxl-3{margin-right:25%}.offset-xxl-4{margin-right:33.33333333%}.offset-xxl-5{margin-right:41.66666667%}.offset-xxl-6{margin-right:50%}.offset-xxl-7{margin-right:58.33333333%}.offset-xxl-8{margin-right:66.66666667%}.offset-xxl-9{margin-right:75%}.offset-xxl-10{margin-right:83.33333333%}.offset-xxl-11{margin-right:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-bg:transparent;--bs-table-accent-bg:transparent;--bs-table-striped-color:#212529;--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:#212529;--bs-table-active-bg:rgba(0, 0, 0, 0.1);--bs-table-hover-color:#212529;--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:last-child)>:last-child>*{border-bottom-color:currentColor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-striped>tbody>tr:nth-of-type(odd){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg:#cfe2ff;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:#000;border-color:#bacbe6}.table-secondary{--bs-table-bg:#e2e3e5;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:#000;border-color:#cbccce}.table-success{--bs-table-bg:#d1e7dd;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:#000;border-color:#bcd0c7}.table-info{--bs-table-bg:#cff4fc;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:#000;border-color:#badce3}.table-warning{--bs-table-bg:#fff3cd;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:#000;border-color:#e6dbb9}.table-danger{--bs-table-bg:#f8d7da;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:#000;border-color:#dfc2c4}.table-light{--bs-table-bg:#f8f9fa;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:#000;border-color:#dfe0e1}.table-dark{--bs-table-bg:#212529;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:#fff;border-color:#373b3e}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-left:0;padding-right:0}.form-control-sm{min-height:calc(1.5em + (.5rem + 2px));padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + (1rem + 2px));padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + (.75rem + 2px))}textarea.form-control-sm{min-height:calc(1.5em + (.5rem + 2px))}textarea.form-control-lg{min-height:calc(1.5em + (1rem + 2px))}.form-control-color{max-width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem .75rem .375rem 2.25rem;-moz-padding-start:calc(0.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:left .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-left:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-right:.5rem;font-size:.875rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-right:1rem;font-size:1.25rem}.form-check{display:block;min-height:1.5rem;padding-right:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:right;margin-right:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-right:2.5em}.form-switch .form-check-input{width:2em;margin-right:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:right center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:left center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-check-inline{display:inline-block;margin-left:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;right:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:100% 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(-.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(-.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(-.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-left:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-left-radius:0;border-bottom-left-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-right:-1px;border-top-right-radius:0;border-bottom-right-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(25,135,84,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#198754;padding-left:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:left calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-left:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) left calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#198754}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-left:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:left .75rem center,center left 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#198754}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#198754}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-right:.5em}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:1}.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-left:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:left calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-left:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) left calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#dc3545}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-left:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:left .75rem center,center left 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#dc3545}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#dc3545}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-right:.5em}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:2}.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus{z-index:3}.btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-primary:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-success{color:#fff;background-color:#198754;border-color:#198754}.btn-success:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-success,.btn-success:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-info{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-info:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-info.disabled,.btn-info:disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-warning{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-light.disabled,.btn-light:disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-dark{color:#fff;background-color:#212529;border-color:#212529}.btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-primary{color:#0d6efd;border-color:#0d6efd}.btn-outline-primary:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#0d6efd;background-color:transparent}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-success{color:#198754;border-color:#198754}.btn-outline-success:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#fff;background-color:#198754;border-color:#198754}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#198754;background-color:transparent}.btn-outline-info{color:#0dcaf0;border-color:#0dcaf0}.btn-outline-info:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#0dcaf0;background-color:transparent}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-dark{color:#212529;border-color:#212529}.btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#fff;background-color:#212529;border-color:#212529}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#212529;background-color:transparent}.btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}.btn-link:hover{color:#0a58ca}.btn-link.disabled,.btn-link:disabled{color:#6c757d}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-left:.3em solid transparent;border-bottom:0;border-right:.3em solid transparent}.dropdown-toggle:empty::after{margin-right:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#212529;text-align:right;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu[data-bs-popper]{top:100%;right:0;margin-top:.125rem}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{left:auto;right:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{left:0;right:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{left:auto;right:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{left:0;right:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{left:auto;right:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{left:0;right:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{left:auto;right:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{left:0;right:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{left:auto;right:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{left:0;right:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{left:auto;right:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{left:0;right:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:0;border-left:.3em solid transparent;border-bottom:.3em solid;border-right:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-right:0}.dropend .dropdown-menu[data-bs-popper]{top:0;left:auto;right:100%;margin-top:0;margin-right:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-left:0;border-bottom:.3em solid transparent;border-right:.3em solid}.dropend .dropdown-toggle:empty::after{margin-right:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;left:100%;right:auto;margin-top:0;margin-left:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-left:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-right:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#1e2125;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}.dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-right:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-right-radius:0;border-bottom-right-radius:0}.dropdown-toggle-split{padding-left:.5625rem;padding-right:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-right:0}.dropstart .dropdown-toggle-split::before{margin-left:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-left:.375rem;padding-right:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-left:.75rem;padding-right:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-left-radius:0;border-bottom-right-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-right-radius:0;border-top-left-radius:0}.nav{display:flex;flex-wrap:wrap;padding-right:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#0d6efd;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:#0a58ca}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background:0 0;border:1px solid transparent;border-top-right-radius:.25rem;border-top-left-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.nav-pills .nav-link{background:0 0;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#0d6efd}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-left:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-right:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-left:0;padding-right:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.55)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image: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")}.navbar-dark .navbar-text{color:rgba(255,255,255,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-left:0;margin-right:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-right-radius:calc(.25rem - 1px);border-top-left-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-left-radius:calc(.25rem - 1px);border-bottom-right-radius:calc(.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem 1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-right:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.5rem 1rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-left:-.5rem;margin-bottom:-.5rem;margin-right:-.5rem;border-bottom:0}.card-header-pills{margin-left:-.5rem;margin-right:-.5rem}.card-img-overlay{position:absolute;top:0;left:0;bottom:0;right:0;padding:1rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-right-radius:calc(.25rem - 1px);border-top-left-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-left-radius:calc(.25rem - 1px);border-bottom-right-radius:calc(.25rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-right:0;border-right:0}.card-group>.card:not(:last-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-left-radius:0}.card-group>.card:not(:first-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-right-radius:0}}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#212529;text-align:right;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#0c63e4;background-color:#e7f1ff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(180deg)}.accordion-button::after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-right:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-right-radius:.25rem;border-top-left-radius:.25rem}.accordion-item:first-of-type .accordion-button{border-top-right-radius:calc(.25rem - 1px);border-top-left-radius:calc(.25rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-left-radius:calc(.25rem - 1px);border-bottom-right-radius:calc(.25rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.accordion-body{padding:1rem 1.25rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-left:0;border-right:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-right:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:right;padding-left:.5rem;color:#6c757d;content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-right:0;list-style:none}.page-link{position:relative;display:block;color:#0d6efd;text-decoration:none;background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#0a58ca;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;color:#0a58ca;background-color:#e9ecef;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.page-item:not(:first-child) .page-link{margin-right:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item:last-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem 1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-left:3rem}.alert-dismissible .btn-close{position:absolute;top:0;left:0;z-index:2;padding:1.25rem 1rem}.alert-primary{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}.alert-primary .alert-link{color:#06357a}.alert-secondary{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}.alert-secondary .alert-link{color:#34383c}.alert-success{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-success .alert-link{color:#0c4128}.alert-info{color:#055160;background-color:#cff4fc;border-color:#b6effb}.alert-info .alert-link{color:#04414d}.alert-warning{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}.alert-warning .alert-link{color:#523e02}.alert-danger{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.alert-danger .alert-link{color:#6a1a21}.alert-light{color:#636464;background-color:#fefefe;border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}.alert-dark .alert-link{color:#101214}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:1rem}}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#0d6efd;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.list-group{display:flex;flex-direction:column;padding-right:0;margin-bottom:0;border-radius:.25rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#212529;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-right-radius:inherit;border-top-left-radius:inherit}.list-group-item:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-right-radius:.25rem;border-top-left-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-left-radius:.25rem;border-bottom-right-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-right-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-right-radius:.25rem;border-top-left-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-left-radius:.25rem;border-bottom-right-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-right-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-right-radius:.25rem;border-top-left-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-left-radius:.25rem;border-bottom-right-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-right-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-right-radius:.25rem;border-top-left-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-left-radius:.25rem;border-bottom-right-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-right-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-right-radius:.25rem;border-top-left-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-left-radius:.25rem;border-bottom-right-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-right-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-right-radius:.25rem;border-top-left-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-left-radius:.25rem;border-bottom-right-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-right-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-right:-1px;border-right-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#084298;background-color:#cfe2ff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#084298;background-color:#bacbe6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-secondary{color:#41464b;background-color:#e2e3e5}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#41464b;background-color:#cbccce}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-success{color:#0f5132;background-color:#d1e7dd}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#0f5132;background-color:#bcd0c7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-info{color:#055160;background-color:#cff4fc}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#055160;background-color:#badce3}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-warning{color:#664d03;background-color:#fff3cd}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#664d03;background-color:#e6dbb9}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-danger{color:#842029;background-color:#f8d7da}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#842029;background-color:#dfc2c4}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border-radius:.25rem}.toast:not(.showing):not(.show){opacity:0}.toast.hide{display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-right-radius:calc(.25rem - 1px);border-top-left-radius:calc(.25rem - 1px)}.toast-header .btn-close{margin-left:-.375rem;margin-right:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;right:0;z-index:1060;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;right:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-right-radius:calc(.3rem - 1px);border-top-left-radius:calc(.3rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-.5rem auto -.5rem -.5rem}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-left-radius:calc(.3rem - 1px);border-bottom-right-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:right;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:right;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;right:50%;display:block;width:1rem;margin-right:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-right-radius:calc(.3rem - 1px);border-top-left-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:right;width:100%;margin-left:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{right:0}.carousel-control-next{left:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;left:0;bottom:0;right:0;z-index:2;display:flex;justify-content:center;padding:0;margin-left:15%;margin-bottom:1rem;margin-right:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-left:3px;margin-right:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;left:15%;bottom:1.25rem;right:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentColor;border-left-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.offcanvas{position:fixed;bottom:0;z-index:1050;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin-top:-.5rem;margin-left:-.5rem;margin-bottom:-.5rem}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-end{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-top{top:0;left:0;right:0;height:30vh;max-height:100%;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom{left:0;right:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.clearfix::after{display:block;clear:both;content:""}.link-primary{color:#0d6efd}.link-primary:focus,.link-primary:hover{color:#0a58ca}.link-secondary{color:#6c757d}.link-secondary:focus,.link-secondary:hover{color:#565e64}.link-success{color:#198754}.link-success:focus,.link-success:hover{color:#146c43}.link-info{color:#0dcaf0}.link-info:focus,.link-info:hover{color:#3dd5f3}.link-warning{color:#ffc107}.link-warning:focus,.link-warning:hover{color:#ffcd39}.link-danger{color:#dc3545}.link-danger:focus,.link-danger:hover{color:#b02a37}.link-light{color:#f8f9fa}.link-light:focus,.link-light:hover{color:#f9fafb}.link-dark{color:#212529}.link-dark:focus,.link-dark:hover{color:#1a1e21}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;right:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:calc(3 / 4 * 100%)}.ratio-16x9{--bs-aspect-ratio:calc(9 / 16 * 100%)}.ratio-21x9{--bs-aspect-ratio:calc(9 / 21 * 100%)}.fixed-top{position:fixed;top:0;left:0;right:0;z-index:1030}.fixed-bottom{position:fixed;left:0;bottom:0;right:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;left:0;bottom:0;right:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:right!important}.float-end{float:left!important}.float-none{float:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{right:0!important}.start-50{right:50%!important}.start-100{right:100%!important}.end-0{left:0!important}.end-50{left:50%!important}.end-100{left:100%!important}.translate-middle{transform:translate(50%,-50%)!important}.translate-middle-x{transform:translateX(50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #dee2e6!important}.border-0{border:0!important}.border-top{border-top:1px solid #dee2e6!important}.border-top-0{border-top:0!important}.border-end{border-left:1px solid #dee2e6!important}.border-end-0{border-left:0!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-bottom-0{border-bottom:0!important}.border-start{border-right:1px solid #dee2e6!important}.border-start-0{border-right:0!important}.border-primary{border-color:#0d6efd!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#198754!important}.border-info{border-color:#0dcaf0!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#212529!important}.border-white{border-color:#fff!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-left:0!important;margin-right:0!important}.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-3{margin-left:1rem!important;margin-right:1rem!important}.mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-5{margin-left:3rem!important;margin-right:3rem!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-left:0!important}.me-1{margin-left:.25rem!important}.me-2{margin-left:.5rem!important}.me-3{margin-left:1rem!important}.me-4{margin-left:1.5rem!important}.me-5{margin-left:3rem!important}.me-auto{margin-left:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-right:0!important}.ms-1{margin-right:.25rem!important}.ms-2{margin-right:.5rem!important}.ms-3{margin-right:1rem!important}.ms-4{margin-right:1.5rem!important}.ms-5{margin-right:3rem!important}.ms-auto{margin-right:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-left:0!important;padding-right:0!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-3{padding-left:1rem!important;padding-right:1rem!important}.px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-5{padding-left:3rem!important;padding-right:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-left:0!important}.pe-1{padding-left:.25rem!important}.pe-2{padding-left:.5rem!important}.pe-3{padding-left:1rem!important}.pe-4{padding-left:1.5rem!important}.pe-5{padding-left:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-right:0!important}.ps-1{padding-right:.25rem!important}.ps-2{padding-right:.5rem!important}.ps-3{padding-right:1rem!important}.ps-4{padding-right:1.5rem!important}.ps-5{padding-right:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:right!important}.text-end{text-align:left!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-primary{color:#0d6efd!important}.text-secondary{color:#6c757d!important}.text-success{color:#198754!important}.text-info{color:#0dcaf0!important}.text-warning{color:#ffc107!important}.text-danger{color:#dc3545!important}.text-light{color:#f8f9fa!important}.text-dark{color:#212529!important}.text-white{color:#fff!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-reset{color:inherit!important}.bg-primary{background-color:#0d6efd!important}.bg-secondary{background-color:#6c757d!important}.bg-success{background-color:#198754!important}.bg-info{background-color:#0dcaf0!important}.bg-warning{background-color:#ffc107!important}.bg-danger{background-color:#dc3545!important}.bg-light{background-color:#f8f9fa!important}.bg-dark{background-color:#212529!important}.bg-body{background-color:#fff!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.25rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.2rem!important}.rounded-2{border-radius:.25rem!important}.rounded-3{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-right-radius:.25rem!important;border-top-left-radius:.25rem!important}.rounded-end{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-bottom{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-start{border-bottom-right-radius:.25rem!important;border-top-right-radius:.25rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:right!important}.float-sm-end{float:left!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-left:0!important;margin-right:0!important}.mx-sm-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-sm-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-sm-3{margin-left:1rem!important;margin-right:1rem!important}.mx-sm-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-sm-5{margin-left:3rem!important;margin-right:3rem!important}.mx-sm-auto{margin-left:auto!important;margin-right:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-left:0!important}.me-sm-1{margin-left:.25rem!important}.me-sm-2{margin-left:.5rem!important}.me-sm-3{margin-left:1rem!important}.me-sm-4{margin-left:1.5rem!important}.me-sm-5{margin-left:3rem!important}.me-sm-auto{margin-left:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-right:0!important}.ms-sm-1{margin-right:.25rem!important}.ms-sm-2{margin-right:.5rem!important}.ms-sm-3{margin-right:1rem!important}.ms-sm-4{margin-right:1.5rem!important}.ms-sm-5{margin-right:3rem!important}.ms-sm-auto{margin-right:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-left:0!important;padding-right:0!important}.px-sm-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-sm-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-sm-3{padding-left:1rem!important;padding-right:1rem!important}.px-sm-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-sm-5{padding-left:3rem!important;padding-right:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-left:0!important}.pe-sm-1{padding-left:.25rem!important}.pe-sm-2{padding-left:.5rem!important}.pe-sm-3{padding-left:1rem!important}.pe-sm-4{padding-left:1.5rem!important}.pe-sm-5{padding-left:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-right:0!important}.ps-sm-1{padding-right:.25rem!important}.ps-sm-2{padding-right:.5rem!important}.ps-sm-3{padding-right:1rem!important}.ps-sm-4{padding-right:1.5rem!important}.ps-sm-5{padding-right:3rem!important}.text-sm-start{text-align:right!important}.text-sm-end{text-align:left!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:right!important}.float-md-end{float:left!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-left:0!important;margin-right:0!important}.mx-md-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-md-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-md-3{margin-left:1rem!important;margin-right:1rem!important}.mx-md-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-md-5{margin-left:3rem!important;margin-right:3rem!important}.mx-md-auto{margin-left:auto!important;margin-right:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-left:0!important}.me-md-1{margin-left:.25rem!important}.me-md-2{margin-left:.5rem!important}.me-md-3{margin-left:1rem!important}.me-md-4{margin-left:1.5rem!important}.me-md-5{margin-left:3rem!important}.me-md-auto{margin-left:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-right:0!important}.ms-md-1{margin-right:.25rem!important}.ms-md-2{margin-right:.5rem!important}.ms-md-3{margin-right:1rem!important}.ms-md-4{margin-right:1.5rem!important}.ms-md-5{margin-right:3rem!important}.ms-md-auto{margin-right:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-left:0!important;padding-right:0!important}.px-md-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-md-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-md-3{padding-left:1rem!important;padding-right:1rem!important}.px-md-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-md-5{padding-left:3rem!important;padding-right:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-left:0!important}.pe-md-1{padding-left:.25rem!important}.pe-md-2{padding-left:.5rem!important}.pe-md-3{padding-left:1rem!important}.pe-md-4{padding-left:1.5rem!important}.pe-md-5{padding-left:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-right:0!important}.ps-md-1{padding-right:.25rem!important}.ps-md-2{padding-right:.5rem!important}.ps-md-3{padding-right:1rem!important}.ps-md-4{padding-right:1.5rem!important}.ps-md-5{padding-right:3rem!important}.text-md-start{text-align:right!important}.text-md-end{text-align:left!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:right!important}.float-lg-end{float:left!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-left:0!important;margin-right:0!important}.mx-lg-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-lg-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-lg-3{margin-left:1rem!important;margin-right:1rem!important}.mx-lg-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-lg-5{margin-left:3rem!important;margin-right:3rem!important}.mx-lg-auto{margin-left:auto!important;margin-right:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-left:0!important}.me-lg-1{margin-left:.25rem!important}.me-lg-2{margin-left:.5rem!important}.me-lg-3{margin-left:1rem!important}.me-lg-4{margin-left:1.5rem!important}.me-lg-5{margin-left:3rem!important}.me-lg-auto{margin-left:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-right:0!important}.ms-lg-1{margin-right:.25rem!important}.ms-lg-2{margin-right:.5rem!important}.ms-lg-3{margin-right:1rem!important}.ms-lg-4{margin-right:1.5rem!important}.ms-lg-5{margin-right:3rem!important}.ms-lg-auto{margin-right:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-left:0!important;padding-right:0!important}.px-lg-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-lg-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-lg-3{padding-left:1rem!important;padding-right:1rem!important}.px-lg-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-lg-5{padding-left:3rem!important;padding-right:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-left:0!important}.pe-lg-1{padding-left:.25rem!important}.pe-lg-2{padding-left:.5rem!important}.pe-lg-3{padding-left:1rem!important}.pe-lg-4{padding-left:1.5rem!important}.pe-lg-5{padding-left:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-right:0!important}.ps-lg-1{padding-right:.25rem!important}.ps-lg-2{padding-right:.5rem!important}.ps-lg-3{padding-right:1rem!important}.ps-lg-4{padding-right:1.5rem!important}.ps-lg-5{padding-right:3rem!important}.text-lg-start{text-align:right!important}.text-lg-end{text-align:left!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:right!important}.float-xl-end{float:left!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-left:0!important;margin-right:0!important}.mx-xl-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-xl-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-xl-3{margin-left:1rem!important;margin-right:1rem!important}.mx-xl-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-xl-5{margin-left:3rem!important;margin-right:3rem!important}.mx-xl-auto{margin-left:auto!important;margin-right:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-left:0!important}.me-xl-1{margin-left:.25rem!important}.me-xl-2{margin-left:.5rem!important}.me-xl-3{margin-left:1rem!important}.me-xl-4{margin-left:1.5rem!important}.me-xl-5{margin-left:3rem!important}.me-xl-auto{margin-left:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-right:0!important}.ms-xl-1{margin-right:.25rem!important}.ms-xl-2{margin-right:.5rem!important}.ms-xl-3{margin-right:1rem!important}.ms-xl-4{margin-right:1.5rem!important}.ms-xl-5{margin-right:3rem!important}.ms-xl-auto{margin-right:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-left:0!important;padding-right:0!important}.px-xl-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-xl-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-xl-3{padding-left:1rem!important;padding-right:1rem!important}.px-xl-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-xl-5{padding-left:3rem!important;padding-right:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-left:0!important}.pe-xl-1{padding-left:.25rem!important}.pe-xl-2{padding-left:.5rem!important}.pe-xl-3{padding-left:1rem!important}.pe-xl-4{padding-left:1.5rem!important}.pe-xl-5{padding-left:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-right:0!important}.ps-xl-1{padding-right:.25rem!important}.ps-xl-2{padding-right:.5rem!important}.ps-xl-3{padding-right:1rem!important}.ps-xl-4{padding-right:1.5rem!important}.ps-xl-5{padding-right:3rem!important}.text-xl-start{text-align:right!important}.text-xl-end{text-align:left!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:right!important}.float-xxl-end{float:left!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-left:0!important;margin-right:0!important}.mx-xxl-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-xxl-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-xxl-3{margin-left:1rem!important;margin-right:1rem!important}.mx-xxl-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-xxl-5{margin-left:3rem!important;margin-right:3rem!important}.mx-xxl-auto{margin-left:auto!important;margin-right:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-left:0!important}.me-xxl-1{margin-left:.25rem!important}.me-xxl-2{margin-left:.5rem!important}.me-xxl-3{margin-left:1rem!important}.me-xxl-4{margin-left:1.5rem!important}.me-xxl-5{margin-left:3rem!important}.me-xxl-auto{margin-left:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-right:0!important}.ms-xxl-1{margin-right:.25rem!important}.ms-xxl-2{margin-right:.5rem!important}.ms-xxl-3{margin-right:1rem!important}.ms-xxl-4{margin-right:1.5rem!important}.ms-xxl-5{margin-right:3rem!important}.ms-xxl-auto{margin-right:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-left:0!important;padding-right:0!important}.px-xxl-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-xxl-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-xxl-3{padding-left:1rem!important;padding-right:1rem!important}.px-xxl-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-xxl-5{padding-left:3rem!important;padding-right:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-left:0!important}.pe-xxl-1{padding-left:.25rem!important}.pe-xxl-2{padding-left:.5rem!important}.pe-xxl-3{padding-left:1rem!important}.pe-xxl-4{padding-left:1.5rem!important}.pe-xxl-5{padding-left:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-right:0!important}.ps-xxl-1{padding-right:.25rem!important}.ps-xxl-2{padding-right:.5rem!important}.ps-xxl-3{padding-right:1rem!important}.ps-xxl-4{padding-right:1.5rem!important}.ps-xxl-5{padding-right:3rem!important}.text-xxl-start{text-align:right!important}.text-xxl-end{text-align:left!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}
+/*# sourceMappingURL=bootstrap.rtl.min.css.map */
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/simplex.styles.css b/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/simplex.styles.css
index e886134..a8e2192 100644
--- a/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/simplex.styles.css
+++ b/Presentation/Nop.Web/Themes/SimplexTheme/Content/css/simplex.styles.css
@@ -6,7 +6,11 @@
/* Web Styles for nopAccelerate Simplex Theme */
-body{font-family: 'Lato', sans-serif;background:#fff;color:var(--grey-black);}
+body {
+ font-family: 'Lato', sans-serif;
+ background: #fff;
+ color: var(--grey-black);
+}
:root {
--red: #ea5648;
@@ -14,38 +18,164 @@ body{font-family: 'Lato', sans-serif;background:#fff;color:var(--grey-black);}
--dark-red: #ca3628;
}
-ul{margin:0px;padding:0px;}
-li{list-style:none;}
-.subscribe-button, a:hover,a,.owl-prev,.owl-next,.login-page .remember-me .checkbox label{transition:all 0.3s ease-in-out 0s;-webkit-transition:all 0.3s ease-in-out 0s;-moz-transition:all 0.3s ease-in-out 0s;-o-transition:all 0.3s ease-in-out 0s;text-decoration:none;}
-.admin-header-links{background:var(--grey-black);text-align: center;}
-.admin-header-links a,.btn-default:active:focus{color:#fff;}
-.btn.btn-primary, .google-authenticator-conteiner .buttons button{background-color: var(--red);border:none;color: #fff;border-radius:0px;font-size:14px;font-weight:700;transition:all 0.3s ease-in-out 0s;-webkit-transition:all 0.3s ease-in-out 0s;-moz-transition:all 0.3s ease-in-out 0s;-o-transition:all 0.3s ease-in-out 0s;padding:10px 15px;}
-.btn.btn-primary:hover,.btn.btn-primary:focus, .google-authenticator-conteiner .buttons button:hover , .google-authenticator-conteiner .buttons button:focus{background-color:var(--grey-black);opacity:1 !important;}
-.btn.btn-default , .payment-method .save-customer-info-button{background-color:var(--grey-black);border:none;color: #fff;border-radius:0px;font-size:14px;font-weight:700;transition:all 0.3s ease-in-out 0s;-webkit-transition:all 0.3s ease-in-out 0s;-moz-transition:all 0.3s ease-in-out 0s;-o-transition:all 0.3s ease-in-out 0s;padding:10px 15px;}
-.btn.btn-default:hover,.btn.btn-default:focus , .payment-method .save-customer-info-button:hover , .payment-method .save-customer-info-button:focus{background-color:var(--red);}
-.panel{border-radius:0px;}
-.btn.active.focus, .btn.active:focus, .btn.focus, .btn.focus:active, .btn:active:focus, .btn:focus{outline:none;}
-.form-control:focus{border-color:var(--red);box-shadow:none;}
-a:focus{outline:none;}
-.form-control{border-radius:0;}
-input[type="file"]:focus, input[type="checkbox"]:focus, input[type="radio"]:focus{outline:none;}
-input[type=checkbox], input[type=radio] {margin: 4px 2px 0 0;}
+ul {
+ margin: 0px;
+ padding: 0px;
+}
+
+li {
+ list-style: none;
+}
+
+.subscribe-button, a:hover, a, .owl-prev, .owl-next, .login-page .remember-me .checkbox label {
+ transition: all 0.3s ease-in-out 0s;
+ -webkit-transition: all 0.3s ease-in-out 0s;
+ -moz-transition: all 0.3s ease-in-out 0s;
+ -o-transition: all 0.3s ease-in-out 0s;
+ text-decoration: none;
+}
+
+.admin-header-links {
+ background: var(--grey-black);
+ text-align: center;
+}
+
+ .admin-header-links a, .btn-default:active:focus {
+ color: #fff;
+ }
+
+.btn.btn-primary, .google-authenticator-conteiner .buttons button {
+ background-color: #aaa081;
+ border: none;
+ color: #fff;
+ border-radius: 0px;
+ font-size: 14px;
+ font-weight: 700;
+ transition: all 0.3s ease-in-out 0s;
+ -webkit-transition: all 0.3s ease-in-out 0s;
+ -moz-transition: all 0.3s ease-in-out 0s;
+ -o-transition: all 0.3s ease-in-out 0s;
+ padding: 10px 15px;
+}
+
+ .btn.btn-primary:hover, .btn.btn-primary:focus, .google-authenticator-conteiner .buttons button:hover, .google-authenticator-conteiner .buttons button:focus {
+ background-color: var(--grey-black);
+ opacity: 1 !important;
+ }
+
+.btn.btn-default, .payment-method .save-customer-info-button {
+ background-color: #aaa081;
+ border: none;
+ color: #fff;
+ border-radius: 0px;
+ font-size: 14px;
+ font-weight: 700;
+ transition: all 0.3s ease-in-out 0s;
+ -webkit-transition: all 0.3s ease-in-out 0s;
+ -moz-transition: all 0.3s ease-in-out 0s;
+ -o-transition: all 0.3s ease-in-out 0s;
+ padding: 10px 15px;
+}
+
+ .btn.btn-default:hover, .btn.btn-default:focus, .payment-method .save-customer-info-button:hover, .payment-method .save-customer-info-button:focus {
+ background-color: #fff;
+ color: #000;
+ }
+
+.panel {
+ border-radius: 0px;
+}
+
+.btn.active.focus, .btn.active:focus, .btn.focus, .btn.focus:active, .btn:active:focus, .btn:focus {
+ outline: none;
+}
+
+.form-control:focus {
+ border-color: #aaa081;
+ box-shadow: none;
+}
+
+a:focus {
+ outline: none;
+}
+
+.form-control {
+ border-radius: 0;
+}
+
+input[type="file"]:focus, input[type="checkbox"]:focus, input[type="radio"]:focus {
+ outline: none;
+}
+
+input[type=checkbox], input[type=radio] {
+ margin: 4px 2px 0 0;
+}
/* ADMIN HEADER LINKS */
-.master-wrapper-page.container{margin-top:15px;overflow:hidden;}
-.main-menu.goToTop{left:0;top:0px!important;z-index:9999;position:fixed;max-width:100%!important;border-radius:0px;background:var(--grey-black);box-shadow:0px 0px 5px #444;-webkit-box-shadow: 0px 0px 5px #444;-moz-box-shadow: 0px 0px 5px #444;z-index:9999;}
-.navbar.navbar-inverse{max-width:100%!important;border:none;background-color:transparent;margin-bottom:0px;}
-.admin-header-links {display:none;}
-.header-links .logo {height: 48px;}
-.manage-page {margin-left: 15px;}
+.master-wrapper-page.container {
+ margin-top: 15px;
+ overflow: hidden;
+}
+
+.main-menu.goToTop {
+ left: 0;
+ top: 0px !important;
+ z-index: 9999;
+ position: fixed;
+ max-width: 100% !important;
+ border-radius: 0px;
+ background: #aaa081;
+ box-shadow: 0px 0px 5px #444;
+ -webkit-box-shadow: 0px 0px 5px #444;
+ -moz-box-shadow: 0px 0px 5px #444;
+ z-index: 9999;
+}
+
+.navbar.navbar-inverse {
+ max-width: 100% !important;
+ border: none;
+ background-color: transparent;
+ margin-bottom: 0px;
+}
+
+.admin-header-links {
+ display: none;
+}
+
+.header-links .logo {
+ height: 48px;
+}
+
+.manage-page {
+ margin-left: 15px;
+}
/* HEADER SECTION STYLE */
-.header-logo{text-align:center;}
-.header-upper{background:#f9f9f9;box-shadow:0px 0px 3px #999;-webkit-box-shadow: 0px 0px 3px #999;-moz-box-shadow: 0px 0px 3px #999;height:45px;border-bottom:1px solid #ddd;}
-.currency-selector,.language-selector,.tax-display-type-selector{float:left;margin:10px 6px 0px 0px;}
-.language-selector .language-list li {display: inline-block;padding: 0 5px;}
+.header-logo {
+ text-align: center;
+}
+
+.header-upper {
+ background: #aaa081;
+ box-shadow: 0px 0px 3px #999;
+ -webkit-box-shadow: 0px 0px 3px #999;
+ -moz-box-shadow: 0px 0px 3px #999;
+ height: 45px;
+ border-bottom: 1px solid #ddd;
+}
+
+.currency-selector, .language-selector, .tax-display-type-selector {
+ float: left;
+ margin: 10px 6px 0px 0px;
+}
+
+ .language-selector .language-list li {
+ display: inline-block;
+ padding: 0 5px;
+ }
+
.header-selectors-wrapper select {
background: #f5f5f5;
color: var(--grey-black);
@@ -57,476 +187,2389 @@ input[type=checkbox], input[type=radio] {margin: 4px 2px 0 0;}
box-shadow: none;
-webkit-box-shadow: none;
}
-.header-links-wrapper .admin-header-links{display:none !important;}
-.admin-header-links{display:block !important;}
-.header-links-wrapper .header-top-right{float:right;width:auto;position:relative;}
-.header-top-right ul li{float:left;}
-.header-top-right ul li.my-account a,.header-top-right ul li.register a{border-left:1px solid #ccc;}
-.header-top-right ul li a{padding:8px 15px 8px 35px;float:left;border-right:1px solid #ccc;font-size:12px;float:left;line-height:18px;color:var(--grey-black);text-decoration:none;margin:6px 0px;text-transform:capitalize;}
-.header-top-right ul li a:hover{color:var(--red);}
-.header-top-right ul li .ico-account{background:url(../images/user-icon.png) no-repeat 15px 9px;}
-.header-top-right ul li .ico-account:hover{background:url(../images/user-icon.png) no-repeat 15px -16px;}
-.header-top-right ul li .ico-register{background:url(../images/register-icon.png) no-repeat 15px 10px;}
-.header-top-right ul li .ico-register:hover{background:url(../images/register-icon.png) no-repeat 15px -15px;}
-.header-top-right ul li .ico-wishlist{background:url(../images/wishlist-icon.png) no-repeat 15px 10px;}
-.header-top-right ul li .ico-wishlist:hover{background:url(../images/wishlist-icon.png) no-repeat 15px -15px;}
-.header-top-right ul li .ico-inbox{background:url(../images/inbox-icon.png) no-repeat 15px 12px;}
-.header-top-right ul li .ico-inbox:hover{background:url(../images/inbox-icon.png) no-repeat 15px -16px;}
-.header-top-right ul li .ico-logout{background:url(../images/logout-icon.png) no-repeat 15px 9px;}
-.header-top-right ul li .ico-logout:hover{background:url(../images/logout-icon.png) no-repeat 15px -16px;}
-.header-top-right ul li .ico-login{background:url(../images/login-icon.png) no-repeat 15px 10px;}
-.header-top-right ul li .ico-login:hover{background:url(../images/login-icon.png) no-repeat 15px -15px;}
-.search-box .ui-menu .ui-menu-item a.ui-state-focus,.search-box .ui-menu .ui-menu-item a.ui-state-active{margin-top:0px !important;border:none !important;}
-.search-box .ui-state-focus,.search-box .ui-widget-content .ui-state-focus,.search-box .ui-widget-header .ui-state-focus{background:transparent;border:none;}
-.header-lower .search-box .ui-widget-content{border-radius:0px;border:1px solid #ddd;padding:0px;width:260px !important;position:absolute;}
-.header-lower .search-box .ui-autocomplete li:first-child{border:none;}
-.header-lower .ui-autocomplete li{border-top:1px dashed #bbb;float:left;width:100%;}
-.header-lower .ui-autocomplete li a{padding:10px;border-radius:0px;font-family: 'Open Sans', sans-serif;font-size:12px;background:#f5f5f5;cursor:pointer;float:left;width:100%;color:var(--grey-black);}
-.header-lower .ui-autocomplete li a:hover,.header-lower .ui-autocomplete li a:focus{color:var(--red);border:none !important;background-color:#fff;}
-.header-lower .ui-autocomplete img{display: block;float: left;min-width: 30px;margin-right:10px;}
-.header-lower .ui-menu .ui-menu-item a.ui-state-focus,.header-lower .ui-menu .ui-menu-item a.ui-state-active{margin:0px;}
-.header-lower .ui-autocomplete li a span{float:left;width:80%;}
-.header-lower .search-box{float:left;position:relative;margin-top:5px;}
-.header-lower .search-box .navbar-form{padding-left:0px;}
-.header-lower .search-box .search-nav{background:#fff;border-bottom:1px solid #ddd;width:260px;padding-left:5px;}
-.forum-search-box .search-box-text:focus,.header-lower .search-box .search-nav:focus{border-color:var(--red);}
-.search-box .btn.search-box-button{font-size: 0;background:url("../images/search-icon.png") no-repeat 0px 0px;border-radius:0px;width:34px;height:34px;transition:all 0.3s ease-in-out 0s;-webkit-transition:all 0.3s ease-in-out 0s;-moz-transition:all 0.3s ease-in-out 0s;-o-transition:all 0.3s ease-in-out 0s;right:-10px;position:absolute;}
-.search-box .btn.search-box-button:hover{background:url("../images/search-icon.png") no-repeat 0px -34px;}
-.header .search-box .form-control,.header .search-box .btn{border-radius:0;}
+
+.header-links-wrapper .admin-header-links {
+ display: none !important;
+}
+
+.admin-header-links {
+ display: block !important;
+}
+
+.header-links-wrapper .header-top-right {
+ float: right;
+ width: auto;
+ position: relative;
+}
+
+.header-top-right ul li {
+ float: left;
+}
+
+ .header-top-right ul li.my-account a, .header-top-right ul li.register a {
+ border-left: 1px solid #ccc;
+ }
+
+ .header-top-right ul li a {
+ padding: 8px 15px 8px 35px;
+ float: left;
+ border-right: 1px solid #ccc;
+ font-size: 12px;
+ float: left;
+ line-height: 18px;
+ color: var(--grey-black);
+ text-decoration: none;
+ margin: 6px 0px;
+ text-transform: capitalize;
+ }
+
+ .header-top-right ul li a:hover {
+ color: #aaa081;
+ }
+
+ .header-top-right ul li .ico-account {
+ background: url(../images/user-icon.png) no-repeat 15px 9px;
+ }
+
+ .header-top-right ul li .ico-account:hover {
+ background: url(../images/user-icon.png) no-repeat 15px -16px;
+ }
+
+ .header-top-right ul li .ico-register {
+ background: url(../images/register-icon.png) no-repeat 15px 10px;
+ }
+
+ .header-top-right ul li .ico-register:hover {
+ background: url(../images/register-icon.png) no-repeat 15px -15px;
+ }
+
+ .header-top-right ul li .ico-wishlist {
+ background: url(../images/wishlist-icon.png) no-repeat 15px 10px;
+ }
+
+ .header-top-right ul li .ico-wishlist:hover {
+ background: url(../images/wishlist-icon.png) no-repeat 15px -15px;
+ }
+
+ .header-top-right ul li .ico-inbox {
+ background: url(../images/inbox-icon.png) no-repeat 15px 12px;
+ }
+
+ .header-top-right ul li .ico-inbox:hover {
+ background: url(../images/inbox-icon.png) no-repeat 15px -16px;
+ }
+
+ .header-top-right ul li .ico-logout {
+ background: url(../images/logout-icon.png) no-repeat 15px 9px;
+ }
+
+ .header-top-right ul li .ico-logout:hover {
+ background: url(../images/logout-icon.png) no-repeat 15px -16px;
+ }
+
+ .header-top-right ul li .ico-login {
+ background: url(../images/login-icon.png) no-repeat 15px 10px;
+ }
+
+ .header-top-right ul li .ico-login:hover {
+ background: url(../images/login-icon.png) no-repeat 15px -15px;
+ }
+
+.search-box .ui-menu .ui-menu-item a.ui-state-focus, .search-box .ui-menu .ui-menu-item a.ui-state-active {
+ margin-top: 0px !important;
+ border: none !important;
+}
+
+.search-box .ui-state-focus, .search-box .ui-widget-content .ui-state-focus, .search-box .ui-widget-header .ui-state-focus {
+ background: transparent;
+ border: none;
+}
+
+.header-lower .search-box .ui-widget-content {
+ border-radius: 0px;
+ border: 1px solid #ddd;
+ padding: 0px;
+ width: 260px !important;
+ position: absolute;
+}
+
+.header-lower .search-box .ui-autocomplete li:first-child {
+ border: none;
+}
+
+.header-lower .ui-autocomplete li {
+ border-top: 1px dashed #bbb;
+ float: left;
+ width: 100%;
+}
+
+ .header-lower .ui-autocomplete li a {
+ padding: 10px;
+ border-radius: 0px;
+ font-family: 'Open Sans', sans-serif;
+ font-size: 12px;
+ background: #f5f5f5;
+ cursor: pointer;
+ float: left;
+ width: 100%;
+ color: var(--grey-black);
+ }
+
+ .header-lower .ui-autocomplete li a:hover, .header-lower .ui-autocomplete li a:focus {
+ color: #aaa081;
+ border: none !important;
+ background-color: #fff;
+ }
+
+.header-lower .ui-autocomplete img {
+ display: block;
+ float: left;
+ min-width: 30px;
+ margin-right: 10px;
+}
+
+.header-lower .ui-menu .ui-menu-item a.ui-state-focus, .header-lower .ui-menu .ui-menu-item a.ui-state-active {
+ margin: 0px;
+}
+
+.header-lower .ui-autocomplete li a span {
+ float: left;
+ width: 80%;
+}
+
+.header-lower .search-box {
+ float: left;
+ position: relative;
+ margin-top: 5px;
+}
+
+ .header-lower .search-box .navbar-form {
+ padding-left: 0px;
+ }
+
+ .header-lower .search-box .search-nav {
+ background: #fff;
+ border-bottom: 1px solid #ddd;
+ width: 260px;
+ padding-left: 5px;
+ }
+
+ .forum-search-box .search-box-text:focus, .header-lower .search-box .search-nav:focus {
+ border-color: #aaa081;
+ }
+
+.search-box .btn.search-box-button {
+ font-size: 0;
+ background: url("../images/search-icon.png") no-repeat 0px 0px;
+ border-radius: 0px;
+ width: 34px;
+ height: 34px;
+ transition: all 0.3s ease-in-out 0s;
+ -webkit-transition: all 0.3s ease-in-out 0s;
+ -moz-transition: all 0.3s ease-in-out 0s;
+ -o-transition: all 0.3s ease-in-out 0s;
+ right: -10px;
+ position: absolute;
+}
+
+ .search-box .btn.search-box-button:hover {
+ background: url("../images/search-icon.png") no-repeat 0px -34px;
+ }
+
+.header .search-box .form-control, .header .search-box .btn {
+ border-radius: 0;
+}
/* FLYOUT CART STYLE */
-.flyout-main-wrapper .flyout-cart-wrapper{position:absolute;top:50px;left:75px;z-index: 999999;width:301px;box-shadow:0 0 2px rgba(0,0,0,0.25);-webkit-box-shadow:0 0 2px rgba(0,0,0,0.25);-moz-box-shadow:0 0 2px rgba(0,0,0,0.25);background-color: #fff;border:1px solid #ddd;border-radius:0px;opacity:0;visibility:hidden;}
-.flyout-main-wrapper{float:right;margin:20px 15px 0px 0px;}
-.flyout-main-wrapper.shopping-cart-link{float:right;}
-.flyout-main-wrapper .shopping-cart-link .ico-cart{background:url(../images/cart-icon.png) no-repeat 0px 0px;float:right;height:20px;padding-left:30px;text-decoration:none;}
-.flyout-main-wrapper .shopping-cart-link .ico-cart:hover{background:url(../images/cart-icon.png) no-repeat 0px -28px;}
-.flyout-main-wrapper .shopping-cart-link .cart-label{color:var(--grey-black);}
-.flyout-main-wrapper .shopping-cart-link .cart-qty{color:var(--red);}
-.flyout-main-wrapper .flyout-cart-wrapper::before {background:url(../images/flyout-arrow-top.png) no-repeat center center;content: " ";height: 14px;left: 70%;position: absolute;top:-14px;width:26px;}
-.flyout-cart-wrapper.active{opacity:1;visibility:visible;}
-.header-lower .flyout-cart-wrapper .mini-shopping-cart .count a{float:none;border-right:0;}
-.header-lower .flyout-cart-wrapper a{border-right:none;}
-.mini-shopping-cart{padding:0px 15px;text-align: left;font-size: 12px;color:var(--grey-black);}
-.mini-shopping-cart .count{padding:10px 0px;color:var(--grey-black);border-bottom:1px solid #ddd;}
-.mini-shopping-cart .count a{margin: 0 2px;font-weight: bold;color: var(--red);}
-.mini-shopping-cart .items{margin: 0 0 20px;max-height:273px;overflow-y:auto;}
-.mini-shopping-cart .item{overflow: hidden;padding: 10px 0px;border-bottom:1px solid #ddd;}
-.mini-shopping-cart .picture{float: left;width: 70px;text-align: center;width:70px;}
-.mini-shopping-cart .picture a{display: block;position: relative;overflow: hidden;padding:0px;}
-.mini-shopping-cart .picture a:before{content: "";display: block;padding-top:0px;}
-.mini-shopping-cart .picture img{position: inherit;top: 0;right: 0;bottom: 0;left: 0;margin: auto;max-width: 100%;width:70px;}
-.mini-shopping-cart .picture + .product{float:left;margin-left:15px;}
-.mini-shopping-cart .name{margin: 0 0 5px;overflow:hidden;width:100%;float:left;}
-.mini-shopping-cart .name a{color: var(--red);font-size:13px;}
-.mini-shopping-cart .name a:hover{color: var(--grey-black);text-decoration:none;}
-.mini-shopping-cart .attributes{margin: 5px 0;color: #606162;float:left;width:100%;}
-.mini-shopping-cart .totals{margin: 0 0 15px;font-size: 14px;display:inline-block;clear:both;float:left;color:#000;width:100%;text-align:center;font-weight:700;}
-.mini-shopping-cart .totals strong{font-size: 14px;color: var(--red);}
-.mini-shopping-cart .buttons{margin: 0 0 15px;display:inline-block;clear:both;width:100%;}
-.mini-shopping-cart button[type="button"]{display: inline-block;border: none;padding:10px;font-size: 14px;color: #fff;text-transform: uppercase;width:100%;}
-.mini-shopping-cart .product{width:65%;}
-.mini-shopping-cart .quantity{float: left;margin-right: 5%;text-transform:capitalize;color:#666;}
-.mini-shopping-cart .price{float: left;}
-.empty-shopping-cart{padding:15px 0px;color:var(--grey-black);font-weight:700;}
-.mini-shopping-cart .price span{color:var(--grey-black);font-weight:700;}
-#flyout-cart .shopping-cart-link{height:35px;}
+.flyout-main-wrapper .flyout-cart-wrapper {
+ position: absolute;
+ top: 50px;
+ left: 75px;
+ z-index: 999999;
+ width: 301px;
+ box-shadow: 0 0 2px rgba(0,0,0,0.25);
+ -webkit-box-shadow: 0 0 2px rgba(0,0,0,0.25);
+ -moz-box-shadow: 0 0 2px rgba(0,0,0,0.25);
+ background-color: #fff;
+ border: 1px solid #ddd;
+ border-radius: 0px;
+ opacity: 0;
+ visibility: hidden;
+}
+
+.flyout-main-wrapper {
+ float: right;
+ margin: 20px 15px 0px 0px;
+}
+
+ .flyout-main-wrapper.shopping-cart-link {
+ float: right;
+ }
+
+ .flyout-main-wrapper .shopping-cart-link .ico-cart {
+ background: url(../images/cart-icon.png) no-repeat 0px 0px;
+ float: right;
+ height: 20px;
+ padding-left: 30px;
+ text-decoration: none;
+ }
+
+ .flyout-main-wrapper .shopping-cart-link .ico-cart:hover {
+ background: url(../images/cart-icon.png) no-repeat 0px -28px;
+ }
+
+ .flyout-main-wrapper .shopping-cart-link .cart-label {
+ color: var(--grey-black);
+ }
+
+ .flyout-main-wrapper .shopping-cart-link .cart-qty {
+ color: #aaa081;
+ }
+
+ .flyout-main-wrapper .flyout-cart-wrapper::before {
+ background: url(../images/flyout-arrow-top.png) no-repeat center center;
+ content: " ";
+ height: 14px;
+ left: 70%;
+ position: absolute;
+ top: -14px;
+ width: 26px;
+ }
+
+.flyout-cart-wrapper.active {
+ opacity: 1;
+ visibility: visible;
+}
+
+.header-lower .flyout-cart-wrapper .mini-shopping-cart .count a {
+ float: none;
+ border-right: 0;
+}
+
+.header-lower .flyout-cart-wrapper a {
+ border-right: none;
+}
+
+.mini-shopping-cart {
+ padding: 0px 15px;
+ text-align: left;
+ font-size: 12px;
+ color: var(--grey-black);
+}
+
+ .mini-shopping-cart .count {
+ padding: 10px 0px;
+ color: var(--grey-black);
+ border-bottom: 1px solid #ddd;
+ }
+
+ .mini-shopping-cart .count a {
+ margin: 0 2px;
+ font-weight: bold;
+ color: #aaa081;
+ }
+
+ .mini-shopping-cart .items {
+ margin: 0 0 20px;
+ max-height: 273px;
+ overflow-y: auto;
+ }
+
+ .mini-shopping-cart .item {
+ overflow: hidden;
+ padding: 10px 0px;
+ border-bottom: 1px solid #ddd;
+ }
+
+ .mini-shopping-cart .picture {
+ float: left;
+ width: 70px;
+ text-align: center;
+ width: 70px;
+ }
+
+ .mini-shopping-cart .picture a {
+ display: block;
+ position: relative;
+ overflow: hidden;
+ padding: 0px;
+ }
+
+ .mini-shopping-cart .picture a:before {
+ content: "";
+ display: block;
+ padding-top: 0px;
+ }
+
+ .mini-shopping-cart .picture img {
+ position: inherit;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ margin: auto;
+ max-width: 100%;
+ width: 70px;
+ }
+
+ .mini-shopping-cart .picture + .product {
+ float: left;
+ margin-left: 15px;
+ }
+
+ .mini-shopping-cart .name {
+ margin: 0 0 5px;
+ overflow: hidden;
+ width: 100%;
+ float: left;
+ }
+
+ .mini-shopping-cart .name a {
+ color: #aaa081;
+ font-size: 13px;
+ }
+
+ .mini-shopping-cart .name a:hover {
+ color: var(--grey-black);
+ text-decoration: none;
+ }
+
+ .mini-shopping-cart .attributes {
+ margin: 5px 0;
+ color: #606162;
+ float: left;
+ width: 100%;
+ }
+
+ .mini-shopping-cart .totals {
+ margin: 0 0 15px;
+ font-size: 14px;
+ display: inline-block;
+ clear: both;
+ float: left;
+ color: #000;
+ width: 100%;
+ text-align: center;
+ font-weight: 700;
+ }
+
+ .mini-shopping-cart .totals strong {
+ font-size: 14px;
+ color: #aaa081;
+ }
+
+ .mini-shopping-cart .buttons {
+ margin: 0 0 15px;
+ display: inline-block;
+ clear: both;
+ width: 100%;
+ }
+
+ .mini-shopping-cart button[type="button"] {
+ display: inline-block;
+ border: none;
+ padding: 10px;
+ font-size: 14px;
+ color: #fff;
+ text-transform: uppercase;
+ width: 100%;
+ }
+
+ .mini-shopping-cart .product {
+ width: 65%;
+ }
+
+ .mini-shopping-cart .quantity {
+ float: left;
+ margin-right: 5%;
+ text-transform: capitalize;
+ color: #666;
+ }
+
+ .mini-shopping-cart .price {
+ float: left;
+ }
+
+.empty-shopping-cart {
+ padding: 15px 0px;
+ color: var(--grey-black);
+ font-weight: 700;
+}
+
+.mini-shopping-cart .price span {
+ color: var(--grey-black);
+ font-weight: 700;
+}
+
+#flyout-cart .shopping-cart-link {
+ height: 35px;
+}
/* HEADER AND MENU STYLE */
/* override some jQuery UI style */
-.search-box .ui-autocomplete-loading{background:white url('../images/ajax_loader_small.gif') right center no-repeat;}
-.ui-autocomplete{z-index:10 !important;}
-.ui-autocomplete .ui-menu-item a{text-align:left !important;}
-.header-lower{padding:25px 0px;position:relative;}
-.header-menu .navbar-default{background-color:transparent;border-color:transparent;margin-bottom:0px;}
-.header-menu{background:var(--grey-black);margin-bottom:30px;}
-.header-menu .navbar.navbar-inverse .nav.navbar-nav > li.dropdown .dropdown-menu.sub-menusublist.first-level li .dropdown-menu.sub-menusublist.first-level,.header-menu .navbar.navbar-inverse .nav.navbar-nav > li.dropdown .dropdown-menu.sub-menusublist.first-level li .dropdown-menu.sub-menusublist.first-level li .dropdown-menu.sub-menusublist.first-level{display:none;}
-.header-menu .navbar.navbar-inverse .navbar-collapse{padding:0px;}
-.header-menu .navbar.navbar-inverse .nav.navbar-nav > li.active > a{background:var(--red);color:#fff;padding:15px 22px;}
-.header-menu .navbar.navbar-inverse .nav.navbar-nav > li{float:left;}
-.header-menu .navbar.navbar-inverse .nav.navbar-nav > li > a{float:left;padding:20px 22px;line-height:25px;color:#fff;text-transform:uppercase;font-weight:700;}
-.header-menu .navbar.navbar-inverse .nav.navbar-nav > li > a:hover{background:var(--red);}
-.header-menu .navbar.navbar-inverse .nav.navbar-nav > li.dropdown > a:hover:before{background: url(../images/active-menu-icon.png) no-repeat center bottom;position:absolute;left:40%;height:12px;width:24px;content:"";top:54px;}
-.header-menu .navbar.navbar-inverse .nav.navbar-nav > li.dropdown.open > a{background:var(--red);}
-.header-menu .navbar.navbar-inverse .nav.navbar-nav > li.dropdown .dropdown-menu li a{padding:10px 15px 10px 40px;line-height:15px;background:url("../images/submenu-deactive-icon-rtl.png") no-repeat 20px 10px #f9f9f9;white-space:normal;word-wrap:break-word;}
-.header-menu .navbar.navbar-inverse .nav.navbar-nav > li.dropdown .dropdown-menu li a:hover{color:var(--red);background:url("../images/submenu-active-icon-rtl.png") no-repeat 20px 10px #f9f9f9;}
-.slider-wrapper.theme-custom{margin-bottom:20px;}
-.main-menu.goToTop .navbar.navbar-inverse.category-menu{margin: 0 auto;width: 1140px !important;}
-.header-menu .main-menu{width: 100% !important;transition:all 0.5s ease-in-out 0s;}
-.html-home-page .header-menu{margin-bottom:0px;}
-.theme-custom .nivo-controlNav a.active{background-color:var(--red) !important;}
+.search-box .ui-autocomplete-loading {
+ background: white url('../images/ajax_loader_small.gif') right center no-repeat;
+}
+
+.ui-autocomplete {
+ z-index: 10 !important;
+}
+
+ .ui-autocomplete .ui-menu-item a {
+ text-align: left !important;
+ }
+
+.header-lower {
+ padding: 25px 0px;
+ position: relative;
+}
+
+.header-menu .navbar-default {
+ background-color: transparent;
+ border-color: transparent;
+ margin-bottom: 0px;
+}
+
+.header-menu {
+ background: var(--grey-black);
+ margin-bottom: 30px;
+}
+
+ .header-menu .navbar.navbar-inverse .nav.navbar-nav > li.dropdown .dropdown-menu.sub-menusublist.first-level li .dropdown-menu.sub-menusublist.first-level, .header-menu .navbar.navbar-inverse .nav.navbar-nav > li.dropdown .dropdown-menu.sub-menusublist.first-level li .dropdown-menu.sub-menusublist.first-level li .dropdown-menu.sub-menusublist.first-level {
+ display: none;
+ }
+
+ .header-menu .navbar.navbar-inverse .navbar-collapse {
+ padding: 0px;
+ }
+
+ .header-menu .navbar.navbar-inverse .nav.navbar-nav > li.active > a {
+ background: #aaa081;
+ color: #fff;
+ padding: 15px 22px;
+ }
+
+ .header-menu .navbar.navbar-inverse .nav.navbar-nav > li {
+ float: left;
+ }
+
+ .header-menu .navbar.navbar-inverse .nav.navbar-nav > li > a {
+ float: left;
+ padding: 20px 22px;
+ line-height: 25px;
+ color: #fff;
+ text-transform: uppercase;
+ font-weight: 700;
+ }
+
+ .header-menu .navbar.navbar-inverse .nav.navbar-nav > li > a:hover {
+ background: #aaa081;
+ }
+
+ .header-menu .navbar.navbar-inverse .nav.navbar-nav > li.dropdown > a:hover:before {
+ background: url(../images/active-menu-icon.png) no-repeat center bottom;
+ position: absolute;
+ left: 40%;
+ height: 12px;
+ width: 24px;
+ content: "";
+ top: 54px;
+ }
+
+ .header-menu .navbar.navbar-inverse .nav.navbar-nav > li.dropdown.open > a {
+ background: #aaa081;
+ }
+
+ .header-menu .navbar.navbar-inverse .nav.navbar-nav > li.dropdown .dropdown-menu li a {
+ padding: 10px 15px 10px 40px;
+ line-height: 15px;
+ background: url("../images/submenu-deactive-icon-rtl.png") no-repeat 20px 10px #f9f9f9;
+ white-space: normal;
+ word-wrap: break-word;
+ }
+
+ .header-menu .navbar.navbar-inverse .nav.navbar-nav > li.dropdown .dropdown-menu li a:hover {
+ color: #aaa081;
+ background: url("../images/submenu-active-icon-rtl.png") no-repeat 20px 10px #f9f9f9;
+ }
+
+.slider-wrapper.theme-custom {
+ margin-bottom: 20px;
+}
+
+.main-menu.goToTop .navbar.navbar-inverse.category-menu {
+ margin: 0 auto;
+ width: 1140px !important;
+}
+
+.header-menu .main-menu {
+ width: 100% !important;
+ transition: all 0.5s ease-in-out 0s;
+}
+
+.html-home-page .header-menu {
+ margin-bottom: 0px;
+}
+
+.theme-custom .nivo-controlNav a.active {
+ background-color: #aaa081 !important;
+}
/* CONTENT SECTION STYLE */
-.title.sub-title{margin-bottom:50px;position: relative;text-align: center;}
-.title.sub-title::before {border-top: 1px solid #ccc;content: "";left: 0%;position: absolute;right:0%;top:50%;}
-.title.sub-title strong {background: #fff;border: 1px solid #ccc;display: inline-block;position: relative;z-index: 10;padding:15px 25px;font-weight:700;text-transform:uppercase;font-size:18px;color:var(--grey-black);letter-spacing:3px;line-height:24px;}
+.title.sub-title {
+ margin-bottom: 50px;
+ position: relative;
+ text-align: center;
+}
+
+ .title.sub-title::before {
+ border-top: 1px solid #ccc;
+ content: "";
+ left: 0%;
+ position: absolute;
+ right: 0%;
+ top: 50%;
+ }
+
+ .title.sub-title strong {
+ background: #fff;
+ border: 1px solid #ccc;
+ display: inline-block;
+ position: relative;
+ z-index: 10;
+ padding: 15px 25px;
+ font-weight: 700;
+ text-transform: uppercase;
+ font-size: 18px;
+ color: var(--grey-black);
+ letter-spacing: 3px;
+ line-height: 24px;
+ }
/* HOME NEWS SECTION STYLE */
-.news-list-homepage .news-items .item{margin-bottom:10px;border-radius:0px;background:#fff;float:left;width:100%;}
-.news-list-homepage .news-items .news-head{float:left;width:100%;}
-.news-list-homepage .news-head a{float:left;width:100%;background:#f5f5f5;padding:25px 0px;color:var(--grey-black);font-size:16px;font-weight:700;text-transform:uppercase;border-bottom:1px solid #ddd;text-align:center;}
-.news-list-page .news-date,.news-list-homepage .news-date{float:right;width:100%;text-align:right;margin:20px 0px;color:var(--red);}
-.news-list-homepage .news-details{clear:both;line-height:24px;margin-bottom:25px;color:#555;padding:0 10px;}
-.news-list-page .news-button,.news-list-homepage .news-button{text-align:center;}
-.news-list-page .news-button .read-more,.news-list-homepage .read-more{text-transform:uppercase;padding:10px 25px;}
-.news-list-page .news-button .read-more span,.news-list-homepage .read-more span{float:left;line-height:20px;}
-.news-list-page .news-button .read-more i,.news-list-homepage .read-more i{margin-left:8px;float:left;line-height:20px;}
-.home-page .news-list-homepage .view-all{clear:both;text-align:center;}
-.home-page .news-list-homepage .view-all a{text-transform:uppercase;padding:10px 20px}
-.news-list-homepage{margin-bottom:50px;}
+.news-list-homepage .news-items .item {
+ margin-bottom: 10px;
+ border-radius: 0px;
+ background: #fff;
+ float: left;
+ width: 100%;
+}
+
+.news-list-homepage .news-items .news-head {
+ float: left;
+ width: 100%;
+}
+
+.news-list-homepage .news-head a {
+ float: left;
+ width: 100%;
+ background: #f5f5f5;
+ padding: 25px 0px;
+ color: var(--grey-black);
+ font-size: 16px;
+ font-weight: 700;
+ text-transform: uppercase;
+ border-bottom: 1px solid #ddd;
+ text-align: center;
+}
+
+.news-list-page .news-date, .news-list-homepage .news-date {
+ float: right;
+ width: 100%;
+ text-align: right;
+ margin: 20px 0px;
+ color: #aaa081;
+}
+
+.news-list-homepage .news-details {
+ clear: both;
+ line-height: 24px;
+ margin-bottom: 25px;
+ color: #555;
+ padding: 0 10px;
+}
+
+.news-list-page .news-button, .news-list-homepage .news-button {
+ text-align: center;
+}
+
+ .news-list-page .news-button .read-more, .news-list-homepage .read-more {
+ text-transform: uppercase;
+ padding: 10px 25px;
+ }
+
+ .news-list-page .news-button .read-more span, .news-list-homepage .read-more span {
+ float: left;
+ line-height: 20px;
+ }
+
+ .news-list-page .news-button .read-more i, .news-list-homepage .read-more i {
+ margin-left: 8px;
+ float: left;
+ line-height: 20px;
+ }
+
+.home-page .news-list-homepage .view-all {
+ clear: both;
+ text-align: center;
+}
+
+ .home-page .news-list-homepage .view-all a {
+ text-transform: uppercase;
+ padding: 10px 20px
+ }
+
+.news-list-homepage {
+ margin-bottom: 50px;
+}
/* POLL BLOCK STYLE */
-.poll-options{list-style:none;}
-.listbox .poll-results .answer{padding-bottom:5px;}
-#block-poll-vote-error-1{background-color: #f2dede;border-color: #ebccd1;color: #a94442; padding:0px 10px; margin-top:10px; font-weight:bold;clear:both;}
-.poll{text-align:center;}
-.poll-options li{display:inline-block;float:none;margin:0px 30px;}
-.poll-options li .radio input{margin-right:5px;}
-.poll-options li label{color:var(--grey-black);font-weight:normal;}
-.block.block-poll.well .poll-options li{float:left;width:100%;margin:0px;}
-.block.block-poll.well .poll-options li label,.block.block-poll.well .poll{text-align:left;}
-.block.block-poll.well .poll-display-text{text-align:left;}
-.poll strong{font-weight:500;margin-bottom:25px;text-align:center;display:inline-block;background:#f5f5f5;padding:15px 40px;color:#555;text-transform:uppercase;}
-.home-page-polls .buttons{margin-top:30px;}
-.home-page-polls .buttons .vote-poll-button{text-transform:uppercase;padding:10px 20px;}
-.block.block-poll.well.box-shadow-wrapper .poll-total-votes{margin-bottom:15px;float:left;width:100%;margin-top:10px;}
-.block.block-poll.well.box-shadow-wrapper .listbox .poll-results .answer{padding-bottom:0px;margin-top:10px;}
-.home-page-polls .title {text-align: center;}
+.poll-options {
+ list-style: none;
+}
+
+.listbox .poll-results .answer {
+ padding-bottom: 5px;
+}
+
+#block-poll-vote-error-1 {
+ background-color: #f2dede;
+ border-color: #ebccd1;
+ color: #a94442;
+ padding: 0px 10px;
+ margin-top: 10px;
+ font-weight: bold;
+ clear: both;
+}
+
+.poll {
+ text-align: center;
+}
+
+.poll-options li {
+ display: inline-block;
+ float: none;
+ margin: 0px 30px;
+}
+
+ .poll-options li .radio input {
+ margin-right: 5px;
+ }
+
+ .poll-options li label {
+ color: var(--grey-black);
+ font-weight: normal;
+ }
+
+.block.block-poll.well .poll-options li {
+ float: left;
+ width: 100%;
+ margin: 0px;
+}
+
+ .block.block-poll.well .poll-options li label, .block.block-poll.well .poll {
+ text-align: left;
+ }
+
+.block.block-poll.well .poll-display-text {
+ text-align: left;
+}
+
+.poll strong {
+ font-weight: 500;
+ margin-bottom: 25px;
+ text-align: center;
+ display: inline-block;
+ background: #f5f5f5;
+ padding: 15px 40px;
+ color: #555;
+ text-transform: uppercase;
+}
+
+.home-page-polls .buttons {
+ margin-top: 30px;
+}
+
+ .home-page-polls .buttons .vote-poll-button {
+ text-transform: uppercase;
+ padding: 10px 20px;
+ }
+
+.block.block-poll.well.box-shadow-wrapper .poll-total-votes {
+ margin-bottom: 15px;
+ float: left;
+ width: 100%;
+ margin-top: 10px;
+}
+
+.block.block-poll.well.box-shadow-wrapper .listbox .poll-results .answer {
+ padding-bottom: 0px;
+ margin-top: 10px;
+}
+
+.home-page-polls .title {
+ text-align: center;
+}
/* FOOTER SECTION STYLE */
-.change-device{clear:both;text-align:right;}
-.designedby{text-align:right;}
-.footer-store-theme{text-align:center;}
-.footer{float:left;width:100%;background:#f8f8f8;margin-top:50px;box-shadow:0px 0px 20px #ddd;-moz-box-shadow:0px 0px 20px #ddd;-webkit-box-shadow:0px 0px 20px #ddd;}
-.footer ul.nav li a{padding:0;}
-.footer-upper .social-wrapper{float:right;}
-.footer-upper .social-wrapper li{float:left;}
-.footer-upper .social-wrapper li a{float:left;height:45px;width:45px;border:1px solid #ddd;margin-right:10px;text-align:center;line-height:45px;background:#fff;color:var(--grey-black);font-size:20px;word-break:break-word;}
-.footer-upper .social-wrapper li a:hover{background:var(--red);color:#fff;border-color:var(--red);}
-.newsletter-subscribe-block .newsletter-email{float:left;}
-.newsletter-subscribe-block .form-group{float:left;margin-bottom:0px;}
-#newsletter-email,#newsletter-subscribe-button{border-radius:0;}
-.footer-disclaimer{margin-top:10px;}
-#newsletter-subscribe-block #newsletter-email{float: left;width:300px;height:45px;color:#aaa;}
-#newsletter-subscribe-block #newsletter-subscribe-button{float: left;width: auto;max-height: 45px;}
-.newsletter-subscribe-block .options {clear: both;padding-top: 10px;}
-.newsletter-subscribe-block .options .subscribe {padding-right: 10px;}
- #newsletter-subscribe-button{font-size:15px;padding:12px;text-transform:uppercase;}
-.footer-upper{padding:30px 0px;border-bottom:1px solid #e5e5e5;}
-.newsletter-wrapper strong{float:left;text-transform:uppercase;font-size:18px;font-weight:normal;margin-right:15px;margin-top:10px;}
-.newsletter-result-block{color: var(--red);clear:both;text-align:center;float:left;width:100%;}
-.newsletter-validation{text-align:center;}
-.footer-middle{padding:35px 0px;}
-.footer-middle .title{margin-bottom:25px;}
-.footer-middle .title strong{font-size:18px;color:var(--grey-black);text-transform:uppercase;}
-.footer .footer-middle ul li a{color:#777;text-transform:capitalize;margin-bottom:20px;display:inline-block;}
-.footer .footer-middle ul li a i{margin-right:8px;}
-.footer-middle ul li a:hover,.footer-middle ul li a:focus{background:transparent;color:var(--red);}
-.footer-middle .contact-wrapper i{float:left;margin-right:20px;font-size:16px;line-height:20px;}
-.footer-middle .contact-wrapper .address i{line-height:65px;}
-.footer-middle .contact-wrapper .phone-number i{margin-right:16px;}
-.footer-middle .contact-wrapper .fax i{margin-right:14px;}
-.footer-middle .contact-wrapper p{float:left;width:85%;color:#777;letter-spacing:0.5px;margin-bottom:10px;text-transform:capitalize;}
-.footer-lower{padding:20px 0px;background:#222;color:#fff;}
-.footer-lower a{color:var(--red);}
-.footer-lower a:hover{color:#fff;}
-.footer-lower .poweredby,.footer-designedby{color:#999999;}
-.footer-lower .payment-method ul li{background:url(../images/payment-method.png) no-repeat left center;float:left;width:55px;height:30px;}
-.footer-lower .payment-method ul .payment-method2{background-position:-55px center;}
-.footer-lower .payment-method ul .payment-method3{background-position:-110px center;}
-.footer-lower .payment-method ul .payment-method4{background-position:-165px center;}
-.footer-lower .payment-method ul .payment-method5{background-position:-220px center;}
-.footer-lower .payment-method{float: left;margin-top: 20px;}
-.footer-lower .footer-theme-credit{margin-bottom: 8px;}
-.footer-lower .footer-store-theme .theme-selector select{color:#000;padding:5px;margin-top:10px;}
+.change-device {
+ clear: both;
+ text-align: right;
+}
+
+.designedby {
+ text-align: right;
+}
+
+.footer-store-theme {
+ text-align: center;
+}
+
+.footer {
+ float: left;
+ width: 100%;
+ background: #f8f8f8;
+ margin-top: 50px;
+ box-shadow: 0px 0px 20px #ddd;
+ -moz-box-shadow: 0px 0px 20px #ddd;
+ -webkit-box-shadow: 0px 0px 20px #ddd;
+}
+
+ .footer ul.nav li a {
+ padding: 0;
+ }
+
+.footer-upper .social-wrapper {
+ float: right;
+}
+
+ .footer-upper .social-wrapper li {
+ float: left;
+ }
+
+ .footer-upper .social-wrapper li a {
+ float: left;
+ height: 45px;
+ width: 45px;
+ border: 1px solid #ddd;
+ margin-right: 10px;
+ text-align: center;
+ line-height: 45px;
+ background: #fff;
+ color: var(--grey-black);
+ font-size: 20px;
+ word-break: break-word;
+ }
+
+ .footer-upper .social-wrapper li a:hover {
+ background: #aaa081;
+ color: #fff;
+ border-color: #aaa081;
+ }
+
+.newsletter-subscribe-block .newsletter-email {
+ float: left;
+}
+
+.newsletter-subscribe-block .form-group {
+ float: left;
+ margin-bottom: 0px;
+}
+
+#newsletter-email, #newsletter-subscribe-button {
+ border-radius: 0;
+}
+
+.footer-disclaimer {
+ margin-top: 10px;
+}
+
+#newsletter-subscribe-block #newsletter-email {
+ float: left;
+ width: 300px;
+ height: 45px;
+ color: #aaa;
+}
+
+#newsletter-subscribe-block #newsletter-subscribe-button {
+ float: left;
+ width: auto;
+ max-height: 45px;
+}
+
+.newsletter-subscribe-block .options {
+ clear: both;
+ padding-top: 10px;
+}
+
+ .newsletter-subscribe-block .options .subscribe {
+ padding-right: 10px;
+ }
+
+#newsletter-subscribe-button {
+ font-size: 15px;
+ padding: 12px;
+ text-transform: uppercase;
+}
+
+.footer-upper {
+ padding: 30px 0px;
+ border-bottom: 1px solid #e5e5e5;
+}
+
+.newsletter-wrapper strong {
+ float: left;
+ text-transform: uppercase;
+ font-size: 18px;
+ font-weight: normal;
+ margin-right: 15px;
+ margin-top: 10px;
+}
+
+.newsletter-result-block {
+ color: #aaa081;
+ clear: both;
+ text-align: center;
+ float: left;
+ width: 100%;
+}
+
+.newsletter-validation {
+ text-align: center;
+}
+
+.footer-middle {
+ padding: 35px 0px;
+}
+
+ .footer-middle .title {
+ margin-bottom: 25px;
+ }
+
+ .footer-middle .title strong {
+ font-size: 18px;
+ color: var(--grey-black);
+ text-transform: uppercase;
+ }
+
+.footer .footer-middle ul li a {
+ color: #777;
+ text-transform: capitalize;
+ margin-bottom: 20px;
+ display: inline-block;
+}
+
+ .footer .footer-middle ul li a i {
+ margin-right: 8px;
+ }
+
+.footer-middle ul li a:hover, .footer-middle ul li a:focus {
+ background: transparent;
+ color: #aaa081;
+}
+
+.footer-middle .contact-wrapper i {
+ float: left;
+ margin-right: 20px;
+ font-size: 16px;
+ line-height: 20px;
+}
+
+.footer-middle .contact-wrapper .address i {
+ line-height: 65px;
+}
+
+.footer-middle .contact-wrapper .phone-number i {
+ margin-right: 16px;
+}
+
+.footer-middle .contact-wrapper .fax i {
+ margin-right: 14px;
+}
+
+.footer-middle .contact-wrapper p {
+ float: left;
+ width: 85%;
+ color: #777;
+ letter-spacing: 0.5px;
+ margin-bottom: 10px;
+ text-transform: capitalize;
+}
+
+.footer-lower {
+ padding: 20px 0px;
+ background: #222;
+ color: #fff;
+}
+
+ .footer-lower a {
+ color: #aaa081;
+ }
+
+ .footer-lower a:hover {
+ color: #fff;
+ }
+
+ .footer-lower .poweredby, .footer-designedby {
+ color: #999999;
+ }
+
+ .footer-lower .payment-method ul li {
+ background: url(../images/payment-method.png) no-repeat left center;
+ float: left;
+ width: 55px;
+ height: 30px;
+ }
+
+ .footer-lower .payment-method ul .payment-method2 {
+ background-position: -55px center;
+ }
+
+ .footer-lower .payment-method ul .payment-method3 {
+ background-position: -110px center;
+ }
+
+ .footer-lower .payment-method ul .payment-method4 {
+ background-position: -165px center;
+ }
+
+ .footer-lower .payment-method ul .payment-method5 {
+ background-position: -220px center;
+ }
+
+ .footer-lower .payment-method {
+ float: left;
+ margin-top: 20px;
+ }
+
+ .footer-lower .footer-theme-credit {
+ margin-bottom: 8px;
+ }
+
+ .footer-lower .footer-store-theme .theme-selector select {
+ color: #000;
+ padding: 5px;
+ margin-top: 10px;
+ }
/* SIDEBAR NAVIGATION STYLE */
-.box-shadow-wrapper .listbox ul li,.box-shadow-wrapper .listbox .nav.nav-list,.box-shadow-wrapper .listbox .sublist.nav.nav-list{clear:both;}
-.block-popular-tags.sidebar .nav > li > a:hover,.block-popular-tags.sidebar .nav > li > a:focus{background:none;}
-#customerTaxType, #customerCurrency, #customerlanguage{border:1px solid #ddd;}
-.title.main-title{background:var(--red);padding:15px 20px;}
-.title.main-title strong{font-weight:700;font-size:18px;color:#fff;}
-.box-shadow-wrapper .listbox{border:1px solid #ddd;padding:15px;float:left;width:100%;}
-.box-shadow-wrapper{margin-bottom:30px;float:left;width:100%;padding:0px;border-radius:0px;border:none;background:#fff;}
-.block.block-blog-archive.well.box-shadow-wrapper .listbox ul li strong,.box-shadow-wrapper .listbox ul li a{padding:15px 0px 15px 25px;float:left;width:100%;border-bottom:1px solid #ddd;color:var(--grey-black);font-size:14px;font-weight:normal;text-decoration:none;word-break:break-word;}
-.box-shadow-wrapper .listbox ul li.active.last{clear:both;}
-.block.block-account-navigation .listbox ul li a.active,.block-manufacturer-navigation.box-shadow-wrapper .listbox ul li.active a,.box-shadow-wrapper .listbox ul li.active.last > a,.box-shadow-wrapper .listbox ul li a:hover,.block-blog-archive .listbox ul li a{color:var(--red);}
-.block.block-blog-archive.well.box-shadow-wrapper .listbox ul li strong,.box-shadow-wrapper .listbox ul li > a{background:url(../images/submenu-deactive-icon.png) no-repeat left center;}
-.block.block-account-navigation .listbox ul li > a.active,.block-manufacturer-navigation.box-shadow-wrapper .listbox ul li.active > a,.box-shadow-wrapper .listbox ul li.active.last > a{background:url(../images/submenu-active-icon.png) no-repeat transparent left center;font-weight:700;}
-.box-shadow-wrapper .listbox ul li .sublist li a{padding:15px 0px 15px 45px;background:url(../images/submenu-list-deactive-icon.png) no-repeat 30px center;}
-.box-shadow-wrapper .listbox ul li .sublist li a:hover,.box-shadow-wrapper .listbox ul li .sublist li.active.last > a{background:url(../images/submenu-list-active-icon.png) no-repeat transparent 30px center;}
-.box-shadow-wrapper .listbox ul li .sublist li .sublist li a{padding:15px 0px 15px 60px;background:url(../images/submenu-list-deactive-icon.png) no-repeat 45px center;}
-.box-shadow-wrapper .listbox ul li .sublist li .sublist li a:hover,.box-shadow-wrapper .listbox ul li .sublist li .sublist li.active.last > a{background:url(../images/submenu-list-active-icon.png) no-repeat transparent 45px center;}
-.box-shadow-wrapper .listbox ul li .sublist li .sublist li .sublist li a{padding:15px 0px 15px 78px;background:url(../images/submenu-list-deactive-icon.png) no-repeat 60px center;}
-.box-shadow-wrapper .listbox ul li .sublist li .sublist li .sublist li a:hover,.box-shadow-wrapper .listbox ul li .sublist li .sublist li .sublist li.active.last > a{background:url(../images/submenu-list-active-icon.png) no-repeat transparent 60px center;}
-.box-shadow-wrapper .listbox .view-all,.block.block-poll.well.box-shadow-wrapper .buttons{float: left;margin-top:10px;margin-bottom:10px;}
-.box-shadow-wrapper .listbox .view-all a,.box-shadow-wrapper .listbox .vote-poll-button{background:var(--grey-black);color:#fff;padding:8px 10px;font-size:14px;font-weight:700;float:left;margin-bottom:10px;}
-.box-shadow-wrapper .listbox .view-all a:hover,.box-shadow-wrapper .listbox .vote-poll-button:hover{background:var(--red);text-decoration:none;}
-.block.block-popular-tags.box-shadow-wrapper .listbox ul li a{float:left;width:auto;border-bottom:none;padding:0px;font-size:100% !important;margin-right:5px;}
-.block.block-popular-tags.box-shadow-wrapper .listbox .tags{padding:10px 0px;float:left;width:100%;}
-.block.block-popular-tags.box-shadow-wrapper .listbox .tags ul li{margin-left:0px;clear:none;margin-bottom:5px;}
-.block.block-popular-tags.box-shadow-wrapper .listbox .tags ul li:last-child span{display:none;}
-.block.block-popular-tags.well.box-shadow-wrapper .listbox ul li a{background:none;}
-.block.block-popular-tags.well.box-shadow-wrapper .view-all{margin-top:0px;}
-.block.block-poll.well.box-shadow-wrapper .poll-options.nav.nav-pills{margin-left:0px;padding-top:0px;}
-.block.block-poll.well.box-shadow-wrapper .poll strong{padding:15px 10px;margin-top:10px;margin-bottom:0px;}
-.block.block-poll.well.box-shadow-wrapper .poll-options li label{margin:5px 0px;}
-.block.block-recently-viewed-products.well.box-shadow-wrapper .product-picture{float:left;}
-.block.block-recently-viewed-products.well.box-shadow-wrapper .product-picture a{float:left;padding:15px 0px;margin-right:10px;border:none;}
-.block.block-recently-viewed-products.well.box-shadow-wrapper .product-name{float:left;border:none;background:none;padding:15px 0px;width:60%;}
-.block.block-recently-viewed-products.well.box-shadow-wrapper ul li{float:left;width:100%;border-bottom:1px solid #ddd;}
-.block.block-recently-viewed-products.well.box-shadow-wrapper ul li:hover .product-name{color:var(--red);}
+.box-shadow-wrapper .listbox ul li, .box-shadow-wrapper .listbox .nav.nav-list, .box-shadow-wrapper .listbox .sublist.nav.nav-list {
+ clear: both;
+}
+
+.block-popular-tags.sidebar .nav > li > a:hover, .block-popular-tags.sidebar .nav > li > a:focus {
+ background: none;
+}
+
+#customerTaxType, #customerCurrency, #customerlanguage {
+ border: 1px solid #ddd;
+}
+
+.title.main-title {
+ background: #aaa081;
+ padding: 15px 20px;
+}
+
+ .title.main-title strong {
+ font-weight: 700;
+ font-size: 18px;
+ color: #fff;
+ }
+
+.box-shadow-wrapper .listbox {
+ border: 1px solid #ddd;
+ padding: 15px;
+ float: left;
+ width: 100%;
+}
+
+.box-shadow-wrapper {
+ margin-bottom: 30px;
+ float: left;
+ width: 100%;
+ padding: 0px;
+ border-radius: 0px;
+ border: none;
+ background: #fff;
+}
+
+ .block.block-blog-archive.well.box-shadow-wrapper .listbox ul li strong, .box-shadow-wrapper .listbox ul li a {
+ padding: 15px 0px 15px 25px;
+ float: left;
+ width: 100%;
+ border-bottom: 1px solid #ddd;
+ color: var(--grey-black);
+ font-size: 14px;
+ font-weight: normal;
+ text-decoration: none;
+ word-break: break-word;
+ }
+
+ .box-shadow-wrapper .listbox ul li.active.last {
+ clear: both;
+ }
+
+ .block.block-account-navigation .listbox ul li a.active, .block-manufacturer-navigation.box-shadow-wrapper .listbox ul li.active a, .box-shadow-wrapper .listbox ul li.active.last > a, .box-shadow-wrapper .listbox ul li a:hover, .block-blog-archive .listbox ul li a {
+ color: #aaa081;
+ }
+
+ .block.block-blog-archive.well.box-shadow-wrapper .listbox ul li strong, .box-shadow-wrapper .listbox ul li > a {
+ background: url(../images/submenu-deactive-icon.png) no-repeat left center;
+ }
+
+ .block.block-account-navigation .listbox ul li > a.active, .block-manufacturer-navigation.box-shadow-wrapper .listbox ul li.active > a, .box-shadow-wrapper .listbox ul li.active.last > a {
+ background: url(../images/submenu-active-icon.png) no-repeat transparent left center;
+ font-weight: 700;
+ }
+
+ .box-shadow-wrapper .listbox ul li .sublist li a {
+ padding: 15px 0px 15px 45px;
+ background: url(../images/submenu-list-deactive-icon.png) no-repeat 30px center;
+ }
+
+ .box-shadow-wrapper .listbox ul li .sublist li a:hover, .box-shadow-wrapper .listbox ul li .sublist li.active.last > a {
+ background: url(../images/submenu-list-active-icon.png) no-repeat transparent 30px center;
+ }
+
+ .box-shadow-wrapper .listbox ul li .sublist li .sublist li a {
+ padding: 15px 0px 15px 60px;
+ background: url(../images/submenu-list-deactive-icon.png) no-repeat 45px center;
+ }
+
+ .box-shadow-wrapper .listbox ul li .sublist li .sublist li a:hover, .box-shadow-wrapper .listbox ul li .sublist li .sublist li.active.last > a {
+ background: url(../images/submenu-list-active-icon.png) no-repeat transparent 45px center;
+ }
+
+ .box-shadow-wrapper .listbox ul li .sublist li .sublist li .sublist li a {
+ padding: 15px 0px 15px 78px;
+ background: url(../images/submenu-list-deactive-icon.png) no-repeat 60px center;
+ }
+
+ .box-shadow-wrapper .listbox ul li .sublist li .sublist li .sublist li a:hover, .box-shadow-wrapper .listbox ul li .sublist li .sublist li .sublist li.active.last > a {
+ background: url(../images/submenu-list-active-icon.png) no-repeat transparent 60px center;
+ }
+
+ .box-shadow-wrapper .listbox .view-all, .block.block-poll.well.box-shadow-wrapper .buttons {
+ float: left;
+ margin-top: 10px;
+ margin-bottom: 10px;
+ }
+
+ .box-shadow-wrapper .listbox .view-all a, .box-shadow-wrapper .listbox .vote-poll-button {
+ background: var(--grey-black);
+ color: #fff;
+ padding: 8px 10px;
+ font-size: 14px;
+ font-weight: 700;
+ float: left;
+ margin-bottom: 10px;
+ }
+
+ .box-shadow-wrapper .listbox .view-all a:hover, .box-shadow-wrapper .listbox .vote-poll-button:hover {
+ background: #aaa081;
+ text-decoration: none;
+ }
+
+.block.block-popular-tags.box-shadow-wrapper .listbox ul li a {
+ float: left;
+ width: auto;
+ border-bottom: none;
+ padding: 0px;
+ font-size: 100% !important;
+ margin-right: 5px;
+}
+
+.block.block-popular-tags.box-shadow-wrapper .listbox .tags {
+ padding: 10px 0px;
+ float: left;
+ width: 100%;
+}
+
+ .block.block-popular-tags.box-shadow-wrapper .listbox .tags ul li {
+ margin-left: 0px;
+ clear: none;
+ margin-bottom: 5px;
+ }
+
+ .block.block-popular-tags.box-shadow-wrapper .listbox .tags ul li:last-child span {
+ display: none;
+ }
+
+.block.block-popular-tags.well.box-shadow-wrapper .listbox ul li a {
+ background: none;
+}
+
+.block.block-popular-tags.well.box-shadow-wrapper .view-all {
+ margin-top: 0px;
+}
+
+.block.block-poll.well.box-shadow-wrapper .poll-options.nav.nav-pills {
+ margin-left: 0px;
+ padding-top: 0px;
+}
+
+.block.block-poll.well.box-shadow-wrapper .poll strong {
+ padding: 15px 10px;
+ margin-top: 10px;
+ margin-bottom: 0px;
+}
+
+.block.block-poll.well.box-shadow-wrapper .poll-options li label {
+ margin: 5px 0px;
+}
+
+.block.block-recently-viewed-products.well.box-shadow-wrapper .product-picture {
+ float: left;
+}
+
+ .block.block-recently-viewed-products.well.box-shadow-wrapper .product-picture a {
+ float: left;
+ padding: 15px 0px;
+ margin-right: 10px;
+ border: none;
+ }
+
+.block.block-recently-viewed-products.well.box-shadow-wrapper .product-name {
+ float: left;
+ border: none;
+ background: none;
+ padding: 15px 0px;
+ width: 60%;
+}
+
+.block.block-recently-viewed-products.well.box-shadow-wrapper ul li {
+ float: left;
+ width: 100%;
+ border-bottom: 1px solid #ddd;
+}
+
+ .block.block-recently-viewed-products.well.box-shadow-wrapper ul li:hover .product-name {
+ color: #aaa081;
+ }
/* PRODUCT SLIDER STYLE */
-.owl-carousel .owl-wrapper:after{content: ".";display: block;clear: both;visibility: hidden;line-height: 0;height: 0;}
-.owl-carousel{display: none;position: relative;width: 100%;-ms-touch-action: pan-y;}
-.owl-carousel .owl-wrapper{display: none;position: relative;-webkit-transform: translate3d(0px, 0px, 0px);}
-.owl-carousel .owl-stage-outer{overflow: hidden;position: relative;width: 100%;}
-.owl-carousel .owl-stage-outer.autoHeight{-webkit-transition: height 500ms ease-in-out;-moz-transition: height 500ms ease-in-out;-ms-transition: height 500ms ease-in-out;-o-transition: height 500ms ease-in-out;transition: height 500ms ease-in-out;}
-.owl-carousel .owl-item{float: left;}
+.owl-carousel .owl-wrapper:after {
+ content: ".";
+ display: block;
+ clear: both;
+ visibility: hidden;
+ line-height: 0;
+ height: 0;
+}
+
+.owl-carousel {
+ display: none;
+ position: relative;
+ width: 100%;
+ -ms-touch-action: pan-y;
+}
+
+ .owl-carousel .owl-wrapper {
+ display: none;
+ position: relative;
+ -webkit-transform: translate3d(0px, 0px, 0px);
+ }
+
+ .owl-carousel .owl-stage-outer {
+ overflow: hidden;
+ position: relative;
+ width: 100%;
+ }
+
+ .owl-carousel .owl-stage-outer.autoHeight {
+ -webkit-transition: height 500ms ease-in-out;
+ -moz-transition: height 500ms ease-in-out;
+ -ms-transition: height 500ms ease-in-out;
+ -o-transition: height 500ms ease-in-out;
+ transition: height 500ms ease-in-out;
+ }
+
+ .owl-carousel .owl-item {
+ float: left;
+ }
+
.owl-controls .owl-page,
-.owl-controls .owl-nav div{cursor: pointer;}
-.owl-controls{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-tap-highlight-color:rgba(0, 0, 0, 0);}
+.owl-controls .owl-nav div {
+ cursor: pointer;
+}
+
+.owl-controls {
+ -webkit-user-select: none;
+ -khtml-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
+}
+
.owl-carousel .owl-wrapper,
-.owl-carousel .owl-item{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform: translate3d(0,0,0);-moz-transform: translate3d(0,0,0);-ms-transform: translate3d(0,0,0);}
-.owl-carousel.owl-theme{position: relative;}
-.owl-nav{position: absolute;top:50%;width:100%;}
-.owl-carousel .owl-nav button.owl-next {background: url(../images/next-arrow.png) no-repeat 52px 15px;border: 1px solid #ddd;color: #999;float: left;font-size: 14px;font-weight: 700;line-height: 20px;right: -90px;padding: 12px 30px 12px 10px !important;position: absolute;text-transform: uppercase;}
-.owl-carousel .owl-nav button.owl-prev {background: url("../images/previous-arrow.png") no-repeat scroll 10px 15px;border: 1px solid #ddd;color: #999;line-height: 20px;float: left;font-size: 14px;font-weight: 700;left: -90px;padding: 12px 10px 12px 30px !important;position: absolute;text-transform: uppercase;}
-.owl-carousel .owl-nav button.owl-next:hover {background: url("../images/next-arrow.png") no-repeat scroll 52px -19px var(--grey-black);color: #fff;border-color: var(--grey-black);}
-.owl-carousel .owl-nav button.owl-prev:hover {background: url(../images/previous-arrow.png) no-repeat 10px -19px var(--grey-black);color: #fff;border-color: var(--grey-black);}
-.crosssell-products-slider .owl-nav,.also-purchased-products-grid .owl-nav,.related-products-grid .owl-nav,.product-grid.home-page-product-grid .owl-nav,.product-grid.bestsellers .owl-nav{top:20%;}
-.product-grid.cross-sells{margin-top:20px;}
-.owl-carousel .owl-item img{max-width:100%;width:auto;}
+.owl-carousel .owl-item {
+ -webkit-backface-visibility: hidden;
+ -moz-backface-visibility: hidden;
+ -ms-backface-visibility: hidden;
+ -webkit-transform: translate3d(0,0,0);
+ -moz-transform: translate3d(0,0,0);
+ -ms-transform: translate3d(0,0,0);
+}
+
+.owl-carousel.owl-theme {
+ position: relative;
+}
+
+.owl-nav {
+ position: absolute;
+ top: 50%;
+ width: 100%;
+}
+
+.owl-carousel .owl-nav button.owl-next {
+ background: url(../images/next-arrow.png) no-repeat 52px 15px;
+ border: 1px solid #ddd;
+ color: #999;
+ float: left;
+ font-size: 14px;
+ font-weight: 700;
+ line-height: 20px;
+ right: -90px;
+ padding: 12px 30px 12px 10px !important;
+ position: absolute;
+ text-transform: uppercase;
+}
+
+.owl-carousel .owl-nav button.owl-prev {
+ background: url("../images/previous-arrow.png") no-repeat scroll 10px 15px;
+ border: 1px solid #ddd;
+ color: #999;
+ line-height: 20px;
+ float: left;
+ font-size: 14px;
+ font-weight: 700;
+ left: -90px;
+ padding: 12px 10px 12px 30px !important;
+ position: absolute;
+ text-transform: uppercase;
+}
+
+.owl-carousel .owl-nav button.owl-next:hover {
+ background: url("../images/next-arrow.png") no-repeat scroll 52px -19px var(--grey-black);
+ color: #fff;
+ border-color: var(--grey-black);
+}
+
+.owl-carousel .owl-nav button.owl-prev:hover {
+ background: url(../images/previous-arrow.png) no-repeat 10px -19px var(--grey-black);
+ color: #fff;
+ border-color: var(--grey-black);
+}
+
+.crosssell-products-slider .owl-nav, .also-purchased-products-grid .owl-nav, .related-products-grid .owl-nav, .product-grid.home-page-product-grid .owl-nav, .product-grid.bestsellers .owl-nav {
+ top: 20%;
+}
+
+.product-grid.cross-sells {
+ margin-top: 20px;
+}
+
+.owl-carousel .owl-item img {
+ max-width: 100%;
+ width: auto;
+}
/* CATEGORY BOX STYLE*/
-.product-category-item .picture{position: relative;}
-.product-category-item .picture:hover .product-img::after{transform: scaleX(1);-webkit-transform:scaleX(1);-o-transform:scaleX(1);-ms-transform:scaleX(1);-moz-transform:scaleX(1);}
-.product-category-item .picture .product-img::after {background-color: rgba(255, 255, 255, 0.3);bottom: 5%;content: "";height: 90%;left: 15%;position: absolute;right: 15%;top: 5%;transform: scaleX(0);-webkit-transform:scaleX(0);-o-transform:scaleX(0);-ms-transform:scaleX(0);-moz-transform:scaleX(0);transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;-webkit-transition:all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;-o-transition:all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;-moz-transition:all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;width: 70%;}
-.product-category-item .picture .product-img::before{background-color: rgba(255, 255, 255, 0.3);bottom: 15%;content: "";height: 70%;left: 5%;position: absolute;right: 5%;top: 15%;transform: scaleY(0);-webkit-transform:scaleY(0);-o-transform:scaleY(0);-ms-transform:scaleY(0);-moz-transform:scaleY(0);transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;-webkit-transition:all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;-o-transition:all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;-moz-transition:all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;width: 90%;}
-.product-category-item .picture:hover .product-img::before{transform: scaleY(1);-webkit-transform:scaleY(1);-o-transform:scaleY(1);-ms-transform:scaleY(1);-moz-transform:scaleY(1);z-index:1;}
-.product-category-item .picture .title a{color:var(--red);font-size:18px;text-transform:uppercase;text-decoration:none;font-weight:700;padding: 22px 0 18px;display:inline-block;width:215px;background-color: #fff;}
-.product-category-item .picture .title a:hover{background:var(--red);color:#fff;}
-.vendor-grid .product-category-item .picture .title,.manufacturer-grid .product-category-item .picture .title,.sub-category-grid .product-category-item .picture .title{width:150px;}
-.vendor-grid .product-category-item .picture .title a,.manufacturer-grid .product-category-item .picture .title a,.sub-category-grid .product-category-item .picture .title a{width:150px;padding:18px 0px;font-size:15px;word-wrap:break-word;}
-.picture-thumbs.product-slider .owl-nav,.manufacturer-grid .owl-nav,.sub-category-grid .owl-nav{position:inherit;float:left;width:100%;text-align:center;margin-bottom:40px;}
-.picture-thumbs.product-slider .owl-nav .owl-prev,.manufacturer-grid .owl-nav .owl-prev,.sub-category-grid .owl-nav .owl-prev{float:none !important;display:inline-block !important;margin-right:15px !important;position:inherit !important;left:0 !important;}
-.picture-thumbs.product-slider .owl-nav .owl-next,.manufacturer-grid .owl-nav .owl-next,.sub-category-grid .owl-nav .owl-next{float:none !important;display:inline-block !important;position:inherit !important;right:0 !important;}
+.product-category-item .picture {
+ position: relative;
+}
+
+ .product-category-item .picture:hover .product-img::after {
+ transform: scaleX(1);
+ -webkit-transform: scaleX(1);
+ -o-transform: scaleX(1);
+ -ms-transform: scaleX(1);
+ -moz-transform: scaleX(1);
+ }
+
+ .product-category-item .picture .product-img::after {
+ background-color: rgba(255, 255, 255, 0.3);
+ bottom: 5%;
+ content: "";
+ height: 90%;
+ left: 15%;
+ position: absolute;
+ right: 15%;
+ top: 5%;
+ transform: scaleX(0);
+ -webkit-transform: scaleX(0);
+ -o-transform: scaleX(0);
+ -ms-transform: scaleX(0);
+ -moz-transform: scaleX(0);
+ transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
+ -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
+ -o-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
+ -moz-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
+ width: 70%;
+ }
+
+ .product-category-item .picture .product-img::before {
+ background-color: rgba(255, 255, 255, 0.3);
+ bottom: 15%;
+ content: "";
+ height: 70%;
+ left: 5%;
+ position: absolute;
+ right: 5%;
+ top: 15%;
+ transform: scaleY(0);
+ -webkit-transform: scaleY(0);
+ -o-transform: scaleY(0);
+ -ms-transform: scaleY(0);
+ -moz-transform: scaleY(0);
+ transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
+ -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
+ -o-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
+ -moz-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
+ width: 90%;
+ }
+
+ .product-category-item .picture:hover .product-img::before {
+ transform: scaleY(1);
+ -webkit-transform: scaleY(1);
+ -o-transform: scaleY(1);
+ -ms-transform: scaleY(1);
+ -moz-transform: scaleY(1);
+ z-index: 1;
+ }
+
+ .product-category-item .picture .title a {
+ color: #aaa081;
+ font-size: 18px;
+ text-transform: uppercase;
+ text-decoration: none;
+ font-weight: 700;
+ padding: 22px 0 18px;
+ display: inline-block;
+ width: 215px;
+ background-color: #fff;
+ }
+
+ .product-category-item .picture .title a:hover {
+ background: #aaa081;
+ color: #fff;
+ }
+
+.vendor-grid .product-category-item .picture .title, .manufacturer-grid .product-category-item .picture .title, .sub-category-grid .product-category-item .picture .title {
+ width: 150px;
+}
+
+ .vendor-grid .product-category-item .picture .title a, .manufacturer-grid .product-category-item .picture .title a, .sub-category-grid .product-category-item .picture .title a {
+ width: 150px;
+ padding: 18px 0px;
+ font-size: 15px;
+ word-wrap: break-word;
+ }
+
+.picture-thumbs.product-slider .owl-nav, .manufacturer-grid .owl-nav, .sub-category-grid .owl-nav {
+ position: inherit;
+ float: left;
+ width: 100%;
+ text-align: center;
+ margin-bottom: 40px;
+}
+
+ .picture-thumbs.product-slider .owl-nav .owl-prev, .manufacturer-grid .owl-nav .owl-prev, .sub-category-grid .owl-nav .owl-prev {
+ float: none !important;
+ display: inline-block !important;
+ margin-right: 15px !important;
+ position: inherit !important;
+ left: 0 !important;
+ }
+
+ .picture-thumbs.product-slider .owl-nav .owl-next, .manufacturer-grid .owl-nav .owl-next, .sub-category-grid .owl-nav .owl-next {
+ float: none !important;
+ display: inline-block !important;
+ position: inherit !important;
+ right: 0 !important;
+ }
/* BREADCRUMB STYLE */
-.breadcrumb-wrapper .breadcrumb{border:none;padding:15px;border-radius:0px;margin-bottom:30px;clear:both;}
-.breadcrumb-wrapper .breadcrumb li a{color:var(--grey-black);font-size:14px;font-weight:700;text-decoration:none;}
-.breadcrumb-wrapper .breadcrumb li a:hover{color:var(--red);}
-.breadcrumb-wrapper .breadcrumb li .current-item.active,.breadcrumb-wrapper .breadcrumb li .active{color:var(--red);font-size:14px;font-weight:700;text-transform:capitalize;}
-.breadcrumb-wrapper .breadcrumb > li + li::before,.breadcrumb-wrapper .breadcrumb > ol + ol::before{padding:0px 10px;}
+.breadcrumb-wrapper .breadcrumb {
+ border: none;
+ padding: 15px;
+ border-radius: 0px;
+ margin-bottom: 30px;
+ clear: both;
+}
+
+ .breadcrumb-wrapper .breadcrumb li a {
+ color: var(--grey-black);
+ font-size: 14px;
+ font-weight: 700;
+ text-decoration: none;
+ }
+
+ .breadcrumb-wrapper .breadcrumb li a:hover {
+ color: #aaa081;
+ }
+
+ .breadcrumb-wrapper .breadcrumb li .current-item.active, .breadcrumb-wrapper .breadcrumb li .active {
+ color: #aaa081;
+ font-size: 14px;
+ font-weight: 700;
+ text-transform: capitalize;
+ }
+
+ .breadcrumb-wrapper .breadcrumb > li + li::before, .breadcrumb-wrapper .breadcrumb > ol + ol::before {
+ padding: 0px 10px;
+ }
/* PRODUCT BOX STYLE */
-.price.old-price{float:left;text-decoration: line-through;width:100%;font-size:12px;}
-.product-item .description{font-size:12px;line-height:1.4em;display:none;color:#999;}
-.product-item .prices{margin-bottom:15px;}
-.title.panel-heading{ padding:0;}
-.thumbnail{box-shadow:none;border:none;padding:0px;background-color:transparent;overflow:hidden;border-radius:0;margin-bottom:0px;padding-bottom:15px;border-bottom:1px solid #ddd;}
-.product-grid .item-box:hover .thumbnail,.product-grid .item-box:hover .thumbnail{border-color:var(--red);}
-.product-grid .item-box .thumbnail .caption{padding:0px;}
-.product-grid .item-box{margin-bottom:50px;transition:all 0.3s ease-in-out 0s;-moz-transition:all 0.3s ease-in-out 0s;-webkit-transition:all 0.3s ease-in-out 0s;-o-transition:all 0.3s ease-in-out 0s;}
-.item-box .product-rating-box{display: inline-block;margin: 0 0 20px;width:100%;position:relative;}
-.item-box .rating{background: url('../images/star-x-inactive.png') repeat-x;width:100px;height: 16px;margin:0 auto;}
-.item-box .rating div{background: url('../images/star-x-active.png') repeat-x;height: 16px;}
-.item-box,.product-grid .item-box{height:auto !important;}
-.item-box .product-item{background:#fff;float:left;width:100%;transition:all 0.3s ease-in-out 0s;-webkit-transition:all 0.3s ease-in-out 0s;-moz-transition:all 0.3s ease-in-out 0s;-o-transition:all 0.3s ease-in-out 0s;}
-.item-box .product-item .picture a img{
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- max-width: 100%;
- max-height: 100%;
- margin: auto;
- -webkit-transition: all .3s ease;
- transition: all .3s ease;
+.price.old-price {
+ float: left;
+ text-decoration: line-through;
+ width: 100%;
+ font-size: 12px;
}
-.item-box .product-item .picture{margin-bottom:25px;overflow: hidden;position: relative;}
-.item-box .product-item .product-title{overflow:hidden;margin:0px;height:38px;line-height:18px;font-size:16px;text-align:center;}
-.item-box .product-item .product-title a{color:var(--red);text-align:center;font-weight:700;text-transform:capitalize;}
-.item-box .product-item .product-title a:hover{color:var(--grey-black);}
-.item-box .product-item .sku{text-align:center;margin-bottom:16px;}
-.product-list .item-box .product-item .sku{text-align:left;}
-.product-grid .item-box .product-border-bottom{background: #e7e7e7;height:1px;margin:5px auto 15px;width:50%;}
-.product-grid .item-box .prices{width:100%;float:left;text-align:center;}
-.product-grid .item-box .product-item .add-info .buttons{float:left;width:100%;text-align:center;}
-.item-box .prices span{line-height:26px;font-size:16px;font-weight:700;color:var(--grey-black);display:inline-block;}
-.item-box .prices .price.old-price{text-decoration:line-through;float:none;margin-right:10px;width:auto;color:#999999;}
-.item-box .product-box-add-to-cart-button{background: url('../images/product-cart-icon.png') no-repeat 12px 11px;border:2px solid #ccc;color:#999;text-transform:uppercase;font-weight:700;font-size:14px;padding:10px 15px 10px 40px;line-height:18px;}
-.item-box .product-box-add-to-cart-button:hover{background: url('../images/product-cart-icon.png') no-repeat 12px -20px var(--red);border-color:var(--red);color:#fff;}
-.item-box .product-box-add-to-cart-button:focus{background: url('../images/product-cart-icon.png') no-repeat 12px -20px var(--red);border-color:var(--red);color:#fff;}
-.item-box .add-to-compare-list-button{background: url('../images/product-compare-icon.png') no-repeat 15px 18px #fff;height:50px;width:50px;text-indent:-999999px;padding:0;border:none;transition:all 0.3s ease-in-out 0s;-moz-transition:all 0.3s ease-in-out 0s;-webkit-transition:all 0.3s ease-in-out 0s;-o-transition:all 0.3s ease-in-out 0s;}
-.item-box .add-to-wishlist-button{background: url('../images/product-wishlist-icon.png') no-repeat 15px 20px #fff;height:50px;width:50px;text-indent:-999999px;padding:0;border:none;margin-right:10px;transition:all 0.3s ease-in-out 0s;-moz-transition:all 0.3s ease-in-out 0s;-webkit-transition:all 0.3s ease-in-out 0s;-o-transition:all 0.3s ease-in-out 0s;}
-.item-box .add-to-compare-list-button:hover{background: url('../images/product-compare-icon.png') no-repeat 15px -16px var(--red);}
-.item-box .add-to-wishlist-button:hover{background: url('../images/product-wishlist-icon.png') no-repeat 15px -12px var(--red);}
-.item-box .rating::before{background: #222;content: "";height: 1px;left: 10%;position: absolute;top: 6px;width: 40px;}
-.item-box .rating::after{background: #222;content: "";height: 1px;right: 10%;position: absolute;top: 6px;width: 40px;}
+
+.product-item .description {
+ font-size: 12px;
+ line-height: 1.4em;
+ display: none;
+ color: #999;
+}
+
+.product-item .prices {
+ margin-bottom: 15px;
+}
+
+.title.panel-heading {
+ padding: 0;
+}
+
+.thumbnail {
+ box-shadow: none;
+ border: none;
+ padding: 0px;
+ background-color: transparent;
+ overflow: hidden;
+ border-radius: 0;
+ margin-bottom: 0px;
+ padding-bottom: 15px;
+ border-bottom: 1px solid #ddd;
+}
+
+.product-grid .item-box:hover .thumbnail, .product-grid .item-box:hover .thumbnail {
+ border-color: #aaa081;
+}
+
+.product-grid .item-box .thumbnail .caption {
+ padding: 0px;
+}
+
+.product-grid .item-box {
+ margin-bottom: 50px;
+ transition: all 0.3s ease-in-out 0s;
+ -moz-transition: all 0.3s ease-in-out 0s;
+ -webkit-transition: all 0.3s ease-in-out 0s;
+ -o-transition: all 0.3s ease-in-out 0s;
+}
+
+.item-box .product-rating-box {
+ display: inline-block;
+ margin: 0 0 20px;
+ width: 100%;
+ position: relative;
+}
+
+.item-box .rating {
+ background: url('../images/star-x-inactive.png') repeat-x;
+ width: 100px;
+ height: 16px;
+ margin: 0 auto;
+}
+
+ .item-box .rating div {
+ background: url('../images/star-x-active.png') repeat-x;
+ height: 16px;
+ }
+
+.item-box, .product-grid .item-box {
+ height: auto !important;
+}
+
+ .item-box .product-item {
+ background: #fff;
+ float: left;
+ width: 100%;
+ transition: all 0.3s ease-in-out 0s;
+ -webkit-transition: all 0.3s ease-in-out 0s;
+ -moz-transition: all 0.3s ease-in-out 0s;
+ -o-transition: all 0.3s ease-in-out 0s;
+ }
+
+ .item-box .product-item .picture a img {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ max-width: 100%;
+ max-height: 100%;
+ margin: auto;
+ -webkit-transition: all .3s ease;
+ transition: all .3s ease;
+ }
+
+ .item-box .product-item .picture {
+ margin-bottom: 25px;
+ overflow: hidden;
+ position: relative;
+ }
+
+ .item-box .product-item .product-title {
+ overflow: hidden;
+ margin: 0px;
+ height: 38px;
+ line-height: 18px;
+ font-size: 16px;
+ text-align: center;
+ }
+
+ .item-box .product-item .product-title a {
+ color: #aaa081;
+ text-align: center;
+ font-weight: 700;
+ text-transform: capitalize;
+ }
+
+ .item-box .product-item .product-title a:hover {
+ color: var(--grey-black);
+ }
+
+ .item-box .product-item .sku {
+ text-align: center;
+ margin-bottom: 16px;
+ }
+
+.product-list .item-box .product-item .sku {
+ text-align: left;
+}
+
+.product-grid .item-box .product-border-bottom {
+ background: #e7e7e7;
+ height: 1px;
+ margin: 5px auto 15px;
+ width: 50%;
+}
+
+.product-grid .item-box .prices {
+ width: 100%;
+ float: left;
+ text-align: center;
+}
+
+.product-grid .item-box .product-item .add-info .buttons {
+ float: left;
+ width: 100%;
+ text-align: center;
+}
+
+.item-box .prices span {
+ line-height: 26px;
+ font-size: 16px;
+ font-weight: 700;
+ color: var(--grey-black);
+ display: inline-block;
+}
+
+.item-box .prices .price.old-price {
+ text-decoration: line-through;
+ float: none;
+ margin-right: 10px;
+ width: auto;
+ color: #999999;
+}
+
+.item-box .product-box-add-to-cart-button {
+ background: url('../images/product-cart-icon.png') no-repeat 12px 11px;
+ border: 2px solid #ccc;
+ color: #999;
+ text-transform: uppercase;
+ font-weight: 700;
+ font-size: 14px;
+ padding: 10px 15px 10px 40px;
+ line-height: 18px;
+}
+
+ .item-box .product-box-add-to-cart-button:hover {
+ background: url('../images/product-cart-icon.png') no-repeat 12px -20px #aaa081;
+ border-color: #aaa081;
+ color: #fff;
+ }
+
+ .item-box .product-box-add-to-cart-button:focus {
+ background: url('../images/product-cart-icon.png') no-repeat 12px -20px #aaa081;
+ border-color: #aaa081;
+ color: #fff;
+ }
+
+.item-box .add-to-compare-list-button {
+ background: url('../images/product-compare-icon.png') no-repeat 15px 18px #fff;
+ height: 50px;
+ width: 50px;
+ text-indent: -999999px;
+ padding: 0;
+ border: none;
+ transition: all 0.3s ease-in-out 0s;
+ -moz-transition: all 0.3s ease-in-out 0s;
+ -webkit-transition: all 0.3s ease-in-out 0s;
+ -o-transition: all 0.3s ease-in-out 0s;
+}
+
+.item-box .add-to-wishlist-button {
+ background: url('../images/product-wishlist-icon.png') no-repeat 15px 20px #fff;
+ height: 50px;
+ width: 50px;
+ text-indent: -999999px;
+ padding: 0;
+ border: none;
+ margin-right: 10px;
+ transition: all 0.3s ease-in-out 0s;
+ -moz-transition: all 0.3s ease-in-out 0s;
+ -webkit-transition: all 0.3s ease-in-out 0s;
+ -o-transition: all 0.3s ease-in-out 0s;
+}
+
+.item-box .add-to-compare-list-button:hover {
+ background: url('../images/product-compare-icon.png') no-repeat 15px -16px #aaa081;
+}
+
+.item-box .add-to-wishlist-button:hover {
+ background: url('../images/product-wishlist-icon.png') no-repeat 15px -12px #aaa081;
+}
+
+.item-box .rating::before {
+ background: #222;
+ content: "";
+ height: 1px;
+ left: 10%;
+ position: absolute;
+ top: 6px;
+ width: 40px;
+}
+
+.item-box .rating::after {
+ background: #222;
+ content: "";
+ height: 1px;
+ right: 10%;
+ position: absolute;
+ top: 6px;
+ width: 40px;
+}
+
.item-box .thumbnail .picture a {
display: block;
position: relative;
}
-.item-box .thumbnail .picture a::before{
- content: "";
- display: block;
- padding-top: 100%;
+
+ .item-box .thumbnail .picture a::before {
+ content: "";
+ display: block;
+ padding-top: 100%;
+ }
+
+.item-box .thumbnail .wishlist-compare-wrapper {
+ position: absolute;
+ text-align: center;
+ width: 100%;
+ z-index: 999;
+ opacity: 0;
+ top: 80%;
+ transition: all 500ms ease-in-out 0s;
+ -webkit-transition: all 500ms ease-in-out 0s;
+ -moz-transition: all 500ms ease-in-out 0s;
+ -o-transition: all 500ms ease-in-out 0s;
+}
+
+.item-box .thumbnail:hover .picture .wishlist-compare-wrapper {
+ top: 40%;
+ opacity: 1;
+ transition: all 500ms ease-in-out 0s;
+ -webkit-transition: all 500ms ease-in-out 0s;
+ -moz-transition: all 500ms ease-in-out 0s;
+ -o-transition: all 500ms ease-in-out 0s;
}
-.item-box .thumbnail .wishlist-compare-wrapper{position: absolute;text-align: center;width: 100%;z-index: 999;opacity:0;top:80%;transition:all 500ms ease-in-out 0s;-webkit-transition:all 500ms ease-in-out 0s;-moz-transition:all 500ms ease-in-out 0s;-o-transition:all 500ms ease-in-out 0s;}
-.item-box .thumbnail:hover .picture .wishlist-compare-wrapper{top:40%;opacity:1;transition:all 500ms ease-in-out 0s;-webkit-transition:all 500ms ease-in-out 0s;-moz-transition:all 500ms ease-in-out 0s;-o-transition:all 500ms ease-in-out 0s;}
/* PRODUCT LIST PAGE STYLE */
-.product-list .item-box{height:auto;margin-bottom:30px;}
-.product-list .item-box .product-item{background:transparent;}
-.product-list .item-box .thumbnail{border-bottom:none;padding-bottom:0px;transition:all 0.3s ease-in-out 0s;-moz-transition:all 0.3s ease-in-out 0s;-webkit-transition:all 0.3s ease-in-out 0s;-o-transition:all 0.3s ease-in-out 0s;}
-.product-list .item-box .thumbnail:hover{background:#f1f1f1;}
-.product-list .item-box .picture{width:30%;float:left;margin-right:30px;margin-bottom:0px;}
-.product-list .item-box .details{float:left;overflow:visible;width:100%;}
-.product-list .item-box .description{display:block;font-size:14px; width:100%;margin-bottom:25px;padding-bottom:20px;border-bottom:1px solid #ddd;}
-.product-list .item-box .product-item .price.old-price {display: block;text-decoration:line-through;}
-.product-list .item-box .thumbnail .caption{padding:10px 0px;float: left;width:65%;text-align:left;height:auto;min-height:inherit;}
-.product-list .item-box .thumbnail .caption .add-info .buttons{width:100%;}
-.product-list .item-box .product-item .rating{text-align:left;margin:0px 0px 0px 55px;}
-.product-list .item-box .rating::before{left:0px;}
-.product-list .item-box .rating::after{right:-35%;}
-.product-list .item-box .product-item .product-title a{padding:0px;text-align:left;margin-bottom:15px;}
-.product-list .item-box .product-item .product-title{height:auto;margin-bottom:25px;text-align:left;}
-.product-list .item-box .add-info{float:left;width:100%;}
-.product-list .item-box .product-item .prices{margin-bottom:25px;}
-.product-list .item-box .prices span{line-height:20px;}
-.product-list .item-box .product-rating-box{display:inline-block;clear:both;width:auto;margin-bottom:25px;}
+.product-list .item-box {
+ height: auto;
+ margin-bottom: 30px;
+}
+
+ .product-list .item-box .product-item {
+ background: transparent;
+ }
+
+ .product-list .item-box .thumbnail {
+ border-bottom: none;
+ padding-bottom: 0px;
+ transition: all 0.3s ease-in-out 0s;
+ -moz-transition: all 0.3s ease-in-out 0s;
+ -webkit-transition: all 0.3s ease-in-out 0s;
+ -o-transition: all 0.3s ease-in-out 0s;
+ }
+
+ .product-list .item-box .thumbnail:hover {
+ background: #f1f1f1;
+ }
+
+ .product-list .item-box .picture {
+ width: 30%;
+ float: left;
+ margin-right: 30px;
+ margin-bottom: 0px;
+ }
+
+ .product-list .item-box .details {
+ float: left;
+ overflow: visible;
+ width: 100%;
+ }
+
+ .product-list .item-box .description {
+ display: block;
+ font-size: 14px;
+ width: 100%;
+ margin-bottom: 25px;
+ padding-bottom: 20px;
+ border-bottom: 1px solid #ddd;
+ }
+
+ .product-list .item-box .product-item .price.old-price {
+ display: block;
+ text-decoration: line-through;
+ }
+
+ .product-list .item-box .thumbnail .caption {
+ padding: 10px 0px;
+ float: left;
+ width: 65%;
+ text-align: left;
+ height: auto;
+ min-height: inherit;
+ }
+
+ .product-list .item-box .thumbnail .caption .add-info .buttons {
+ width: 100%;
+ }
+
+ .product-list .item-box .product-item .rating {
+ text-align: left;
+ margin: 0px 0px 0px 55px;
+ }
+
+ .product-list .item-box .rating::before {
+ left: 0px;
+ }
+
+ .product-list .item-box .rating::after {
+ right: -35%;
+ }
+
+ .product-list .item-box .product-item .product-title a {
+ padding: 0px;
+ text-align: left;
+ margin-bottom: 15px;
+ }
+
+ .product-list .item-box .product-item .product-title {
+ height: auto;
+ margin-bottom: 25px;
+ text-align: left;
+ }
+
+ .product-list .item-box .add-info {
+ float: left;
+ width: 100%;
+ }
+
+ .product-list .item-box .product-item .prices {
+ margin-bottom: 25px;
+ }
+
+ .product-list .item-box .prices span {
+ line-height: 20px;
+ }
+
+ .product-list .item-box .product-rating-box {
+ display: inline-block;
+ clear: both;
+ width: auto;
+ margin-bottom: 25px;
+ }
/* CATEGORY, SUB CATEGORY AND MANUFACTURER PAGE SELECTORS STYLE */
-.vendor-grid .item-box .product-category-item,.manufacturer-grid .item-box .manufacturer-item,.sub-category-grid .item-box .sub-category-item{margin-bottom:30px;background:#fff;transition:all 0.3s ease-in-out 0s;-webkit-transition:all 0.3s ease-in-out 0s;-moz-transition:all 0.3s ease-in-out 0s;-o-transition:all 0.3s ease-in-out 0s;cursor:pointer;}
-.manufacturer-grid .item-box .manufacturer-item{background:#f5f5f5;}
-.category-grid .item-box .category-item{margin-bottom:50px;background:#fff;transition:all 0.3s ease-in-out 0s;-webkit-transition:all 0.3s ease-in-out 0s;-moz-transition:all 0.3s ease-in-out 0s;-o-transition:all 0.3s ease-in-out 0s;cursor:pointer;}
-.vendor-grid .item-box .picture a img,.manufacturer-grid .item-box .picture a img,.category-grid .item-box .picture a img,.sub-category-grid .item-box .picture a img{width:100%;}
-.home-page-category-grid .item-box {height:auto;}
-.order{padding:7px 0;}
-.product-selectors{margin:0px 0px 30px;background:#fff;color:var(--grey-black);clear:both;}
-.product-selectors .product-span{padding:5px 0 0 10px !important;}
-.product-selectors .remove_left_padding{padding-left:0px;}
-.viewmode-icon.grid i, .viewmode-icon.list i {font-size: 18px !important;}
-.vendor-grid .item-box,.sub-category-grid .item-box,.manufacturer-grid .item-box{height:auto;}
-.viewmode-icon:focus,.viewmode-icon:hover{color:var(--red);}
-.viewmode-icon{padding:12px;float:left;border:1px solid #ddd;color:var(--grey-black);height:45px;width:45px;line-height:23px;text-align:center;}
-.viewmode-icon.selected{color:var(--red);}
-.viewmode-icon:hover{border-color:var(--red);}
-.product-viewmode .grid-list-icon{padding: 0;float:right;}
-.list-grid-view{float:right;}
-.product-sorting,.product-page-size {margin-top:5px;}
+.vendor-grid .item-box .product-category-item, .manufacturer-grid .item-box .manufacturer-item, .sub-category-grid .item-box .sub-category-item {
+ margin-bottom: 30px;
+ background: #fff;
+ transition: all 0.3s ease-in-out 0s;
+ -webkit-transition: all 0.3s ease-in-out 0s;
+ -moz-transition: all 0.3s ease-in-out 0s;
+ -o-transition: all 0.3s ease-in-out 0s;
+ cursor: pointer;
+}
+
+.manufacturer-grid .item-box .manufacturer-item {
+ background: #f5f5f5;
+}
+
+.category-grid .item-box .category-item {
+ margin-bottom: 50px;
+ background: #fff;
+ transition: all 0.3s ease-in-out 0s;
+ -webkit-transition: all 0.3s ease-in-out 0s;
+ -moz-transition: all 0.3s ease-in-out 0s;
+ -o-transition: all 0.3s ease-in-out 0s;
+ cursor: pointer;
+}
+
+.vendor-grid .item-box .picture a img, .manufacturer-grid .item-box .picture a img, .category-grid .item-box .picture a img, .sub-category-grid .item-box .picture a img {
+ width: 100%;
+}
+
+.home-page-category-grid .item-box {
+ height: auto;
+}
+
+.order {
+ padding: 7px 0;
+}
+
+.product-selectors {
+ margin: 0px 0px 30px;
+ background: #fff;
+ color: var(--grey-black);
+ clear: both;
+}
+
+ .product-selectors .product-span {
+ padding: 5px 0 0 10px !important;
+ }
+
+ .product-selectors .remove_left_padding {
+ padding-left: 0px;
+ }
+
+.viewmode-icon.grid i, .viewmode-icon.list i {
+ font-size: 18px !important;
+}
+
+.vendor-grid .item-box, .sub-category-grid .item-box, .manufacturer-grid .item-box {
+ height: auto;
+}
+
+.viewmode-icon:focus, .viewmode-icon:hover {
+ color: #aaa081;
+}
+
+.viewmode-icon {
+ padding: 12px;
+ float: left;
+ border: 1px solid #ddd;
+ color: var(--grey-black);
+ height: 45px;
+ width: 45px;
+ line-height: 23px;
+ text-align: center;
+}
+
+ .viewmode-icon.selected {
+ color: #aaa081;
+ }
+
+ .viewmode-icon:hover {
+ border-color: #aaa081;
+ }
+
+.product-viewmode .grid-list-icon {
+ padding: 0;
+ float: right;
+}
+
+.list-grid-view {
+ float: right;
+}
+
+.product-sorting, .product-page-size {
+ margin-top: 5px;
+}
/* CATEGOTY, SEARCH, MANUFACTURER, PRODUCT TAG, VENDOR, COMPARE PRODUCT PAGE STYLE */
-.product-filters-wrapper .well{border:none;border-radius: 0;box-shadow: 0 0 5px #ddd;-moz-box-shadow:0 0 5px #ddd;-webkit-box-shadow:0 0 5px #ddd;padding: 0;margin-bottom:30px;border:1px solid #ededed;}
-.product-spec-filter .filter-title .fa.fa-arrow-circle-right,.price-range-filter .filter-title .fa.fa-arrow-circle-right{ float:left;margin:3px 10px 0px 0px;font-size:17px;color:var(--grey-black);}
-.product-filters .filter-title strong{display:block;margin-left:20px;overflow:hidden;font-size:16px;}
-.product-filters ul{padding-left:20px;}
-.product-tags-all-page a{color:#777;font-weight:700;border-radius: 0 !important;}
-.product-tags-all-page a:hover{color:var(--red);}
-.already-filtered-items, .price-range-filter .selected-price-range{margin-left:20px;color:#777;font-weight:700;}
-.product-filters .already-filtered-items .filter-title strong{font-weight:700; margin-left:0px;}
-.product-filters .filter-content .title strong{color:var(--red);}
-.product-filters .filter-content .nav > li > a{font-size:14px;color:#777;font-weight:700;display:inline-block;}
-.product-filters .filter-content .nav > li > a:hover,.product-filters .filter-content .nav > li > a:focus{background:transparent;color:var(--red);}
-.product-spec-filter .filter-content .available-items .nav.nav-list .title{margin-bottom:8px;}
-.product-filters .filter-content{padding:15px 20px;background:#fff;}
-.product-filters .filter-content ul{padding-left:20px;}
-.product-filters > .filter-title{background: #f5f5f5;padding:15px 20px;}
-.product-filters .already-filtered-items .filter-title strong{font-size:14px;}
-.product-filters .already-filtered-items .filter-title strong{color:var(--grey-black);}
-.product-filters .already-filtered-items .item{font-weight:normal;margin-top:5px;}
-.product-filters .filter-content ul li a i,.product-filters .selected-price-range i,.product-filters .already-filtered-items .item i{float: left;font-size: 16px;line-height: 22px;margin-right: 8px;}
-.clear-list.btn.btn-primary{margin-bottom:10px;}
-.compare-products-table .picture img{max-width:100%;width:100%;}
-.recently-added-products-page .page-body , .recently-viewed-products-page .page-body{padding:0;}
-.apply-vendor-page .from-panel .panel-body,.product-filters.price-range-filter .filter-content ul{padding:0px;}
-.contact-vendor{margin-bottom:30px;}
-.recently-added-products-page .link-rss,.compare-products-page .compare-products-table a{color:var(--red);}
-.compare-products-page .compare-products-table a:hover{color:var(--grey-black);}
-.apply-vendor-page .topic-html-content{border:none;}
-.vendor-contact-page .form-horizontal .control-label,.apply-vendor-page .form-horizontal .control-label{text-align:left;}
-.apply-vendor-page .form-horizontal .control-label{float:left;padding-right:5px;}
-.product-tags-all-page .page-body{padding:15px;border:1px solid #ddd;}
-.category-description li,.vendor-description li,.manufacturer-description li,.page.topic-page .page-body li,.post-body li,.full-description tab-pane fade in active li,.attribute-description li,.news-body li{list-style:inherit;}
-.category-description ul,.vendor-description ul,.manufacturer-description ul,.page.topic-page .page-body ul,.post-body ul,.full-description tab-pane fade in active ul,.attribute-description ul,.news-body ul{padding-left:40px;}
-.vendor-attributes .option-list li{display:inline-block;margin-right:10px;}
-.product-tags-all-page .nav-pills>li{height: 50px;display: flex;align-items: center;}
-.compare-products-page .panel-default{overflow-x:auto;}
-.compare-products-page .panel-default tr td {min-width: 200px;}
-.compare-products-page .specification .color-container {display: inline-block;}
-.compare-products-page .specification .color-container .color {display: table !important;width: 32px !important;height: 32px !important;border: 1px solid #222 !important;cursor: pointer;}
+.product-filters-wrapper .well {
+ border: none;
+ border-radius: 0;
+ box-shadow: 0 0 5px #ddd;
+ -moz-box-shadow: 0 0 5px #ddd;
+ -webkit-box-shadow: 0 0 5px #ddd;
+ padding: 0;
+ margin-bottom: 30px;
+ border: 1px solid #ededed;
+}
+
+.product-spec-filter .filter-title .fa.fa-arrow-circle-right, .price-range-filter .filter-title .fa.fa-arrow-circle-right {
+ float: left;
+ margin: 3px 10px 0px 0px;
+ font-size: 17px;
+ color: var(--grey-black);
+}
+
+.product-filters .filter-title strong {
+ display: block;
+ margin-left: 20px;
+ overflow: hidden;
+ font-size: 16px;
+}
+
+.product-filters ul {
+ padding-left: 20px;
+}
+
+.product-tags-all-page a {
+ color: #777;
+ font-weight: 700;
+ border-radius: 0 !important;
+}
+
+ .product-tags-all-page a:hover {
+ color: #aaa081;
+ }
+
+.already-filtered-items, .price-range-filter .selected-price-range {
+ margin-left: 20px;
+ color: #777;
+ font-weight: 700;
+}
+
+.product-filters .already-filtered-items .filter-title strong {
+ font-weight: 700;
+ margin-left: 0px;
+}
+
+.product-filters .filter-content .title strong {
+ color: #aaa081;
+}
+
+.product-filters .filter-content .nav > li > a {
+ font-size: 14px;
+ color: #777;
+ font-weight: 700;
+ display: inline-block;
+}
+
+ .product-filters .filter-content .nav > li > a:hover, .product-filters .filter-content .nav > li > a:focus {
+ background: transparent;
+ color: #aaa081;
+ }
+
+.product-spec-filter .filter-content .available-items .nav.nav-list .title {
+ margin-bottom: 8px;
+}
+
+.product-filters .filter-content {
+ padding: 15px 20px;
+ background: #fff;
+}
+
+ .product-filters .filter-content ul {
+ padding-left: 20px;
+ }
+
+.product-filters > .filter-title {
+ background: #f5f5f5;
+ padding: 15px 20px;
+}
+
+.product-filters .already-filtered-items .filter-title strong {
+ font-size: 14px;
+}
+
+.product-filters .already-filtered-items .filter-title strong {
+ color: var(--grey-black);
+}
+
+.product-filters .already-filtered-items .item {
+ font-weight: normal;
+ margin-top: 5px;
+}
+
+ .product-filters .filter-content ul li a i, .product-filters .selected-price-range i, .product-filters .already-filtered-items .item i {
+ float: left;
+ font-size: 16px;
+ line-height: 22px;
+ margin-right: 8px;
+ }
+
+.clear-list.btn.btn-primary {
+ margin-bottom: 10px;
+}
+
+.compare-products-table .picture img {
+ max-width: 100%;
+ width: 100%;
+}
+
+.recently-added-products-page .page-body, .recently-viewed-products-page .page-body {
+ padding: 0;
+}
+
+.apply-vendor-page .from-panel .panel-body, .product-filters.price-range-filter .filter-content ul {
+ padding: 0px;
+}
+
+.contact-vendor {
+ margin-bottom: 30px;
+}
+
+.recently-added-products-page .link-rss, .compare-products-page .compare-products-table a {
+ color: #aaa081;
+}
+
+ .compare-products-page .compare-products-table a:hover {
+ color: var(--grey-black);
+ }
+
+.apply-vendor-page .topic-html-content {
+ border: none;
+}
+
+.vendor-contact-page .form-horizontal .control-label, .apply-vendor-page .form-horizontal .control-label {
+ text-align: left;
+}
+
+.apply-vendor-page .form-horizontal .control-label {
+ float: left;
+ padding-right: 5px;
+}
+
+.product-tags-all-page .page-body {
+ padding: 15px;
+ border: 1px solid #ddd;
+}
+
+.category-description li, .vendor-description li, .manufacturer-description li, .page.topic-page .page-body li, .post-body li, .full-description tab-pane fade in active li, .attribute-description li, .news-body li {
+ list-style: inherit;
+}
+
+.category-description ul, .vendor-description ul, .manufacturer-description ul, .page.topic-page .page-body ul, .post-body ul, .full-description tab-pane fade in active ul, .attribute-description ul, .news-body ul {
+ padding-left: 40px;
+}
+
+.vendor-attributes .option-list li {
+ display: inline-block;
+ margin-right: 10px;
+}
+
+.product-tags-all-page .nav-pills > li {
+ height: 50px;
+ display: flex;
+ align-items: center;
+}
+
+.compare-products-page .panel-default {
+ overflow-x: auto;
+}
+
+ .compare-products-page .panel-default tr td {
+ min-width: 200px;
+ }
+
+.compare-products-page .specification .color-container {
+ display: inline-block;
+}
+
+ .compare-products-page .specification .color-container .color {
+ display: table !important;
+ width: 32px !important;
+ height: 32px !important;
+ border: 1px solid #222 !important;
+ cursor: pointer;
+ }
/* SEARCH PAGE STYLE */
-.search-box .search-box-button {background:url("../images/search.png") no-repeat scroll center center #65c178;padding: 16px 19px;height:0;width:0;}
-.search-box .search-nav {float:left; height:34px; padding:0px 40px;margin-right:-3px;width:210px;background:#e5e5e5;border:none;box-shadow:none;}
-.search-input .basic-search .forum-search-text.form-control{padding:0px 12px; border-radius:0; margin-bottom:20px; height:34px; margin-right:-3px;}
-.price-range{float:left;margin-top:7px;width:100%;font-weight:700;}
-.price-range-from {float:left;margin-left: 16px;}
-.price-from.form-control {float:left;margin-left:15px;width:21%;}
-.price-range-to {float:left;margin:0 20px;}
-.price-to.form-control {float:left;width:21%;}
-.search-page .search-results strong{ float:left; width:100%;text-align:center;}
-.search-page .form-group label{text-align:left;padding-top:5px;padding-right:0px;}
-.search-page .form-group label.checkbox{text-align:left;}
-.search-page .product-selectors{margin-top:30px;clear:both;float:left;width:100%;}
-.search-box .navbar-form{padding-right:0px;}
-.search-input label{padding-bottom: 5px;margin-bottom: 0;}
-.search-page .checkbox > label{padding-left:0px;color:var(--grey-black);margin-left:5px;}
-.remove_right_padding{padding-left:15px;}
-.blogpost-page .page-title.panel-heading h1,.blog-page .page-title.panel-heading h1,.search-page .page-title.panel-heading h1,.news-list-page .page-title.panel-heading h1,.news-item-page .page-title.panel-heading h1{text-align:left;}
-.new-comment .title{text-align:center;}
-.search-page .search-input.form-horizontal{clear:both;margin-bottom:20px;}
-.search-page .search-btn{text-transform:uppercase;padding:10px 20px;}
-.search-page .form-group{margin-bottom:20px;}
+.search-box .search-box-button {
+ background: url("../images/search.png") no-repeat scroll center center #65c178;
+ padding: 16px 19px;
+ height: 0;
+ width: 0;
+}
+
+.search-box .search-nav {
+ float: left;
+ height: 34px;
+ padding: 0px 40px;
+ margin-right: -3px;
+ width: 210px;
+ background: #e5e5e5;
+ border: none;
+ box-shadow: none;
+}
+
+.search-input .basic-search .forum-search-text.form-control {
+ padding: 0px 12px;
+ border-radius: 0;
+ margin-bottom: 20px;
+ height: 34px;
+ margin-right: -3px;
+}
+
+.price-range {
+ float: left;
+ margin-top: 7px;
+ width: 100%;
+ font-weight: 700;
+}
+
+.price-range-from {
+ float: left;
+ margin-left: 16px;
+}
+
+.price-from.form-control {
+ float: left;
+ margin-left: 15px;
+ width: 21%;
+}
+
+.price-range-to {
+ float: left;
+ margin: 0 20px;
+}
+
+.price-to.form-control {
+ float: left;
+ width: 21%;
+}
+
+.search-page .search-results strong {
+ float: left;
+ width: 100%;
+ text-align: center;
+}
+
+.search-page .form-group label {
+ text-align: left;
+ padding-top: 5px;
+ padding-right: 0px;
+}
+
+ .search-page .form-group label.checkbox {
+ text-align: left;
+ }
+
+.search-page .product-selectors {
+ margin-top: 30px;
+ clear: both;
+ float: left;
+ width: 100%;
+}
+
+.search-box .navbar-form {
+ padding-right: 0px;
+}
+
+.search-input label {
+ padding-bottom: 5px;
+ margin-bottom: 0;
+}
+
+.search-page .checkbox > label {
+ padding-left: 0px;
+ color: var(--grey-black);
+ margin-left: 5px;
+}
+
+.remove_right_padding {
+ padding-left: 15px;
+}
+
+.blogpost-page .page-title.panel-heading h1, .blog-page .page-title.panel-heading h1, .search-page .page-title.panel-heading h1, .news-list-page .page-title.panel-heading h1, .news-item-page .page-title.panel-heading h1 {
+ text-align: left;
+}
+
+.new-comment .title {
+ text-align: center;
+}
+
+.search-page .search-input.form-horizontal {
+ clear: both;
+ margin-bottom: 20px;
+}
+
+.search-page .search-btn {
+ text-transform: uppercase;
+ padding: 10px 20px;
+}
+
+.search-page .form-group {
+ margin-bottom: 20px;
+}
+
.search-results {
clear: both;
}
/* PAGINATION STYLE */
-.pager li{margin-right:10px;display:inline-block;}
-.pager li.current-page > span,.pager li.individual-page > a{background:#f5f5f5;border:1px solid #ddd;color:var(--red);border-radius:100%;padding:10px 15px;font-weight:700;}
-.pager li.current-page > span{background:var(--red);border-color:var(--red);color:#fff;}
-.pager li.individual-page > a:hover{background:var(--red);color:#fff;border-color:var(--red);}
-.pager li.previous-page a,.pager li.next-page a,.pager .last-page a,.pager .first-page a{color:#fff;padding:10px 20px;border-radius:100%;background:var(--grey-black);border-color:var(--grey-black);font-weight:700;}
-.pager li.previous-page a{background:url(../images/pagination-previous-arrow.png) no-repeat 15px 15px var(--grey-black);text-indent:-9999px;border-color:var(--grey-black);}
-.pager li.next-page a{background:url(../images/pagination-next-arrow.png) no-repeat 15px 15px var(--grey-black);text-indent:-9999px;border-color:var(--grey-black);}
-.pager li.previous-page a:hover{background:url(../images/pagination-previous-arrow.png) no-repeat 15px 15px var(--red);border-color:var(--red);}
-.pager li.next-page a:hover{background:url(../images/pagination-next-arrow.png) no-repeat 15px 15px var(--red);border-color:var(--red);}
-.pager li.first-page a{background:url(../images/pagination-previous-last-arrow.png) no-repeat 14px 15px var(--grey-black);text-indent:-9999px;border-color:var(--grey-black);}
-.pager li.last-page a{background:url(../images/pagination-next-last-arrow.png) no-repeat 14px 15px var(--grey-black);text-indent:-9999px;border-color:var(--grey-black);}
-.pager li.first-page a:hover{background:url(../images/pagination-previous-last-arrow.png) no-repeat 14px 15px var(--red);border-color:var(--red);}
-.pager li.last-page a:hover{background:url(../images/pagination-next-last-arrow.png) no-repeat 14px 15px var(--red);border-color:var(--red);}
+.pager li {
+ margin-right: 10px;
+ display: inline-block;
+}
+
+ .pager li.current-page > span, .pager li.individual-page > a {
+ background: #f5f5f5;
+ border: 1px solid #ddd;
+ color: #aaa081;
+ border-radius: 100%;
+ padding: 10px 15px;
+ font-weight: 700;
+ }
+
+ .pager li.current-page > span {
+ background: #aaa081;
+ border-color: #aaa081;
+ color: #fff;
+ }
+
+ .pager li.individual-page > a:hover {
+ background: #aaa081;
+ color: #fff;
+ border-color: #aaa081;
+ }
+
+ .pager li.previous-page a, .pager li.next-page a, .pager .last-page a, .pager .first-page a {
+ color: #fff;
+ padding: 10px 20px;
+ border-radius: 100%;
+ background: var(--grey-black);
+ border-color: var(--grey-black);
+ font-weight: 700;
+ }
+
+ .pager li.previous-page a {
+ background: url(../images/pagination-previous-arrow.png) no-repeat 15px 15px var(--grey-black);
+ text-indent: -9999px;
+ border-color: var(--grey-black);
+ }
+
+ .pager li.next-page a {
+ background: url(../images/pagination-next-arrow.png) no-repeat 15px 15px var(--grey-black);
+ text-indent: -9999px;
+ border-color: var(--grey-black);
+ }
+
+ .pager li.previous-page a:hover {
+ background: url(../images/pagination-previous-arrow.png) no-repeat 15px 15px #aaa081;
+ border-color: #aaa081;
+ }
+
+ .pager li.next-page a:hover {
+ background: url(../images/pagination-next-arrow.png) no-repeat 15px 15px #aaa081;
+ border-color: #aaa081;
+ }
+
+ .pager li.first-page a {
+ background: url(../images/pagination-previous-last-arrow.png) no-repeat 14px 15px var(--grey-black);
+ text-indent: -9999px;
+ border-color: var(--grey-black);
+ }
+
+ .pager li.last-page a {
+ background: url(../images/pagination-next-last-arrow.png) no-repeat 14px 15px var(--grey-black);
+ text-indent: -9999px;
+ border-color: var(--grey-black);
+ }
+
+ .pager li.first-page a:hover {
+ background: url(../images/pagination-previous-last-arrow.png) no-repeat 14px 15px #aaa081;
+ border-color: #aaa081;
+ }
+
+ .pager li.last-page a:hover {
+ background: url(../images/pagination-next-last-arrow.png) no-repeat 14px 15px #aaa081;
+ border-color: #aaa081;
+ }
/* MISC. CLASSES */
/*.nobr{white-space:nowrap!important;}*/
-.wrap{white-space:normal!important;}
-.a-left{text-align:left!important;}
-.a-right{text-align:right!important;}
-.noscript{border:1px solid #ddd;border-width:0 0 1px;background:#ffff90;font-size:12px;line-height:1.25;text-align:center;color:#2f2f2f;}
-.clearer{zoom:1;}
-.clearer:after{content:".";display:block;clear:both;height:0;font-size:0;line-height:0;visibility:hidden;}
+.wrap {
+ white-space: normal !important;
+}
+
+.a-left {
+ text-align: left !important;
+}
+
+.a-right {
+ text-align: right !important;
+}
+
+.noscript {
+ border: 1px solid #ddd;
+ border-width: 0 0 1px;
+ background: #ffff90;
+ font-size: 12px;
+ line-height: 1.25;
+ text-align: center;
+ color: #2f2f2f;
+}
+
+.clearer {
+ zoom: 1;
+}
+
+ .clearer:after {
+ content: ".";
+ display: block;
+ clear: both;
+ height: 0;
+ font-size: 0;
+ line-height: 0;
+ visibility: hidden;
+ }
/* AJAX LOADING INDICATOR */
-.ajax-loading-block-window{position:fixed;top:50%;left:50%;width:128px;height:128px;overflow:hidden;z-index:1104;}
-.ajax-loading-block-window .loading-image{position:absolute;top:0;left:0;width:128px;height:128px;background-image:url('../images/ajax_loader_large.gif');}
+.ajax-loading-block-window {
+ position: fixed;
+ top: 50%;
+ left: 50%;
+ width: 128px;
+ height: 128px;
+ overflow: hidden;
+ z-index: 1104;
+}
+
+ .ajax-loading-block-window .loading-image {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 128px;
+ height: 128px;
+ background-image: url('../images/ajax_loader_large.gif');
+ }
+
.please-wait {
background: url('../images/ajax-loader-small.gif') no-repeat;
padding-left: 20px;
@@ -539,67 +2582,270 @@ input[type=checkbox], input[type=radio] {margin: 4px 2px 0 0;}
text-align: center;
margin: 5px 0px;
}
-.message-error ul{padding:0px;margin:0;}
-.message-error ul li{list-style:none;}
-.field-validation-error, .section.payment-info .message-error ul{font-size:10px;color:red;background:#f2dede;color:#a94442; padding:5px 5px 5px 5px; margin-top:5px; float:left;}
-.required{color:red;}
-.error{font-size:11px;color:#B94A48;}
-.input-validation-error{background-color:#fff;}
+
+ .message-error ul {
+ padding: 0px;
+ margin: 0;
+ }
+
+ .message-error ul li {
+ list-style: none;
+ }
+
+.field-validation-error, .section.payment-info .message-error ul {
+ font-size: 10px;
+ color: red;
+ background: #f2dede;
+ color: #a94442;
+ padding: 5px 5px 5px 5px;
+ margin-top: 5px;
+ float: left;
+}
+
+.required {
+ color: red;
+}
+
+.error {
+ font-size: 11px;
+ color: #B94A48;
+}
+
+.input-validation-error {
+ background-color: #fff;
+}
/* TOPICS(hero-unit) PAGE STYLE */
-.from-panel{margin-bottom:50px;background:#fff;}
-.panel-heading{padding:0;margin-bottom:30px;}
-.panel-heading h1{font-size:18px; font-weight:700;color:var(--grey-black);text-transform:uppercase;margin:0;text-align:left;letter-spacing:2px;}
-.topic-html-content-body{padding:15px;}
-.not-found-page ul li{list-style:none;margin-bottom:10px;}
-.topic-html-content a{color:var(--red);}
-.topic-html-content a:hover{color:var(--grey-black);}
-.not-found-page .page-body.from-panel{clear:both;}
-.panel-body{padding:0;}
-.topic-html-content{border:1px solid #ddd;}
-.topic-html-content .panel-heading{margin-bottom:0px;padding:15px;}
-.topic-page .page-body img,.topic-html-content .topic-html-content-body img,.category-description img,.manufacturer-description img,.product-details-tabs #description img,.news-item-page .news-body img,.blogpost-page .post-body img{width: 100%;height:auto;}
-.page.topic-page{padding:15px;}
-.page.topic-page .panel-heading h1{text-align:center;}
-.home-page .topic-html-content{margin-bottom:50px;}
+.from-panel {
+ margin-bottom: 50px;
+ background: #fff;
+}
+
+.panel-heading {
+ padding: 0;
+ margin-bottom: 30px;
+}
+
+ .panel-heading h1 {
+ font-size: 18px;
+ font-weight: 700;
+ color: var(--grey-black);
+ text-transform: uppercase;
+ margin: 0;
+ text-align: left;
+ letter-spacing: 2px;
+ }
+
+.topic-html-content-body {
+ padding: 15px;
+}
+
+.not-found-page ul li {
+ list-style: none;
+ margin-bottom: 10px;
+}
+
+.topic-html-content a {
+ color: #aaa081;
+}
+
+ .topic-html-content a:hover {
+ color: var(--grey-black);
+ }
+
+.not-found-page .page-body.from-panel {
+ clear: both;
+}
+
+.panel-body {
+ padding: 0;
+}
+
+.topic-html-content {
+ border: 1px solid #ddd;
+}
+
+ .topic-html-content .panel-heading {
+ margin-bottom: 0px;
+ padding: 15px;
+ }
+
+ .topic-page .page-body img, .topic-html-content .topic-html-content-body img, .category-description img, .manufacturer-description img, .product-details-tabs #description img, .news-item-page .news-body img, .blogpost-page .post-body img {
+ width: 100%;
+ height: auto;
+ }
+
+.page.topic-page {
+ padding: 15px;
+}
+
+ .page.topic-page .panel-heading h1 {
+ text-align: center;
+ }
+
+.home-page .topic-html-content {
+ margin-bottom: 50px;
+}
/* SITE MAP PAGE STYLE */
-.sitemap-page .entity {margin:0 0 30px 0;padding:20px;}
-.sitemap-page h2 {border-bottom: 1px solid #ddd;font-size:18px;font-weight:bold;padding-bottom:10px;}
-.sitemap-page .entity ul {overflow: hidden;margin:0;}
-.sitemap-page .entity li{float: left;list-style: none;width:170px;border-bottom:none;margin-bottom:0;}
-.sitemap-page .entity .entity-body a{text-decoration:none;color:#666;}
-.entity-body.category-body.product-link li {float: left;margin-right:26px;width:48%; margin-bottom:8px;}
-.entity-body.category-body.product-link li:nth-child(2n){ margin-right:0px;}
-.sitemap-page .page-title.panel-heading h1,.sitemap-page h2{text-align:center;margin-top:0px;}
-.sitemap-page .entity-body ul li{padding-bottom:5px;}
-.sitemap-page .description{text-align:center;margin-bottom:15px;}
+.sitemap-page .entity {
+ margin: 0 0 30px 0;
+ padding: 20px;
+}
+
+.sitemap-page h2 {
+ border-bottom: 1px solid #ddd;
+ font-size: 18px;
+ font-weight: bold;
+ padding-bottom: 10px;
+}
+
+.sitemap-page .entity ul {
+ overflow: hidden;
+ margin: 0;
+}
+
+.sitemap-page .entity li {
+ float: left;
+ list-style: none;
+ width: 170px;
+ border-bottom: none;
+ margin-bottom: 0;
+}
+
+.sitemap-page .entity .entity-body a {
+ text-decoration: none;
+ color: #666;
+}
+
+.entity-body.category-body.product-link li {
+ float: left;
+ margin-right: 26px;
+ width: 48%;
+ margin-bottom: 8px;
+}
+
+ .entity-body.category-body.product-link li:nth-child(2n) {
+ margin-right: 0px;
+ }
+
+.sitemap-page .page-title.panel-heading h1, .sitemap-page h2 {
+ text-align: center;
+ margin-top: 0px;
+}
+
+.sitemap-page .entity-body ul li {
+ padding-bottom: 5px;
+}
+
+.sitemap-page .description {
+ text-align: center;
+ margin-bottom: 15px;
+}
/* EU COOKIE LAW */
-.eu-cookie-law{text-align:left;}
-a.eu-cookie-privacyinfo-tag{color:#B80709 !important;text-decoration:underline;}
-.eu-cookie-bar-notification{background:none repeat scroll 0 0 #f5f5f5;border:1px solid #ddd; margin-bottom:20px;margin-left:26%;margin-top:20px;padding:15px;}
-.eu-cookie-bar-notification .text{margin-bottom:10px; color:var(--grey-black);}
+.eu-cookie-law {
+ text-align: left;
+}
+
+a.eu-cookie-privacyinfo-tag {
+ color: #B80709 !important;
+ text-decoration: underline;
+}
+
+.eu-cookie-bar-notification {
+ background: none repeat scroll 0 0 #f5f5f5;
+ border: 1px solid #ddd;
+ margin-bottom: 20px;
+ margin-left: 26%;
+ margin-top: 20px;
+ padding: 15px;
+}
+
+ .eu-cookie-bar-notification .text {
+ margin-bottom: 10px;
+ color: var(--grey-black);
+ }
/* NOTIFICATIONS */
-.bar-notification{display:none;left:0;position:fixed;top:0px;width:100%;z-index:1000000;}
-.bar-notification.success{background:#4bb07a;color:#FFFFFF;margin:0 0 10px;}
-.bar-notification.error{background:#e4444c;color:#FFFFFF;margin:0 0 10px;}
-.bar-notification .close {background: url(../images/ico-close-notification-bar.png) no-repeat;width: 20px;height: 20px;float: right;margin: 25px 10px 0px 0px;cursor: pointer;position: absolute;top: 0;right: 0;opacity: 0.9;}
-.bar-notification p.content{padding:20px 40px 20px 20px;margin:5px 0px;text-align:center;}
-.bar-notification p.content a{text-decoration:underline;color:#FFFFFF;}
-.bar-notification p.content a:hover{text-decoration:none;color:#FFFFFF;}
-.bar-notification.error p.content {margin:5px 0px;padding:10px 25px;text-align:center;font-size:14px;}
+.bar-notification {
+ display: none;
+ left: 0;
+ position: fixed;
+ top: 0px;
+ width: 100%;
+ z-index: 1000000;
+}
+
+ .bar-notification.success {
+ background: #4bb07a;
+ color: #FFFFFF;
+ margin: 0 0 10px;
+ }
+
+ .bar-notification.error {
+ background: #e4444c;
+ color: #FFFFFF;
+ margin: 0 0 10px;
+ }
+
+ .bar-notification .close {
+ background: url(../images/ico-close-notification-bar.png) no-repeat;
+ width: 20px;
+ height: 20px;
+ float: right;
+ margin: 25px 10px 0px 0px;
+ cursor: pointer;
+ position: absolute;
+ top: 0;
+ right: 0;
+ opacity: 0.9;
+ }
+
+ .bar-notification p.content {
+ padding: 20px 40px 20px 20px;
+ margin: 5px 0px;
+ text-align: center;
+ }
+
+ .bar-notification p.content a {
+ text-decoration: underline;
+ color: #FFFFFF;
+ }
+
+ .bar-notification p.content a:hover {
+ text-decoration: none;
+ color: #FFFFFF;
+ }
+
+ .bar-notification.error p.content {
+ margin: 5px 0px;
+ padding: 10px 25px;
+ text-align: center;
+ font-size: 14px;
+ }
/* PRODUCT DETAILS PAGE STYLE */
-.product-details-page .overview{float:left; width:100%;}
-.product-collateral{margin-bottom:10px;clear:both;}
-.product-details-page .gallery .picture{text-align:center;margin-bottom:20px;}
+.product-details-page .overview {
+ float: left;
+ width: 100%;
+}
+
+.product-collateral {
+ margin-bottom: 10px;
+ clear: both;
+}
+
+.product-details-page .gallery .picture {
+ text-align: center;
+ margin-bottom: 20px;
+}
+
.product-details-page .thumb-popup-link {
border: 2px solid #ddd;
display: inline-block;
@@ -611,224 +2857,970 @@ a.eu-cookie-privacyinfo-tag{color:#B80709 !important;text-decoration:underline;}
cursor: pointer;
position: relative;
}
-.product-details-page .thumb-popup-link:hover{border:2px solid var(--red);}
-.product-details-page .thumb-popup-link img{position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- max-width: 100%;
- max-height: 100%;
- margin: auto;
+
+ .product-details-page .thumb-popup-link:hover {
+ border: 2px solid #aaa081;
+ }
+
+ .product-details-page .thumb-popup-link img {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ max-width: 100%;
+ max-height: 100%;
+ margin: auto;
+ }
+
+ .product-details-page .thumb-popup-link:last-child {
+ margin-right: 0px;
+ }
+
+.product-details-page .gallery .picture-thumbs a:hover, .product-details-page .gallery .picture-thumbs a:focus {
+ text-decoration: none;
}
-.product-details-page .thumb-popup-link:last-child{margin-right:0px;}
-.product-details-page .gallery .picture-thumbs a:hover,.product-details-page .gallery .picture-thumbs a:focus{text-decoration: none;}
-.product-details-page .overview,.product-details-page .gallery{margin-bottom:40px;float:left; width:100%;}
-.product-details-page .giftcard,.product-details-page .tier-prices{margin-bottom:20px;float:left; width:100%;}
-.product-details-page .gallery .picture-thumbs{text-align:center;}
-.product-details-page .product-name.panel-heading{margin-bottom:20px;border-bottom:none;}
-.product-details-page .product-name.panel-heading h1{font-size:22px;color:var(--red);text-transform:capitalize;letter-spacing:0px;}
-.product-details-page .short-description,.product-details-page .variant-description{margin-bottom:25px;clear:both;color:#555;line-height:22px;}
-.product-details-page .product-reviews-overview,.product-details-page .additional-details{float:left; width:100%;}
-.product-details-page .product-reviews-overview .product-review-links,.product-details-page .product-reviews-overview .product-review-box,.product-details-page .product-reviews-overview .product-no-reviews{float:left;width:100%;margin-bottom:20px;text-transform:capitalize;}
-.product-details-page .product-reviews-overview .product-review-links .separator{margin:0 2px;color:#666;}
-.product-review-box .rating{height:16px;width:100px;background:url("../images/star-x-inactive.png") 0 0 repeat-x;}
-.product-review-box .rating div{float:left;height:16px;background:url("../images/star-x-active.png") 0 0 repeat-x; font-size: 0;}
-.product-details-page .availability{clear:both;float:left;width:100%;margin-bottom:20px;}
-.product-details-page .availability .stock strong{font-weight:normal;color:#555;float:left;line-height:25px;margin-right: 5px;}
-.back-in-stock-subscription-page .page-title h1{font-size:18px;}
-.back-in-stock-subscription-page .page-title,.back-in-stock-subscription-page .page-body{padding: 10px;}
+
+.product-details-page .overview, .product-details-page .gallery {
+ margin-bottom: 40px;
+ float: left;
+ width: 100%;
+}
+
+.product-details-page .giftcard, .product-details-page .tier-prices {
+ margin-bottom: 20px;
+ float: left;
+ width: 100%;
+}
+
+.product-details-page .gallery .picture-thumbs {
+ text-align: center;
+}
+
+.product-details-page .product-name.panel-heading {
+ margin-bottom: 20px;
+ border-bottom: none;
+}
+
+ .product-details-page .product-name.panel-heading h1 {
+ font-size: 22px;
+ color: #aaa081;
+ text-transform: capitalize;
+ letter-spacing: 0px;
+ }
+
+.product-details-page .short-description, .product-details-page .variant-description {
+ margin-bottom: 25px;
+ clear: both;
+ color: #555;
+ line-height: 22px;
+}
+
+.product-details-page .product-reviews-overview, .product-details-page .additional-details {
+ float: left;
+ width: 100%;
+}
+
+ .product-details-page .product-reviews-overview .product-review-links, .product-details-page .product-reviews-overview .product-review-box, .product-details-page .product-reviews-overview .product-no-reviews {
+ float: left;
+ width: 100%;
+ margin-bottom: 20px;
+ text-transform: capitalize;
+ }
+
+ .product-details-page .product-reviews-overview .product-review-links .separator {
+ margin: 0 2px;
+ color: #666;
+ }
+
+.product-review-box .rating {
+ height: 16px;
+ width: 100px;
+ background: url("../images/star-x-inactive.png") 0 0 repeat-x;
+}
+
+ .product-review-box .rating div {
+ float: left;
+ height: 16px;
+ background: url("../images/star-x-active.png") 0 0 repeat-x;
+ font-size: 0;
+ }
+
+.product-details-page .availability {
+ clear: both;
+ float: left;
+ width: 100%;
+ margin-bottom: 20px;
+}
+
+ .product-details-page .availability .stock strong {
+ font-weight: normal;
+ color: #555;
+ float: left;
+ line-height: 25px;
+ margin-right: 5px;
+ }
+
+.back-in-stock-subscription-page .page-title h1 {
+ font-size: 18px;
+}
+
+.back-in-stock-subscription-page .page-title, .back-in-stock-subscription-page .page-body {
+ padding: 10px;
+}
+
.back-in-stock-subscription-page #back-in-stock-notify-me {
display: block;
margin: 0 auto;
margin-top: 10px;
font-family: 'Lato', sans-serif;
}
-.backinstocksubscription-tooltip {border: 1px solid #ddd;margin-top: 5px;padding: 5px;}
-.product-details-page .subscribe-button{background:url(../images/notification-icon.png) no-repeat 15px 14px #f5f5f5;border: 2px solid #ddd;font-weight: 700;padding:10px 15px 10px 38px;}
-.product-details-page .subscribe-button:hover{background:url(../images/notification-icon.png) no-repeat 15px -19px var(--grey-black);border-color:var(--grey-black);color:#fff;}
-.product-details-page .back-in-stock-subscription{margin-top:20px;float:left;width:100%;}
-.product-vendor .value,.delivery-date .value ,.stock .value , .sku .value , .manufacturer-part-number .value , .gtin .value , .manufacturers .value{margin-left:3px;color:var(--red);}
-.product-vendor .value a,.manufacturers .value a,.tax-shipping-info a{color:var(--red);}
-.product-vendor .value a:hover,.manufacturers .value a:hover,.tax-shipping-info a:hover{color:var(--grey-black);}
-.product-details-page .stock .value{background:#72b226;padding:5px 10px;color:#fff;float:left;}
-.product-details-page .additional-details .label,.product-details-page .manufacturers .label{color:#555;padding:0px;font-size:14px;border-radius:0px;font-weight:normal;text-transform:capitalize;}
-.product-details-page .additional-details div{margin-bottom:20px;}
-.product-details-page .delivery,.product-details-page .add-to-cart,.product-details-page .overview .delivery-date{float:left;width:100%;margin-bottom:25px;}
-.product-details-page .delivery{margin-bottom:0 !important;}
-.product-details-page .delivery > div{margin-bottom:20px !important;}
-.product-details-page .free-shipping{color:#fff;display:inline-block;background:var(--grey-black);padding:10px 15px;margin-bottom:20px;}
-.product-details-page .free-shipping strong{margin-left:5px;}
-.product-details-page .download-sample{clear:both;margin-bottom:20px;}
-.product-details-page .download-sample-button{background:url(../images/download-icon.png) no-repeat 15px 15px #f5f5f5;border: 2px solid #ddd;font-weight: 700;padding:10px 15px 10px 38px;color:var(--grey-black);}
-.product-details-page .download-sample-button:hover,.product-details-page .download-sample-button:focus{background:url(../images/download-icon.png) no-repeat 15px -20px var(--grey-black);border-color:var(--grey-black);color:#fff;}
-.product-details-page .prices div,.product-details-page .manufacturers{margin-bottom:20px;float:left; width:100%;}
-.product-details-page .prices .product-price{font-weight:bold;}
-.product-details-page .prices .product-price span{font-size:18px;color:var(--red);}
-.product-details-page .old-product-price{float: left;width: 100%;text-decoration: line-through;color:#999;margin-bottom:5px;}
-.product-details-page .old-product-price label{display: inline;font-weight:normal;font-size:15px;}
-.product-details-page .product-price label{display: inline;font-size:20px;color:var(--grey-black);}
-.product-details-page .prices .rental-price label{font-weight:normal;color:#555;}
-.product-details-page .prices .rental-price span{color:var(--red);}
-.product-details-page .tier-prices ,.product-details-page .tier-prices .prices-list td{text-align:center;}
-.product-details-page .tier-prices .prices-list .field-header{color:#000;font-weight:700;}
-.product-details-page .tier-prices .prices-header{background:#eee;color:#555;padding:10px;float:left;width:100%;text-align:left;border:1px solid #ddd;}
-.product-details-page .tier-prices .prices-list .panel-default{float:left;width:100%;overflow-x:scroll;}
-.product-details-page .tier-prices .prices-list .table{margin-bottom:0px;border:none;}
-.product-details-page .tier-prices .prices-list .table tr th,.product-details-page .tier-prices .prices-list .table tr td{border-top:1px solid #ddd;}
-.product-details-page .tier-prices .prices-list .table tr .tier-price-value{color:var(--red);font-weight:700;}
-.product-details-page .attributes .btn-dropdown.form-control{width:100%;}
-.product-details-page .attributes .text-prompt{font-weight:bold;display: inline;color:#555;}
-.product-details-page .attributes .attribute-description{font-size:11px;}
-.product-details-page .attributes ul.option-list{padding:0px;margin:0px;}
-.product-details-page .attributes ul.option-list li{list-style:none;display: inline-block;}
-.product-details-page .attributes ul.option-list li label{font-weight:normal;color:#555;vertical-align:middle;}
-.product-details-page .attributes .textbox{width:100%;}
-.product-details-page .attributes textarea{height:150px;border:1px solid #ccc;}
-.product-details-page .add-to-cart .qty-input{width:60px;float:left;margin:0;height:40px;}
-.product-details-page .addtocart-quantity-box{float:left;margin-right:35px;width:80px;}
-.product-details-page .add-to-cart .qty-.dropdown{width:80px;}
-.product-details-page .add-to-cart .qty-dropdown{width:80px;float: left;margin-right:10px;height:40px;}
-.product-details-page .add-to-cart .quantity-box label{font-weight:600;color:#555;float:left;margin-right:15px;line-height:35px;}
-.product-details-page .add-to-cart .addtocart-quantity-box span{border: 1px solid #ddd;cursor: pointer;float: left;font-size: 10px;font-weight: normal;height: 20px;line-height: 20px;text-align: center;width: 20px;color:#999;}
-.product-details-page .add-to-cart .product-add-button .add-to-cart-button{background:url(../images/product-cart-icon.png) no-repeat 12px -20px var(--red);text-transform:uppercase;padding-left:40px;}
-.product-details-page .add-to-cart .product-add-button .add-to-cart-button:hover{background:url(../images/product-cart-icon.png) no-repeat 12px -20px var(--grey-black);}
-.product-details-page .add-to-cart .product-add-button{float:left;}
-.product-details-page .overview-buttons{clear:both;float:left;width:100%;margin-bottom:25px;}
-.product-details-page .overview-buttons .add-to-wishlist-button{background:url(../images/wishlist-product-icon.png) no-repeat 20px 10px var(--grey-black);text-transform:uppercase;padding-left:50px;float:left;}
-.product-details-page .overview-buttons .add-to-wishlist-button:hover{background:url(../images/wishlist-product-icon.png) no-repeat 20px 10px var(--red);}
-.product-details-page .overview-buttons .add-to-compare-list-button{background:url(../images/compare-product-icon.png) no-repeat 20px 10px var(--grey-black);text-transform:uppercase;padding-left:50px;float:left;}
-.product-details-page .overview-buttons .add-to-compare-list-button:hover{background:url(../images/compare-product-icon.png) no-repeat 20px 10px var(--red);}
-.product-details-page .overview-buttons .email-a-friend-button{background:url(../images/email-product-icon.png) no-repeat 20px 10px var(--grey-black);text-transform:uppercase;padding-left:50px;float:left;}
-.product-details-page .overview-buttons .email-a-friend-button:hover{background:url(../images/email-product-icon.png) no-repeat 20px 10px var(--red);}
-.product-details-page .customer-entered-price .enter-price-label{float:left;padding-top:0px;font-weight:600;color:#555;}
-.product-details-page .customer-entered-price .enter-price-input{margin:0 0 0 10px;width:60px; float:left;}
-.product-details-page .attributes.rental-attribute,.product-details-page .price-availability .rental-price,.product-details-page .price-availability .prices,.product-details-page .price-availability{clear:both;}
-.product-details-page .price-range,.customer-entered-price .price-input{margin-bottom:20px;margin-top:0px;overflow:hidden;}
-.product-details-page .product-reviews-overview .product-review-links a,.product-details-page .product-reviews-overview .product-no-reviews a{color:#666;}
-.product-details-page .product-reviews-overview .product-review-links a:hover,.product-details-page .product-reviews-overview .product-no-reviews a:hover{color:var(--red);}
-#fancybox-close {position: absolute !important;right:-25px !important;top:-9px !important;}
-#fancybox-outer {width:103% !important;height:106% !important;}
-.product-details-page .product-share-button{clear:both;}
-.product-details-page .product-share-button a{padding:0px;float:left;margin-right:8px;}
-.product-details-page .product-share-button a span{height:40px !important;width:40px !important;text-align:center;transition:all 0.3s ease-in-out 0s;-webkit-transition:all 0.3s ease-in-out 0s;-moz-transition:all 0.3s ease-in-out 0s;-o-transition:all 0.3s ease-in-out 0s;}
-.product-details-page .product-share-button a span .at-icon{height:40px !important;width:25px !important;}
-.product-details-page .product-share-button a span:hover{background:var(--red) !important;}
-.product-details-page .tab-content {float: left;margin-top: 0;padding:20px 15px;width: 100%;border:1px solid #ddd;margin-top:-1px;}
-.product-details-page .nav-tabs{border:none;}
-.product-details-page .nav-tabs li a{font-weight:normal;color:#666;font-size:16px;text-transform:capitalize;}
-.product-details-page .nav-tabs li.active{margin-bottom:0px;}
-.product-details-page .nav-tabs li.active a{color:#fff;background:var(--red);border-color:var(--red);}
-.product-details-page .nav-tabs li.active a:hover,.product-details-page .nav-tabs > li.active > a:focus{background:var(--red);}
-.product-details-page .nav-tabs li.active a::after{content: ' ';height: 0;position: absolute;width: 0;border: 10px solid transparent;border-top-color: var(--red);border: 10px solid transparent;border-top-color: var(--red);top: 100%;left: 50%;margin-left: -10px;}
-.product-details-page .nav-tabs > li > a {margin-right:15px;border:1px solid #ddd;border-radius:0px;padding:15px 35px;background:#f5f5f5;}
-.product-details-page .nav-tabs > li:last-child > a{margin-right:0;}
-.product-details-page .nav > .label.label-default > a:hover, .product-details-page .nav > .label.label-default > a:focus {background-color:transparent;border-color: transparent;text-decoration: none;}
-.product-details-page .nav-tabs > li > a:focus,.product-details-page .nav-tabs > li > a:hover {background-color:var(--grey-black);color:#fff;outline:none;}
-.product-details-page .product-specs-box .panel{border:none;}
-.product-details-page .product-specs-box .table-bordered{border:1px solid #ddd;}
-.product-details-page .product-specs-box .table-bordered tr td{padding:10px;color:#555}
-.product-details-page .product-specs-box .table-bordered .a-left.spec-name{color:var(--red);font-weight:700;}
-.product-details-page .product-specs-box .title{margin-bottom:0px;}
-.product-details-page .product-specs-box{clear:both;margin-bottom:30px;}
-.product-details-page .tab-content .product-tags{margin-top:10px;}
-.product-details-page .full-description{clear:both;margin-bottom:20px; margin-top:10px;color:#999;line-height:25px;}
-.product-details-page .product-tags-box .product-tags-list ul{margin:0;}
-.product-details-page .product-tags-list ul li a{font-size:12px;}
-.product-details-page .product-tags-box .title{margin-bottom:0px;}
-.product-details-page .product-tags-box .product-tags-list .separator{display:none;}
-.product-details-page .product-tags-box .product-tags-list li{float:left;list-style:none; margin-bottom:10px; padding-right:5px; margin-right:10px;transition:all 0.3s ease-in-out 0s;-webkit-transition:all 0.3s ease-in-out 0s;-moz-transition:all 0.3s ease-in-out 0s;-o-transition:all 0.3s ease-in-out 0s;background:#666;border-radius:0px;}
-.product-details-page .product-tags-box .product-tags-list li:hover{background:var(--red);color:#fff;}
-.product-details-page .product-tags-box .panel-heading {padding:0;}
-.product-details-page .product-details-tabs{margin-bottom:50px;float:left;width:100%;}
-.min-qty-notification{margin-bottom: 10px;}
-.product-details-page .giftcard label{color:#555;font-weight:600;display:inline-block;}
-.product-details-page .giftcard .message{height:100px;}
-.overview .action-button{display:block;}
-.product-details-page .no-associated-products{font-weight:bold;}
-.product-details-page .variant-picture{margin-right:25px;}
-.product-details-page .product-variant-list .addtocart-quantity-box{margin-right:15px;}
-.product-details-page .variant-overview .variant-name{font-weight:700;font-size:16px;color:var(--red);margin-bottom:20px;}
-.product-details-page .tax-shipping-info{float:left;padding-bottom: 10px;width:100%;}
-.variant-overview .tax-shipping-info{ border:none;}
-.back-in-stock-subscription-page .tooltip{opacity:1;position:relative;}
-.product-details-page .price-availability .availability{position:absolute;right:0px;}
-.product-details-page .price-availability{position:relative;}
-.base-price-pangv{clear: both;float: left;margin-bottom: 15px;}
-.product-attribute-label{padding-right: 0;}
-.product-details-page .related-products-grid{clear:both;}
-.product-details-page .product-variant-list .product-variant-line:nth-child(2n+1){clear: both;}
-.qty-box {margin-top: 15px;}
-.qty-box .text-prompt {padding: 0;margin-top:5px;}
-.qty-box .qty-text {padding: 0;}
-.mfp-ready{z-index:99999 !important;}
-.mfp-wrap{z-index:999999 !important;}
+
+.backinstocksubscription-tooltip {
+ border: 1px solid #ddd;
+ margin-top: 5px;
+ padding: 5px;
+}
+
+.product-details-page .subscribe-button {
+ background: url(../images/notification-icon.png) no-repeat 15px 14px #f5f5f5;
+ border: 2px solid #ddd;
+ font-weight: 700;
+ padding: 10px 15px 10px 38px;
+}
+
+ .product-details-page .subscribe-button:hover {
+ background: url(../images/notification-icon.png) no-repeat 15px -19px var(--grey-black);
+ border-color: var(--grey-black);
+ color: #fff;
+ }
+
+.product-details-page .back-in-stock-subscription {
+ margin-top: 20px;
+ float: left;
+ width: 100%;
+}
+
+.product-vendor .value, .delivery-date .value, .stock .value, .sku .value, .manufacturer-part-number .value, .gtin .value, .manufacturers .value {
+ margin-left: 3px;
+ color: #aaa081;
+}
+
+ .product-vendor .value a, .manufacturers .value a, .tax-shipping-info a {
+ color: #aaa081;
+ }
+
+ .product-vendor .value a:hover, .manufacturers .value a:hover, .tax-shipping-info a:hover {
+ color: var(--grey-black);
+ }
+
+.product-details-page .stock .value {
+ background: #72b226;
+ padding: 5px 10px;
+ color: #fff;
+ float: left;
+}
+
+.product-details-page .additional-details .label, .product-details-page .manufacturers .label {
+ color: #555;
+ padding: 0px;
+ font-size: 14px;
+ border-radius: 0px;
+ font-weight: normal;
+ text-transform: capitalize;
+}
+
+.product-details-page .additional-details div {
+ margin-bottom: 20px;
+}
+
+.product-details-page .delivery, .product-details-page .add-to-cart, .product-details-page .overview .delivery-date {
+ float: left;
+ width: 100%;
+ margin-bottom: 25px;
+}
+
+.product-details-page .delivery {
+ margin-bottom: 0 !important;
+}
+
+ .product-details-page .delivery > div {
+ margin-bottom: 20px !important;
+ }
+
+.product-details-page .free-shipping {
+ color: #fff;
+ display: inline-block;
+ background: var(--grey-black);
+ padding: 10px 15px;
+ margin-bottom: 20px;
+}
+
+ .product-details-page .free-shipping strong {
+ margin-left: 5px;
+ }
+
+.product-details-page .download-sample {
+ clear: both;
+ margin-bottom: 20px;
+}
+
+.product-details-page .download-sample-button {
+ background: url(../images/download-icon.png) no-repeat 15px 15px #f5f5f5;
+ border: 2px solid #ddd;
+ font-weight: 700;
+ padding: 10px 15px 10px 38px;
+ color: var(--grey-black);
+}
+
+ .product-details-page .download-sample-button:hover, .product-details-page .download-sample-button:focus {
+ background: url(../images/download-icon.png) no-repeat 15px -20px var(--grey-black);
+ border-color: var(--grey-black);
+ color: #fff;
+ }
+
+.product-details-page .prices div, .product-details-page .manufacturers {
+ margin-bottom: 20px;
+ float: left;
+ width: 100%;
+}
+
+.product-details-page .prices .product-price {
+ font-weight: bold;
+}
+
+ .product-details-page .prices .product-price span {
+ font-size: 18px;
+ color: #aaa081;
+ }
+
+.product-details-page .old-product-price {
+ float: left;
+ width: 100%;
+ text-decoration: line-through;
+ color: #999;
+ margin-bottom: 5px;
+}
+
+ .product-details-page .old-product-price label {
+ display: inline;
+ font-weight: normal;
+ font-size: 15px;
+ }
+
+.product-details-page .product-price label {
+ display: inline;
+ font-size: 20px;
+ color: var(--grey-black);
+}
+
+.product-details-page .prices .rental-price label {
+ font-weight: normal;
+ color: #555;
+}
+
+.product-details-page .prices .rental-price span {
+ color: #aaa081;
+}
+
+.product-details-page .tier-prices, .product-details-page .tier-prices .prices-list td {
+ text-align: center;
+}
+
+ .product-details-page .tier-prices .prices-list .field-header {
+ color: #000;
+ font-weight: 700;
+ }
+
+ .product-details-page .tier-prices .prices-header {
+ background: #eee;
+ color: #555;
+ padding: 10px;
+ float: left;
+ width: 100%;
+ text-align: left;
+ border: 1px solid #ddd;
+ }
+
+ .product-details-page .tier-prices .prices-list .panel-default {
+ float: left;
+ width: 100%;
+ overflow-x: scroll;
+ }
+
+ .product-details-page .tier-prices .prices-list .table {
+ margin-bottom: 0px;
+ border: none;
+ }
+
+ .product-details-page .tier-prices .prices-list .table tr th, .product-details-page .tier-prices .prices-list .table tr td {
+ border-top: 1px solid #ddd;
+ }
+
+ .product-details-page .tier-prices .prices-list .table tr .tier-price-value {
+ color: #aaa081;
+ font-weight: 700;
+ }
+
+.product-details-page .attributes .btn-dropdown.form-control {
+ width: 100%;
+}
+
+.product-details-page .attributes .text-prompt {
+ font-weight: bold;
+ display: inline;
+ color: #555;
+}
+
+.product-details-page .attributes .attribute-description {
+ font-size: 11px;
+}
+
+.product-details-page .attributes ul.option-list {
+ padding: 0px;
+ margin: 0px;
+}
+
+ .product-details-page .attributes ul.option-list li {
+ list-style: none;
+ display: inline-block;
+ }
+
+ .product-details-page .attributes ul.option-list li label {
+ font-weight: normal;
+ color: #555;
+ vertical-align: middle;
+ }
+
+.product-details-page .attributes .textbox {
+ width: 100%;
+}
+
+.product-details-page .attributes textarea {
+ height: 150px;
+ border: 1px solid #ccc;
+}
+
+.product-details-page .add-to-cart .qty-input {
+ width: 60px;
+ float: left;
+ margin: 0;
+ height: 40px;
+}
+
+.product-details-page .addtocart-quantity-box {
+ float: left;
+ margin-right: 35px;
+ width: 80px;
+}
+
+.product-details-page .add-to-cart .qty-.dropdown {
+ width: 80px;
+}
+
+.product-details-page .add-to-cart .qty-dropdown {
+ width: 80px;
+ float: left;
+ margin-right: 10px;
+ height: 40px;
+}
+
+.product-details-page .add-to-cart .quantity-box label {
+ font-weight: 600;
+ color: #555;
+ float: left;
+ margin-right: 15px;
+ line-height: 35px;
+}
+
+.product-details-page .add-to-cart .addtocart-quantity-box span {
+ border: 1px solid #ddd;
+ cursor: pointer;
+ float: left;
+ font-size: 10px;
+ font-weight: normal;
+ height: 20px;
+ line-height: 20px;
+ text-align: center;
+ width: 20px;
+ color: #999;
+}
+
+.product-details-page .add-to-cart .product-add-button .add-to-cart-button {
+ background: url(../images/product-cart-icon.png) no-repeat 12px -20px #aaa081;
+ text-transform: uppercase;
+ padding-left: 40px;
+}
+
+ .product-details-page .add-to-cart .product-add-button .add-to-cart-button:hover {
+ background: url(../images/product-cart-icon.png) no-repeat 12px -20px var(--grey-black);
+ }
+
+.product-details-page .add-to-cart .product-add-button {
+ float: left;
+}
+
+.product-details-page .overview-buttons {
+ clear: both;
+ float: left;
+ width: 100%;
+ margin-bottom: 25px;
+}
+
+ .product-details-page .overview-buttons .add-to-wishlist-button {
+ background: url(../images/wishlist-product-icon.png) no-repeat 20px 10px var(--grey-black);
+ text-transform: uppercase;
+ padding-left: 50px;
+ float: left;
+ }
+
+ .product-details-page .overview-buttons .add-to-wishlist-button:hover {
+ background: url(../images/wishlist-product-icon.png) no-repeat 20px 10px #aaa081;
+ }
+
+ .product-details-page .overview-buttons .add-to-compare-list-button {
+ background: url(../images/compare-product-icon.png) no-repeat 20px 10px var(--grey-black);
+ text-transform: uppercase;
+ padding-left: 50px;
+ float: left;
+ }
+
+ .product-details-page .overview-buttons .add-to-compare-list-button:hover {
+ background: url(../images/compare-product-icon.png) no-repeat 20px 10px #aaa081;
+ }
+
+ .product-details-page .overview-buttons .email-a-friend-button {
+ background: url(../images/email-product-icon.png) no-repeat 20px 10px var(--grey-black);
+ text-transform: uppercase;
+ padding-left: 50px;
+ float: left;
+ }
+
+ .product-details-page .overview-buttons .email-a-friend-button:hover {
+ background: url(../images/email-product-icon.png) no-repeat 20px 10px #aaa081;
+ }
+
+.product-details-page .customer-entered-price .enter-price-label {
+ float: left;
+ padding-top: 0px;
+ font-weight: 600;
+ color: #555;
+}
+
+.product-details-page .customer-entered-price .enter-price-input {
+ margin: 0 0 0 10px;
+ width: 60px;
+ float: left;
+}
+
+.product-details-page .attributes.rental-attribute, .product-details-page .price-availability .rental-price, .product-details-page .price-availability .prices, .product-details-page .price-availability {
+ clear: both;
+}
+
+.product-details-page .price-range, .customer-entered-price .price-input {
+ margin-bottom: 20px;
+ margin-top: 0px;
+ overflow: hidden;
+}
+
+.product-details-page .product-reviews-overview .product-review-links a, .product-details-page .product-reviews-overview .product-no-reviews a {
+ color: #666;
+}
+
+ .product-details-page .product-reviews-overview .product-review-links a:hover, .product-details-page .product-reviews-overview .product-no-reviews a:hover {
+ color: #aaa081;
+ }
+
+#fancybox-close {
+ position: absolute !important;
+ right: -25px !important;
+ top: -9px !important;
+}
+
+#fancybox-outer {
+ width: 103% !important;
+ height: 106% !important;
+}
+
+.product-details-page .product-share-button {
+ clear: both;
+}
+
+ .product-details-page .product-share-button a {
+ padding: 0px;
+ float: left;
+ margin-right: 8px;
+ }
+
+ .product-details-page .product-share-button a span {
+ height: 40px !important;
+ width: 40px !important;
+ text-align: center;
+ transition: all 0.3s ease-in-out 0s;
+ -webkit-transition: all 0.3s ease-in-out 0s;
+ -moz-transition: all 0.3s ease-in-out 0s;
+ -o-transition: all 0.3s ease-in-out 0s;
+ }
+
+ .product-details-page .product-share-button a span .at-icon {
+ height: 40px !important;
+ width: 25px !important;
+ }
+
+ .product-details-page .product-share-button a span:hover {
+ background: #aaa081 !important;
+ }
+
+.product-details-page .tab-content {
+ float: left;
+ margin-top: 0;
+ padding: 20px 15px;
+ width: 100%;
+ border: 1px solid #ddd;
+ margin-top: -1px;
+}
+
+.product-details-page .nav-tabs {
+ border: none;
+}
+
+ .product-details-page .nav-tabs li a {
+ font-weight: normal;
+ color: #666;
+ font-size: 16px;
+ text-transform: capitalize;
+ }
+
+ .product-details-page .nav-tabs li.active {
+ margin-bottom: 0px;
+ }
+
+ .product-details-page .nav-tabs li.active a {
+ color: #fff;
+ background: #aaa081;
+ border-color: #aaa081;
+ }
+
+ .product-details-page .nav-tabs li.active a:hover, .product-details-page .nav-tabs > li.active > a:focus {
+ background: #aaa081;
+ }
+
+ .product-details-page .nav-tabs li.active a::after {
+ content: ' ';
+ height: 0;
+ position: absolute;
+ width: 0;
+ border: 10px solid transparent;
+ border-top-color: #aaa081;
+ border: 10px solid transparent;
+ border-top-color: #aaa081;
+ top: 100%;
+ left: 50%;
+ margin-left: -10px;
+ }
+
+ .product-details-page .nav-tabs > li > a {
+ margin-right: 15px;
+ border: 1px solid #ddd;
+ border-radius: 0px;
+ padding: 15px 35px;
+ background: #f5f5f5;
+ }
+
+ .product-details-page .nav-tabs > li:last-child > a {
+ margin-right: 0;
+ }
+
+.product-details-page .nav > .label.label-default > a:hover, .product-details-page .nav > .label.label-default > a:focus {
+ background-color: transparent;
+ border-color: transparent;
+ text-decoration: none;
+}
+
+.product-details-page .nav-tabs > li > a:focus, .product-details-page .nav-tabs > li > a:hover {
+ background-color: var(--grey-black);
+ color: #fff;
+ outline: none;
+}
+
+.product-details-page .product-specs-box .panel {
+ border: none;
+}
+
+.product-details-page .product-specs-box .table-bordered {
+ border: 1px solid #ddd;
+}
+
+ .product-details-page .product-specs-box .table-bordered tr td {
+ padding: 10px;
+ color: #555
+ }
+
+ .product-details-page .product-specs-box .table-bordered .a-left.spec-name {
+ color: #aaa081;
+ font-weight: 700;
+ }
+
+.product-details-page .product-specs-box .title {
+ margin-bottom: 0px;
+}
+
+.product-details-page .product-specs-box {
+ clear: both;
+ margin-bottom: 30px;
+}
+
+.product-details-page .tab-content .product-tags {
+ margin-top: 10px;
+}
+
+.product-details-page .full-description {
+ clear: both;
+ margin-bottom: 20px;
+ margin-top: 10px;
+ color: #999;
+ line-height: 25px;
+}
+
+.product-details-page .product-tags-box .product-tags-list ul {
+ margin: 0;
+}
+
+.product-details-page .product-tags-list ul li a {
+ font-size: 12px;
+}
+
+.product-details-page .product-tags-box .title {
+ margin-bottom: 0px;
+}
+
+.product-details-page .product-tags-box .product-tags-list .separator {
+ display: none;
+}
+
+.product-details-page .product-tags-box .product-tags-list li {
+ float: left;
+ list-style: none;
+ margin-bottom: 10px;
+ padding-right: 5px;
+ margin-right: 10px;
+ transition: all 0.3s ease-in-out 0s;
+ -webkit-transition: all 0.3s ease-in-out 0s;
+ -moz-transition: all 0.3s ease-in-out 0s;
+ -o-transition: all 0.3s ease-in-out 0s;
+ background: #666;
+ border-radius: 0px;
+}
+
+ .product-details-page .product-tags-box .product-tags-list li:hover {
+ background: #aaa081;
+ color: #fff;
+ }
+
+.product-details-page .product-tags-box .panel-heading {
+ padding: 0;
+}
+
+.product-details-page .product-details-tabs {
+ margin-bottom: 50px;
+ float: left;
+ width: 100%;
+}
+
+.min-qty-notification {
+ margin-bottom: 10px;
+}
+
+.product-details-page .giftcard label {
+ color: #555;
+ font-weight: 600;
+ display: inline-block;
+}
+
+.product-details-page .giftcard .message {
+ height: 100px;
+}
+
+.overview .action-button {
+ display: block;
+}
+
+.product-details-page .no-associated-products {
+ font-weight: bold;
+}
+
+.product-details-page .variant-picture {
+ margin-right: 25px;
+}
+
+.product-details-page .product-variant-list .addtocart-quantity-box {
+ margin-right: 15px;
+}
+
+.product-details-page .variant-overview .variant-name {
+ font-weight: 700;
+ font-size: 16px;
+ color: #aaa081;
+ margin-bottom: 20px;
+}
+
+.product-details-page .tax-shipping-info {
+ float: left;
+ padding-bottom: 10px;
+ width: 100%;
+}
+
+.variant-overview .tax-shipping-info {
+ border: none;
+}
+
+.back-in-stock-subscription-page .tooltip {
+ opacity: 1;
+ position: relative;
+}
+
+.product-details-page .price-availability .availability {
+ position: absolute;
+ right: 0px;
+}
+
+.product-details-page .price-availability {
+ position: relative;
+}
+
+.base-price-pangv {
+ clear: both;
+ float: left;
+ margin-bottom: 15px;
+}
+
+.product-attribute-label {
+ padding-right: 0;
+}
+
+.product-details-page .related-products-grid {
+ clear: both;
+}
+
+.product-details-page .product-variant-list .product-variant-line:nth-child(2n+1) {
+ clear: both;
+}
+
+.qty-box {
+ margin-top: 15px;
+}
+
+ .qty-box .text-prompt {
+ padding: 0;
+ margin-top: 5px;
+ }
+
+ .qty-box .qty-text {
+ padding: 0;
+ }
+
+.mfp-ready {
+ z-index: 99999 !important;
+}
+
+.mfp-wrap {
+ z-index: 999999 !important;
+}
+
.product-specification .data-table tr.hidden-row th {
padding: 0;
border-top: none;
}
-.product-specification .data-table tr.hidden-row th > span {
- height: 1px;
- width: 1px;
- position: absolute;
- overflow: hidden;
- top: -10px;
-}
+
+ .product-specification .data-table tr.hidden-row th > span {
+ height: 1px;
+ width: 1px;
+ position: absolute;
+ overflow: hidden;
+ top: -10px;
+ }
/* PRODUCT REVIEW PAGE STYLE */
-.product-reviews-page .write-review{margin-bottom:10px;}
-.product-reviews-page .write-review .title{margin-bottom:20px;font-size: 16px;}
-.product-reviews-page .product-review-list .title {font-size: 16px; font-weight: bold;line-height: 20px;margin-bottom: 10px;}
-.product-reviews-page .write-review .review-text {max-width:100%;min-height: 120px;background-color:#fff;}
-.product-reviews-page .write-review .review-rating{float:left;width:100%;}
-.product-reviews-page .write-review .review-title{background:#fff;}
-.review-rating .first{float:left;padding:4px;}
-.review-rating .rb{float:left;margin:4px 4px 0 0;}
-.review-rating .last{padding:4px;}
-.product-reviews-page .product-review-list{margin:0 0;}
-.my-product-reviews-list-page .product-review-item, .product-reviews-page .product-review-item{float:left; width:100%; margin:0;border:1px solid #D3D3D3;padding:10px 10px 10px; margin-bottom:10px;}
-.product-reviews-page .captcha-box{margin-bottom:20px;}
-.my-product-reviews-list-page .review-title, .product-review-list .review-title{float:left;margin-bottom:5px;clear:both;}
-.my-product-reviews-list-page .product-review-item .rating, .product-review-list .product-review-item .rating{float:right;margin-right:5px;}
-.product-review-list .product-review-item .reply-text,.product-review-list .product-review-item .review-text,.downloadable-products-page a.product-review-list .product-review-item .review-info {margin-bottom:5px;clear: both;float: left;text-align:justify;}
-.product-review-item .review-info .separator {margin:0 2px;}
-.product-review-item .product-review-helpfulness{clear: both;font-size:11px;}
-.product-review-item .product-review-helpfulness .vote{font-size:13px;text-decoration: none;color:var(--red);}
-.product-review-item .product-review-helpfulness .vote:hover{ cursor:pointer; color:var(--grey-black);}
+.product-reviews-page .write-review {
+ margin-bottom: 10px;
+}
+
+ .product-reviews-page .write-review .title {
+ margin-bottom: 20px;
+ font-size: 16px;
+ }
+
+.product-reviews-page .product-review-list .title {
+ font-size: 16px;
+ font-weight: bold;
+ line-height: 20px;
+ margin-bottom: 10px;
+}
+
+.product-reviews-page .write-review .review-text {
+ max-width: 100%;
+ min-height: 120px;
+ background-color: #fff;
+}
+
+.product-reviews-page .write-review .review-rating {
+ float: left;
+ width: 100%;
+}
+
+.product-reviews-page .write-review .review-title {
+ background: #fff;
+}
+
+.review-rating .first {
+ float: left;
+ padding: 4px;
+}
+
+.review-rating .rb {
+ float: left;
+ margin: 4px 4px 0 0;
+}
+
+.review-rating .last {
+ padding: 4px;
+}
+
+.product-reviews-page .product-review-list {
+ margin: 0 0;
+}
+
+.my-product-reviews-list-page .product-review-item, .product-reviews-page .product-review-item {
+ float: left;
+ width: 100%;
+ margin: 0;
+ border: 1px solid #D3D3D3;
+ padding: 10px 10px 10px;
+ margin-bottom: 10px;
+}
+
+.product-reviews-page .captcha-box {
+ margin-bottom: 20px;
+}
+
+.my-product-reviews-list-page .review-title, .product-review-list .review-title {
+ float: left;
+ margin-bottom: 5px;
+ clear: both;
+}
+
+.my-product-reviews-list-page .product-review-item .rating, .product-review-list .product-review-item .rating {
+ float: right;
+ margin-right: 5px;
+}
+
+.product-review-list .product-review-item .reply-text, .product-review-list .product-review-item .review-text, .downloadable-products-page a.product-review-list .product-review-item .review-info {
+ margin-bottom: 5px;
+ clear: both;
+ float: left;
+ text-align: justify;
+}
+
+.product-review-item .review-info .separator {
+ margin: 0 2px;
+}
+
+.product-review-item .product-review-helpfulness {
+ clear: both;
+ font-size: 11px;
+}
+
+ .product-review-item .product-review-helpfulness .vote {
+ font-size: 13px;
+ text-decoration: none;
+ color: #aaa081;
+ }
+
+ .product-review-item .product-review-helpfulness .vote:hover {
+ cursor: pointer;
+ color: var(--grey-black);
+ }
+
.product-review-item .avatar {
padding: 10px;
display: inline-block;
}
-.product-review-item .avatar img {
- max-width: 100%;
- height: auto;
-}
+
+ .product-review-item .avatar img {
+ max-width: 100%;
+ height: auto;
+ }
+
.product-review-list .product-review-item .review-text {
- clear:none;
+ clear: none;
}
+
.product-review-item .review-content {
- clear:both;
+ clear: both;
}
-.write-review .validation-summary-errors ul{margin-bottom:0px;}
-.product-reviews-page .review-rating ul{padding:0;margin-bottom:0;}
-.product-reviews-page .review-rating ul li{list-style:none;}
-.product-reviews-page .review-rating .control-label {padding-top:2px !important;}
-.product-reviews-page a,.email-a-friend-page h2 a{color:var(--red);}
-.product-reviews-page a:hover,.email-a-friend-page h2 a:hover{color:var(--grey-black);}
-.product-review-list .product-review-item .reply-text,.product-review-list .product-review-item .review-text{color:#555;}
-.result.review-result{color:var(--red);}
-.my-product-reviews-list-page .review-content{clear:both;}
-.my-product-reviews-list-page .review-content .review-text{margin-bottom:10px;}
-.my-product-reviews-list-page .user a{color:var(--red);}
-.my-product-reviews-list-page .user a:hover{color:var(--grey-black);}
-.product-review-list .product-review-item .reply .reply-header{font-weight:bold;margin:10px 0;}
+
+.write-review .validation-summary-errors ul {
+ margin-bottom: 0px;
+}
+
+.product-reviews-page .review-rating ul {
+ padding: 0;
+ margin-bottom: 0;
+}
+
+ .product-reviews-page .review-rating ul li {
+ list-style: none;
+ }
+
+.product-reviews-page .review-rating .control-label {
+ padding-top: 2px !important;
+}
+
+.product-reviews-page a, .email-a-friend-page h2 a {
+ color: #aaa081;
+}
+
+ .product-reviews-page a:hover, .email-a-friend-page h2 a:hover {
+ color: var(--grey-black);
+ }
+
+.product-review-list .product-review-item .reply-text, .product-review-list .product-review-item .review-text {
+ color: #555;
+}
+
+.result.review-result {
+ color: #aaa081;
+}
+
+.my-product-reviews-list-page .review-content {
+ clear: both;
+}
+
+ .my-product-reviews-list-page .review-content .review-text {
+ margin-bottom: 10px;
+ }
+
+.my-product-reviews-list-page .user a {
+ color: #aaa081;
+}
+
+ .my-product-reviews-list-page .user a:hover {
+ color: var(--grey-black);
+ }
+
+.product-review-list .product-review-item .reply .reply-header {
+ font-weight: bold;
+ margin: 10px 0;
+}
+
.tooltip {
position: initial;
display: inline-block;
color: #444;
font-family: 'Lato', sans-serif;
}
+
.tooltiptext {
visibility: hidden;
width: auto;
@@ -843,374 +3835,1108 @@ a.eu-cookie-privacyinfo-tag{color:#B80709 !important;text-decoration:underline;}
opacity: 0;
transition: opacity 0.3s;
}
-.tooltiptext::after {
- content: "";
- position: absolute;
-}
+
+ .tooltiptext::after {
+ content: "";
+ position: absolute;
+ }
+
.name-description label {
cursor: pointer;
}
+
.name-description:hover > .tooltiptext {
visibility: visible;
opacity: 1;
cursor: help;
}
+
.product-review-item .avatar {
margin: 0 0 10px;
}
+
.product-review-item .review-type-rating-ext {
overflow: hidden;
margin: 0 0 20px;
}
+
.product-review-item .review-item-head {
overflow: hidden;
padding: 5px 0;
}
+
.product-review-item .review-text {
margin: 0 0 15px !important;
}
+
.product-review-item .review-info {
margin: 0 0 5px;
}
/* EMAIL A FRIEND PAGE STYLE */
-.email-a-friend-page form {margin-bottom:15px;}
-.email-a-friend-page h2{font-size: 20px;margin:0 0 30px 0; float:left; width:100%;}
-.email-a-friend-page .personal-message{min-height: 120px;}
-.email-a-friend-page .bg-success,.coupon-box .bg-success{padding:5px;}
-.email-a-friend-page .alert.alert-success{clear:both;}
-.email-a-friend-page .form-horizontal .control-label{text-align:left;padding-top:0px;}
+.email-a-friend-page form {
+ margin-bottom: 15px;
+}
+
+.email-a-friend-page h2 {
+ font-size: 20px;
+ margin: 0 0 30px 0;
+ float: left;
+ width: 100%;
+}
+
+.email-a-friend-page .personal-message {
+ min-height: 120px;
+}
+
+.email-a-friend-page .bg-success, .coupon-box .bg-success {
+ padding: 5px;
+}
+
+.email-a-friend-page .alert.alert-success {
+ clear: both;
+}
+
+.email-a-friend-page .form-horizontal .control-label {
+ text-align: left;
+ padding-top: 0px;
+}
/* LOGIN PAGE STYLE */
-.send-email-a-friend-button,.write-product-review-button,.login-page .register-button,.login-page .checkout-as-guest-button,.register-continue-button,.registration-page .register-next-step-button,.login-page .new-wrapper.register-block .register-button,.login-page .login-button,.password-recovery-page .password-recovery-button{text-transform:uppercase;}
-.login-page .new-wrapper legend + *::before,.login-page .returning-wrapper legend + *::before{margin-bottom:0px;}
-.login-page .checkout-as-guest-or-register-block legend,.login-page .new-wrapper.register-block fieldset legend,.login-page .returning-wrapper fieldset legend{text-align:left;font-weight:700;color:#000;font-size:14px;text-transform:uppercase;border-bottom:1px solid #ddd;padding-bottom:5px;}
-.alert{padding:5px!important;}
-.login-page .customer-blocks {margin-bottom:30px;}
-.new-wrapper.register-block, .returning-wrapper,.checkout-as-guest-or-register-block{border: 1px solid #ededed;border-radius:0px;padding:20px;float:left; width:100%;background:#fff;box-shadow:0 0 10px #ccc;-webkit-box-shadow:0 0 10px #ccc;-moz-box-shadow:0 0 10px #ccc;}
-.login-page .new-wrapper.register-block .text{color:#646464;}
-.login-page .checkout-as-guest-or-register-block .topic-html-content {border:none;margin-bottom:0;padding:0;box-shadow:none;}
-.login-page .checkout-as-guest-or-register-block li , .login-page .external-auth-errors li{list-style:none;}
-.login-page .checkout-as-guest-or-register-block .panel-body ul{padding-left:20px;}
-.new-wrapper.checkout-as-guest-or-register-block{margin-bottom:15px;}
-.login-page .returning-wrapper .control-label{text-align:left;padding-top:0px;margin-bottom:10px;}
-.login-page .remember-me .checkbox label{display:inline-block;color:#666;}
-.login-page .forgot-password{margin-top:1px;float:right;margin-right:15px;}
-.login-page .remember-me .checkbox{padding-top:0; padding-left:35px;}
-.login-page .checkbox input[type="checkbox"]{margin-left: -20px;position: absolute;width:auto;min-height:inherit;margin-top:-3px;}
-.login-page .checkbox label{ padding-left:0;}
-.login-page .validation-summary-errors.alert.alert-danger{font-size: 11px;background: none repeat scroll 0 0 #f2dede;color: #a94442;border:none;margin-bottom:10px !important;clear:both;}
-.login-page .form-group .forgot-password a{color:var(--grey-black);text-decoration:none;}
-.login-page .form-group .forgot-password a:hover{color:var(--red);}
-.login-page .checkout-as-guest-or-register-block .buttons{margin:20px 0px;padding-right:0px;}
-.login-page .btn.btn-default.checkout-as-guest-button{margin-right:10px;}
-.topic-html-content.from-panel .panel-heading{padding:15px;}
-.facebook-login-block .buttons{text-align:center;}
-.facebook-login-block .facebook-btn:hover{background:url(../images/facebook-signing.png) no-repeat center center;height:33px;width:175px;}
-.facebook-login-block .facebook-btn{background:url(../images/facebook-signing.png) no-repeat center center;height:33px;width:175px;}
-.login-page .remember-me .checkbox label:hover{color:var(--red);}
-.external-authentication .facebook-login-block{width:100%;}
-.external-authentication ol{padding:0;}
-.external-authentication{margin-top:40px;}
-.external-authentication .facebook-btn:active{background-position:0px;}
-.facebook-login-block .title{font-size:18px; font-weight:700; margin:0px 0px 15px; padding:0 0 10px;text-align:center;color:var(--grey-black);text-transform:uppercase;}
-.login-page .checkout-as-guest-or-register-block .buttons .btn{margin-right:10px;margin-bottom:10px;}
+.send-email-a-friend-button, .write-product-review-button, .login-page .register-button, .login-page .checkout-as-guest-button, .register-continue-button, .registration-page .register-next-step-button, .login-page .new-wrapper.register-block .register-button, .login-page .login-button, .password-recovery-page .password-recovery-button {
+ text-transform: uppercase;
+}
+
+.login-page .new-wrapper legend + *::before, .login-page .returning-wrapper legend + *::before {
+ margin-bottom: 0px;
+}
+
+.login-page .checkout-as-guest-or-register-block legend, .login-page .new-wrapper.register-block fieldset legend, .login-page .returning-wrapper fieldset legend {
+ text-align: left;
+ font-weight: 700;
+ color: #000;
+ font-size: 14px;
+ text-transform: uppercase;
+ border-bottom: 1px solid #ddd;
+ padding-bottom: 5px;
+}
+
+.alert {
+ padding: 5px !important;
+}
+
+.login-page .customer-blocks {
+ margin-bottom: 30px;
+}
+
+.new-wrapper.register-block, .returning-wrapper, .checkout-as-guest-or-register-block {
+ border: 1px solid #ededed;
+ border-radius: 0px;
+ padding: 20px;
+ float: left;
+ width: 100%;
+ background: #fff;
+ box-shadow: 0 0 10px #ccc;
+ -webkit-box-shadow: 0 0 10px #ccc;
+ -moz-box-shadow: 0 0 10px #ccc;
+}
+
+.login-page .new-wrapper.register-block .text {
+ color: #646464;
+}
+
+.login-page .checkout-as-guest-or-register-block .topic-html-content {
+ border: none;
+ margin-bottom: 0;
+ padding: 0;
+ box-shadow: none;
+}
+
+.login-page .checkout-as-guest-or-register-block li, .login-page .external-auth-errors li {
+ list-style: none;
+}
+
+.login-page .checkout-as-guest-or-register-block .panel-body ul {
+ padding-left: 20px;
+}
+
+.new-wrapper.checkout-as-guest-or-register-block {
+ margin-bottom: 15px;
+}
+
+.login-page .returning-wrapper .control-label {
+ text-align: left;
+ padding-top: 0px;
+ margin-bottom: 10px;
+}
+
+.login-page .remember-me .checkbox label {
+ display: inline-block;
+ color: #666;
+}
+
+.login-page .forgot-password {
+ margin-top: 1px;
+ float: right;
+ margin-right: 15px;
+}
+
+.login-page .remember-me .checkbox {
+ padding-top: 0;
+ padding-left: 35px;
+}
+
+.login-page .checkbox input[type="checkbox"] {
+ margin-left: -20px;
+ position: absolute;
+ width: auto;
+ min-height: inherit;
+ margin-top: -3px;
+}
+
+.login-page .checkbox label {
+ padding-left: 0;
+}
+
+.login-page .validation-summary-errors.alert.alert-danger {
+ font-size: 11px;
+ background: none repeat scroll 0 0 #f2dede;
+ color: #a94442;
+ border: none;
+ margin-bottom: 10px !important;
+ clear: both;
+}
+
+.login-page .form-group .forgot-password a {
+ color: var(--grey-black);
+ text-decoration: none;
+}
+
+ .login-page .form-group .forgot-password a:hover {
+ color: #aaa081;
+ }
+
+.login-page .checkout-as-guest-or-register-block .buttons {
+ margin: 20px 0px;
+ padding-right: 0px;
+}
+
+.login-page .btn.btn-default.checkout-as-guest-button {
+ margin-right: 10px;
+}
+
+.topic-html-content.from-panel .panel-heading {
+ padding: 15px;
+}
+
+.facebook-login-block .buttons {
+ text-align: center;
+}
+
+.facebook-login-block .facebook-btn:hover {
+ background: url(../images/facebook-signing.png) no-repeat center center;
+ height: 33px;
+ width: 175px;
+}
+
+.facebook-login-block .facebook-btn {
+ background: url(../images/facebook-signing.png) no-repeat center center;
+ height: 33px;
+ width: 175px;
+}
+
+.login-page .remember-me .checkbox label:hover {
+ color: #aaa081;
+}
+
+.external-authentication .facebook-login-block {
+ width: 100%;
+}
+
+.external-authentication ol {
+ padding: 0;
+}
+
+.external-authentication {
+ margin-top: 40px;
+}
+
+ .external-authentication .facebook-btn:active {
+ background-position: 0px;
+ }
+
+.facebook-login-block .title {
+ font-size: 18px;
+ font-weight: 700;
+ margin: 0px 0px 15px;
+ padding: 0 0 10px;
+ text-align: center;
+ color: var(--grey-black);
+ text-transform: uppercase;
+}
+
+.login-page .checkout-as-guest-or-register-block .buttons .btn {
+ margin-right: 10px;
+ margin-bottom: 10px;
+}
/* REGISTRATION PAGE STYLE */
-.registration-result-page .result{margin-bottom:20px;}
-.registration-page .accept-privacy-policy .read{cursor:pointer;}
-.registration-page .radio-inline input[type="radio"]{margin-left:-20px;position: absolute;}
-.registration-page .form-horizontal .radio-inline{ padding-top:0;}
-.registration-page .form-horizontal .form-group label{text-align:left;padding-top:0px;}
-.registration-page .date-picker-wrapper select,.customer-info-page .date-picker-wrapper select{border:1px solid #ccc;padding:5px 10px;}
-.registration-page h3{text-align:left;font-weight:700;font-size:15px;color:var(--grey-black);border-bottom:1px solid #ddd;padding-bottom:10px;margin-bottom:20px;margin-top:0px;text-transform:uppercase;}
-.account-page .form-group,.registration-page .form-group {margin-bottom:30px;}
-.registration-page .form-horizontal .accept-privacy-policy label{text-transform:capitalize;}
-.external-authentication .title{font-size:14px;text-align:center;}
-.date-of-birth .select-wrapper + .select-wrapper {margin: 0 0 0 10px;}
+.registration-result-page .result {
+ margin-bottom: 20px;
+}
+
+.registration-page .accept-privacy-policy .read {
+ cursor: pointer;
+}
+
+.registration-page .radio-inline input[type="radio"] {
+ margin-left: -20px;
+ position: absolute;
+}
+
+.registration-page .form-horizontal .radio-inline {
+ padding-top: 0;
+}
+
+.registration-page .form-horizontal .form-group label {
+ text-align: left;
+ padding-top: 0px;
+}
+
+.registration-page .date-picker-wrapper select, .customer-info-page .date-picker-wrapper select {
+ border: 1px solid #ccc;
+ padding: 5px 10px;
+}
+
+.registration-page h3 {
+ text-align: left;
+ font-weight: 700;
+ font-size: 15px;
+ color: var(--grey-black);
+ border-bottom: 1px solid #ddd;
+ padding-bottom: 10px;
+ margin-bottom: 20px;
+ margin-top: 0px;
+ text-transform: uppercase;
+}
+
+.account-page .form-group, .registration-page .form-group {
+ margin-bottom: 30px;
+}
+
+.registration-page .form-horizontal .accept-privacy-policy label {
+ text-transform: capitalize;
+}
+
+.external-authentication .title {
+ font-size: 14px;
+ text-align: center;
+}
+
+.date-of-birth .select-wrapper + .select-wrapper {
+ margin: 0 0 0 10px;
+}
/* ORDER SUMMARY, SHOPPING CART, WISHLIST PAGE STYLE */
-.cart-footer.row{clear:both;}
-.section.order-summary-body {float: left;margin-top:10px;width:100%;}
-.message-error .alert.alert-danger {margin-bottom:5px !important;}
-.order-summary-content, .wishlist-content{margin:0;padding:0; float:left; width:100%;}
-.order-summary-content .message-error, .wishlist-content .message-error{margin:5px 0 10px;color:red !important;}
-.wishlist-content .cart-header-row th,.order-summary-content .cart-header-row th{text-align:center;background:#f6f6f6;}
-.wishlist-content .cart-header-row .products-title,.order-summary-content .cart-header-row .products-title{text-align:left;}
-.wishlist-content .panel.panel-default table tr th,.order-summary-content .panel.panel-default table tr th{text-transform:uppercase;padding:10px;vertical-align:top;}
-.wishlist-content .panel.panel-default table tr td,.wishlist-content .panel.panel-default table tr th,.order-summary-content .panel.panel-default.cart-item-table table tr th,.order-summary-content .panel.panel-default.cart-item-table table tr td,.total-info .panel.panel-default table tr td{border:none;}
-.wishlist-content .panel.panel-default table tbody tr,.order-summary-content .panel.panel-default.cart-item-table table tbody tr{border-top: 1px solid #ddd;}
-.wishlist-content .panel.panel-default > table,.order-summary-content .panel.panel-default.cart-item-table > table{border-bottom:1px solid #ddd;}
-.order-summary-content .cart .cart-item-row td,.wishlist-content .cart .cart-item-row td{vertical-align:middle; text-align:center;padding:8px;}
-.order-summary-content .cart .cart-item-row td.product,.wishlist-content .cart .cart-item-row td.product{text-align:left;}
-.order-summary-content .cart .cart-item-row td.product a,.wishlist-content .cart .cart-item-row td.product a{font-weight:700;color:var(--red);}
-.order-summary-content .cart .cart-item-row td.product a:hover,.wishlist-content .cart .cart-item-row td.product a:hover{color:var(--grey-black);text-decoration:none;}
-.order-summary-content .cart .cart-item-row .qty-input,.wishlist-content .cart .cart-item-row .qty-input{text-align:center;margin-bottom:0;}
-.order-details-page .panel.panel-default table tbody tr .prices-alignment-right,.return-request-page .panel.panel-default table tbody tr .prices-alignment-right,.wishlist-content .cart .cart-item-row .unit-price,.wishlist-content .cart .cart-item-row .subtotal.nobr,.order-summary-content .cart .cart-item-row .unit-price,.order-summary-content .cart .cart-item-row .subtotal.nobr{color:#666;font-weight:700;}
-.order-summary-content .product-picture ,.order-summary-content .qty.nobr,.wishlist-page .qty.nobr,.wishlist-page .product-picture{width:10%;}
-.wishlist-page .panel > .table-bordered > tbody > tr:last-child > td,.order-summary-content .panel > .table-bordered > tbody > tr:last-child > td{border-bottom:1px solid #ddd;}
-.order-summary-content .update-continue-button{margin:30px 0px;overflow:hidden;}
-.order-summary-content .update-continue-button .estimate-shipping, .order-summary-content .update-continue-button .update-cart,.order-summary-content .update-continue-button .continue-shopping{float:left;margin-left:20px}
-.order-summary-content .update-continue-button .continue-shopping-button{background:url(../images/shopping-cart-icon.png) no-repeat 20px 10px var(--grey-black);padding-left:50px;text-transform:uppercase;}
-.order-summary-content .update-continue-button .estimate-shipping-button span{text-transform:uppercase;margin-left:8px;}
-.order-summary-content .update-continue-button .continue-shopping-button:hover{background:url(../images/shopping-cart-icon.png) no-repeat 20px 10px var(--red);}
-.wishlist-page .buttons .common-buttons .update-wishlist-button,.order-summary-content .update-continue-button .update-cart-button{background:url(../images/shopping-cart-update-icon.png) no-repeat 20px 12px var(--red);padding-left:45px;text-transform:uppercase;}
-.wishlist-page .buttons .common-buttons .update-wishlist-button:hover,.order-summary-content .update-continue-button .update-cart-button:hover{background:url(../images/shopping-cart-update-icon.png) no-repeat 20px 12px var(--grey-black);}
-.order-summary-content .buttons.checkout-attribute{margin-bottom:20px;float:left;width:100%;}
-.cart-collaterals,.totals,.order-summary-content .buttons{clear: both;}
-.order-summary-content .coupon-box .message,.order-summary-content .giftcard-box .message{font-size:10px;color:#a94442; background:#f2dede;margin:10px 0px 0px;clear:both;}
-.order-summary-content .panel.panel-default.cart-item-table,.wishlist-page .panel.panel-default{border-radius:0px;background-color:transparent;float:left;width:100%;margin-bottom:30px;border:none;box-shadow:none;margin-bottom:0px;}
-.wishlist-page .totals .total-info .panel.panel-default,.order-summary-content .totals .total-info .panel.panel-default{margin-bottom:0px;}
-.order-summary-content .panel > .table-bordered > tbody,.wishlist-page .panel > .table-bordered > tbody{background:#fff;}
-.shopping-cart-page .coupon-box,.shopping-cart-page .giftcard-box {border: 1px solid #ededed;margin: 0 0 30px;overflow:hidden;background:#f7f7f7;box-shadow:0px 0px 3px #ddd;-webkit-box-shadow: 0px 0px 3px #ddd;-moz-box-shadow: 0px 0px 3px #ddd;font-style:normal;}
-.coupon-box .title,.giftcard-box .title,.estimate-shipping .title{padding:15px 10px;border-bottom:1px solid #ddd;text-align:center;text-transform:uppercase;}
-.cart-footer .estimate-shipping .cart-box-wrapper,.cart-footer .cart-collaterals .deals .coupon-box .cart-box-wrapper,.cart-footer .cart-collaterals .deals .giftcard-box .cart-box-wrapper{padding:15px 15px 20px 15px;float:left;width:100%;}
-.cart-footer .cart-collaterals .deals .coupon-box .cart-box-wrapper,.cart-footer .cart-collaterals .deals .giftcard-box .cart-box-wrapper{text-align:center;color:#999;}
-.cart-footer .estimate-shipping .cart-box-wrapper .estimate-shipping-button,.cart-footer .cart-collaterals .deals .coupon-box .cart-box-wrapper .apply-discount-coupon-code-button,.cart-footer .cart-collaterals .deals .giftcard-box .cart-box-wrapper .apply-gift-card-coupon-code-button{text-transform:uppercase;}
-.shopping-cart-page .estimate-shipping{padding-bottom:0px;}
-.shopping-cart-page .estimate-shipping .estimate-shipping-buttons{text-align:center;}
-.estimate-shipping .hint{margin-bottom:20px;text-align:center;color:#999;}
-.estimate-shipping .country-input,.estimate-shipping .state-input , .estimate-shipping .zip-input{width:100%;}
-.shipping-options .form-horizontal label{text-align:left;padding-bottom:18px;color:#666;font-weight:normal;padding-top:0px;}
-.shipping-results{background:#fff;box-shadow: 0 0 3px #DDDDDD;-moz-box-shadow:0 0 3px #DDDDDD;-webkit-box-shadow:0 0 3px #DDDDDD;padding: 10px;clear:both;border:1px solid #ededed;}
-.estimate-shipping .shipping-results li.shipping-option-item{list-style:none;text-align:left;vertical-align:text-top;padding:5px 0 0 5px;}
-.estimate-shipping .shipping-results .shipping-option-item .option-name{display:block;font-weight:700;color:#555;}
-.estimate-shipping .shipping-results .shipping-option-item .option-description{display:block;margin-bottom:10px; font-size:12px;color:#777;}
-.message.bg-danger{padding:4px;}
-.order-summary-content .total-info .selected-shipping-method{font-weight:normal;font-size:11px;}
-.order-summary-content .cart-footer .cart-total-left {font-weight:normal;height:20px;text-align:left;vertical-align:middle;width: 100%;color:#555;}
-.cart-total-left-below{width:100%;text-align:right;vertical-align:top;height:30px;}
-.order-summary-content .remove-gift-card-button,.order-summary-content .remove-discount-button{background:url(../images/remove-icon.png) no-repeat;border:0;width:20px;height:15px;background-position: center center;}
-.order-summary-content .remove-gift-card-button:hover,.order-summary-content .remove-discount-button:hover{cursor:pointer;}
-.order-summary-content .selected-checkout-attributes{margin:0;padding:10px 5px 10px 0;width:100%;text-align:right;vertical-align:middle;}
-.order-summary-content .checkout-attributes{border:1px solid #ddd;clear:both;padding:10px;float:left; width:100%; margin-bottom:10px;background:#fff;}
-.order-summary-content .checkout-attributes dl{margin:0; float:left; width:100%;}
-.order-summary-content .checkout-attributes dl dt{float:left;padding-top:5px; margin-right:5px;}
-.order-summary-content .checkout-attributes dl dd{ float:left; width:auto;}
-.order-summary-content .checkout-attributes ul.option-list{padding:0px;margin:0px;}
-.order-summary-content .checkout-attributes ul.option-list li{list-style:none;}
-.order-summary-content .product,.wishlist-page .product{width:35%;}
-.order-summary-content .estimate-shipping .shipping-options .form-group {margin:0 0 20px;}
-.remaining-price {font-weight:normal;font-size:12px;}
-.totals .modal-dialog{margin:125px auto;}
-.order-summary-content .terms-of-service > input{float:left;margin-right:10px;}
-.order-summary-content .terms-of-service > p{float: left;width: 90%;color:#666;}
-.order-summary-content .coupon-box .current-code .bg-success{clear:both;margin:10px 0px 0px;color:#3c763d;font-size:10px;display:flex;float:left;width:100%;justify-content: center;align-items: center;}
-.current-code .bg-success input{background:url(../images/remove-icon.png) no-repeat center center;border:none;}
-.order-summary-content .checkout-attributes ul.color-squares li,.order-summary-content .checkout-attributes ul.image-squares li{display:inline;}
-.order-summary-content .checkout-attributes ul.color-squares .attribute-square-container,.order-summary-content .checkout-attributes ul.image-squares .attribute-square-container{position:relative;display:inline-block;border:solid 1px #999;padding:1px;margin-bottom:5px;}
-.order-summary-content .checkout-attributes ul.color-squares .selected-value .attribute-square-container,.order-summary-content .checkout-attributes ul.image-squares .selected-value .attribute-square-container{border-color:#075899;border-width:2px;padding:0;}
-.order-summary-content .checkout-attributes ul.color-squares .color,.order-summary-content .checkout-attributes ul.image-squares .image{display:inline-block;width:18px;height:18px;}
-.order-summary-content .checkout-attributes ul.color-squares label,.order-summary-content .checkout-attributes ul.image-squares label{cursor:pointer;position:relative;}
-.order-summary-content .checkout-attributes ul.color-squares input,.order-summary-content .checkout-attributes ul.image-squares input{height:0;overflow:hidden;z-index:-10000;position:absolute;float:none;}
-.order-summary-content .min-amount-warning{margin:0;padding:10px 0 10px 10px;}
-.order-summary-content .terms-of-service{margin:0;padding:0px 0 10px 0px;float:left;width:100%;font-style:normal;}
-.order-summary-content .terms-of-service .read{text-decoration:underline;color:var(--red);}
-.order-summary-content .terms-of-service .read:hover{cursor:pointer;}
-.order-summary-content .addon-buttons{clear:both;float:right;margin:0;padding:10px 0 10px 10px;text-align:right;}
-.order-summary-content .checkout-buttons{font-style:normal;clear:both;}
-.order-summary-content .checkout-buttons .checkout-button.checkout-new{text-transform:uppercase;font-size:16px;width:100%;}
-.order-summary-content .checkout-buttons .checkout-button.checkout-new i{margin-right:5px;font-size:18px;}
-.shipment-details-page .order-info-wrap .info-content,.shipment-details-page .order-info-wrap .info-content,.order-details-page .payment-infomation, .order-details-page .shipping-information,.order-details-page .billing-info-wrap .info-content, .order-details-page .order-info-wrap .info-content,.order-details-page .total-info .panel.panel-default,.order-summary-content .cart-footer .total-info .panel.panel-default{padding:12px;box-shadow:0px 0px 10px #ddd;-webkit-box-shadow: 0px 0px 10px #ddd;-moz-box-shadow: 0px 0px 10px #ddd;border-color:#ededed;font-size:15px;}
-.order-details-page .total-info .panel.panel-default table tr:last-child td,.order-summary-content .total-info .panel.panel-default table tr:last-child td{border-bottom:none;}
-.order-details-page .total-info .panel.panel-default table tr .grand-total-title,.order-details-page .total-info .panel.panel-default table tr .grand-total-prices,.order-summary-content .total-info .panel.panel-default table tr .grand-total-prices,.order-summary-content .total-info .panel.panel-default table tr .grand-total-title{border-top:1px solid #ddd;font-weight:700;color:#000;}
-.order-details-page .total-info .panel.panel-default table tr .grand-total-prices,.order-summary-content .total-info .panel.panel-default table tr .grand-total-prices,.order-summary-content .selected-checkout-attributes a,.read{color:var(--red);}
-.order-summary-content .cart-footer #terms-of-service-warning-box{z-index:99999;}
-.qty-input.form-control ,.shopping-cart-page .qty-dropdown.form-control{margin:0 auto;width:60%;}
-.wishlist-page .qty-dropdown.form-control{margin:0 auto;}
-#cart-page .modal-backdrop{z-index:9999;}
-.wishlist-page .update-email-button{float:left;}
-.wishlist-page .wishlist-add-to-cart{float:right;}
-.wishlist-page .update-email-button .update-wishlist,.wishlist-page .update-email-button .email-a-friend-btn{float:left;margin-right:20px;}
-.wishlist-page .share-info{float:left;}
-.wishlist-page .share-info .share-label{font-weight:700;}
-.wishlist-page .buttons .common-buttons{overflow:hidden;margin:30px 0px;}
-.wishlist-page .buttons .common-buttons .btn.btn-primary,.wishlist-page .buttons .common-buttons .btn.btn-default{text-transform:uppercase;}
-.wishlist-page .share-info a.share-link{color:var(--red);text-decoration:none;}
-.wishlist-page .share-info a.share-link:hover{color:var(--grey-black);}
-.wishlist-page .buttons .common-buttons .email-a-friend-wishlist-button{background:url(../images/wishlist-email-icon.png) no-repeat 20px 11px var(--grey-black);padding-left:48px;text-transform:uppercase;}
-.wishlist-page .buttons .common-buttons .email-a-friend-wishlist-button:hover{background:url(../images/wishlist-email-icon.png) no-repeat 20px 11px var(--red);}
-.wishlist-page .buttons .common-buttons .wishlist-add-to-cart-button{background:url(../images/product-cart-icon.png) no-repeat 12px -20px var(--red);text-transform:uppercase;padding-left:40px;}
-.wishlist-page .buttons .common-buttons .wishlist-add-to-cart-button:hover{background:url(../images/product-cart-icon.png) no-repeat 12px -20px var(--grey-black);}
-.terms-of-service label{font-weight:normal;}
-.tax-shipping-info {display: inline-block;width: 100%;margin-bottom: 15px;}
-.date-picker-wrapper{display:flex;}
-.date-picker-wrapper select{margin-bottom: 10px;padding: 6px 4px;color: #555;border: 1px solid #ccc;width:100%;}
-.date-picker-wrapper select + select {margin-left: 10px;}
-.giftcard-box .message-success {margin-top: 10px;}
-.order-summary-body{display:inline-block;width:100%;}
+.cart-footer.row {
+ clear: both;
+}
+
+.section.order-summary-body {
+ float: left;
+ margin-top: 10px;
+ width: 100%;
+}
+
+.message-error .alert.alert-danger {
+ margin-bottom: 5px !important;
+}
+
+.order-summary-content, .wishlist-content {
+ margin: 0;
+ padding: 0;
+ float: left;
+ width: 100%;
+}
+
+ .order-summary-content .message-error, .wishlist-content .message-error {
+ margin: 5px 0 10px;
+ color: red !important;
+ }
+
+ .wishlist-content .cart-header-row th, .order-summary-content .cart-header-row th {
+ text-align: center;
+ background: #f6f6f6;
+ }
+
+ .wishlist-content .cart-header-row .products-title, .order-summary-content .cart-header-row .products-title {
+ text-align: left;
+ }
+
+ .wishlist-content .panel.panel-default table tr th, .order-summary-content .panel.panel-default table tr th {
+ text-transform: uppercase;
+ padding: 10px;
+ vertical-align: top;
+ }
+
+ .wishlist-content .panel.panel-default table tr td, .wishlist-content .panel.panel-default table tr th, .order-summary-content .panel.panel-default.cart-item-table table tr th, .order-summary-content .panel.panel-default.cart-item-table table tr td, .total-info .panel.panel-default table tr td {
+ border: none;
+ }
+
+ .wishlist-content .panel.panel-default table tbody tr, .order-summary-content .panel.panel-default.cart-item-table table tbody tr {
+ border-top: 1px solid #ddd;
+ }
+
+ .wishlist-content .panel.panel-default > table, .order-summary-content .panel.panel-default.cart-item-table > table {
+ border-bottom: 1px solid #ddd;
+ }
+
+ .order-summary-content .cart .cart-item-row td, .wishlist-content .cart .cart-item-row td {
+ vertical-align: middle;
+ text-align: center;
+ padding: 8px;
+ }
+
+ .order-summary-content .cart .cart-item-row td.product, .wishlist-content .cart .cart-item-row td.product {
+ text-align: left;
+ }
+
+ .order-summary-content .cart .cart-item-row td.product a, .wishlist-content .cart .cart-item-row td.product a {
+ font-weight: 700;
+ color: #aaa081;
+ }
+
+ .order-summary-content .cart .cart-item-row td.product a:hover, .wishlist-content .cart .cart-item-row td.product a:hover {
+ color: var(--grey-black);
+ text-decoration: none;
+ }
+
+ .order-summary-content .cart .cart-item-row .qty-input, .wishlist-content .cart .cart-item-row .qty-input {
+ text-align: center;
+ margin-bottom: 0;
+ }
+
+ .order-details-page .panel.panel-default table tbody tr .prices-alignment-right, .return-request-page .panel.panel-default table tbody tr .prices-alignment-right, .wishlist-content .cart .cart-item-row .unit-price, .wishlist-content .cart .cart-item-row .subtotal.nobr, .order-summary-content .cart .cart-item-row .unit-price, .order-summary-content .cart .cart-item-row .subtotal.nobr {
+ color: #666;
+ font-weight: 700;
+ }
+
+ .order-summary-content .product-picture, .order-summary-content .qty.nobr, .wishlist-page .qty.nobr, .wishlist-page .product-picture {
+ width: 10%;
+ }
+
+ .wishlist-page .panel > .table-bordered > tbody > tr:last-child > td, .order-summary-content .panel > .table-bordered > tbody > tr:last-child > td {
+ border-bottom: 1px solid #ddd;
+ }
+
+ .order-summary-content .update-continue-button {
+ margin: 30px 0px;
+ overflow: hidden;
+ }
+
+ .order-summary-content .update-continue-button .estimate-shipping, .order-summary-content .update-continue-button .update-cart, .order-summary-content .update-continue-button .continue-shopping {
+ float: left;
+ margin-left: 20px
+ }
+
+ .order-summary-content .update-continue-button .continue-shopping-button {
+ background: url(../images/shopping-cart-icon.png) no-repeat 20px 10px var(--grey-black);
+ padding-left: 50px;
+ text-transform: uppercase;
+ }
+
+ .order-summary-content .update-continue-button .estimate-shipping-button span {
+ text-transform: uppercase;
+ margin-left: 8px;
+ }
+
+ .order-summary-content .update-continue-button .continue-shopping-button:hover {
+ background: url(../images/shopping-cart-icon.png) no-repeat 20px 10px #aaa081;
+ }
+
+ .wishlist-page .buttons .common-buttons .update-wishlist-button, .order-summary-content .update-continue-button .update-cart-button {
+ background: url(../images/shopping-cart-update-icon.png) no-repeat 20px 12px #aaa081;
+ padding-left: 45px;
+ text-transform: uppercase;
+ }
+
+ .wishlist-page .buttons .common-buttons .update-wishlist-button:hover, .order-summary-content .update-continue-button .update-cart-button:hover {
+ background: url(../images/shopping-cart-update-icon.png) no-repeat 20px 12px var(--grey-black);
+ }
+
+ .order-summary-content .buttons.checkout-attribute {
+ margin-bottom: 20px;
+ float: left;
+ width: 100%;
+ }
+
+ .cart-collaterals, .totals, .order-summary-content .buttons {
+ clear: both;
+ }
+
+ .order-summary-content .coupon-box .message, .order-summary-content .giftcard-box .message {
+ font-size: 10px;
+ color: #a94442;
+ background: #f2dede;
+ margin: 10px 0px 0px;
+ clear: both;
+ }
+
+ .order-summary-content .panel.panel-default.cart-item-table, .wishlist-page .panel.panel-default {
+ border-radius: 0px;
+ background-color: transparent;
+ float: left;
+ width: 100%;
+ margin-bottom: 30px;
+ border: none;
+ box-shadow: none;
+ margin-bottom: 0px;
+ }
+
+ .wishlist-page .totals .total-info .panel.panel-default, .order-summary-content .totals .total-info .panel.panel-default {
+ margin-bottom: 0px;
+ }
+
+ .order-summary-content .panel > .table-bordered > tbody, .wishlist-page .panel > .table-bordered > tbody {
+ background: #fff;
+ }
+
+.shopping-cart-page .coupon-box, .shopping-cart-page .giftcard-box {
+ border: 1px solid #ededed;
+ margin: 0 0 30px;
+ overflow: hidden;
+ background: #f7f7f7;
+ box-shadow: 0px 0px 3px #ddd;
+ -webkit-box-shadow: 0px 0px 3px #ddd;
+ -moz-box-shadow: 0px 0px 3px #ddd;
+ font-style: normal;
+}
+
+.coupon-box .title, .giftcard-box .title, .estimate-shipping .title {
+ padding: 15px 10px;
+ border-bottom: 1px solid #ddd;
+ text-align: center;
+ text-transform: uppercase;
+}
+
+.cart-footer .estimate-shipping .cart-box-wrapper, .cart-footer .cart-collaterals .deals .coupon-box .cart-box-wrapper, .cart-footer .cart-collaterals .deals .giftcard-box .cart-box-wrapper {
+ padding: 15px 15px 20px 15px;
+ float: left;
+ width: 100%;
+}
+
+.cart-footer .cart-collaterals .deals .coupon-box .cart-box-wrapper, .cart-footer .cart-collaterals .deals .giftcard-box .cart-box-wrapper {
+ text-align: center;
+ color: #999;
+}
+
+ .cart-footer .estimate-shipping .cart-box-wrapper .estimate-shipping-button, .cart-footer .cart-collaterals .deals .coupon-box .cart-box-wrapper .apply-discount-coupon-code-button, .cart-footer .cart-collaterals .deals .giftcard-box .cart-box-wrapper .apply-gift-card-coupon-code-button {
+ text-transform: uppercase;
+ }
+
+.shopping-cart-page .estimate-shipping {
+ padding-bottom: 0px;
+}
+
+ .shopping-cart-page .estimate-shipping .estimate-shipping-buttons {
+ text-align: center;
+ }
+
+.estimate-shipping .hint {
+ margin-bottom: 20px;
+ text-align: center;
+ color: #999;
+}
+
+.estimate-shipping .country-input, .estimate-shipping .state-input, .estimate-shipping .zip-input {
+ width: 100%;
+}
+
+.shipping-options .form-horizontal label {
+ text-align: left;
+ padding-bottom: 18px;
+ color: #666;
+ font-weight: normal;
+ padding-top: 0px;
+}
+
+.shipping-results {
+ background: #fff;
+ box-shadow: 0 0 3px #DDDDDD;
+ -moz-box-shadow: 0 0 3px #DDDDDD;
+ -webkit-box-shadow: 0 0 3px #DDDDDD;
+ padding: 10px;
+ clear: both;
+ border: 1px solid #ededed;
+}
+
+.estimate-shipping .shipping-results li.shipping-option-item {
+ list-style: none;
+ text-align: left;
+ vertical-align: text-top;
+ padding: 5px 0 0 5px;
+}
+
+.estimate-shipping .shipping-results .shipping-option-item .option-name {
+ display: block;
+ font-weight: 700;
+ color: #555;
+}
+
+.estimate-shipping .shipping-results .shipping-option-item .option-description {
+ display: block;
+ margin-bottom: 10px;
+ font-size: 12px;
+ color: #777;
+}
+
+.message.bg-danger {
+ padding: 4px;
+}
+
+.order-summary-content .total-info .selected-shipping-method {
+ font-weight: normal;
+ font-size: 11px;
+}
+
+.order-summary-content .cart-footer .cart-total-left {
+ font-weight: normal;
+ height: 20px;
+ text-align: left;
+ vertical-align: middle;
+ width: 100%;
+ color: #555;
+}
+
+.cart-total-left-below {
+ width: 100%;
+ text-align: right;
+ vertical-align: top;
+ height: 30px;
+}
+
+.order-summary-content .remove-gift-card-button, .order-summary-content .remove-discount-button {
+ background: url(../images/remove-icon.png) no-repeat;
+ border: 0;
+ width: 20px;
+ height: 15px;
+ background-position: center center;
+}
+
+ .order-summary-content .remove-gift-card-button:hover, .order-summary-content .remove-discount-button:hover {
+ cursor: pointer;
+ }
+
+.order-summary-content .selected-checkout-attributes {
+ margin: 0;
+ padding: 10px 5px 10px 0;
+ width: 100%;
+ text-align: right;
+ vertical-align: middle;
+}
+
+.order-summary-content .checkout-attributes {
+ border: 1px solid #ddd;
+ clear: both;
+ padding: 10px;
+ float: left;
+ width: 100%;
+ margin-bottom: 10px;
+ background: #fff;
+}
+
+ .order-summary-content .checkout-attributes dl {
+ margin: 0;
+ float: left;
+ width: 100%;
+ }
+
+ .order-summary-content .checkout-attributes dl dt {
+ float: left;
+ padding-top: 5px;
+ margin-right: 5px;
+ }
+
+ .order-summary-content .checkout-attributes dl dd {
+ float: left;
+ width: auto;
+ }
+
+ .order-summary-content .checkout-attributes ul.option-list {
+ padding: 0px;
+ margin: 0px;
+ }
+
+ .order-summary-content .checkout-attributes ul.option-list li {
+ list-style: none;
+ }
+
+.order-summary-content .product, .wishlist-page .product {
+ width: 35%;
+}
+
+.order-summary-content .estimate-shipping .shipping-options .form-group {
+ margin: 0 0 20px;
+}
+
+.remaining-price {
+ font-weight: normal;
+ font-size: 12px;
+}
+
+.totals .modal-dialog {
+ margin: 125px auto;
+}
+
+.order-summary-content .terms-of-service > input {
+ float: left;
+ margin-right: 10px;
+}
+
+.order-summary-content .terms-of-service > p {
+ float: left;
+ width: 90%;
+ color: #666;
+}
+
+.order-summary-content .coupon-box .current-code .bg-success {
+ clear: both;
+ margin: 10px 0px 0px;
+ color: #3c763d;
+ font-size: 10px;
+ display: flex;
+ float: left;
+ width: 100%;
+ justify-content: center;
+ align-items: center;
+}
+
+.current-code .bg-success input {
+ background: url(../images/remove-icon.png) no-repeat center center;
+ border: none;
+}
+
+.order-summary-content .checkout-attributes ul.color-squares li, .order-summary-content .checkout-attributes ul.image-squares li {
+ display: inline;
+}
+
+.order-summary-content .checkout-attributes ul.color-squares .attribute-square-container, .order-summary-content .checkout-attributes ul.image-squares .attribute-square-container {
+ position: relative;
+ display: inline-block;
+ border: solid 1px #999;
+ padding: 1px;
+ margin-bottom: 5px;
+}
+
+.order-summary-content .checkout-attributes ul.color-squares .selected-value .attribute-square-container, .order-summary-content .checkout-attributes ul.image-squares .selected-value .attribute-square-container {
+ border-color: #075899;
+ border-width: 2px;
+ padding: 0;
+}
+
+.order-summary-content .checkout-attributes ul.color-squares .color, .order-summary-content .checkout-attributes ul.image-squares .image {
+ display: inline-block;
+ width: 18px;
+ height: 18px;
+}
+
+.order-summary-content .checkout-attributes ul.color-squares label, .order-summary-content .checkout-attributes ul.image-squares label {
+ cursor: pointer;
+ position: relative;
+}
+
+.order-summary-content .checkout-attributes ul.color-squares input, .order-summary-content .checkout-attributes ul.image-squares input {
+ height: 0;
+ overflow: hidden;
+ z-index: -10000;
+ position: absolute;
+ float: none;
+}
+
+.order-summary-content .min-amount-warning {
+ margin: 0;
+ padding: 10px 0 10px 10px;
+}
+
+.order-summary-content .terms-of-service {
+ margin: 0;
+ padding: 0px 0 10px 0px;
+ float: left;
+ width: 100%;
+ font-style: normal;
+}
+
+ .order-summary-content .terms-of-service .read {
+ text-decoration: underline;
+ color: #aaa081;
+ }
+
+ .order-summary-content .terms-of-service .read:hover {
+ cursor: pointer;
+ }
+
+.order-summary-content .addon-buttons {
+ clear: both;
+ float: right;
+ margin: 0;
+ padding: 10px 0 10px 10px;
+ text-align: right;
+}
+
+.order-summary-content .checkout-buttons {
+ font-style: normal;
+ clear: both;
+}
+
+ .order-summary-content .checkout-buttons .checkout-button.checkout-new {
+ text-transform: uppercase;
+ font-size: 16px;
+ width: 100%;
+ }
+
+ .order-summary-content .checkout-buttons .checkout-button.checkout-new i {
+ margin-right: 5px;
+ font-size: 18px;
+ }
+
+.shipment-details-page .order-info-wrap .info-content, .shipment-details-page .order-info-wrap .info-content, .order-details-page .payment-infomation, .order-details-page .shipping-information, .order-details-page .billing-info-wrap .info-content, .order-details-page .order-info-wrap .info-content, .order-details-page .total-info .panel.panel-default, .order-summary-content .cart-footer .total-info .panel.panel-default {
+ padding: 12px;
+ box-shadow: 0px 0px 10px #ddd;
+ -webkit-box-shadow: 0px 0px 10px #ddd;
+ -moz-box-shadow: 0px 0px 10px #ddd;
+ border-color: #ededed;
+ font-size: 15px;
+}
+
+ .order-details-page .total-info .panel.panel-default table tr:last-child td, .order-summary-content .total-info .panel.panel-default table tr:last-child td {
+ border-bottom: none;
+ }
+
+ .order-details-page .total-info .panel.panel-default table tr .grand-total-title, .order-details-page .total-info .panel.panel-default table tr .grand-total-prices, .order-summary-content .total-info .panel.panel-default table tr .grand-total-prices, .order-summary-content .total-info .panel.panel-default table tr .grand-total-title {
+ border-top: 1px solid #ddd;
+ font-weight: 700;
+ color: #000;
+ }
+
+ .order-details-page .total-info .panel.panel-default table tr .grand-total-prices, .order-summary-content .total-info .panel.panel-default table tr .grand-total-prices, .order-summary-content .selected-checkout-attributes a, .read {
+ color: #aaa081;
+ }
+
+.order-summary-content .cart-footer #terms-of-service-warning-box {
+ z-index: 99999;
+}
+
+.qty-input.form-control, .shopping-cart-page .qty-dropdown.form-control {
+ margin: 0 auto;
+ width: 60%;
+}
+
+.wishlist-page .qty-dropdown.form-control {
+ margin: 0 auto;
+}
+
+#cart-page .modal-backdrop {
+ z-index: 9999;
+}
+
+.wishlist-page .update-email-button {
+ float: left;
+}
+
+.wishlist-page .wishlist-add-to-cart {
+ float: right;
+}
+
+.wishlist-page .update-email-button .update-wishlist, .wishlist-page .update-email-button .email-a-friend-btn {
+ float: left;
+ margin-right: 20px;
+}
+
+.wishlist-page .share-info {
+ float: left;
+}
+
+ .wishlist-page .share-info .share-label {
+ font-weight: 700;
+ }
+
+.wishlist-page .buttons .common-buttons {
+ overflow: hidden;
+ margin: 30px 0px;
+}
+
+ .wishlist-page .buttons .common-buttons .btn.btn-primary, .wishlist-page .buttons .common-buttons .btn.btn-default {
+ text-transform: uppercase;
+ }
+
+.wishlist-page .share-info a.share-link {
+ color: #aaa081;
+ text-decoration: none;
+}
+
+ .wishlist-page .share-info a.share-link:hover {
+ color: var(--grey-black);
+ }
+
+.wishlist-page .buttons .common-buttons .email-a-friend-wishlist-button {
+ background: url(../images/wishlist-email-icon.png) no-repeat 20px 11px var(--grey-black);
+ padding-left: 48px;
+ text-transform: uppercase;
+}
+
+ .wishlist-page .buttons .common-buttons .email-a-friend-wishlist-button:hover {
+ background: url(../images/wishlist-email-icon.png) no-repeat 20px 11px #aaa081;
+ }
+
+.wishlist-page .buttons .common-buttons .wishlist-add-to-cart-button {
+ background: url(../images/product-cart-icon.png) no-repeat 12px -20px #aaa081;
+ text-transform: uppercase;
+ padding-left: 40px;
+}
+
+ .wishlist-page .buttons .common-buttons .wishlist-add-to-cart-button:hover {
+ background: url(../images/product-cart-icon.png) no-repeat 12px -20px var(--grey-black);
+ }
+
+.terms-of-service label {
+ font-weight: normal;
+}
+
+.tax-shipping-info {
+ display: inline-block;
+ width: 100%;
+ margin-bottom: 15px;
+}
+
+.date-picker-wrapper {
+ display: flex;
+}
+
+ .date-picker-wrapper select {
+ margin-bottom: 10px;
+ padding: 6px 4px;
+ color: #555;
+ border: 1px solid #ccc;
+ width: 100%;
+ }
+
+ .date-picker-wrapper select + select {
+ margin-left: 10px;
+ }
+
+.giftcard-box .message-success {
+ margin-top: 10px;
+}
+
+.order-summary-body {
+ display: inline-block;
+ width: 100%;
+}
/*** ESTIMATE SHIPPING POPUP COMMON ***/
.estimate-shipping-popup {
- position: relative;
- background: #FFF;
- padding: 25px 10px;
- width: auto;
- max-width: 800px;
- margin: 0 auto;
+ position: relative;
+ background: #FFF;
+ padding: 25px 10px;
+ width: auto;
+ max-width: 800px;
+ margin: 0 auto;
}
+
.estimate-shipping-popup-zoom-in .mfp-with-anim {
- opacity: 0;
- transition: all 0.2s ease-in-out;
- transform: scale(0.8);
+ opacity: 0;
+ transition: all 0.2s ease-in-out;
+ transform: scale(0.8);
}
+
.estimate-shipping-popup-zoom-in.mfp-bg {
- opacity: 0;
- transition: all 0.3s ease-out;
+ opacity: 0;
+ transition: all 0.3s ease-out;
}
+
.estimate-shipping-popup-zoom-in.mfp-ready .mfp-with-anim {
- opacity: 1;
- transform: scale(1);
+ opacity: 1;
+ transform: scale(1);
}
+
.estimate-shipping-popup-zoom-in.mfp-ready.mfp-bg {
- opacity: 0.8;
+ opacity: 0.8;
}
+
.estimate-shipping-popup-zoom-in.mfp-removing .mfp-with-anim {
- transform: scale(0.8);
- opacity: 0;
+ transform: scale(0.8);
+ opacity: 0;
}
+
.estimate-shipping-popup-zoom-in.mfp-removing.mfp-bg {
- opacity: 0;
+ opacity: 0;
}
+
.shipping-options-loading {
- background: url(../images/ajax-loader-small.gif) no-repeat;
- width: 16px;
- height: 16px;
- position: relative;
- right: 8px;
- margin: 4% 50%;
+ background: url(../images/ajax-loader-small.gif) no-repeat;
+ width: 16px;
+ height: 16px;
+ position: relative;
+ right: 8px;
+ margin: 4% 50%;
}
+
.shipping-address .required {
- margin-left: 0px;
+ margin-left: 0px;
}
+
.estimate-shipping-row {
- display: flex;
- display: -webkit-flex;
- align-items: center;
-}
-.estimate-shipping-row.shipping-option {
- cursor: pointer;
-}
-.estimate-shipping-row.shipping-option.active {
- font-weight: 700;
+ display: flex;
+ display: -webkit-flex;
+ align-items: center;
}
+
+ .estimate-shipping-row.shipping-option {
+ cursor: pointer;
+ }
+
+ .estimate-shipping-row.shipping-option.active {
+ font-weight: 700;
+ }
+
.estimate-shipping-row-item {
- flex: 0 1 100%;
-}
-.estimate-shipping-row-item.shipping-item {
- padding: 8px 0;
- overflow: hidden;
- overflow-wrap: break-word;
-}
-.estimate-shipping-row-item.shipping-header-item {
- padding: 12px 0;
- border-bottom: 1px solid #f2f2f2;
- align-self: flex-end;
-}
-.estimate-shipping-row-item.address-item + .estimate-shipping-row-item.address-item {
- padding-left: 15px;
-}
-.estimate-shipping-row-item + .estimate-shipping-row-item {
- padding-left: 10px;
+ flex: 0 1 100%;
}
+
+ .estimate-shipping-row-item.shipping-item {
+ padding: 8px 0;
+ overflow: hidden;
+ overflow-wrap: break-word;
+ }
+
+ .estimate-shipping-row-item.shipping-header-item {
+ padding: 12px 0;
+ border-bottom: 1px solid #f2f2f2;
+ align-self: flex-end;
+ }
+
+ .estimate-shipping-row-item.address-item + .estimate-shipping-row-item.address-item {
+ padding-left: 15px;
+ }
+
+ .estimate-shipping-row-item + .estimate-shipping-row-item {
+ padding-left: 10px;
+ }
+
.estimate-shipping-row-item-radio {
- flex: 0 0 35px;
+ flex: 0 0 35px;
}
+
.ship-to-title {
- margin-bottom: 10px;
+ margin-bottom: 10px;
}
+
.choose-shipping-title {
- margin-top: 20px;
+ margin-top: 20px;
}
+
.estimate-shipping-address-control {
- width: 100%;
- height: 36px;
+ width: 100%;
+ height: 36px;
}
+
.estimate-shipping-radio {
- display: none;
-}
-.estimate-shipping-radio + label {
- -webkit-appearance: none;
- background-color: #fafafa;
- border: 1px solid #cacece;
- padding: 9px;
- border-radius: 50px;
- display: inline-block;
- position: relative;
- margin-bottom:0;
-}
-.estimate-shipping-radio:checked + label:after {
- content: ' ';
- width: 6px;
- height: 6px;
- border-radius: 50px;
- position: absolute;
- top: 6px;
- left: 6px;
- background: #ffffff;
-}
-.estimate-shipping-radio:checked + label {
- background-color: var(--red);
- color: #99a1a7;
- border: 1px solid #adb8c0;
- border-color: var(--red);
+ display: none;
}
+
+ .estimate-shipping-radio + label {
+ -webkit-appearance: none;
+ background-color: #fafafa;
+ border: 1px solid #cacece;
+ padding: 9px;
+ border-radius: 50px;
+ display: inline-block;
+ position: relative;
+ margin-bottom: 0;
+ }
+
+ .estimate-shipping-radio:checked + label:after {
+ content: ' ';
+ width: 6px;
+ height: 6px;
+ border-radius: 50px;
+ position: absolute;
+ top: 6px;
+ left: 6px;
+ background: #ffffff;
+ }
+
+ .estimate-shipping-radio:checked + label {
+ background-color: #aaa081;
+ color: #99a1a7;
+ border: 1px solid #adb8c0;
+ border-color: #aaa081;
+ }
+
.apply-shipping-button {
- border: none;
- padding: 8px 25px;
- color: #fff;
+ border: none;
+ padding: 8px 25px;
+ color: #fff;
}
+
.apply-shipping-button-container {
- margin-top: 15px;
- text-align: center;
+ margin-top: 15px;
+ text-align: center;
}
+
.shipping-options-header {
- top: 0;
- z-index: 1;
- position: sticky;
- background-color: #fff;
+ top: 0;
+ z-index: 1;
+ position: sticky;
+ background-color: #fff;
}
+
.shipping-options {
- position: relative;
- z-index: 1;
- overflow: hidden;
- overflow-y: auto;
- max-height: 200px;
- background: #FFF no-repeat;
- background-image: -webkit-radial-gradient(50% 0, farthest-side, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0)), -webkit-radial-gradient(50% 100%, farthest-side, rgba(242, 242, 242, 1), rgba(0, 0, 0, 0));
- background-image: -moz-radial-gradient(50% 0, farthest-side, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0)), -moz-radial-gradient(50% 100%, farthest-side, rgba(242, 242, 242, 1), rgba(0, 0, 0, 0));
- background-image: radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0)), radial-gradient(farthest-side at 50% 100%, rgba(242, 242, 242, 1), rgba(0, 0, 0, 0));
- background-position: 0 0, 0 100%;
- background-size: 100% 7px;
-}
-.shipping-options:before,
-.shipping-options:after {
- content: "";
- position: relative;
- z-index: -1;
- display: block;
- height: 30px;
- margin: 0 0 -30px;
- background: -webkit-linear-gradient(top, #FFF, #FFF 30%, rgba(255, 255, 255, 0));
- background: -moz-linear-gradient(top, #FFF, #FFF 30%, rgba(255, 255, 255, 0));
- background: linear-gradient(to bottom, #FFF, #FFF 30%, rgba(255, 255, 255, 0));
-}
-.shipping-options:after {
- margin: -30px 0 0;
- background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), #FFF 70%, #FFF);
- background: -moz-linear-gradient(top, rgba(255, 255, 255, 0), #FFF 70%, #FFF);
- background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #FFF 70%, #FFF);
+ position: relative;
+ z-index: 1;
+ overflow: hidden;
+ overflow-y: auto;
+ max-height: 200px;
+ background: #FFF no-repeat;
+ background-image: -webkit-radial-gradient(50% 0, farthest-side, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0)), -webkit-radial-gradient(50% 100%, farthest-side, rgba(242, 242, 242, 1), rgba(0, 0, 0, 0));
+ background-image: -moz-radial-gradient(50% 0, farthest-side, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0)), -moz-radial-gradient(50% 100%, farthest-side, rgba(242, 242, 242, 1), rgba(0, 0, 0, 0));
+ background-image: radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0)), radial-gradient(farthest-side at 50% 100%, rgba(242, 242, 242, 1), rgba(0, 0, 0, 0));
+ background-position: 0 0, 0 100%;
+ background-size: 100% 7px;
}
+
+ .shipping-options:before,
+ .shipping-options:after {
+ content: "";
+ position: relative;
+ z-index: -1;
+ display: block;
+ height: 30px;
+ margin: 0 0 -30px;
+ background: -webkit-linear-gradient(top, #FFF, #FFF 30%, rgba(255, 255, 255, 0));
+ background: -moz-linear-gradient(top, #FFF, #FFF 30%, rgba(255, 255, 255, 0));
+ background: linear-gradient(to bottom, #FFF, #FFF 30%, rgba(255, 255, 255, 0));
+ }
+
+ .shipping-options:after {
+ margin: -30px 0 0;
+ background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), #FFF 70%, #FFF);
+ background: -moz-linear-gradient(top, rgba(255, 255, 255, 0), #FFF 70%, #FFF);
+ background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #FFF 70%, #FFF);
+ }
+
.no-shipping-options {
- text-align: center;
- margin: 4% 0;
+ text-align: center;
+ margin: 4% 0;
}
+
.estimate-shipping-popup .message-failure {
- margin: 5px 0 -5px;
- font-size: 12px;
- color: #e4434b;
+ margin: 5px 0 -5px;
+ font-size: 12px;
+ color: #e4434b;
}
+
.estimate-shipping-popup .shipping-address .form-group {
margin-left: 0;
margin-right: 0;
@@ -1219,116 +4945,376 @@ a.eu-cookie-privacyinfo-tag{color:#B80709 !important;text-decoration:underline;}
/*** PRODUCT ESTIMATE SHIPPING ***/
.product-estimate-shipping {
- margin-bottom: 20px;
+ margin-bottom: 20px;
}
-.open-estimate-shipping-popup{
+
+.open-estimate-shipping-popup {
color: #555;
}
-.open-estimate-shipping-popup .shipping-address span{
- text-decoration: underline;
-}
-.open-estimate-shipping-popup:focus, .open-estimate-shipping-popup:hover {
- color: var(--red);
-}
+
+ .open-estimate-shipping-popup .shipping-address span {
+ text-decoration: underline;
+ }
+
+ .open-estimate-shipping-popup:focus, .open-estimate-shipping-popup:hover {
+ color: #aaa081;
+ }
+
.product-estimate-shipping .shipping-date {
margin-top: 3px;
}
+
.product-estimate-shipping .shipping-title {
- font-size: 16px;
- font-weight: bold;
- color: #555;
- margin-bottom: 5px;
- justify-content: center;
- clear:both;
-}
-.product-estimate-shipping .shipping-title .shipping-price {
- margin-left: 5px;
- vertical-align: middle;
-}
-.product-estimate-shipping .shipping-title .shipping-loading {
- margin-left: 5px;
- vertical-align: middle;
- background: url(../images/ajax-loader-small.gif) no-repeat;
- width: 16px;
- height: 16px;
- display: inline-block;
+ font-size: 16px;
+ font-weight: bold;
+ color: #555;
+ margin-bottom: 5px;
+ justify-content: center;
+ clear: both;
}
+
+ .product-estimate-shipping .shipping-title .shipping-price {
+ margin-left: 5px;
+ vertical-align: middle;
+ }
+
+ .product-estimate-shipping .shipping-title .shipping-loading {
+ margin-left: 5px;
+ vertical-align: middle;
+ background: url(../images/ajax-loader-small.gif) no-repeat;
+ width: 16px;
+ height: 16px;
+ display: inline-block;
+ }
+
.product-estimate-shipping .open-estimate-shipping-popup .arrow-down {
- transform: rotate(45deg);
- -webkit-transform: rotate(45deg);
- margin: 0 0 3px 6px;
- border: solid black;
- border-width: 0 1px 1px 0;
- display: inline-block;
- padding: 3px;
+ transform: rotate(45deg);
+ -webkit-transform: rotate(45deg);
+ margin: 0 0 3px 6px;
+ border: solid black;
+ border-width: 0 1px 1px 0;
+ display: inline-block;
+ padding: 3px;
}
/* ONE PAGE CHECKOUT STYLE */
-.checkout-data .opc{ padding:0;overflow:hidden;}
-.opc {margin: 0 0 10px 0;}
-.opc li{list-style: none;}
-.opc li.tab-section{float:left; width:100%;background:#fff;}
-.opc .step-title:after{display:block;content:".";clear:both;font-size:0;line-height:0;height:0;overflow:hidden;}
-.opc .ul{list-style:disc outside;padding-left:18px;}
-.opc .allow .step-title{cursor:pointer;}
-.opc .step-title{text-align:right;background:#eee;}
-.opc .step-title .number{float:left;background-color:var(--grey-black);margin:0 15px 0 0;font-size:16px;line-height:43px;color:#fff;font-weight:bold;width:43px;height:43px;text-align:center;}
-.opc .active .step-title .number{background-color:var(--red);font-weight:700;}
-.opc .step-title h2{float:left;margin:0;font-size: 14px; text-transform:uppercase;line-height:18px;font-weight:700;color:var(--grey-black);padding:12px 0px;}
-.opc .tab-section{margin-bottom:10px;}
-.opc .active .step-title h2{font-weight:700;font-size:14px;color:var(--red);}
-.opc .step{padding:20px 15px;float:left; width:100%;}
-.select-billing-address label,.select-shipping-address label{margin-bottom:15px;color:#000;}
-.select-billing-address .address-box label,.select-shipping-address .address-box label{margin-bottom:0;font-weight:normal;color:#777;}
-.opc .order-summary-content .cart-footer{background:none!important;}
-.opc .section.payment-info label {display:inline;}
-.new-billing-address,.new-shipping-address{padding:0;}
-#checkout-confirm-order-load .billing-info .payment-method,#checkout-confirm-order-load .shipping-info .shipping-method{padding: 0;}
+.checkout-data .opc {
+ padding: 0;
+ overflow: hidden;
+}
+
+.opc {
+ margin: 0 0 10px 0;
+}
+
+ .opc li {
+ list-style: none;
+ }
+
+ .opc li.tab-section {
+ float: left;
+ width: 100%;
+ background: #fff;
+ }
+
+ .opc .step-title:after {
+ display: block;
+ content: ".";
+ clear: both;
+ font-size: 0;
+ line-height: 0;
+ height: 0;
+ overflow: hidden;
+ }
+
+ .opc .ul {
+ list-style: disc outside;
+ padding-left: 18px;
+ }
+
+ .opc .allow .step-title {
+ cursor: pointer;
+ }
+
+ .opc .step-title {
+ text-align: right;
+ background: #eee;
+ }
+
+ .opc .step-title .number {
+ float: left;
+ background-color: var(--grey-black);
+ margin: 0 15px 0 0;
+ font-size: 16px;
+ line-height: 43px;
+ color: #fff;
+ font-weight: bold;
+ width: 43px;
+ height: 43px;
+ text-align: center;
+ }
+
+ .opc .active .step-title .number {
+ background-color: #aaa081;
+ font-weight: 700;
+ }
+
+ .opc .step-title h2 {
+ float: left;
+ margin: 0;
+ font-size: 14px;
+ text-transform: uppercase;
+ line-height: 18px;
+ font-weight: 700;
+ color: var(--grey-black);
+ padding: 12px 0px;
+ }
+
+ .opc .tab-section {
+ margin-bottom: 10px;
+ }
+
+ .opc .active .step-title h2 {
+ font-weight: 700;
+ font-size: 14px;
+ color: #aaa081;
+ }
+
+ .opc .step {
+ padding: 20px 15px;
+ float: left;
+ width: 100%;
+ }
+
+.select-billing-address label, .select-shipping-address label {
+ margin-bottom: 15px;
+ color: #000;
+}
+
+.select-billing-address .address-box label, .select-shipping-address .address-box label {
+ margin-bottom: 0;
+ font-weight: normal;
+ color: #777;
+}
+
+.opc .order-summary-content .cart-footer {
+ background: none !important;
+}
+
+.opc .section.payment-info label {
+ display: inline;
+}
+
+.new-billing-address, .new-shipping-address {
+ padding: 0;
+}
+
+#checkout-confirm-order-load .billing-info .payment-method, #checkout-confirm-order-load .shipping-info .shipping-method {
+ padding: 0;
+}
+
#checkout-shipping-method-load .shipping-method,
#checkout-payment-method-load .payment-method,
#checkout-payment-info-load .payment-info,
-#checkout-order-completed-load .order-completed{border:none;padding:0;margin-bottom:0;}
-#checkout-step-billing form,#checkout-step-shipping form,#checkout-step-shipping-method form,#checkout-step-payment-method form,#checkout-step-payment-info form{margin-bottom: 0;}
-.section.order-completed .title{margin:0;}
-.checkout-page #billing-buttons-container,.next-btn-wrapper{float: left;width: 100%;}
-.checkout-page .section.payment-info table{background-color: transparent;}
-.checkout-data .shipping-method .method-name .radio,.checkout-data .payment-method .method-name .radio{float:left;color:#000;}
-.checkout-data .shipping-method .method-name .method-description,.checkout-data .shipping-method ul li,.checkout-data .shipping-method ul,.checkout-data .payment-method ul,.checkout-data .payment-method ul li{float:left;width:100%;}
-.checkout-data .payment-method .method-name{float:left;width:100%;margin-bottom:20px;}
-.checkout-data .payment-method .method-name .payment-logo > label{float:left;margin-right:10px;}
-.checkout-data .payment-method .method-name .payment-details{float:left;}
-.checkout-data .payment-method .method-name .payment-details label{color:#000;}
-.payment-method .label,.shipping-method .label,.payment-method-status .label,.shipping-status .label{color:#666;padding:0;font-size:14px;font-weight:normal;}
-#checkout-steps .buttons{clear:both;float:left;width:100%;}
-.checkout-data #checkout-steps .btn.btn-primary{background:url(../images/checkout-continue-arrow.png) no-repeat var(--red) right center;float:right;text-transform:uppercase;padding-right:35px;margin-right:0;}
-.checkout-data #checkout-steps .btn.btn-primary:hover{background:url(../images/checkout-continue-arrow.png) no-repeat var(--grey-black) right center;}
-.checkout-data #confirm-order-buttons-container .btn.btn-primary{background:url(../images/checkout-order-confrim.png) no-repeat var(--red) 105px center;text-transform:uppercase;font-size:18px;padding:10px 15px 10px 55px;width:350px;}
-.checkout-data #confirm-order-buttons-container .btn.btn-primary:hover{background:url(../images/checkout-order-confrim.png) no-repeat var(--grey-black) 105px center;}
-.next-btn-wrapper .btn.btn-primary{background:url(../images/checkout-continue-arrow.png) no-repeat var(--red) right center;float:right;margin-top:0px;padding-right:35px;}
-.next-btn-wrapper .btn.btn-primary:hover{background:url(../images/checkout-continue-arrow.png) no-repeat var(--grey-black) right center;}
-.checkout-data .enter-address .edit-address .form-group{margin-bottom:15px;}
-.checkout-data .shipping-method ul .radio label {
- padding-left:0;
+#checkout-order-completed-load .order-completed {
+ border: none;
+ padding: 0;
+ margin-bottom: 0;
}
-.checkout-page .back-link{float:left;margin-bottom:0px;}
-.opc .buttons .back-link small{display:none;}
-.back-link .btn.btn-default{background:url(../images/checkout-back-arrow.png) no-repeat var(--grey-black) 15px center;text-transform:uppercase;padding-left:35px;}
-.back-link .btn.btn-default:hover{background:url(../images/checkout-back-arrow.png) no-repeat var(--red) 15px center;}
-.opc .buttons.disabled button{display:none;}
-.opc .buttons .please-wait{height:21px;line-height:21px;float:right;clear:both;}
-.checkout-page .order-summary-content .order-review-data .title{margin-bottom:10px;color:#000;font-size:15px;}
-.checkout-page .order-summary-content .order-review-data li{font-size:13px;color:#666;margin-bottom:5px;}
-.section.payment-info .message-error ul{margin-bottom:15px;}
-.payment-title{margin-top:25px;}
-.checkout-data .shipping-method .method-name .method-description{padding-right:10px;color:#666;margin-top:5px;}
-.method-list {padding:0;}
-.payment-info .info table tbody tr td {float:left;}
-.payment-info .info td label {float: left;padding-bottom:10px;width:130px; margin:0;}
-.payment-info .dropdownlists , .payment-info .info input , .payment-info .info select , .payment-info .valid {margin-left: 6px; margin-bottom:10px;}
-.payment-info .info #ExpireMonth,.payment-info .info #ExpireYear{width: 72px !important; display:inline-block !important; padding:6px;}
-.checkout-page .order-summary-content .cart-footer .total-info{margin-bottom:35px;}
-.checkout-page .order-completed-continue-button,.checkout-page .btn.btn-primary{text-transform:uppercase;}
+
+#checkout-step-billing form, #checkout-step-shipping form, #checkout-step-shipping-method form, #checkout-step-payment-method form, #checkout-step-payment-info form {
+ margin-bottom: 0;
+}
+
+.section.order-completed .title {
+ margin: 0;
+}
+
+.checkout-page #billing-buttons-container, .next-btn-wrapper {
+ float: left;
+ width: 100%;
+}
+
+.checkout-page .section.payment-info table {
+ background-color: transparent;
+}
+
+.checkout-data .shipping-method .method-name .radio, .checkout-data .payment-method .method-name .radio {
+ float: left;
+ color: #000;
+}
+
+.checkout-data .shipping-method .method-name .method-description, .checkout-data .shipping-method ul li, .checkout-data .shipping-method ul, .checkout-data .payment-method ul, .checkout-data .payment-method ul li {
+ float: left;
+ width: 100%;
+}
+
+.checkout-data .payment-method .method-name {
+ float: left;
+ width: 100%;
+ margin-bottom: 20px;
+}
+
+ .checkout-data .payment-method .method-name .payment-logo > label {
+ float: left;
+ margin-right: 10px;
+ }
+
+ .checkout-data .payment-method .method-name .payment-details {
+ float: left;
+ }
+
+ .checkout-data .payment-method .method-name .payment-details label {
+ color: #000;
+ }
+
+.payment-method .label, .shipping-method .label, .payment-method-status .label, .shipping-status .label {
+ color: #666;
+ padding: 0;
+ font-size: 14px;
+ font-weight: normal;
+}
+
+#checkout-steps .buttons {
+ clear: both;
+ float: left;
+ width: 100%;
+}
+
+.checkout-data #checkout-steps .btn.btn-primary {
+ background: url(../images/checkout-continue-arrow.png) no-repeat #aaa081 right center;
+ float: right;
+ text-transform: uppercase;
+ padding-right: 35px;
+ margin-right: 0;
+}
+
+ .checkout-data #checkout-steps .btn.btn-primary:hover {
+ background: url(../images/checkout-continue-arrow.png) no-repeat var(--grey-black) right center;
+ }
+
+.checkout-data #confirm-order-buttons-container .btn.btn-primary {
+ background: url(../images/checkout-order-confrim.png) no-repeat #aaa081 105px center;
+ text-transform: uppercase;
+ font-size: 18px;
+ padding: 10px 15px 10px 55px;
+ width: 350px;
+}
+
+ .checkout-data #confirm-order-buttons-container .btn.btn-primary:hover {
+ background: url(../images/checkout-order-confrim.png) no-repeat var(--grey-black) 105px center;
+ }
+
+.next-btn-wrapper .btn.btn-primary {
+ background: url(../images/checkout-continue-arrow.png) no-repeat #aaa081 right center;
+ float: right;
+ margin-top: 0px;
+ padding-right: 35px;
+}
+
+ .next-btn-wrapper .btn.btn-primary:hover {
+ background: url(../images/checkout-continue-arrow.png) no-repeat var(--grey-black) right center;
+ }
+
+.checkout-data .enter-address .edit-address .form-group {
+ margin-bottom: 15px;
+}
+
+.checkout-data .shipping-method ul .radio label {
+ padding-left: 0;
+}
+
+.checkout-page .back-link {
+ float: left;
+ margin-bottom: 0px;
+}
+
+.opc .buttons .back-link small {
+ display: none;
+}
+
+.back-link .btn.btn-default {
+ background: url(../images/checkout-back-arrow.png) no-repeat var(--grey-black) 15px center;
+ text-transform: uppercase;
+ padding-left: 35px;
+}
+
+ .back-link .btn.btn-default:hover {
+ background: url(../images/checkout-back-arrow.png) no-repeat #aaa081 15px center;
+ }
+
+.opc .buttons.disabled button {
+ display: none;
+}
+
+.opc .buttons .please-wait {
+ height: 21px;
+ line-height: 21px;
+ float: right;
+ clear: both;
+}
+
+.checkout-page .order-summary-content .order-review-data .title {
+ margin-bottom: 10px;
+ color: #000;
+ font-size: 15px;
+}
+
+.checkout-page .order-summary-content .order-review-data li {
+ font-size: 13px;
+ color: #666;
+ margin-bottom: 5px;
+}
+
+.section.payment-info .message-error ul {
+ margin-bottom: 15px;
+}
+
+.payment-title {
+ margin-top: 25px;
+}
+
+.checkout-data .shipping-method .method-name .method-description {
+ padding-right: 10px;
+ color: #666;
+ margin-top: 5px;
+}
+
+.method-list {
+ padding: 0;
+}
+
+.payment-info .info table tbody tr td {
+ float: left;
+}
+
+.payment-info .info td label {
+ float: left;
+ padding-bottom: 10px;
+ width: 130px;
+ margin: 0;
+}
+
+.payment-info .dropdownlists, .payment-info .info input, .payment-info .info select, .payment-info .valid {
+ margin-left: 6px;
+ margin-bottom: 10px;
+}
+
+.payment-info .info #ExpireMonth, .payment-info .info #ExpireYear {
+ width: 72px !important;
+ display: inline-block !important;
+ padding: 6px;
+}
+
+.checkout-page .order-summary-content .cart-footer .total-info {
+ margin-bottom: 35px;
+}
+
+.checkout-page .order-completed-continue-button, .checkout-page .btn.btn-primary {
+ text-transform: uppercase;
+}
+
.cart-footer .checkout-disabled {
font-size: 20px;
text-align: center;
@@ -1337,135 +5323,619 @@ a.eu-cookie-privacyinfo-tag{color:#B80709 !important;text-decoration:underline;}
color: #fff;
padding: 15px 50px;
}
-.checkout-page .edit-address-button {float: right;margin: 10px 0 10px 0;}
-.checkout-page .delete-address-button {float: right;margin: 10px 0 10px 0;}
+
+.checkout-page .edit-address-button {
+ float: right;
+ margin: 10px 0 10px 0;
+}
+
+.checkout-page .delete-address-button {
+ float: right;
+ margin: 10px 0 10px 0;
+}
/* MULTIPLE CHEKOUT PAGE STYLE */
-.checkout-page .address-grid{margin-bottom:20px;}
-.checkout-data .address-grid .address-item .select-button{margin-bottom:20px;text-align:center;}
-.checkout-data .section .address-box{list-style:none;padding:15px 15px 15px 15px;margin:0;box-shadow:0px 0px 10px #ddd;-webkit-box-shadow: 0px 0px 10px #ddd;-moz-box-shadow: 0px 0px 10px #ddd;text-align:center;margin-bottom:30px;min-height:260px;word-wrap:break-word;}
-.checkout-data .section .address-box li{color:#777;margin-bottom:5px;}
-.checkout-data .section .address-box .name{color:#000;font-size:16px;}
-.checkout-data .shipping-method ul,.checkout-data .payment-method ul{list-style: none;margin:0;}
-.checkout-data .new-billing-address , .checkout-data .new-shipping-address{margin-bottom:20px;overflow:hidden;}
-#billing-address-select,#shipping-address-select{margin-bottom:30px; width:50%;}
-.checkout-page .primary-buttons{padding:10px 0px;}
-.checkout-page .primary-buttons label , .checkout-page .primary-buttons .control-group{margin-bottom:0;}
-.checkout-data .enter-address{float:left; width:100%;margin-bottom:20px;}
-.order-summary-content .cart-footer .cart-total-right {padding-left:5px;text-align:right;vertical-align:middle;color:#555;}
-.checkout-data .shipping-method,.checkout-data .payment-method,.checkout-data .payment-info,.checkout-data .order-completed{margin-bottom: 20px;float:left;width:100%;}
-.checkout-page .shipping-method ul li , .order-summary-content .cart-footer .total-info{margin-bottom:20px;float:left;width:100%;font-style:normal;}
-.section.order-completed a{color:var(--red);}
-.section.order-completed a:hover{color:var(--grey-black);}
-.order-summary-content .cart-footer .total-info .selected-shipping-method {font-size:11px;font-weight:normal;}
-.checkout-page .checkout-data .order-completed ul{list-style:none;margin:0;padding:10px 0 10px 0;}
+.checkout-page .address-grid {
+ margin-bottom: 20px;
+}
+
+.checkout-data .address-grid .address-item .select-button {
+ margin-bottom: 20px;
+ text-align: center;
+}
+
+.checkout-data .section .address-box {
+ list-style: none;
+ padding: 15px 15px 15px 15px;
+ margin: 0;
+ box-shadow: 0px 0px 10px #ddd;
+ -webkit-box-shadow: 0px 0px 10px #ddd;
+ -moz-box-shadow: 0px 0px 10px #ddd;
+ text-align: center;
+ margin-bottom: 30px;
+ min-height: 260px;
+ word-wrap: break-word;
+}
+
+ .checkout-data .section .address-box li {
+ color: #777;
+ margin-bottom: 5px;
+ }
+
+ .checkout-data .section .address-box .name {
+ color: #000;
+ font-size: 16px;
+ }
+
+.checkout-data .shipping-method ul, .checkout-data .payment-method ul {
+ list-style: none;
+ margin: 0;
+}
+
+.checkout-data .new-billing-address, .checkout-data .new-shipping-address {
+ margin-bottom: 20px;
+ overflow: hidden;
+}
+
+#billing-address-select, #shipping-address-select {
+ margin-bottom: 30px;
+ width: 50%;
+}
+
+.checkout-page .primary-buttons {
+ padding: 10px 0px;
+}
+
+ .checkout-page .primary-buttons label, .checkout-page .primary-buttons .control-group {
+ margin-bottom: 0;
+ }
+
+.checkout-data .enter-address {
+ float: left;
+ width: 100%;
+ margin-bottom: 20px;
+}
+
+.order-summary-content .cart-footer .cart-total-right {
+ padding-left: 5px;
+ text-align: right;
+ vertical-align: middle;
+ color: #555;
+}
+
+.checkout-data .shipping-method, .checkout-data .payment-method, .checkout-data .payment-info, .checkout-data .order-completed {
+ margin-bottom: 20px;
+ float: left;
+ width: 100%;
+}
+
+.checkout-page .shipping-method ul li, .order-summary-content .cart-footer .total-info {
+ margin-bottom: 20px;
+ float: left;
+ width: 100%;
+ font-style: normal;
+}
+
+.section.order-completed a {
+ color: #aaa081;
+}
+
+ .section.order-completed a:hover {
+ color: var(--grey-black);
+ }
+
+.order-summary-content .cart-footer .total-info .selected-shipping-method {
+ font-size: 11px;
+ font-weight: normal;
+}
+
+.checkout-page .checkout-data .order-completed ul {
+ list-style: none;
+ margin: 0;
+ padding: 10px 0 10px 0;
+}
+
.checkout-data .order-review-data .billing-info .payment-method,
-.checkout-data .order-review-data .shipping-info .shipping-method{border:none;}
-.checkout-page .checkout-data .shipping-info .shipping-method,.checkout-page .checkout-data .billing-info .payment-method{padding:0;}
-.checkout-page .section.payment-info label {display:inline;}
-.method-description {margin-left:15px;}
-.section.shipping-method .radio {margin:0;}
-.section.payment-method .use-reward-points{padding-left:0;display: flex;align-items:start;margin-bottom:20px;}
-.enter-address .form-group label {text-align:left;}
-.next-btn {margin-top:10px;}
-.order-summary-content .country, .checkout-data .new-billing-address .title,.checkout-data .new-shipping-address .title{margin-bottom:10px;overflow:hidden;}
-.payment-info #ExpireMonth,.payment-info #ExpireYear,.payment-info #PurchaseOrderNumber,.payment-info #CreditCardType , .payment-info #CardholderName ,.payment-info #CardNumber,.payment-info #CardCode , #opc-payment_info #CreditCardType ,#opc-payment_info #CardholderName ,#opc-payment_info #CardNumber ,#opc-payment_info #CardCode{background-color: #fff;background-image: none;border: 1px solid #ccc;border-radius: 4px;box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;-moz-box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;-webkit-box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;color: #555;display: block;font-size: 14px;height: 34px;line-height: 1.42857;padding: 6px 12px;transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;width: 100%;}
-.order-progress{margin-bottom:40px;}
-.order-progress .nav.nav-pills{text-align:center;}
-.order-progress .nav.nav-pills li{display:inline-block;float:none;margin-right:5px;}
-.order-progress .nav.nav-pills li.active-step .progress-icon{background:var(--dark-red);}
-.order-progress .nav.nav-pills li.active-step a{background:var(--red);}
-.order-progress .nav > li > a{color:#fff; font-weight:bold;padding:0px;background:#ccc;padding-right:20px;display:inline-block;border-radius:3px;}
-.order-progress .nav > li > a > .progress-icon{display: inline-block;font-size: 20px;line-height: 20px;margin-right: 15px;padding: 15px;background:#aaa;border-bottom-left-radius:3px;border-top-left-radius:3px;}
-.order-progress .nav > li > a:hover, .order-progress .nav > li > a:focus{border: medium none;}
-.order-progress .nav > li > a, .order-progress .nav > li > a {background-image: none; border: medium none;}
-.checkout-page .checkout-data .enter-address{margin-bottom:0px;}
-.order-completed-page .section.order-completed,.order-completed-page .panel-heading h1{text-align:center;}
+.checkout-data .order-review-data .shipping-info .shipping-method {
+ border: none;
+}
+
+.checkout-page .checkout-data .shipping-info .shipping-method, .checkout-page .checkout-data .billing-info .payment-method {
+ padding: 0;
+}
+
+.checkout-page .section.payment-info label {
+ display: inline;
+}
+
+.method-description {
+ margin-left: 15px;
+}
+
+.section.shipping-method .radio {
+ margin: 0;
+}
+
+.section.payment-method .use-reward-points {
+ padding-left: 0;
+ display: flex;
+ align-items: start;
+ margin-bottom: 20px;
+}
+
+.enter-address .form-group label {
+ text-align: left;
+}
+
+.next-btn {
+ margin-top: 10px;
+}
+
+.order-summary-content .country, .checkout-data .new-billing-address .title, .checkout-data .new-shipping-address .title {
+ margin-bottom: 10px;
+ overflow: hidden;
+}
+
+.payment-info #ExpireMonth, .payment-info #ExpireYear, .payment-info #PurchaseOrderNumber, .payment-info #CreditCardType, .payment-info #CardholderName, .payment-info #CardNumber, .payment-info #CardCode, #opc-payment_info #CreditCardType, #opc-payment_info #CardholderName, #opc-payment_info #CardNumber, #opc-payment_info #CardCode {
+ background-color: #fff;
+ background-image: none;
+ border: 1px solid #ccc;
+ border-radius: 4px;
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
+ -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
+ color: #555;
+ display: block;
+ font-size: 14px;
+ height: 34px;
+ line-height: 1.42857;
+ padding: 6px 12px;
+ transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
+ width: 100%;
+}
+
+.order-progress {
+ margin-bottom: 40px;
+}
+
+ .order-progress .nav.nav-pills {
+ text-align: center;
+ }
+
+ .order-progress .nav.nav-pills li {
+ display: inline-block;
+ float: none;
+ margin-right: 5px;
+ }
+
+ .order-progress .nav.nav-pills li.active-step .progress-icon {
+ background: var(--dark-red);
+ }
+
+ .order-progress .nav.nav-pills li.active-step a {
+ background: #aaa081;
+ }
+
+ .order-progress .nav > li > a {
+ color: #fff;
+ font-weight: bold;
+ padding: 0px;
+ background: #ccc;
+ padding-right: 20px;
+ display: inline-block;
+ border-radius: 3px;
+ }
+
+ .order-progress .nav > li > a > .progress-icon {
+ display: inline-block;
+ font-size: 20px;
+ line-height: 20px;
+ margin-right: 15px;
+ padding: 15px;
+ background: #aaa;
+ border-bottom-left-radius: 3px;
+ border-top-left-radius: 3px;
+ }
+
+ .order-progress .nav > li > a:hover, .order-progress .nav > li > a:focus {
+ border: medium none;
+ }
+
+ .order-progress .nav > li > a, .order-progress .nav > li > a {
+ background-image: none;
+ border: medium none;
+ }
+
+.checkout-page .checkout-data .enter-address {
+ margin-bottom: 0px;
+}
+
+.order-completed-page .section.order-completed, .order-completed-page .panel-heading h1 {
+ text-align: center;
+}
/* CHECKOUT PAGE READ LINK POPUP */
-.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-draggable.ui-resizable{font-family:'Lato', sans-serif;border:none!important;}
-.ui-corner-all{border-radius:0px!important;}
-.ui-dialog{padding:0!important;}
-.ui-widget-header{background:var(--red)!important;color:#fff!important;border:none!important;}
-.ui-dialog .ui-dialog-titlebar-close{background:url("../images/ico-close-notification-bar.png") repeat-x scroll 50% 50% !important;border:none!important;}
-.ui-dialog .ui-dialog-title{font-weight:500;}
-.ui-dialog .ui-dialog-content{border:1px solid #aaa !important;}
-.ui-widget.ui-widget-content.ui-tabs {border: none;}
+.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-draggable.ui-resizable {
+ font-family: 'Lato', sans-serif;
+ border: none !important;
+}
+
+.ui-corner-all {
+ border-radius: 0px !important;
+}
+
+.ui-dialog {
+ padding: 0 !important;
+}
+
+.ui-widget-header {
+ background: #aaa081 !important;
+ color: #fff !important;
+ border: none !important;
+}
+
+.ui-dialog .ui-dialog-titlebar-close {
+ background: url("../images/ico-close-notification-bar.png") repeat-x scroll 50% 50% !important;
+ border: none !important;
+}
+
+.ui-dialog .ui-dialog-title {
+ font-weight: 500;
+}
+
+.ui-dialog .ui-dialog-content {
+ border: 1px solid #aaa !important;
+}
+
+.ui-widget.ui-widget-content.ui-tabs {
+ border: none;
+}
/* CUSTOMER ACCOUNT PAGE STYLE */
-.customer-info-page fieldset h3 , .multi-factor-authentication-page .description p:first-child{text-align:left;margin-bottom:20px;font-size:15px;text-transform:uppercase;padding-bottom:10px;border-bottom:1px solid #ddd;margin-top:0px;font-weight:600;}
-.account-page .result{font-size:10px;font-weight:700;color:#3c763d;}
-.username-available-status{color:green;padding-left:5px;}
-.username-not-available-status{color:red;padding-left:5px;float:left;clear:both;width:100%;}
-.account-page .form-group label {text-align: left; display: inline;}
-.account-page .form-group label.btn-default{display:block;}
-.small-heading > strong {float: left;font-size: 16px;margin-bottom:20px;width: 100%;}
-.address-list-page .add-button {text-align:center;margin-top:20px;}
-.form-group .save-btn-mt{padding-left:10px;}
-.a-center.quantity {width:10%;}
-.product.new-product-iteam{ width:100%;}
-.a-center.product.new-product-iteam , .a-left.product.new-product-iteam , .a-left.info.new-product-iteam , .a-center.info.new-product-iteam{vertical-align: middle;}
-.downloadable-products-page table tr td{ text-align:center;}
-.customer-info-page .category-iteam , .return-request-page .form-group label{text-align:left;}
-.check-availability .field-validation-error {margin-bottom:5px; width:120px;}
-.customer-info-page .radio-inline,.customer-info-page .checkbox-inline{ padding-left:0px;}
-.form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline{ padding-top:7px;}
-.customer-info-page .form-horizontal .radio-inline{ padding-top:0px;}
-.customer-info-page .control-label {padding-top: 0;}
-.account-page .section:after {clear: both;content: ".";display: block;font-size: 0;height: 0;line-height: 0;visibility: hidden;}
-.address-list .address-item , .multi-factor-authentication-page .fieldset{margin-bottom:30px;border:1px solid #ededed;box-shadow:0px 0px 10px #ddd;-webkit-box-shadow: 0px 0px 10px #ddd;-moz-box-shadow: 0px 0px 10px #ddd;padding:10px;min-height:100%;position:relative;}
-.address-list .address-item .title , .multi-factor-authentication-page .fieldset .title{text-align:center;float:left;width:100%;}
-.return-request-list-page .request-item .title strong,.address-list .address-item .title strong,.order-list-page .order-item .title strong,.gdpr-tools-page .title strong , .multi-factor-authentication-page .fieldset .title strong{font-size:16px;margin-bottom:15px;text-transform:capitalize;display:inline-block;margin-top:5px;}
-.address-list .address-item ul li{color:#666;clear:both;margin-bottom:5px;}
-.address-list .address-item label{display:inline;}
-.address-list .address-item .phone label{color:#646464;}
-.address-list .address-item address{margin-bottom: 0;float:left;}
-.address-list .address-item .buttons{text-align:center;position:relative; margin: 10px 0;}
-.section.address-item .edit-address-button{background:url(../images/edit-icon.png) no-repeat 15px 14px var(--grey-black);text-transform:uppercase;padding-left:35px;margin-right:5px;}
-.section.address-item .edit-address-button:hover{background:url(../images/edit-icon.png) no-repeat 15px 14px var(--red);}
-.section.address-item .delete-address-button{background:url(../images/delete-icon.png) no-repeat 15px 13px var(--grey-black);text-transform:uppercase;padding-left:35px;}
-.section.address-item .delete-address-button:hover{background:url(../images/delete-icon.png) no-repeat 15px 13px var(--red);}
-.address-list-page .add-address-button{background:url(../images/add-new-address-icon.png) no-repeat 15px 10px var(--red);text-transform:uppercase;padding-left:40px;}
-.address-list-page .add-address-button:hover{background:url(../images/add-new-address-icon.png) no-repeat 15px 10px var(--grey-black);}
-.order-list-page .order-item{margin-bottom:30px;border:1px solid #ededed;box-shadow:0px 0px 10px #ddd;-webkit-box-shadow: 0px 0px 10px #ddd;-moz-box-shadow: 0px 0px 10px #ddd;position:relative;}
-.return-request-list-page .request-item .title,.order-list-page .order-item .title{text-align:center;margin-bottom:15px;padding-top:10px;border-bottom:1px solid #ddd;}
-.order-list-page .order-item-detail{padding:0px 10px 15px;overflow:hidden;}
-.return-request-list-page .section ul li,.order-list-page .order-item-detail ul li{color:#666;margin-bottom:5px;}
-.order-list-page .order-item-detail .buttons{text-align:center;margin-top:15px;float:left;width:100%;overflow:hidden;}
-.order-details-page .actions .btn {margin: 0 10px 10px 0;}
-.downloadable-products-page .panel-default {overflow-x: auto;}
-.downloadable-products-page table .product {min-width: 200px;}
-.avatar-page .buttons{margin:10px 0 10px 0;}
-.back-in-stock-subscription-list-page .description , .forum-subscriptions-page .description{margin-bottom:20px;}
-.reward-points-page .reward-points-overview , .avatar-page .image{margin-bottom:10px;}
-.reward-points-page .reward-points-overview .min-balance , .account-page .recurring-payments .title{margin-top:10px;}
-.reward-points-page .reward-points-history .title{margin-bottom:5px;}
-.return-request-page .a-center.quantity,.return-request-page .a-center.price,.shipment-details-page .a-center.quantity,.order-details-page .a-center.quantity,.reward-points-page .data-table td,.reward-points-page .data-table th{text-align:center;}
-.use-reward-points{padding-left:40px;}
-.category-iteam {width:100%;}
-.address-edit-page .category-iteam {text-align:left;}
-.change-password-page #OldPassword,.change-password-page #NewPassword,.change-password-page #ConfirmNewPassword{background-color:#fff;background-image:none;border: 1px solid #ccc;box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;color: var(--grey-black);display: block;font-size: 14px;height: 34px;line-height: 1.42857;padding: 6px 12px;transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;width: 100%;}
-.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"]{margin-left:0px;position:inherit;}
-.address-edit-page .control-label{padding-top:0px;}
-.forum-top i,.forum-top a,.forums-table-section .topic-name a,.shipment-details-page a,.downloadable-products-page .a-center.product a,.downloadable-products-page .a-center.order a:hover,.address-list-page ul .email a,.order-details-page .a-left.name a,.return-request-page .a-left.name a,.back-in-stock-subscription-list-page .a-left.product a,.return-request-list-page ul li a,.forums-main-page a:hover,.forum-search-box .advanced a:hover,.forum-page-edit .topic-header a:hover,.forum-page-edit .topic-header i:hover,.forum-page-edit .manage a:hover,.forum-page-edit .post-content .pull-right a:hover,.forum-page-edit .topic-footer a:hover,.forum-page-edit .send-pm-box a,.private-messages-page .panel-body ul li a,.private-messages-page .data-table a:hover,.forum-search-page a:hover,.forum-subscriptions-page .data-table a:hover,.forum-page-edit .post-info .manage i:hover,.blog-page .post-head a:hover,.blog-page .blog-details a:hover,.blog-page .blog-details ul li a:hover,.news-list-pag .news-head a:hover,.blogpost-page .tags ul li a:hover,.blogpost-page .post-body p a,.sitemap-page .entity-body ul li a:hover,.news-item-page .news-body p a,.forum-group-page .forums-table-section-title a:hover,.forum-group-page .forums-table-section-body tr td a:hover{color:var(--red);text-decoration:none;}
-.forum-top i:hover,.forum-top a:hover,.forums-table-section .topic-name a:hover,.shipment-details-page a:hover,.downloadable-products-page .a-center.product a:hover,.downloadable-products-page .a-center.order a,.address-list-page ul .email a:hover,.order-details-page .a-left.name a:hover,.return-request-page .a-left.name a:hover,.back-in-stock-subscription-list-page .a-left.product a:hover,.return-request-list-page ul li a:hover,.forum-subscriptions-page .a-left.info a,.forums-main-page a,.forum-page-edit .topic-header a,.forum-search-box .advanced a,.forum-page-edit .topic-header a,.forum-page-edit .manage a,.forum-page-edit .post-content .pull-right a,.forum-page-edit .topic-footer a,.forum-page-edit .send-pm-box a:hover,.private-messages-page .panel-body ul li a:hover,.private-messages-page .data-table a,.forum-search-page a,.forum-subscriptions-page .data-table,.blog-page .post-head a,.blog-page .blog-details a,.blog-page .blog-details ul li a,.news-list-pag .news-head a,.blogpost-page .tags ul li a,.blogpost-page .post-body p a:hover,.sitemap-page .entity-body ul li a,.news-item-page .news-body p a:hover,.forum-group-page .forums-table-section-title a,.forum-group-page .forums-table-section-body tr td a{color:var(--grey-black);}
-.forum-page-edit .forum-topic-page .manage a:hover,.forum-page-edit .forum-topic-page .title i:hover{color:#000;}
-.customer-info-page .panel.panel-default.extrnal-table,.customer-info-page .form-fields.add-more-external-records{margin:20px 0px 40px;}
-.forums-table-section-title .link-rss,.customer-info-page .form-fields.add-more-external-records a,.customer-info-page .extrnal-table a{color:var(--red);}
-.customer-info-page .form-fields.add-more-external-records a:hover,.customer-info-page .extrnal-table a:hover{color:var(--grey-black);}
-.prices-alignment-right{text-align:right !important;}
-.form-title-rquired{float:left;}
-.contact-page .btn.btn-primary,.vendor-page .contact-vendor .btn.btn-primary,.vendor-contact-page .btn.btn-primary,.compare-products-page .btn.btn-default,.compare-products-page .btn.btn-primary,.apply-vendor-page .btn.btn-primary,.blogpost-page .blog-post-add-comment-button,.news-item-page .btn.btn-primary,.private-message-view-page .btn.btn-default,.private-messages-page .btn.btn-primary,.private-messages-page .btn.btn-default,.private-message-send-page .btn.btn-default,.private-message-send-page .btn.btn-primary,.move-topic-page .btn.btn-default,.move-topic-page .btn.btn-primary,.forum-edit-page .btn.btn-primary,.forum-edit-page .btn.btn-default,.order-details-page .btn.btn-default,.order-details-page .btn.btn-primary,.return-request-page .btn.btn-primary,.account-page .btn.btn-primary,.account-page .btn.btn-default{text-transform:uppercase;}
+.customer-info-page fieldset h3, .multi-factor-authentication-page .description p:first-child {
+ text-align: left;
+ margin-bottom: 20px;
+ font-size: 15px;
+ text-transform: uppercase;
+ padding-bottom: 10px;
+ border-bottom: 1px solid #ddd;
+ margin-top: 0px;
+ font-weight: 600;
+}
+
+.account-page .result {
+ font-size: 10px;
+ font-weight: 700;
+ color: #3c763d;
+}
+
+.username-available-status {
+ color: green;
+ padding-left: 5px;
+}
+
+.username-not-available-status {
+ color: red;
+ padding-left: 5px;
+ float: left;
+ clear: both;
+ width: 100%;
+}
+
+.account-page .form-group label {
+ text-align: left;
+ display: inline;
+}
+
+ .account-page .form-group label.btn-default {
+ display: block;
+ }
+
+.small-heading > strong {
+ float: left;
+ font-size: 16px;
+ margin-bottom: 20px;
+ width: 100%;
+}
+
+.address-list-page .add-button {
+ text-align: center;
+ margin-top: 20px;
+}
+
+.form-group .save-btn-mt {
+ padding-left: 10px;
+}
+
+.a-center.quantity {
+ width: 10%;
+}
+
+.product.new-product-iteam {
+ width: 100%;
+}
+
+.a-center.product.new-product-iteam, .a-left.product.new-product-iteam, .a-left.info.new-product-iteam, .a-center.info.new-product-iteam {
+ vertical-align: middle;
+}
+
+.downloadable-products-page table tr td {
+ text-align: center;
+}
+
+.customer-info-page .category-iteam, .return-request-page .form-group label {
+ text-align: left;
+}
+
+.check-availability .field-validation-error {
+ margin-bottom: 5px;
+ width: 120px;
+}
+
+.customer-info-page .radio-inline, .customer-info-page .checkbox-inline {
+ padding-left: 0px;
+}
+
+.form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline {
+ padding-top: 7px;
+}
+
+.customer-info-page .form-horizontal .radio-inline {
+ padding-top: 0px;
+}
+
+.customer-info-page .control-label {
+ padding-top: 0;
+}
+
+.account-page .section:after {
+ clear: both;
+ content: ".";
+ display: block;
+ font-size: 0;
+ height: 0;
+ line-height: 0;
+ visibility: hidden;
+}
+
+.address-list .address-item, .multi-factor-authentication-page .fieldset {
+ margin-bottom: 30px;
+ border: 1px solid #ededed;
+ box-shadow: 0px 0px 10px #ddd;
+ -webkit-box-shadow: 0px 0px 10px #ddd;
+ -moz-box-shadow: 0px 0px 10px #ddd;
+ padding: 10px;
+ min-height: 100%;
+ position: relative;
+}
+
+ .address-list .address-item .title, .multi-factor-authentication-page .fieldset .title {
+ text-align: center;
+ float: left;
+ width: 100%;
+ }
+
+ .return-request-list-page .request-item .title strong, .address-list .address-item .title strong, .order-list-page .order-item .title strong, .gdpr-tools-page .title strong, .multi-factor-authentication-page .fieldset .title strong {
+ font-size: 16px;
+ margin-bottom: 15px;
+ text-transform: capitalize;
+ display: inline-block;
+ margin-top: 5px;
+ }
+
+ .address-list .address-item ul li {
+ color: #666;
+ clear: both;
+ margin-bottom: 5px;
+ }
+
+ .address-list .address-item label {
+ display: inline;
+ }
+
+ .address-list .address-item .phone label {
+ color: #646464;
+ }
+
+ .address-list .address-item address {
+ margin-bottom: 0;
+ float: left;
+ }
+
+ .address-list .address-item .buttons {
+ text-align: center;
+ position: relative;
+ margin: 10px 0;
+ }
+
+.section.address-item .edit-address-button {
+ background: url(../images/edit-icon.png) no-repeat 15px 14px var(--grey-black);
+ text-transform: uppercase;
+ padding-left: 35px;
+ margin-right: 5px;
+}
+
+ .section.address-item .edit-address-button:hover {
+ background: url(../images/edit-icon.png) no-repeat 15px 14px #aaa081;
+ }
+
+.section.address-item .delete-address-button {
+ background: url(../images/delete-icon.png) no-repeat 15px 13px var(--grey-black);
+ text-transform: uppercase;
+ padding-left: 35px;
+}
+
+ .section.address-item .delete-address-button:hover {
+ background: url(../images/delete-icon.png) no-repeat 15px 13px #aaa081;
+ }
+
+.address-list-page .add-address-button {
+ background: url(../images/add-new-address-icon.png) no-repeat 15px 10px #aaa081;
+ text-transform: uppercase;
+ padding-left: 40px;
+}
+
+ .address-list-page .add-address-button:hover {
+ background: url(../images/add-new-address-icon.png) no-repeat 15px 10px var(--grey-black);
+ }
+
+.order-list-page .order-item {
+ margin-bottom: 30px;
+ border: 1px solid #ededed;
+ box-shadow: 0px 0px 10px #ddd;
+ -webkit-box-shadow: 0px 0px 10px #ddd;
+ -moz-box-shadow: 0px 0px 10px #ddd;
+ position: relative;
+}
+
+ .return-request-list-page .request-item .title, .order-list-page .order-item .title {
+ text-align: center;
+ margin-bottom: 15px;
+ padding-top: 10px;
+ border-bottom: 1px solid #ddd;
+ }
+
+.order-list-page .order-item-detail {
+ padding: 0px 10px 15px;
+ overflow: hidden;
+}
+
+ .return-request-list-page .section ul li, .order-list-page .order-item-detail ul li {
+ color: #666;
+ margin-bottom: 5px;
+ }
+
+ .order-list-page .order-item-detail .buttons {
+ text-align: center;
+ margin-top: 15px;
+ float: left;
+ width: 100%;
+ overflow: hidden;
+ }
+
+.order-details-page .actions .btn {
+ margin: 0 10px 10px 0;
+}
+
+.downloadable-products-page .panel-default {
+ overflow-x: auto;
+}
+
+.downloadable-products-page table .product {
+ min-width: 200px;
+}
+
+.avatar-page .buttons {
+ margin: 10px 0 10px 0;
+}
+
+.back-in-stock-subscription-list-page .description, .forum-subscriptions-page .description {
+ margin-bottom: 20px;
+}
+
+.reward-points-page .reward-points-overview, .avatar-page .image {
+ margin-bottom: 10px;
+}
+
+ .reward-points-page .reward-points-overview .min-balance, .account-page .recurring-payments .title {
+ margin-top: 10px;
+ }
+
+.reward-points-page .reward-points-history .title {
+ margin-bottom: 5px;
+}
+
+.return-request-page .a-center.quantity, .return-request-page .a-center.price, .shipment-details-page .a-center.quantity, .order-details-page .a-center.quantity, .reward-points-page .data-table td, .reward-points-page .data-table th {
+ text-align: center;
+}
+
+.use-reward-points {
+ padding-left: 40px;
+}
+
+.category-iteam {
+ width: 100%;
+}
+
+.address-edit-page .category-iteam {
+ text-align: left;
+}
+
+.change-password-page #OldPassword, .change-password-page #NewPassword, .change-password-page #ConfirmNewPassword {
+ background-color: #fff;
+ background-image: none;
+ border: 1px solid #ccc;
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
+ -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
+ color: var(--grey-black);
+ display: block;
+ font-size: 14px;
+ height: 34px;
+ line-height: 1.42857;
+ padding: 6px 12px;
+ transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
+ width: 100%;
+}
+
+.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
+ margin-left: 0px;
+ position: inherit;
+}
+
+.address-edit-page .control-label {
+ padding-top: 0px;
+}
+
+.forum-top i, .forum-top a, .forums-table-section .topic-name a, .shipment-details-page a, .downloadable-products-page .a-center.product a, .downloadable-products-page .a-center.order a:hover, .address-list-page ul .email a, .order-details-page .a-left.name a, .return-request-page .a-left.name a, .back-in-stock-subscription-list-page .a-left.product a, .return-request-list-page ul li a, .forums-main-page a:hover, .forum-search-box .advanced a:hover, .forum-page-edit .topic-header a:hover, .forum-page-edit .topic-header i:hover, .forum-page-edit .manage a:hover, .forum-page-edit .post-content .pull-right a:hover, .forum-page-edit .topic-footer a:hover, .forum-page-edit .send-pm-box a, .private-messages-page .panel-body ul li a, .private-messages-page .data-table a:hover, .forum-search-page a:hover, .forum-subscriptions-page .data-table a:hover, .forum-page-edit .post-info .manage i:hover, .blog-page .post-head a:hover, .blog-page .blog-details a:hover, .blog-page .blog-details ul li a:hover, .news-list-pag .news-head a:hover, .blogpost-page .tags ul li a:hover, .blogpost-page .post-body p a, .sitemap-page .entity-body ul li a:hover, .news-item-page .news-body p a, .forum-group-page .forums-table-section-title a:hover, .forum-group-page .forums-table-section-body tr td a:hover {
+ color: #aaa081;
+ text-decoration: none;
+}
+
+ .forum-top i:hover, .forum-top a:hover, .forums-table-section .topic-name a:hover, .shipment-details-page a:hover, .downloadable-products-page .a-center.product a:hover, .downloadable-products-page .a-center.order a, .address-list-page ul .email a:hover, .order-details-page .a-left.name a:hover, .return-request-page .a-left.name a:hover, .back-in-stock-subscription-list-page .a-left.product a:hover, .return-request-list-page ul li a:hover, .forum-subscriptions-page .a-left.info a, .forums-main-page a, .forum-page-edit .topic-header a, .forum-search-box .advanced a, .forum-page-edit .topic-header a, .forum-page-edit .manage a, .forum-page-edit .post-content .pull-right a, .forum-page-edit .topic-footer a, .forum-page-edit .send-pm-box a:hover, .private-messages-page .panel-body ul li a:hover, .private-messages-page .data-table a, .forum-search-page a, .forum-subscriptions-page .data-table, .blog-page .post-head a, .blog-page .blog-details a, .blog-page .blog-details ul li a, .news-list-pag .news-head a, .blogpost-page .tags ul li a, .blogpost-page .post-body p a:hover, .sitemap-page .entity-body ul li a, .news-item-page .news-body p a:hover, .forum-group-page .forums-table-section-title a, .forum-group-page .forums-table-section-body tr td a {
+ color: var(--grey-black);
+ }
+
+.forum-page-edit .forum-topic-page .manage a:hover, .forum-page-edit .forum-topic-page .title i:hover {
+ color: #000;
+}
+
+.customer-info-page .panel.panel-default.extrnal-table, .customer-info-page .form-fields.add-more-external-records {
+ margin: 20px 0px 40px;
+}
+
+ .forums-table-section-title .link-rss, .customer-info-page .form-fields.add-more-external-records a, .customer-info-page .extrnal-table a {
+ color: #aaa081;
+ }
+
+ .customer-info-page .form-fields.add-more-external-records a:hover, .customer-info-page .extrnal-table a:hover {
+ color: var(--grey-black);
+ }
+
+.prices-alignment-right {
+ text-align: right !important;
+}
+
+.form-title-rquired {
+ float: left;
+}
+
+.contact-page .btn.btn-primary, .vendor-page .contact-vendor .btn.btn-primary, .vendor-contact-page .btn.btn-primary, .compare-products-page .btn.btn-default, .compare-products-page .btn.btn-primary, .apply-vendor-page .btn.btn-primary, .blogpost-page .blog-post-add-comment-button, .news-item-page .btn.btn-primary, .private-message-view-page .btn.btn-default, .private-messages-page .btn.btn-primary, .private-messages-page .btn.btn-default, .private-message-send-page .btn.btn-default, .private-message-send-page .btn.btn-primary, .move-topic-page .btn.btn-default, .move-topic-page .btn.btn-primary, .forum-edit-page .btn.btn-primary, .forum-edit-page .btn.btn-default, .order-details-page .btn.btn-default, .order-details-page .btn.btn-primary, .return-request-page .btn.btn-primary, .account-page .btn.btn-primary, .account-page .btn.btn-default {
+ text-transform: uppercase;
+}
+
.gdpr-tools-page .result {
margin: 20px 0;
font-size: 13px;
color: #e4434b;
}
+
.gdpr-tools-page .buttons {
margin-top: 20px;
}
+
.gdpr-tools-page .page-body form .fieldset {
margin-bottom: 20px;
padding: 10px;
@@ -1476,458 +5946,2033 @@ a.eu-cookie-privacyinfo-tag{color:#B80709 !important;text-decoration:underline;}
-moz-box-shadow: 0px 0px 10px #ddd;
min-height: 220px;
}
-.gdpr-tools-page .page-body form .fieldset .title{
- text-align:center;
- border-bottom: 1px solid #ddd;
- margin-bottom:10px;
-}
-.gdpr-tools-page .page-body form .fieldset .buttons{
- text-align:center;
-}
+
+ .gdpr-tools-page .page-body form .fieldset .title {
+ text-align: center;
+ border-bottom: 1px solid #ddd;
+ margin-bottom: 10px;
+ }
+
+ .gdpr-tools-page .page-body form .fieldset .buttons {
+ text-align: center;
+ }
+
.check-gift-card-balance-page .result,
.check-gift-card-balance-page .message-error {
margin: 20px 0;
}
+
.check-gift-card-balance-page .fieldset {
margin: 0 0 30px;
}
/* ORDER DETAIL PAGE STYLE */
-.order-details-page .links .controls{display:inline-block}
-.order-details-page .links .controls i{margin-right:5px;}
-.order-details-page .cart-total-left{font-weight:700;height:21px;text-align:left;vertical-align:middle;}
-.order-details-page .cart-total-right {padding-left:5px;text-align:left;vertical-align:middle;}
-.order-details-page .links{text-align:center;margin:15px 0px 25px;}
-.actions {margin-top:10px;}
-.order-details-page .billing-info , .order-details-page .shipping-info{list-style:none;}
-.order-info-wrap .title,.billing-info-wrap .title,.shipment-details-page .shipment-overview li,.order-details-page .shipping-information li, .order-details-page .payment-infomation li {margin-bottom:5px;color:#666;font-size:13px;}
-.shipment-details-page .section .title,.order-details-page .products .title , .order-details-page .shipments .title{margin-bottom:20px;}
-.checkout-attributes.shipping-text , .order-details-page .order-number h4 {font-weight:bold;}
-.shipment-details-page .shipment-overview,.order-details-page .order-details-area{margin-bottom:20px;}
-.order-details-page .section table th , .order-details-page .data-table th{text-align:center;}
-.order-info-wrap .title,.billing-info-wrap .title,.shipment-details-page .shipment-overview li.title,.order-details-page li.title{color:#000;font-size:15px;}
-.shipment-details-page .title > strong ,.order-details-page .title > strong ,.checkout-attributes.shipping-text {font-size:16px;}
-.order-details-page .total-info{ margin-top:20px;}
-.shipment-details-page .panel-heading h1,.return-request-page .panel-heading h1,.order-details-page .panel-heading h1,.order-overview{text-align:center;}
-.order-details-page .tax-shipping-info{padding:10px;}
-.checkout-attributes.shipping-text,.section.products .actions{float:right;width:100%;text-align:right;margin-top:20px;}
-.order-details-page .section.shipments a{color:var(--red);}
-.order-details-page .section.shipments .a-left{text-align:center !important;}
-.order-details-page .section.shipments a{color:var(--red);text-align:center;}
-.order-details-page .section.shipments a:hover{color:var(--grey-black);}
-.order-details-page .section.shipments .a-center.details{text-align:center;}
-.wishlist-page .section .panel.panel-default, .reward-points-page .panel.panel-default,.sitemap-page .entity,.compare-products-page .panel.panel-default,.news-list-page .item,.private-message-view-page .view-message,.private-messages-page .panel.panel-default,.forum-topic-page .topic-posts,.forum-topic-content-top,.forum-subscriptions-page .panel.panel-default,.forum-page .forum-top,.forums-table-section,.reward-points-page.panel.panel-default,.back-in-stock-subscription-list-page .panel.panel-default,.downloadable-products-page .panel.panel-default,.return-request-page .section .panel.panel-default,.shipment-details-page .section .panel.panel-default,.order-details-page .section .panel.panel-default{box-shadow:0px 0px 10px #ddd;-webkit-box-shadow: 0px 0px 10px #ddd;-moz-box-shadow: 0px 0px 10px #ddd;border-color:#ededed;font-size:14px;}
-.wishlist-page .section .panel.panel-default table tbody tr td, .wishlist-page .panel.panel-default > table,.reward-points-page .panel.panel-default table,.reward-points-page .panel.panel-default table thead tr th,.reward-points-page .panel.panel-default table tbody tr td,.compare-products-page .panel.panel-default table,.compare-products-page .panel.panel-default tbody tr td,.private-messages-page .panel.panel-default table tbody tr td,.private-messages-page .panel.panel-default table thead tr th,.private-messages-page .panel.panel-default table,.forum-subscriptions-page .subscription-list table thead tr th,.forum-subscriptions-page .subscription-list table tbody tr td,.forum-subscriptions-page .subscription-list table,.forums-table-section table thead tr th,.forums-table-section table tbody tr td,.forums-table-section table,.reward-points-page.panel.panel-default table thead tr th,.reward-points-page.panel.panel-default table tbody tr td,.reward-points-page.panel.panel-default table,.back-in-stock-subscription-list-page .panel.panel-default table thead tr th,.back-in-stock-subscription-list-page .panel.panel-default table tbody tr td,.back-in-stock-subscription-list-page .panel.panel-default table,.shipment-details-page .section .panel.panel-default table,.shipment-details-page .section .panel.panel-default table tbody tr td,.shipment-details-page .section .panel.panel-default table thead tr th,.order-details-page .section .panel.panel-default table,.order-details-page .section .panel.panel-default table tbody tr td,.order-details-page .section .panel.panel-default table thead tr th{border:none;padding:10px;vertical-align:middle;text-align:center !important;}
-.reward-points-page .panel.panel-default table tbody tr,.compare-products-page .panel.panel-default table tbody tr,.private-messages-page .panel.panel-default table tbody tr,.forum-subscriptions-page .subscription-list table tbody tr,.forums-table-section table tbody tr,.reward-points-page.panel.panel-default table tbody tr,.back-in-stock-subscription-list-page .panel.panel-default table tbody tr,.shipment-details-page .section .panel.panel-default table tbody tr,.order-details-page .section .panel.panel-default table tbody tr{border-top:1px solid #ddd;}
-.order-details-page .section .panel.panel-default table .a-center.name{text-align:left;}
-.shipment-details-page .section .panel.panel-default table .a-left.name em,.order-details-page .section .panel.panel-default table .a-left.name em{font-style:normal;}
-.order-details-page .section .panel.panel-default table .a-left.name {width: 50%;text-align:left !important;font-weight:700;}
+.order-details-page .links .controls {
+ display: inline-block
+}
+
+ .order-details-page .links .controls i {
+ margin-right: 5px;
+ }
+
+.order-details-page .cart-total-left {
+ font-weight: 700;
+ height: 21px;
+ text-align: left;
+ vertical-align: middle;
+}
+
+.order-details-page .cart-total-right {
+ padding-left: 5px;
+ text-align: left;
+ vertical-align: middle;
+}
+
+.order-details-page .links {
+ text-align: center;
+ margin: 15px 0px 25px;
+}
+
+.actions {
+ margin-top: 10px;
+}
+
+.order-details-page .billing-info, .order-details-page .shipping-info {
+ list-style: none;
+}
+
+.order-info-wrap .title, .billing-info-wrap .title, .shipment-details-page .shipment-overview li, .order-details-page .shipping-information li, .order-details-page .payment-infomation li {
+ margin-bottom: 5px;
+ color: #666;
+ font-size: 13px;
+}
+
+.shipment-details-page .section .title, .order-details-page .products .title, .order-details-page .shipments .title {
+ margin-bottom: 20px;
+}
+
+.checkout-attributes.shipping-text, .order-details-page .order-number h4 {
+ font-weight: bold;
+}
+
+.shipment-details-page .shipment-overview, .order-details-page .order-details-area {
+ margin-bottom: 20px;
+}
+
+.order-details-page .section table th, .order-details-page .data-table th {
+ text-align: center;
+}
+
+.order-info-wrap .title, .billing-info-wrap .title, .shipment-details-page .shipment-overview li.title, .order-details-page li.title {
+ color: #000;
+ font-size: 15px;
+}
+
+.shipment-details-page .title > strong, .order-details-page .title > strong, .checkout-attributes.shipping-text {
+ font-size: 16px;
+}
+
+.order-details-page .total-info {
+ margin-top: 20px;
+}
+
+.shipment-details-page .panel-heading h1, .return-request-page .panel-heading h1, .order-details-page .panel-heading h1, .order-overview {
+ text-align: center;
+}
+
+.order-details-page .tax-shipping-info {
+ padding: 10px;
+}
+
+.checkout-attributes.shipping-text, .section.products .actions {
+ float: right;
+ width: 100%;
+ text-align: right;
+ margin-top: 20px;
+}
+
+.order-details-page .section.shipments a {
+ color: #aaa081;
+}
+
+.order-details-page .section.shipments .a-left {
+ text-align: center !important;
+}
+
+.order-details-page .section.shipments a {
+ color: #aaa081;
+ text-align: center;
+}
+
+ .order-details-page .section.shipments a:hover {
+ color: var(--grey-black);
+ }
+
+.order-details-page .section.shipments .a-center.details {
+ text-align: center;
+}
+
+.wishlist-page .section .panel.panel-default, .reward-points-page .panel.panel-default, .sitemap-page .entity, .compare-products-page .panel.panel-default, .news-list-page .item, .private-message-view-page .view-message, .private-messages-page .panel.panel-default, .forum-topic-page .topic-posts, .forum-topic-content-top, .forum-subscriptions-page .panel.panel-default, .forum-page .forum-top, .forums-table-section, .reward-points-page.panel.panel-default, .back-in-stock-subscription-list-page .panel.panel-default, .downloadable-products-page .panel.panel-default, .return-request-page .section .panel.panel-default, .shipment-details-page .section .panel.panel-default, .order-details-page .section .panel.panel-default {
+ box-shadow: 0px 0px 10px #ddd;
+ -webkit-box-shadow: 0px 0px 10px #ddd;
+ -moz-box-shadow: 0px 0px 10px #ddd;
+ border-color: #ededed;
+ font-size: 14px;
+}
+
+ .wishlist-page .section .panel.panel-default table tbody tr td, .wishlist-page .panel.panel-default > table, .reward-points-page .panel.panel-default table, .reward-points-page .panel.panel-default table thead tr th, .reward-points-page .panel.panel-default table tbody tr td, .compare-products-page .panel.panel-default table, .compare-products-page .panel.panel-default tbody tr td, .private-messages-page .panel.panel-default table tbody tr td, .private-messages-page .panel.panel-default table thead tr th, .private-messages-page .panel.panel-default table, .forum-subscriptions-page .subscription-list table thead tr th, .forum-subscriptions-page .subscription-list table tbody tr td, .forum-subscriptions-page .subscription-list table, .forums-table-section table thead tr th, .forums-table-section table tbody tr td, .forums-table-section table, .reward-points-page.panel.panel-default table thead tr th, .reward-points-page.panel.panel-default table tbody tr td, .reward-points-page.panel.panel-default table, .back-in-stock-subscription-list-page .panel.panel-default table thead tr th, .back-in-stock-subscription-list-page .panel.panel-default table tbody tr td, .back-in-stock-subscription-list-page .panel.panel-default table, .shipment-details-page .section .panel.panel-default table, .shipment-details-page .section .panel.panel-default table tbody tr td, .shipment-details-page .section .panel.panel-default table thead tr th, .order-details-page .section .panel.panel-default table, .order-details-page .section .panel.panel-default table tbody tr td, .order-details-page .section .panel.panel-default table thead tr th {
+ border: none;
+ padding: 10px;
+ vertical-align: middle;
+ text-align: center !important;
+ }
+
+ .reward-points-page .panel.panel-default table tbody tr, .compare-products-page .panel.panel-default table tbody tr, .private-messages-page .panel.panel-default table tbody tr, .forum-subscriptions-page .subscription-list table tbody tr, .forums-table-section table tbody tr, .reward-points-page.panel.panel-default table tbody tr, .back-in-stock-subscription-list-page .panel.panel-default table tbody tr, .shipment-details-page .section .panel.panel-default table tbody tr, .order-details-page .section .panel.panel-default table tbody tr {
+ border-top: 1px solid #ddd;
+ }
+
+ .order-details-page .section .panel.panel-default table .a-center.name {
+ text-align: left;
+ }
+
+ .shipment-details-page .section .panel.panel-default table .a-left.name em, .order-details-page .section .panel.panel-default table .a-left.name em {
+ font-style: normal;
+ }
+
+ .order-details-page .section .panel.panel-default table .a-left.name {
+ width: 50%;
+ text-align: left !important;
+ font-weight: 700;
+ }
/* RETUN REQUEST AND RETURN REQUEST LIST PAGE STYLE */
-.return-request-page .page-title {text-align:center;}
-.return-request-page .page-title h1 a{color:var(--red);}
-.return-request-page select {width: 100%; text-align:left;}
-.request-item ul{list-style: none;margin-bottom:0;}
-.return-request-page .section .table , .return-request-page .section .title , .return-request-page .fieldset .title{margin-bottom:20px;text-align:left;}
-.return-request-page .section{margin-bottom:20px;}
-.downloadable-products-page table th{padding: 10px 0 20px 0;text-align:center;}
-.return-request-page textarea.form-control {height: 100px;}
-.return-request-page .fieldset label{text-align:left;}
-.downloadable-products-page .panel.panel-default table thead tr th,.downloadable-products-page .panel.panel-default table tbody tr td,.downloadable-products-page .panel.panel-default table,.return-request-page .panel.panel-default table,.return-request-page .panel.panel-default table tbody tr td,.return-request-page .panel.panel-default table thead tr th{border:none;padding:10px;vertical-align:middle;}
-.downloadable-products-page .panel.panel-default table tbody tr,.return-request-page .panel.panel-default table tbody tr{border-top:1px solid #ddd;}
-.downloadable-products-page .panel.panel-default table,.return-request-page .panel.panel-default table{margin-bottom:0px;}
-.order-details-page .section.products .panel.panel-default table tbody tr .prices-alignment-right,.return-request-page .panel.panel-default table tbody tr .prices-alignment-right{text-align:center !Important;}
-.return-request-list-page .section{margin-bottom:30px;border:1px solid #ededed;box-shadow:0px 0px 10px #ddd;-webkit-box-shadow: 0px 0px 10px #ddd;-moz-box-shadow: 0px 0px 10px #ddd;}
-.return-request-list-page .section .details{padding:0 10px 15px;}
-.return-request-list-page .section .comments > div{height:80px;overflow:hidden;}
+.return-request-page .page-title {
+ text-align: center;
+}
+
+ .return-request-page .page-title h1 a {
+ color: #aaa081;
+ }
+
+.return-request-page select {
+ width: 100%;
+ text-align: left;
+}
+
+.request-item ul {
+ list-style: none;
+ margin-bottom: 0;
+}
+
+.return-request-page .section .table, .return-request-page .section .title, .return-request-page .fieldset .title {
+ margin-bottom: 20px;
+ text-align: left;
+}
+
+.return-request-page .section {
+ margin-bottom: 20px;
+}
+
+.downloadable-products-page table th {
+ padding: 10px 0 20px 0;
+ text-align: center;
+}
+
+.return-request-page textarea.form-control {
+ height: 100px;
+}
+
+.return-request-page .fieldset label {
+ text-align: left;
+}
+
+.downloadable-products-page .panel.panel-default table thead tr th, .downloadable-products-page .panel.panel-default table tbody tr td, .downloadable-products-page .panel.panel-default table, .return-request-page .panel.panel-default table, .return-request-page .panel.panel-default table tbody tr td, .return-request-page .panel.panel-default table thead tr th {
+ border: none;
+ padding: 10px;
+ vertical-align: middle;
+}
+
+ .downloadable-products-page .panel.panel-default table tbody tr, .return-request-page .panel.panel-default table tbody tr {
+ border-top: 1px solid #ddd;
+ }
+
+.downloadable-products-page .panel.panel-default table, .return-request-page .panel.panel-default table {
+ margin-bottom: 0px;
+}
+
+ .order-details-page .section.products .panel.panel-default table tbody tr .prices-alignment-right, .return-request-page .panel.panel-default table tbody tr .prices-alignment-right {
+ text-align: center !Important;
+ }
+
+.return-request-list-page .section {
+ margin-bottom: 30px;
+ border: 1px solid #ededed;
+ box-shadow: 0px 0px 10px #ddd;
+ -webkit-box-shadow: 0px 0px 10px #ddd;
+ -moz-box-shadow: 0px 0px 10px #ddd;
+}
+
+ .return-request-list-page .section .details {
+ padding: 0 10px 15px;
+ }
+
+ .return-request-list-page .section .comments > div {
+ height: 80px;
+ overflow: hidden;
+ }
/* DOWNLOAD PRODUCT PAGE STYLE */
-.downloadable-products-page .panel.panel-default table .a-center.product{text-align:left;}
-.reward-points-page .panel.panel-default table tbody tr td,.downloadable-products-page .panel.panel-default table tbody tr td{color:#666;font-size:14px;}
-.avatar-page .validation-summary-errors ul li{background: #f2dede;color: #a94442;font-size: 14px;margin-top: 5px;padding: 5px;margin-bottom:10px;}
-.downloadable-products-page .panel.panel-default table a{color:var(--red);}
-.downloadable-products-page .panel.panel-default table a:hover{color:var(--grey-black);}
+.downloadable-products-page .panel.panel-default table .a-center.product {
+ text-align: left;
+}
+
+.reward-points-page .panel.panel-default table tbody tr td, .downloadable-products-page .panel.panel-default table tbody tr td {
+ color: #666;
+ font-size: 14px;
+}
+
+.avatar-page .validation-summary-errors ul li {
+ background: #f2dede;
+ color: #a94442;
+ font-size: 14px;
+ margin-top: 5px;
+ padding: 5px;
+ margin-bottom: 10px;
+}
+
+.downloadable-products-page .panel.panel-default table a {
+ color: #aaa081;
+}
+
+ .downloadable-products-page .panel.panel-default table a:hover {
+ color: var(--grey-black);
+ }
/* FORUM MAIN AND COMMON PAGE STYLE */
-.forums-main-page .forums-main-header{height:50px;margin-bottom:10px;}
-.forums-main-page .forums-main-header .current-time,.active-discussions-page .forums-header .current-time,.current-time{text-align:right;margin-bottom:15px;color:#666;}
-.forum-search-box{text-align:right;margin-bottom:20px;}
-.forums-table-section {margin-bottom:40px;float:left;width:100%;}
-.forums-table-section-title{padding:15px;background:#f9f9f9;border-bottom:1px solid #ddd;float:left;width:100%;}
-.forums-table-section-title a{font-weight:700;}
-.forums-table-section-title .link-rss{margin:0 0 0 10px;float:right;}
-.forums-table-section-title .view-all{float:right;text-align:right;}
-.forums-table-section .topic-name{text-align:left;}
-.forums-table-section th.last-post{width:25%;text-align:center}
-.forums-table-section th.forum-name,.forums-main-page .forums-table-section td.forum-name ,.forums-main-page .forums-table-section td.topic-name{text-align:left;width: 55%;}
-.forums-table-section td{text-align:center;}
-.forums-table-section td.forum-name .forum-title a:hover,.forum-search-box .advanced a:hover,.forums-main-page .active-discussions .view-all a:hover{color:var(--grey-black);}
-.forum-group-page .forums-table-section td,.forum-search-page .forums-table-section td,.active-discussions-page .forums-table-section td,.forum-page .forums-table-section td,.forums-main-page .forums-table-section td{color:#666;}
-.forums-table-section td.forum-name .forum-title a{display:block;font-weight:700;margin-bottom:3px;display:inline-block;}
-.forums-table-section td.forum-name .forum-title a,.forum-search-box .advanced a,.forums-main-page .active-discussions .view-all a{color:var(--red);}
-.forums-table-section td.last-post .author label,.forums-table-section .last-post .origin label{display: inline;}
-.forums-table-section td.topic-name .topic-type{font-size:0.9em;line-height:18px;}
-.forum-group-page .posts,.forum-group-page .topics,.forum-page .replies,.forum-page .views,.active-discussions-page .forums-table-section-body .replies,.active-discussions-page .forums-table-section-body .views,.active-discussions-page .forums-table-section-body .last-post,.forum-search-page .forums-table-section.topics-group .replies,.forum-search-page .forums-table-section.topics-group .views,.forum-search-page .forums-table-section.topics-group .last-post,.forums-main-page .forums-table-section.topics-group .replies,.forums-main-page .forums-table-section.topics-group .views,.forums-main-page .forums-table-section.topics-group .last-post{text-align:center;}
-.forums-main-page .forums-table-section th.topics ,.forums-main-page .forums-table-section th.replies ,.forums-main-page .forums-table-section th.views ,.forums-main-page .forums-table-section th.posts{width:10%;text-align:center}
-.forums-main-page .forums-header{float:left;width:100%;}
-.forums-main-page .topic-html-content .panel-heading{padding:0px;margin-bottom:10px;}
-.forums-main-page .topic-html-content{border:none;text-align:center;}
-.forums-main-page .active-discussions .view-all a{padding:15px;float:left;}
-.forum-search-box{float:left;position:relative;}
-.forum-search-box .navbar-form{padding-left:0px;}
-.search-box-text{float:left; height:34px; padding:0px 12px;margin-right:-3px;border:none;box-shadow:none;}
-.forum-search-box .search-box-text{background:#fff;border-bottom:1px solid #ddd;width:400px;padding-left:5px;}
-.forum-search-box .search-nav:focus{border-color:var(--red);}
-.forum-search-box .btn.search-box-button{font-size:0;background:url("../images/search-icon.png") no-repeat 0px 0px;border-radius:0px;width:34px;height:34px;transition:all 0.3s ease-in-out 0s;-webkit-transition:all 0.3s ease-in-out 0s;-moz-transition:all 0.3s ease-in-out 0s;-o-transition:all 0.3s ease-in-out 0s;right:-10px;position:absolute;z-index:1;padding:0px;}
-.forum-search-box .btn.search-box-button:hover{background:url("../images/search-icon.png") no-repeat 0px -34px;}
-.forum-search-box .form-control ,.forum-search-box .btn{border-radius:0;}
-.forum-search-box .advanced{margin-top:15px;float:left;width:100%;}
-.forums-table-section .panel.panel-default{border:none;margin-bottom:0px;}
-.forum-page .forum-top{padding:15px;margin-bottom:40px;}
-.forum-page .forums-table-section table tr .image{width:3%;}
-.forums-table-section .topic-name a{font-weight:700;}
-.forum-subscriptions-page .new-product-iteam a{color:var(--grey-black);font-weight:700;}
-.forum-subscriptions-page .new-product-iteam a:hover{color:var(--red);}
-.private-message-send-page .page-title h1,.move-topic-page .page-title h1,.forum-edit-page h1,.forum-search-page .panel-heading h1,.forums-main-page .topic-html-content .panel-heading h1{text-align:center;}
-.active-discussions-page .active-discussions .topic-details .topic-title a{color:var(--grey-black);}
-.active-discussions-page .active-discussions .topic-details .topic-title a:hover{color:var(--red);}
-.active-discussions-page .active-discussions .topic-details .topic-starter a{color:var(--red);}
-.active-discussions-page .active-discussions .topic-details .topic-starter a:hover{color:var(--grey-black);}
+.forums-main-page .forums-main-header {
+ height: 50px;
+ margin-bottom: 10px;
+}
+
+ .forums-main-page .forums-main-header .current-time, .active-discussions-page .forums-header .current-time, .current-time {
+ text-align: right;
+ margin-bottom: 15px;
+ color: #666;
+ }
+
+.forum-search-box {
+ text-align: right;
+ margin-bottom: 20px;
+}
+
+.forums-table-section {
+ margin-bottom: 40px;
+ float: left;
+ width: 100%;
+}
+
+.forums-table-section-title {
+ padding: 15px;
+ background: #f9f9f9;
+ border-bottom: 1px solid #ddd;
+ float: left;
+ width: 100%;
+}
+
+ .forums-table-section-title a {
+ font-weight: 700;
+ }
+
+ .forums-table-section-title .link-rss {
+ margin: 0 0 0 10px;
+ float: right;
+ }
+
+ .forums-table-section-title .view-all {
+ float: right;
+ text-align: right;
+ }
+
+.forums-table-section .topic-name {
+ text-align: left;
+}
+
+.forums-table-section th.last-post {
+ width: 25%;
+ text-align: center
+}
+
+.forums-table-section th.forum-name, .forums-main-page .forums-table-section td.forum-name, .forums-main-page .forums-table-section td.topic-name {
+ text-align: left;
+ width: 55%;
+}
+
+.forums-table-section td {
+ text-align: center;
+}
+
+ .forums-table-section td.forum-name .forum-title a:hover, .forum-search-box .advanced a:hover, .forums-main-page .active-discussions .view-all a:hover {
+ color: var(--grey-black);
+ }
+
+.forum-group-page .forums-table-section td, .forum-search-page .forums-table-section td, .active-discussions-page .forums-table-section td, .forum-page .forums-table-section td, .forums-main-page .forums-table-section td {
+ color: #666;
+}
+
+.forums-table-section td.forum-name .forum-title a {
+ display: block;
+ font-weight: 700;
+ margin-bottom: 3px;
+ display: inline-block;
+}
+
+.forums-table-section td.forum-name .forum-title a, .forum-search-box .advanced a, .forums-main-page .active-discussions .view-all a {
+ color: #aaa081;
+}
+
+.forums-table-section td.last-post .author label, .forums-table-section .last-post .origin label {
+ display: inline;
+}
+
+.forums-table-section td.topic-name .topic-type {
+ font-size: 0.9em;
+ line-height: 18px;
+}
+
+.forum-group-page .posts, .forum-group-page .topics, .forum-page .replies, .forum-page .views, .active-discussions-page .forums-table-section-body .replies, .active-discussions-page .forums-table-section-body .views, .active-discussions-page .forums-table-section-body .last-post, .forum-search-page .forums-table-section.topics-group .replies, .forum-search-page .forums-table-section.topics-group .views, .forum-search-page .forums-table-section.topics-group .last-post, .forums-main-page .forums-table-section.topics-group .replies, .forums-main-page .forums-table-section.topics-group .views, .forums-main-page .forums-table-section.topics-group .last-post {
+ text-align: center;
+}
+
+.forums-main-page .forums-table-section th.topics, .forums-main-page .forums-table-section th.replies, .forums-main-page .forums-table-section th.views, .forums-main-page .forums-table-section th.posts {
+ width: 10%;
+ text-align: center
+}
+
+.forums-main-page .forums-header {
+ float: left;
+ width: 100%;
+}
+
+.forums-main-page .topic-html-content .panel-heading {
+ padding: 0px;
+ margin-bottom: 10px;
+}
+
+.forums-main-page .topic-html-content {
+ border: none;
+ text-align: center;
+}
+
+.forums-main-page .active-discussions .view-all a {
+ padding: 15px;
+ float: left;
+}
+
+.forum-search-box {
+ float: left;
+ position: relative;
+}
+
+ .forum-search-box .navbar-form {
+ padding-left: 0px;
+ }
+
+.search-box-text {
+ float: left;
+ height: 34px;
+ padding: 0px 12px;
+ margin-right: -3px;
+ border: none;
+ box-shadow: none;
+}
+
+.forum-search-box .search-box-text {
+ background: #fff;
+ border-bottom: 1px solid #ddd;
+ width: 400px;
+ padding-left: 5px;
+}
+
+.forum-search-box .search-nav:focus {
+ border-color: #aaa081;
+}
+
+.forum-search-box .btn.search-box-button {
+ font-size: 0;
+ background: url("../images/search-icon.png") no-repeat 0px 0px;
+ border-radius: 0px;
+ width: 34px;
+ height: 34px;
+ transition: all 0.3s ease-in-out 0s;
+ -webkit-transition: all 0.3s ease-in-out 0s;
+ -moz-transition: all 0.3s ease-in-out 0s;
+ -o-transition: all 0.3s ease-in-out 0s;
+ right: -10px;
+ position: absolute;
+ z-index: 1;
+ padding: 0px;
+}
+
+ .forum-search-box .btn.search-box-button:hover {
+ background: url("../images/search-icon.png") no-repeat 0px -34px;
+ }
+
+.forum-search-box .form-control, .forum-search-box .btn {
+ border-radius: 0;
+}
+
+.forum-search-box .advanced {
+ margin-top: 15px;
+ float: left;
+ width: 100%;
+}
+
+.forums-table-section .panel.panel-default {
+ border: none;
+ margin-bottom: 0px;
+}
+
+.forum-page .forum-top {
+ padding: 15px;
+ margin-bottom: 40px;
+}
+
+.forum-page .forums-table-section table tr .image {
+ width: 3%;
+}
+
+.forums-table-section .topic-name a {
+ font-weight: 700;
+}
+
+.forum-subscriptions-page .new-product-iteam a {
+ color: var(--grey-black);
+ font-weight: 700;
+}
+
+ .forum-subscriptions-page .new-product-iteam a:hover {
+ color: #aaa081;
+ }
+
+.private-message-send-page .page-title h1, .move-topic-page .page-title h1, .forum-edit-page h1, .forum-search-page .panel-heading h1, .forums-main-page .topic-html-content .panel-heading h1 {
+ text-align: center;
+}
+
+.active-discussions-page .active-discussions .topic-details .topic-title a {
+ color: var(--grey-black);
+}
+
+ .active-discussions-page .active-discussions .topic-details .topic-title a:hover {
+ color: #aaa081;
+ }
+
+.active-discussions-page .active-discussions .topic-details .topic-starter a {
+ color: #aaa081;
+}
+
+ .active-discussions-page .active-discussions .topic-details .topic-starter a:hover {
+ color: var(--grey-black);
+ }
/* FORUM PAGE STYLE */
-.forum-page .forum-top:after{content:".";display:block;clear:both;height:0;font-size:0;line-height:0;visibility:hidden;}
-.forum-page .forum-top .forum-info{float:left;}
-.forum-page .forum-top .forum-info .forum-name{font-weight:700;font-size:1.2em;line-height:25px;}
-.forum-page .forum-top .forum-info .forum-description{margin-bottom:10px;}
-.forum-page .forum-top .actions{float:right;text-align:right;margin-top:0px;}
-.forum-page .forum-top .actions .newtopic{padding:0 5px 3px 3px;}
-.forum-page .forum-top .actions .watch-forum{padding-left:5px;}
-.forum-page .pager ul{float:left;margin:5px 0;}
-.forum-group-page , .forum-breadcrumb , .active-discussions-page , .forum-page{clear:both;}
-.forum-page .forums-table-section{ border:0; padding:0;}
-.forum-group-page .forums-table-section .forum-name{text-align:left}
-.forum-group-page .forums-table-section{background:#fff;}
-.forum-page .forum-top .forum-info .forum-name h1{font-size: 1.2em;font-weight: 700;line-height: 25px;margin-top: 0;display: inline-block;padding-right: 10px;}
-.topics-group .author a,.forum-page .watch-forum:hover i{color:var(--grey-black);}
-.topics-group .author a:hover{color:var(--red);}
-.forum-page .actions i,.forum-topic-content-top .actions i,.forum-topic-page .topic-post .post-head .manage-post i,.forum-topic-page .topic-actions.lower i{cursor:pointer;transition:all 0.3s ease-in-out 0s;-webkit-transition:all 0.3s ease-in-out 0s;-moz-transition:all 0.3s ease-in-out 0s;-o-transition:all 0.3s ease-in-out 0s;}
-.new-topic{font-family:'Lato',sans-serif;}
+.forum-page .forum-top:after {
+ content: ".";
+ display: block;
+ clear: both;
+ height: 0;
+ font-size: 0;
+ line-height: 0;
+ visibility: hidden;
+}
+
+.forum-page .forum-top .forum-info {
+ float: left;
+}
+
+ .forum-page .forum-top .forum-info .forum-name {
+ font-weight: 700;
+ font-size: 1.2em;
+ line-height: 25px;
+ }
+
+ .forum-page .forum-top .forum-info .forum-description {
+ margin-bottom: 10px;
+ }
+
+.forum-page .forum-top .actions {
+ float: right;
+ text-align: right;
+ margin-top: 0px;
+}
+
+ .forum-page .forum-top .actions .newtopic {
+ padding: 0 5px 3px 3px;
+ }
+
+ .forum-page .forum-top .actions .watch-forum {
+ padding-left: 5px;
+ }
+
+.forum-page .pager ul {
+ float: left;
+ margin: 5px 0;
+}
+
+.forum-group-page, .forum-breadcrumb, .active-discussions-page, .forum-page {
+ clear: both;
+}
+
+ .forum-page .forums-table-section {
+ border: 0;
+ padding: 0;
+ }
+
+ .forum-group-page .forums-table-section .forum-name {
+ text-align: left
+ }
+
+ .forum-group-page .forums-table-section {
+ background: #fff;
+ }
+
+ .forum-page .forum-top .forum-info .forum-name h1 {
+ font-size: 1.2em;
+ font-weight: 700;
+ line-height: 25px;
+ margin-top: 0;
+ display: inline-block;
+ padding-right: 10px;
+ }
+
+ .topics-group .author a, .forum-page .watch-forum:hover i {
+ color: var(--grey-black);
+ }
+
+ .topics-group .author a:hover {
+ color: #aaa081;
+ }
+
+ .forum-page .actions i, .forum-topic-content-top .actions i, .forum-topic-page .topic-post .post-head .manage-post i, .forum-topic-page .topic-actions.lower i {
+ cursor: pointer;
+ transition: all 0.3s ease-in-out 0s;
+ -webkit-transition: all 0.3s ease-in-out 0s;
+ -moz-transition: all 0.3s ease-in-out 0s;
+ -o-transition: all 0.3s ease-in-out 0s;
+ }
+
+.new-topic {
+ font-family: 'Lato',sans-serif;
+}
/* FORUM SEARCH PAGE STYLE */
-.basic-search .controls{padding-top: 3px;}
-.forum-search-page .forum-search-panel .search-error{color:red;}
-.forum-search-page .basic-search{margin-bottom:10px;}
-.forum-search-page .forum-search-button { margin-top:0px;}
-.forum-search-page .advanced-search{margin-bottom:10px;padding-top:10px;}
-.forum-search-page .inputs{padding:4px;}
-.forum-search-page .inputs label{display:inline-block;width:140px;}
-.forum-search-page .pager ul{float:left;margin:5px 0;}
-.forum-search-page .form-group label{text-align:left;}
-.search-input .basic-search .col-md-3{padding-right:0;}
-.forum-search-box .form-group {margin-bottom: 0px ;}
-.forum-search-page .search-results .forums-table-section{border:none;}
-.forum-search-page .search-results .forums-table-section table{width:100%;}
-.forum-search-page .forums-table-section{padding:0;}
-.forum-search-page .checkbox > input {margin-top: 0 !important;}
-.forum-search-page .checkbox label{padding-left:10px;}
-.forum-search-page .forum-serach-input{float:left;width:100%;}
-.forum-search-page .forum-serach-input .checkbox{clear:both;float:left;width:100%;text-align:left;margin-top:20px;}
+.basic-search .controls {
+ padding-top: 3px;
+}
+
+.forum-search-page .forum-search-panel .search-error {
+ color: red;
+}
+
+.forum-search-page .basic-search {
+ margin-bottom: 10px;
+}
+
+.forum-search-page .forum-search-button {
+ margin-top: 0px;
+}
+
+.forum-search-page .advanced-search {
+ margin-bottom: 10px;
+ padding-top: 10px;
+}
+
+.forum-search-page .inputs {
+ padding: 4px;
+}
+
+ .forum-search-page .inputs label {
+ display: inline-block;
+ width: 140px;
+ }
+
+.forum-search-page .pager ul {
+ float: left;
+ margin: 5px 0;
+}
+
+.forum-search-page .form-group label {
+ text-align: left;
+}
+
+.search-input .basic-search .col-md-3 {
+ padding-right: 0;
+}
+
+.forum-search-box .form-group {
+ margin-bottom: 0px;
+}
+
+.forum-search-page .search-results .forums-table-section {
+ border: none;
+}
+
+ .forum-search-page .search-results .forums-table-section table {
+ width: 100%;
+ }
+
+.forum-search-page .forums-table-section {
+ padding: 0;
+}
+
+.forum-search-page .checkbox > input {
+ margin-top: 0 !important;
+}
+
+.forum-search-page .checkbox label {
+ padding-left: 10px;
+}
+
+.forum-search-page .forum-serach-input {
+ float: left;
+ width: 100%;
+}
+
+ .forum-search-page .forum-serach-input .checkbox {
+ clear: both;
+ float: left;
+ width: 100%;
+ text-align: left;
+ margin-top: 20px;
+ }
/* FORUM TOPIC PAGE STYLE */
-.forums-header::after{clear: both;content: "";display: block;}
-.forums-header{margin-bottom:25px;}
-.forum-topic-content-top{text-align:center;padding:15px;margin-bottom:40px;float:left;width:100%;}
-.forum-topic-content-top h2{text-transform:capitalize;font-size:22px;margin:0px 0px 15px 0px;}
-.forum-topic-content-top .actions .actions-btn{padding:8px;display:inline-block;line-height:14px;color:#888}
-.forum-topic-page .topic-actions.lower i:hover,.forum-topic-page .topic-actions.lower i:hover a,.forum-topic-content-top .actions .actions-btn:hover i,.forum-topic-content-top .actions .actions-btn:hover a,.forum-topic-page .topic-post .post-head .manage-post i:hover,.forum-topic-page .topic-post .post-head .manage-post i:hover a{color:var(--red);}
-.forum-topic-page .topic-actions.lower a,.forum-topic-content-top .actions .actions-btn a{margin-left:5px;color:#888;font-size:13px;font-weight:700;}
-.forum-topic-page .topic-posts{padding:50px;float:left;width:100%;color:#888;margin-bottom:30px;}
-.forum-topic-page .topic-post{float:left;width:100%;padding:20px;}
-.topic-post .post-info{float: left;margin: 0;width:15%;}
-.topic-post .post-info{text-align: left;}
-.topic-post .post-content{float: right;width: 85%;}
-.forum-topic-page .topic-post .post-info{text-align:center;}
-.forum-topic-page .topic-post .post-info .user-info a{color:var(--grey-black);}
-.forum-topic-page .topic-post .post-info .user-info a:hover{color:var(--red);}
-.forum-topic-page .topic-post .user-info a{background:#f5f5f5;padding:15px;float:left;width:100%;margin-bottom:20px;text-align:center;font-weight:700;color:#666;}
-.forum-topic-page .topic-post .user-info .avatar{text-align:center;clear:both;margin-bottom:15px;}
-.profile-page .profile-info-box .user-details .send-pm-box{text-align:center;}
-.forum-topic-page .topic-post .post-info .send-pm a,.profile-page .profile-info-box .user-details .send-pm-box a{background:var(--grey-black);padding:8px;color:#fff;float:left;width:100%;margin-top:5px;}
-.forum-topic-page .topic-post .post-info .send-pm a:hover,.profile-page .profile-info-box .user-details .send-pm-box a:hover{background:var(--red);color:#fff;}
-.forum-topic-page .topic-post .post-head{background:#f5f5f5;padding:15px;float:left;width:100%;margin-bottom:20px;color:#666;}
-.forum-topic-page .topic-post .post-body{clear:both;padding:0px 15px;line-height:22px;letter-spacing:0.5px;word-break: break-word;}
-.forum-topic-page .topic-post .post-head .post-time label{margin-bottom:0px;}
-.forum-topic-page .topic-post .post-head .quote-post,.forum-topic-page .topic-post .post-head .manage-post,.forum-topic-page .topic-post .post-head .post-time{float:left;}
-.forum-topic-page .topic-post .post-head .post-actions{float:right;}
-.forum-topic-page .topic-post .post-head .manage-post i,.forum-topic-page .topic-actions.lower i{color:#888;}
-.forum-topic-page .topic-post .post-head .manage-post a{color: #888;font-size: 13px;font-weight: 700;margin-left: 5px;margin-right:20px;}
-.forum-topic-page .topic-post .post-head .quote-post a{color:var(--red);font-weight:700;margin-right:15px;}
-.forum-topic-page .topic-post .post-head .quote-post a:hover{color:var(--grey-black);}
-.forum-topic-page .topic-actions.lower{clear:both;text-align:center;}
-.forum-topic-page .topic-actions.lower a{margin-right:15px;}
+.forums-header::after {
+ clear: both;
+ content: "";
+ display: block;
+}
+
+.forums-header {
+ margin-bottom: 25px;
+}
+
+.forum-topic-content-top {
+ text-align: center;
+ padding: 15px;
+ margin-bottom: 40px;
+ float: left;
+ width: 100%;
+}
+
+ .forum-topic-content-top h2 {
+ text-transform: capitalize;
+ font-size: 22px;
+ margin: 0px 0px 15px 0px;
+ }
+
+ .forum-topic-content-top .actions .actions-btn {
+ padding: 8px;
+ display: inline-block;
+ line-height: 14px;
+ color: #888
+ }
+
+ .forum-topic-page .topic-actions.lower i:hover, .forum-topic-page .topic-actions.lower i:hover a, .forum-topic-content-top .actions .actions-btn:hover i, .forum-topic-content-top .actions .actions-btn:hover a, .forum-topic-page .topic-post .post-head .manage-post i:hover, .forum-topic-page .topic-post .post-head .manage-post i:hover a {
+ color: #aaa081;
+ }
+
+ .forum-topic-page .topic-actions.lower a, .forum-topic-content-top .actions .actions-btn a {
+ margin-left: 5px;
+ color: #888;
+ font-size: 13px;
+ font-weight: 700;
+ }
+
+.forum-topic-page .topic-posts {
+ padding: 50px;
+ float: left;
+ width: 100%;
+ color: #888;
+ margin-bottom: 30px;
+}
+
+.forum-topic-page .topic-post {
+ float: left;
+ width: 100%;
+ padding: 20px;
+}
+
+.topic-post .post-info {
+ float: left;
+ margin: 0;
+ width: 15%;
+}
+
+.topic-post .post-info {
+ text-align: left;
+}
+
+.topic-post .post-content {
+ float: right;
+ width: 85%;
+}
+
+.forum-topic-page .topic-post .post-info {
+ text-align: center;
+}
+
+ .forum-topic-page .topic-post .post-info .user-info a {
+ color: var(--grey-black);
+ }
+
+ .forum-topic-page .topic-post .post-info .user-info a:hover {
+ color: #aaa081;
+ }
+
+.forum-topic-page .topic-post .user-info a {
+ background: #f5f5f5;
+ padding: 15px;
+ float: left;
+ width: 100%;
+ margin-bottom: 20px;
+ text-align: center;
+ font-weight: 700;
+ color: #666;
+}
+
+.forum-topic-page .topic-post .user-info .avatar {
+ text-align: center;
+ clear: both;
+ margin-bottom: 15px;
+}
+
+.profile-page .profile-info-box .user-details .send-pm-box {
+ text-align: center;
+}
+
+ .forum-topic-page .topic-post .post-info .send-pm a, .profile-page .profile-info-box .user-details .send-pm-box a {
+ background: var(--grey-black);
+ padding: 8px;
+ color: #fff;
+ float: left;
+ width: 100%;
+ margin-top: 5px;
+ }
+
+ .forum-topic-page .topic-post .post-info .send-pm a:hover, .profile-page .profile-info-box .user-details .send-pm-box a:hover {
+ background: #aaa081;
+ color: #fff;
+ }
+
+.forum-topic-page .topic-post .post-head {
+ background: #f5f5f5;
+ padding: 15px;
+ float: left;
+ width: 100%;
+ margin-bottom: 20px;
+ color: #666;
+}
+
+.forum-topic-page .topic-post .post-body {
+ clear: both;
+ padding: 0px 15px;
+ line-height: 22px;
+ letter-spacing: 0.5px;
+ word-break: break-word;
+}
+
+.forum-topic-page .topic-post .post-head .post-time label {
+ margin-bottom: 0px;
+}
+
+.forum-topic-page .topic-post .post-head .quote-post, .forum-topic-page .topic-post .post-head .manage-post, .forum-topic-page .topic-post .post-head .post-time {
+ float: left;
+}
+
+.forum-topic-page .topic-post .post-head .post-actions {
+ float: right;
+}
+
+.forum-topic-page .topic-post .post-head .manage-post i, .forum-topic-page .topic-actions.lower i {
+ color: #888;
+}
+
+.forum-topic-page .topic-post .post-head .manage-post a {
+ color: #888;
+ font-size: 13px;
+ font-weight: 700;
+ margin-left: 5px;
+ margin-right: 20px;
+}
+
+.forum-topic-page .topic-post .post-head .quote-post a {
+ color: #aaa081;
+ font-weight: 700;
+ margin-right: 15px;
+}
+
+ .forum-topic-page .topic-post .post-head .quote-post a:hover {
+ color: var(--grey-black);
+ }
+
+.forum-topic-page .topic-actions.lower {
+ clear: both;
+ text-align: center;
+}
+
+ .forum-topic-page .topic-actions.lower a {
+ margin-right: 15px;
+ }
/* FORUM TOPIC EDIT, FORUM POST EDIT, MOVE FORUM TOPIC PAGE STYLE */
-.forum-edit-page .forum-subject-title{padding-top:0px;}
-.forum-edit-page .forum-subject-name{color:#666;}
-.forum-edit-page .inputs{padding:5px 0;}
-.forum-edit-page .field-validation-error{display:block;}
-.forum-edit-page .buttons{margin:5px;}
-.forum-edit-page .form-group label{text-transform:capitalize;}
-.forum-edit-page label.options-checkbox,.forum-edit-page label.checkbox{text-align:left;}
-.forum-edit-page .page-title,.forum-edit-page fieldset legend{text-align:center;font-size:18px;}
-.forum-edit-page .form-group.form-submit{clear:both;}
-.forum-edit-page .form-group{overflow:hidden;}
-.forum-edit-page .checkbox{color:#666;}
-.private-messages-page .delete-selected-pm-button,.private-message-send-page .send-pm-button,.forum-edit-page .submit-post-button,.move-topic-page .submit-forum-topic-button,.forum-edit-page .submit-topic-button,.forum-edit-page .checkbox .check-box{margin-right:5px;}
-.move-topic-page .inputs label{color:#555;font-weight:700;white-space:nowrap;width:30%;}
-.forum-edit-page .checkbox{margin-top:0px;}
+.forum-edit-page .forum-subject-title {
+ padding-top: 0px;
+}
+
+.forum-edit-page .forum-subject-name {
+ color: #666;
+}
+
+.forum-edit-page .inputs {
+ padding: 5px 0;
+}
+
+.forum-edit-page .field-validation-error {
+ display: block;
+}
+
+.forum-edit-page .buttons {
+ margin: 5px;
+}
+
+.forum-edit-page .form-group label {
+ text-transform: capitalize;
+}
+
+.forum-edit-page label.options-checkbox, .forum-edit-page label.checkbox {
+ text-align: left;
+}
+
+.forum-edit-page .page-title, .forum-edit-page fieldset legend {
+ text-align: center;
+ font-size: 18px;
+}
+
+.forum-edit-page .form-group.form-submit {
+ clear: both;
+}
+
+.forum-edit-page .form-group {
+ overflow: hidden;
+}
+
+.forum-edit-page .checkbox {
+ color: #666;
+}
+
+ .private-messages-page .delete-selected-pm-button, .private-message-send-page .send-pm-button, .forum-edit-page .submit-post-button, .move-topic-page .submit-forum-topic-button, .forum-edit-page .submit-topic-button, .forum-edit-page .checkbox .check-box {
+ margin-right: 5px;
+ }
+
+.move-topic-page .inputs label {
+ color: #555;
+ font-weight: 700;
+ white-space: nowrap;
+ width: 30%;
+}
+
+.forum-edit-page .checkbox {
+ margin-top: 0px;
+}
/* FORUM INPUTS STYLE */
-.forum-topic-title-text,.pm-title-text{vertical-align:top;font-size:12px;}
-.forum-post-text,.bb-editor-text{min-height:150px;}
-.private-message-subject-text{width:500px;border:1px solid #acacac;vertical-align:top;font-size:12px;}
-.forum-search-text{border:1px solid #ccc;font-size:14px;margin-right:5px;float:left;}
-.forum-search-box-text{border:1px solid #acacac;font-size:12px;}
-.bb-editor-text{border:#cec6b5 1px solid;}
-.quote-post-link-button,.post-link{float:right;padding:0 !important;}
-.post-link{padding:1px 3px;margin-right:5px;border:none; margin-top:1px;}
+.forum-topic-title-text, .pm-title-text {
+ vertical-align: top;
+ font-size: 12px;
+}
+
+.forum-post-text, .bb-editor-text {
+ min-height: 150px;
+}
+
+.private-message-subject-text {
+ width: 500px;
+ border: 1px solid #acacac;
+ vertical-align: top;
+ font-size: 12px;
+}
+
+.forum-search-text {
+ border: 1px solid #ccc;
+ font-size: 14px;
+ margin-right: 5px;
+ float: left;
+}
+
+.forum-search-box-text {
+ border: 1px solid #acacac;
+ font-size: 12px;
+}
+
+.bb-editor-text {
+ border: #cec6b5 1px solid;
+}
+
+.quote-post-link-button, .post-link {
+ float: right;
+ padding: 0 !important;
+}
+
+.post-link {
+ padding: 1px 3px;
+ margin-right: 5px;
+ border: none;
+ margin-top: 1px;
+}
/* PRIVATE MESSAGES PAGE STYLE */
-.private-message-send-page .inputs label{float:left;line-height:20px;}
-.private-message-send-page .toolbar{display:block;}
-.private-message-send-page textarea{margin:0 0 10px 0px;}
-.private-message-view-page .view-message div{margin:10px 0px 5px;}
-.private-message-view-page .view-message label{display:inline-block;font-weight:700;}
-.private-message-send-page .page-title,fieldset legend {text-align:center;}
-.private-message-send-page .form-group label{margin-bottom:5px;padding-top:5px;}
-.send-pm-button{margin-left:15px;}
-.private-messages-page .pagination{display:block;}
-.private-message-send-page .form-group .private-message-title{padding-top:0px;}
-.private-message-username{color:#666;font-weight:700;}
-.private-message-username:hover{color:var(--red);}
-.private-messages-page .tab-content {float: left;margin-top: 0;padding:20px 15px;width: 100%;border:1px solid #ddd;}
-.private-messages-page .nav-tabs{border:none;padding:0;}
-.private-messages-page .nav-tabs li a{font-weight:normal;color:#666;font-size:16px;text-transform:capitalize;}
-.private-messages-page .nav-tabs li.active{margin-bottom:0px;}
-.private-messages-page .nav-tabs li.active a{color:#fff;background:var(--red);font-weight:700;border-color:var(--red);}
-.private-messages-page .nav-tabs li.active a:hover,.private-messages-page .nav-tabs > li.active > a:focus{background:var(--red);}
-.private-messages-page .nav-tabs li.active a::after{content: ' ';height: 0;position: absolute;width: 0;border: 10px solid transparent;border-top-color: var(--red);border: 10px solid transparent;border-top-color: var(--red);top: 100%;left: 50%;margin-left: -10px;}
-.private-messages-page .nav-tabs > li > a {margin-right:15px;border:1px solid #ddd;border-radius:0px;}
-.private-messages-page .nav > .label.label-default > a:hover, .private-messages-page .nav > .label.label-default > a:focus {background-color:transparent;border-color: transparent;text-decoration: none;}
-.private-messages-page .nav-tabs > li > a:focus,.private-messages-page .nav-tabs > li > a:hover {background-color:var(--grey-black);color:#fff;outline:none;}
-.private-messages-page{overflow:hidden;float:left;width:100%;}
-.private-message-view-page .view-message span,.private-messages-page .panel.panel-default td{color:#666;}
-.private-messages-page .panel.panel-default a{color:var(--red);}
-.private-messages-page .panel.panel-default a:hover{color:var(--grey-black);}
-.private-message-view-page .view-message{padding:15px;}
-.private-message-view-page .view-message label{text-transform:capitalize;}
-.private-message-view-page .view-message .btn.btn-default{margin-right:5px;margin-bottom:5px;}
+.private-message-send-page .inputs label {
+ float: left;
+ line-height: 20px;
+}
+
+.private-message-send-page .toolbar {
+ display: block;
+}
+
+.private-message-send-page textarea {
+ margin: 0 0 10px 0px;
+}
+
+.private-message-view-page .view-message div {
+ margin: 10px 0px 5px;
+}
+
+.private-message-view-page .view-message label {
+ display: inline-block;
+ font-weight: 700;
+}
+
+.private-message-send-page .page-title, fieldset legend {
+ text-align: center;
+}
+
+.private-message-send-page .form-group label {
+ margin-bottom: 5px;
+ padding-top: 5px;
+}
+
+.send-pm-button {
+ margin-left: 15px;
+}
+
+.private-messages-page .pagination {
+ display: block;
+}
+
+.private-message-send-page .form-group .private-message-title {
+ padding-top: 0px;
+}
+
+.private-message-username {
+ color: #666;
+ font-weight: 700;
+}
+
+ .private-message-username:hover {
+ color: #aaa081;
+ }
+
+.private-messages-page .tab-content {
+ float: left;
+ margin-top: 0;
+ padding: 20px 15px;
+ width: 100%;
+ border: 1px solid #ddd;
+}
+
+.private-messages-page .nav-tabs {
+ border: none;
+ padding: 0;
+}
+
+ .private-messages-page .nav-tabs li a {
+ font-weight: normal;
+ color: #666;
+ font-size: 16px;
+ text-transform: capitalize;
+ }
+
+ .private-messages-page .nav-tabs li.active {
+ margin-bottom: 0px;
+ }
+
+ .private-messages-page .nav-tabs li.active a {
+ color: #fff;
+ background: #aaa081;
+ font-weight: 700;
+ border-color: #aaa081;
+ }
+
+ .private-messages-page .nav-tabs li.active a:hover, .private-messages-page .nav-tabs > li.active > a:focus {
+ background: #aaa081;
+ }
+
+ .private-messages-page .nav-tabs li.active a::after {
+ content: ' ';
+ height: 0;
+ position: absolute;
+ width: 0;
+ border: 10px solid transparent;
+ border-top-color: #aaa081;
+ border: 10px solid transparent;
+ border-top-color: #aaa081;
+ top: 100%;
+ left: 50%;
+ margin-left: -10px;
+ }
+
+ .private-messages-page .nav-tabs > li > a {
+ margin-right: 15px;
+ border: 1px solid #ddd;
+ border-radius: 0px;
+ }
+
+.private-messages-page .nav > .label.label-default > a:hover, .private-messages-page .nav > .label.label-default > a:focus {
+ background-color: transparent;
+ border-color: transparent;
+ text-decoration: none;
+}
+
+.private-messages-page .nav-tabs > li > a:focus, .private-messages-page .nav-tabs > li > a:hover {
+ background-color: var(--grey-black);
+ color: #fff;
+ outline: none;
+}
+
+.private-messages-page {
+ overflow: hidden;
+ float: left;
+ width: 100%;
+}
+
+ .private-message-view-page .view-message span, .private-messages-page .panel.panel-default td {
+ color: #666;
+ }
+
+ .private-messages-page .panel.panel-default a {
+ color: #aaa081;
+ }
+
+ .private-messages-page .panel.panel-default a:hover {
+ color: var(--grey-black);
+ }
+
+.private-message-view-page .view-message {
+ padding: 15px;
+}
+
+ .private-message-view-page .view-message label {
+ text-transform: capitalize;
+ }
+
+ .private-message-view-page .view-message .btn.btn-default {
+ margin-right: 5px;
+ margin-bottom: 5px;
+ }
/* PROFILE PAGE STYLE */
-.profile-page .profile-info-box .profile-stats{margin-left:200px;padding:10px;}
-.profile-page .profile-info-box .profile-stats .title{margin-bottom:10px;text-transform:uppercase;}
-.profile-page .profile-info-box .profile-stats ul{margin: 0 0 10px 0;}
-.profile-page .profile-info-box .profile-stats li{list-style:none outside none;}
-.profile-page .profile-info-box .user-details{width:180px;float:left;padding:10px;height:100%;border-right:solid 1px #ddd;}
-.profile-page .profile-info-box .user-details .avatar{margin-bottom:5px;text-align:center;}
-.profile-page .profile-info-box .user-details .avatar img{max-width:100%;}
-.profile-page .profile-info-box .user-stats{margin:0;padding:0;}
-.profile-page .profile-info-box .user-stats li{font-weight:700;list-style:none;padding:2px;}
-.profile-page .profile-info-box .user-stats span{color:#555;font-weight:400;}
-.profile-page .user-last-posts .topic{margin-bottom:20px;}
-.profile-page .user-last-posts .topic-title a{color:var(--red);}
-.profile-page .user-last-posts .topic-title a:hover{color:var(--grey-black);}
-.profile-page .user-last-posts .topic-title{font-weight:700;line-height:20px;padding:0 0 5px 10px;}
-.profile-page .user-last-posts .topic-title label{display:inline;}
-.profile-page .user-last-posts .topic-body{padding:0 10px 5px 10px;}
-.profile-page .user-last-posts .topic-body p{margin: 0;}
-.profile-page .user-last-posts .topic-body a{color:#B80709;text-decoration:underline;}
-.profile-page .user-last-posts .topic-body .quote{padding:5px;}
-.profile-page .user-last-posts .topic-data{padding-left:10px;color:#555;font-size:.9em;}
-.profile-page .user-last-posts .topic-data label{display: inline;}
-.profile-page .profile-info-box .profile-stats label , .profile-page .profile-info-box .user-stats label{font-weight:700;display:inline;}
-.profile-page .profile-stats > ul{padding-left:10px;}
-.profile-page .tab-content{float: left;margin-top: 0;padding:20px 15px;width: 100%;border:1px solid #ddd;}
-.profile-page .nav-tabs{border:none;padding:0;}
-.profile-page .nav-tabs li a{font-weight:normal;color:#666;font-size:16px;text-transform:capitalize;}
-.profile-page .nav-tabs li.active{margin-bottom:0px;}
-.profile-page .nav-tabs li.active a{color:#fff;background:var(--red);font-weight:700;border-color:var(--red);}
-.profile-page .nav-tabs li.active a:hover,.profile-page .nav-tabs > li.active > a:focus{background:var(--red);}
-.profile-page .nav-tabs li.active a::after{content: ' ';height: 0;position: absolute;width: 0;border: 10px solid transparent;border-top-color: var(--red);border: 10px solid transparent;border-top-color: var(--red);top: 100%;left: 50%;margin-left: -10px;}
-.profile-page .nav-tabs > li > a {margin-right:15px;border:1px solid #ddd;border-radius:0px;padding:15px 35px;}
-.profile-page .nav > .label.label-default > a:hover, .profile-page .nav > .label.label-default > a:focus {background-color:transparent;border-color: transparent;text-decoration: none;}
-.profile-page .nav-tabs > li > a:focus,.profile-page .nav-tabs > li > a:hover {background-color:var(--grey-black);color:#fff;outline:none;}
-.profile-page{overflow:hidden;float:left;width:100%;}
+.profile-page .profile-info-box .profile-stats {
+ margin-left: 200px;
+ padding: 10px;
+}
+
+ .profile-page .profile-info-box .profile-stats .title {
+ margin-bottom: 10px;
+ text-transform: uppercase;
+ }
+
+ .profile-page .profile-info-box .profile-stats ul {
+ margin: 0 0 10px 0;
+ }
+
+ .profile-page .profile-info-box .profile-stats li {
+ list-style: none outside none;
+ }
+
+.profile-page .profile-info-box .user-details {
+ width: 180px;
+ float: left;
+ padding: 10px;
+ height: 100%;
+ border-right: solid 1px #ddd;
+}
+
+ .profile-page .profile-info-box .user-details .avatar {
+ margin-bottom: 5px;
+ text-align: center;
+ }
+
+ .profile-page .profile-info-box .user-details .avatar img {
+ max-width: 100%;
+ }
+
+.profile-page .profile-info-box .user-stats {
+ margin: 0;
+ padding: 0;
+}
+
+ .profile-page .profile-info-box .user-stats li {
+ font-weight: 700;
+ list-style: none;
+ padding: 2px;
+ }
+
+ .profile-page .profile-info-box .user-stats span {
+ color: #555;
+ font-weight: 400;
+ }
+
+.profile-page .user-last-posts .topic {
+ margin-bottom: 20px;
+}
+
+.profile-page .user-last-posts .topic-title a {
+ color: #aaa081;
+}
+
+ .profile-page .user-last-posts .topic-title a:hover {
+ color: var(--grey-black);
+ }
+
+.profile-page .user-last-posts .topic-title {
+ font-weight: 700;
+ line-height: 20px;
+ padding: 0 0 5px 10px;
+}
+
+ .profile-page .user-last-posts .topic-title label {
+ display: inline;
+ }
+
+.profile-page .user-last-posts .topic-body {
+ padding: 0 10px 5px 10px;
+}
+
+ .profile-page .user-last-posts .topic-body p {
+ margin: 0;
+ }
+
+ .profile-page .user-last-posts .topic-body a {
+ color: #B80709;
+ text-decoration: underline;
+ }
+
+ .profile-page .user-last-posts .topic-body .quote {
+ padding: 5px;
+ }
+
+.profile-page .user-last-posts .topic-data {
+ padding-left: 10px;
+ color: #555;
+ font-size: .9em;
+}
+
+ .profile-page .user-last-posts .topic-data label {
+ display: inline;
+ }
+
+.profile-page .profile-info-box .profile-stats label, .profile-page .profile-info-box .user-stats label {
+ font-weight: 700;
+ display: inline;
+}
+
+.profile-page .profile-stats > ul {
+ padding-left: 10px;
+}
+
+.profile-page .tab-content {
+ float: left;
+ margin-top: 0;
+ padding: 20px 15px;
+ width: 100%;
+ border: 1px solid #ddd;
+}
+
+.profile-page .nav-tabs {
+ border: none;
+ padding: 0;
+}
+
+ .profile-page .nav-tabs li a {
+ font-weight: normal;
+ color: #666;
+ font-size: 16px;
+ text-transform: capitalize;
+ }
+
+ .profile-page .nav-tabs li.active {
+ margin-bottom: 0px;
+ }
+
+ .profile-page .nav-tabs li.active a {
+ color: #fff;
+ background: #aaa081;
+ font-weight: 700;
+ border-color: #aaa081;
+ }
+
+ .profile-page .nav-tabs li.active a:hover, .profile-page .nav-tabs > li.active > a:focus {
+ background: #aaa081;
+ }
+
+ .profile-page .nav-tabs li.active a::after {
+ content: ' ';
+ height: 0;
+ position: absolute;
+ width: 0;
+ border: 10px solid transparent;
+ border-top-color: #aaa081;
+ border: 10px solid transparent;
+ border-top-color: #aaa081;
+ top: 100%;
+ left: 50%;
+ margin-left: -10px;
+ }
+
+ .profile-page .nav-tabs > li > a {
+ margin-right: 15px;
+ border: 1px solid #ddd;
+ border-radius: 0px;
+ padding: 15px 35px;
+ }
+
+.profile-page .nav > .label.label-default > a:hover, .profile-page .nav > .label.label-default > a:focus {
+ background-color: transparent;
+ border-color: transparent;
+ text-decoration: none;
+}
+
+.profile-page .nav-tabs > li > a:focus, .profile-page .nav-tabs > li > a:hover {
+ background-color: var(--grey-black);
+ color: #fff;
+ outline: none;
+}
+
+.profile-page {
+ overflow: hidden;
+ float: left;
+ width: 100%;
+}
/* NEWS BLOCK PAGE STYLE */
-.news-list-page .item{margin-bottom:20px;}
-.news-list-page .news-detail-box{padding:15px;color:#666;clear:both;}
-.news-list-page .news-head{text-align:center;border-bottom:1px solid #ddd;float:left;width:100%;}
-.news-list-page .news-items .news-head a{margin-bottom:0px;float:left;width:100%;padding:10px 0px;color:var(--grey-black);font-weight:700;font-size:16px;}
-.news-list-homepage .news-head a:hover,.news-list-page .news-items .news-head a:hover{color:var(--red);}
-.news-list-page .news-items .news-details{margin-bottom:15px;}
-.news-list-page .news-date{margin:0px 0px 10px 0px;}
-.news-item-page .news-body{clear:both;margin-top:15px;float:left;width:100%;color:#666;}
-.news-item-page .news-date{color:var(--red);}
-.news-item-page .fieldset.new-comment .title{border-bottom: 1px solid #ddd;margin-bottom:20px;padding-bottom:5px;font-size:16px;clear:both;text-align:left;}
-.blogpost-page .user-info .username,.news-item-page .user-info .username{float:left;width:100%;padding:10px;margin-bottom:15px;background:#f6f6f6;color:var(--grey-black);}
-.blogpost-page .user-info .username:hover,.news-item-page .user-info .username:hover{color:var(--red);}
-.news-item-page .comment-list .title,.blogpost-page .comment-list .title{clear: both;float: left;font-size: 18px;margin-bottom: 10px;margin-top: 20px;width: 100%;}
-.news-item-page .user-info,.blogpost-page .user-info{border:none;color: #444;display: block;font-weight: bold;margin: 0 0 -1px;padding:0px 0px 10px 0px;text-align:center;font-size:14px;}
-.news-item-page .comment-time label{display:inline;}
-.news-item-page .comment-content .comment-time,.blog-comment .comment-content .comment-time{background-color: #f6f6f6;font-size: 14px;font-weight: normal;margin: 0;min-height: 40px;padding: 10px 15px;}
-.comment-list .news-comment{border-top:1px solid #ddd;margin-bottom:0px;padding-bottom:0px;float:left;width:100%;}
-.news-item-page .new-comment .buttons{padding-left:10px;}
-.news-comment .comment-info,.comment-content,.blogpost-page .comment-info{padding:0px;}
-.comment-list .comment-content{border-left: 1px solid #ddd;display: table-cell;text-align: left;vertical-align: top;}
-.comment-list .comment-title{margin: 0 0 -20px;padding: 20px;color:#666;font-size:16px;}
-.comment-list .comment-body{padding: 20px;line-height:22px;color:#666;}
+.news-list-page .item {
+ margin-bottom: 20px;
+}
+
+.news-list-page .news-detail-box {
+ padding: 15px;
+ color: #666;
+ clear: both;
+}
+
+.news-list-page .news-head {
+ text-align: center;
+ border-bottom: 1px solid #ddd;
+ float: left;
+ width: 100%;
+}
+
+.news-list-page .news-items .news-head a {
+ margin-bottom: 0px;
+ float: left;
+ width: 100%;
+ padding: 10px 0px;
+ color: var(--grey-black);
+ font-weight: 700;
+ font-size: 16px;
+}
+
+ .news-list-homepage .news-head a:hover, .news-list-page .news-items .news-head a:hover {
+ color: #aaa081;
+ }
+
+.news-list-page .news-items .news-details {
+ margin-bottom: 15px;
+}
+
+.news-list-page .news-date {
+ margin: 0px 0px 10px 0px;
+}
+
+.news-item-page .news-body {
+ clear: both;
+ margin-top: 15px;
+ float: left;
+ width: 100%;
+ color: #666;
+}
+
+.news-item-page .news-date {
+ color: #aaa081;
+}
+
+.news-item-page .fieldset.new-comment .title {
+ border-bottom: 1px solid #ddd;
+ margin-bottom: 20px;
+ padding-bottom: 5px;
+ font-size: 16px;
+ clear: both;
+ text-align: left;
+}
+
+.blogpost-page .user-info .username, .news-item-page .user-info .username {
+ float: left;
+ width: 100%;
+ padding: 10px;
+ margin-bottom: 15px;
+ background: #f6f6f6;
+ color: var(--grey-black);
+}
+
+ .blogpost-page .user-info .username:hover, .news-item-page .user-info .username:hover {
+ color: #aaa081;
+ }
+
+.news-item-page .comment-list .title, .blogpost-page .comment-list .title {
+ clear: both;
+ float: left;
+ font-size: 18px;
+ margin-bottom: 10px;
+ margin-top: 20px;
+ width: 100%;
+}
+
+.news-item-page .user-info, .blogpost-page .user-info {
+ border: none;
+ color: #444;
+ display: block;
+ font-weight: bold;
+ margin: 0 0 -1px;
+ padding: 0px 0px 10px 0px;
+ text-align: center;
+ font-size: 14px;
+}
+
+.news-item-page .comment-time label {
+ display: inline;
+}
+
+.news-item-page .comment-content .comment-time, .blog-comment .comment-content .comment-time {
+ background-color: #f6f6f6;
+ font-size: 14px;
+ font-weight: normal;
+ margin: 0;
+ min-height: 40px;
+ padding: 10px 15px;
+}
+
+.comment-list .news-comment {
+ border-top: 1px solid #ddd;
+ margin-bottom: 0px;
+ padding-bottom: 0px;
+ float: left;
+ width: 100%;
+}
+
+.news-item-page .new-comment .buttons {
+ padding-left: 10px;
+}
+
+.news-comment .comment-info, .comment-content, .blogpost-page .comment-info {
+ padding: 0px;
+}
+
+.comment-list .comment-content {
+ border-left: 1px solid #ddd;
+ display: table-cell;
+ text-align: left;
+ vertical-align: top;
+}
+
+.comment-list .comment-title {
+ margin: 0 0 -20px;
+ padding: 20px;
+ color: #666;
+ font-size: 16px;
+}
+
+.comment-list .comment-body {
+ padding: 20px;
+ line-height: 22px;
+ color: #666;
+}
/* BLOG PAGE STYLE */
-.block.block-blog-archive.well.box-shadow-wrapper .listbox ul li strong{padding:8px 0 8px 25px;font-weight:700;color:#000;}
-.block.block-blog-archive.well.box-shadow-wrapper .listbox .nav.nav-list li a{padding:8px 0 8px 40px;background:rgba(0, 0, 0, 0) url("../images/dot-icon.png") no-repeat scroll 25px center;}
-.block-blog-archive .listbox ul li strong{padding-left:20px;margin-top:10px;float:left;clear:both;}
-.blog-posts .post .post-head , .blogpost-page .comment-list .title{float:left;width:100%;}
-.blog-posts .post .post-body{float:left;width:100%;border:2px solid #eee;padding:20px 15px 30px;color:#666;line-height:22px;}
-.blog-posts .post{float:left;width:100%;}
-.blog-posts .post-head a{display: inline-block;font-size: 16px;font-weight: bold;line-height: 20px;padding:15px 20px;float:left;width:100%;background:var(--grey-black);color:#fff;text-transform:uppercase;}
-.blogpost-page .tags label,.blog-posts .post .tags-list label{float:left;margin-right:15px;text-transform:uppercase;color:#000;}
-.blog-posts .post .tags-list ul,.blogpost-page .tags ul{float:none;overflow:hidden;padding-left:0px;}
-.blog-posts .post .tags-list li,.blogpost-page .tags li{float:left;list-style:none;margin-right:5px;line-height:18px;}
-.blog-posts .post .tags-list,.blogpost-page .tags{margin:15px 0px;}
-.blog-posts .post .tags-list .separator,.blogpost-page .tags .separator{color:var(--red);}
-.blog-posts .post .blog-details{float:left;width:100%;font-size:16px;}
-.blogpost-page .post-date{margin-bottom:10px;text-align:left;padding:0;}
-.blogpost-page .post-body{color:#666;line-height:22px;}
-.blogpost-page .comment-text{max-width:100%;min-height:120px;}
-.blogpost-page .comment-list{margin:0 0 10px 0;}
-.blogpost-page .avatar{width:100%;}
-.blogpost-page .comment-time label{display:inline;}
-.blogpost-page .blog-comment{border-top: 1px solid #ddd;float: left;margin-bottom: 0;padding-bottom: 0;width: 100%;}
-.blogpost-page .fieldset.new-comment .title{margin-bottom:20px; padding-bottom:5px; border-bottom:1px solid #DDD;text-align:left;font-size:16px;}
-.blogpost-page .form-group .category-iteam,.blog-comment .comment-info{text-align:left;}
-.blog-comment .comment-info,.news-item-page .comment-info{border-right:1px solid #ddd;margin-right:-1px;}
-.blog-posts .tags-list ul li a,.blogpost-page .tags ul li a{font-size:16px;padding:0px;font-weight:normal;color:var(--red);}
-.blog-posts .tags-list ul li a:hover,.blogpost-page .tags ul li a:hover{text-decoration:underline;color:var(--grey-black);}
-.blog-posts .btn.btn-primary.read-more{text-transform:uppercase;color:#fff;}
-.blog-details .comments-text{font-weight: bold;display:block;margin-bottom:15px;}
-.post-date{float:right;color:var(--red);width:100%;padding:10px 0px;text-align:right;}
-.blogpost-page .new-comment .form-group label{text-align:left;}
-.blogpost-page .avatar img,.news-item-page .avatar img{max-width:100%;}
-.blog-page .bottom-box-shadow {float: left;width: 100%;margin-bottom:30px;}
-.bottom-box-shadow {background:url("../images/bottom-box-shadow.png") no-repeat scroll left bottom;height: 20px;background-size:100%;}
+.block.block-blog-archive.well.box-shadow-wrapper .listbox ul li strong {
+ padding: 8px 0 8px 25px;
+ font-weight: 700;
+ color: #000;
+}
+
+.block.block-blog-archive.well.box-shadow-wrapper .listbox .nav.nav-list li a {
+ padding: 8px 0 8px 40px;
+ background: rgba(0, 0, 0, 0) url("../images/dot-icon.png") no-repeat scroll 25px center;
+}
+
+.block-blog-archive .listbox ul li strong {
+ padding-left: 20px;
+ margin-top: 10px;
+ float: left;
+ clear: both;
+}
+
+.blog-posts .post .post-head, .blogpost-page .comment-list .title {
+ float: left;
+ width: 100%;
+}
+
+.blog-posts .post .post-body {
+ float: left;
+ width: 100%;
+ border: 2px solid #eee;
+ padding: 20px 15px 30px;
+ color: #666;
+ line-height: 22px;
+}
+
+.blog-posts .post {
+ float: left;
+ width: 100%;
+}
+
+.blog-posts .post-head a {
+ display: inline-block;
+ font-size: 16px;
+ font-weight: bold;
+ line-height: 20px;
+ padding: 15px 20px;
+ float: left;
+ width: 100%;
+ background: var(--grey-black);
+ color: #fff;
+ text-transform: uppercase;
+}
+
+.blogpost-page .tags label, .blog-posts .post .tags-list label {
+ float: left;
+ margin-right: 15px;
+ text-transform: uppercase;
+ color: #000;
+}
+
+.blog-posts .post .tags-list ul, .blogpost-page .tags ul {
+ float: none;
+ overflow: hidden;
+ padding-left: 0px;
+}
+
+.blog-posts .post .tags-list li, .blogpost-page .tags li {
+ float: left;
+ list-style: none;
+ margin-right: 5px;
+ line-height: 18px;
+}
+
+.blog-posts .post .tags-list, .blogpost-page .tags {
+ margin: 15px 0px;
+}
+
+ .blog-posts .post .tags-list .separator, .blogpost-page .tags .separator {
+ color: #aaa081;
+ }
+
+.blog-posts .post .blog-details {
+ float: left;
+ width: 100%;
+ font-size: 16px;
+}
+
+.blogpost-page .post-date {
+ margin-bottom: 10px;
+ text-align: left;
+ padding: 0;
+}
+
+.blogpost-page .post-body {
+ color: #666;
+ line-height: 22px;
+}
+
+.blogpost-page .comment-text {
+ max-width: 100%;
+ min-height: 120px;
+}
+
+.blogpost-page .comment-list {
+ margin: 0 0 10px 0;
+}
+
+.blogpost-page .avatar {
+ width: 100%;
+}
+
+.blogpost-page .comment-time label {
+ display: inline;
+}
+
+.blogpost-page .blog-comment {
+ border-top: 1px solid #ddd;
+ float: left;
+ margin-bottom: 0;
+ padding-bottom: 0;
+ width: 100%;
+}
+
+.blogpost-page .fieldset.new-comment .title {
+ margin-bottom: 20px;
+ padding-bottom: 5px;
+ border-bottom: 1px solid #DDD;
+ text-align: left;
+ font-size: 16px;
+}
+
+.blogpost-page .form-group .category-iteam, .blog-comment .comment-info {
+ text-align: left;
+}
+
+.blog-comment .comment-info, .news-item-page .comment-info {
+ border-right: 1px solid #ddd;
+ margin-right: -1px;
+}
+
+.blog-posts .tags-list ul li a, .blogpost-page .tags ul li a {
+ font-size: 16px;
+ padding: 0px;
+ font-weight: normal;
+ color: #aaa081;
+}
+
+ .blog-posts .tags-list ul li a:hover, .blogpost-page .tags ul li a:hover {
+ text-decoration: underline;
+ color: var(--grey-black);
+ }
+
+.blog-posts .btn.btn-primary.read-more {
+ text-transform: uppercase;
+ color: #fff;
+}
+
+.blog-details .comments-text {
+ font-weight: bold;
+ display: block;
+ margin-bottom: 15px;
+}
+
+.post-date {
+ float: right;
+ color: #aaa081;
+ width: 100%;
+ padding: 10px 0px;
+ text-align: right;
+}
+
+.blogpost-page .new-comment .form-group label {
+ text-align: left;
+}
+
+.blogpost-page .avatar img, .news-item-page .avatar img {
+ max-width: 100%;
+}
+
+.blog-page .bottom-box-shadow {
+ float: left;
+ width: 100%;
+ margin-bottom: 30px;
+}
+
+.bottom-box-shadow {
+ background: url("../images/bottom-box-shadow.png") no-repeat scroll left bottom;
+ height: 20px;
+ background-size: 100%;
+}
/* CONTACT US PAGE STYLE */
-.account-activation-page .page-body{margin:0;padding:0;color:#555;background-color:inherit;}
-.contact-page .topic-html-content{border:none;margin-bottom:0;padding:0; box-shadow:none;}
-.contact-page .contact-details {margin-bottom:15px;}
-.contact-page .inputs{margin-bottom:12px;}
-.contact-page .enquiry{max-width:100%;min-height:120px;margin: 0;}
-.email-a-friend-page .validation-summary-errors ul li, .private-message-send-page .validation-summary-errors ul li, .customer-info-page .validation-summary-errors ul li, .avatar-page .validation-summary-errors ul li, .address-edit-page .validation-summary-errors ul li, .apply-vendor-page .validation-summary-errors ul li, .vendor-contact-page .validation-summary-errors ul li, .community-poll .validation-summary-errors ul li, .change-password-page .validation-summary-errors ul li, .contact-page .validation-summary-errors ul li, .product-reviews-page .validation-summary-errors ul li, .blogpost-page .validation-summary-errors ul li, .news-item-page .validation-summary-errors ul li, .search-page .validation-summary-errors ul li, .registration-page .validation-summary-errors ul li{background:#f2dede;margin-bottom: 10px;padding: 5px 10px;color:#b94a48;clear:both;}
-.contact-page p{margin-bottom:0px;}
-.contact-page .form-horizontal .control-label{text-align:left;}
-.apply-vendor-page .topic-html-content-body,.contact-page .topic-html-content-body{padding:0;margin-bottom:20px;}
+.account-activation-page .page-body {
+ margin: 0;
+ padding: 0;
+ color: #555;
+ background-color: inherit;
+}
+
+.contact-page .topic-html-content {
+ border: none;
+ margin-bottom: 0;
+ padding: 0;
+ box-shadow: none;
+}
+
+.contact-page .contact-details {
+ margin-bottom: 15px;
+}
+
+.contact-page .inputs {
+ margin-bottom: 12px;
+}
+
+.contact-page .enquiry {
+ max-width: 100%;
+ min-height: 120px;
+ margin: 0;
+}
+
+.email-a-friend-page .validation-summary-errors ul li, .private-message-send-page .validation-summary-errors ul li, .customer-info-page .validation-summary-errors ul li, .avatar-page .validation-summary-errors ul li, .address-edit-page .validation-summary-errors ul li, .apply-vendor-page .validation-summary-errors ul li, .vendor-contact-page .validation-summary-errors ul li, .community-poll .validation-summary-errors ul li, .change-password-page .validation-summary-errors ul li, .contact-page .validation-summary-errors ul li, .product-reviews-page .validation-summary-errors ul li, .blogpost-page .validation-summary-errors ul li, .news-item-page .validation-summary-errors ul li, .search-page .validation-summary-errors ul li, .registration-page .validation-summary-errors ul li {
+ background: #f2dede;
+ margin-bottom: 10px;
+ padding: 5px 10px;
+ color: #b94a48;
+ clear: both;
+}
+
+.contact-page p {
+ margin-bottom: 0px;
+}
+
+.contact-page .form-horizontal .control-label {
+ text-align: left;
+}
+
+.apply-vendor-page .topic-html-content-body, .contact-page .topic-html-content-body {
+ padding: 0;
+ margin-bottom: 20px;
+}
/* COLOR SQUARES ATTRIBUTE TYPE STYLE */
-.product-details-page .date-picker-wrapper > select, .product-details-page .date-picker-wrapper > select {border: 1px solid #ccc;padding: 5px 10px;width:auto;}
-.product-details-page .attributes dd{margin:0;}
-.product-details-page .attributes ul.color-squares li,.product-details-page .attributes ul.image-squares li{display:inline;margin-right:10px;position:relative;}
-.product-details-page .attributes ul.color-squares .attribute-square-container,.product-details-page .attributes ul.image-squares .attribute-square-container{position:relative;display:inline-block;padding:1px;line-height: 1em;}
-.product-details-page .attributes ul.color-squares .selected-value .attribute-square-container,.product-details-page .attributes ul.image-squares .selected-value .attribute-square-container{border-color:#bbb;border-width:2px;}
-.product-details-page .attributes ul.color-squares .attribute-square,.product-details-page .attributes ul.image-squares .attribute-square{display:inline-block;width:18px;height:18px;}
-.product-details-page .attributes ul.color-squares label,.product-details-page .attributes ul.image-squares label{cursor:pointer;position:relative; display:inline-block;}
-.product-details-page .attributes ul.color-squares input,.product-details-page .attributes ul.image-squares input{height:0;overflow:hidden;z-index:-10000;position:absolute;float:none; display:none;}
-.product-filters .color-squares,.product-filters .image-squares{font-size: 0;}
-.product-filters .color-squares .attribute-square-container,.product-filters .image-squares .attribute-square-container{display:inline-block;padding: 1px;position: relative;z-index: 0;}
-.product-filters .color-squares .attribute-square,.product-filters .image-squares .attribute-square{border: 1px solid #444 !important;cursor: pointer;display: table !important;height: 32px !important;width: 32px !important;}
-.product-filters .product-spec-color li.color-item{display: inline-block;}
-.product-filters .product-spec-color li.color-item a{padding:0px;width:100%;}
-.color-squares .attribute-square,.image-squares .attribute-square{border: 2px solid #ddd;cursor: pointer;display: table !important;height: 32px !important;width: 32px !important;}
-.tooltip-container{background: #fff none repeat scroll 0 0;border: 1px solid #eee;border-radius: 5px;color: #000;position: absolute;text-align: center;visibility: hidden;width: 200px;left:0px;top:0px;}
-.tooltip-container::after{border-bottom: 6px solid #fff;border-left: 6px solid transparent;border-right: 6px solid transparent;bottom: 100%;content: "";height: 0;left: 50%;margin-left: -6px;position: absolute;width: 0;}
-.tooltip-container::before{border-bottom: 7px solid #eee;border-left: 7px solid transparent;border-right: 7px solid transparent;bottom: 100%;content: "";height: 0;left: 50%;margin-left: -7px;position: absolute;width: 0;}
-.color-squares li:hover .tooltip-container,.image-squares li:hover .tooltip-container{margin-left: -83px;margin-top: 5px;visibility: visible;z-index: 999;}
-.tooltip-container .tooltip-header{background-color: #f6f6f6;border-bottom: 1px solid #eee;border-top-left-radius: 4px;border-top-right-radius: 4px;font-size: 15px;height:30px;padding-left: 10px;padding-top: 5px;text-align: left;width: 198px;}
-.tooltip-container .tooltip-body{margin: 5px;}
-.tooltip-container .tooltip-body img{border: 0 none #fff;width: 190px;}
-.product-details-page .attributes ul.color-squares .selected-value .attribute-square-container .attribute-square,.product-details-page .attributes ul.image-squares .selected-value .attribute-square-container .attribute-square{border-color:var(--red);}
-.attributes ul.color-squares .selected-value .attribute-square-container,.attributes ul.image-squares .selected-value .attribute-square-container{background-color:var(--red);}
+.product-details-page .date-picker-wrapper > select, .product-details-page .date-picker-wrapper > select {
+ border: 1px solid #ccc;
+ padding: 5px 10px;
+ width: auto;
+}
+
+.product-details-page .attributes dd {
+ margin: 0;
+}
+
+.product-details-page .attributes ul.color-squares li, .product-details-page .attributes ul.image-squares li {
+ display: inline;
+ margin-right: 10px;
+ position: relative;
+}
+
+.product-details-page .attributes ul.color-squares .attribute-square-container, .product-details-page .attributes ul.image-squares .attribute-square-container {
+ position: relative;
+ display: inline-block;
+ padding: 1px;
+ line-height: 1em;
+}
+
+.product-details-page .attributes ul.color-squares .selected-value .attribute-square-container, .product-details-page .attributes ul.image-squares .selected-value .attribute-square-container {
+ border-color: #bbb;
+ border-width: 2px;
+}
+
+.product-details-page .attributes ul.color-squares .attribute-square, .product-details-page .attributes ul.image-squares .attribute-square {
+ display: inline-block;
+ width: 18px;
+ height: 18px;
+}
+
+.product-details-page .attributes ul.color-squares label, .product-details-page .attributes ul.image-squares label {
+ cursor: pointer;
+ position: relative;
+ display: inline-block;
+}
+
+.product-details-page .attributes ul.color-squares input, .product-details-page .attributes ul.image-squares input {
+ height: 0;
+ overflow: hidden;
+ z-index: -10000;
+ position: absolute;
+ float: none;
+ display: none;
+}
+
+.product-filters .color-squares, .product-filters .image-squares {
+ font-size: 0;
+}
+
+ .product-filters .color-squares .attribute-square-container, .product-filters .image-squares .attribute-square-container {
+ display: inline-block;
+ padding: 1px;
+ position: relative;
+ z-index: 0;
+ }
+
+ .product-filters .color-squares .attribute-square, .product-filters .image-squares .attribute-square {
+ border: 1px solid #444 !important;
+ cursor: pointer;
+ display: table !important;
+ height: 32px !important;
+ width: 32px !important;
+ }
+
+.product-filters .product-spec-color li.color-item {
+ display: inline-block;
+}
+
+ .product-filters .product-spec-color li.color-item a {
+ padding: 0px;
+ width: 100%;
+ }
+
+.color-squares .attribute-square, .image-squares .attribute-square {
+ border: 2px solid #ddd;
+ cursor: pointer;
+ display: table !important;
+ height: 32px !important;
+ width: 32px !important;
+}
+
+.tooltip-container {
+ background: #fff none repeat scroll 0 0;
+ border: 1px solid #eee;
+ border-radius: 5px;
+ color: #000;
+ position: absolute;
+ text-align: center;
+ visibility: hidden;
+ width: 200px;
+ left: 0px;
+ top: 0px;
+}
+
+ .tooltip-container::after {
+ border-bottom: 6px solid #fff;
+ border-left: 6px solid transparent;
+ border-right: 6px solid transparent;
+ bottom: 100%;
+ content: "";
+ height: 0;
+ left: 50%;
+ margin-left: -6px;
+ position: absolute;
+ width: 0;
+ }
+
+ .tooltip-container::before {
+ border-bottom: 7px solid #eee;
+ border-left: 7px solid transparent;
+ border-right: 7px solid transparent;
+ bottom: 100%;
+ content: "";
+ height: 0;
+ left: 50%;
+ margin-left: -7px;
+ position: absolute;
+ width: 0;
+ }
+
+.color-squares li:hover .tooltip-container, .image-squares li:hover .tooltip-container {
+ margin-left: -83px;
+ margin-top: 5px;
+ visibility: visible;
+ z-index: 999;
+}
+
+.tooltip-container .tooltip-header {
+ background-color: #f6f6f6;
+ border-bottom: 1px solid #eee;
+ border-top-left-radius: 4px;
+ border-top-right-radius: 4px;
+ font-size: 15px;
+ height: 30px;
+ padding-left: 10px;
+ padding-top: 5px;
+ text-align: left;
+ width: 198px;
+}
+
+.tooltip-container .tooltip-body {
+ margin: 5px;
+}
+
+ .tooltip-container .tooltip-body img {
+ border: 0 none #fff;
+ width: 190px;
+ }
+
+.product-details-page .attributes ul.color-squares .selected-value .attribute-square-container .attribute-square, .product-details-page .attributes ul.image-squares .selected-value .attribute-square-container .attribute-square {
+ border-color: #aaa081;
+}
+
+.attributes ul.color-squares .selected-value .attribute-square-container, .attributes ul.image-squares .selected-value .attribute-square-container {
+ background-color: #aaa081;
+}
/* SLIM BOX (PRODUCT IMAGES) */
-#lbOverlay{position:fixed;z-index:9999;left:0;top:0;width:100%;height:100%;background-color:#000;cursor:pointer;}
-#lbCenter,#lbBottomContainer{position:absolute;z-index:9999;overflow:hidden;background-color:#fff;}
-.lbLoading{background:#fff url(../images/loading.gif) no-repeat center;}
-#lbImage{position:absolute;left:0;top:0;border:10px solid #fff;background-repeat:no-repeat;}
-#lbPrevLink,#lbNextLink{display:block;position:absolute;top:0;width:50%;outline:none;}
-#lbPrevLink{left:0;}
-#lbPrevLink:hover{background:transparent url(../images/prevlabel.gif) no-repeat 0 15%;}
-#lbNextLink{right:0;}
-#lbNextLink:hover{background:transparent url(../images/nextlabel.gif) no-repeat 100% 15%;}
-#lbBottom{font-size:10px;color:#666;line-height:1.4em;text-align:left;border:10px solid #fff;border-top-style:none;}
-#lbCloseLink{display:block;float:right;width:66px;height:22px;background:transparent url(../images/closelabel.gif) no-repeat center;margin:5px 0;outline:none;}
-#lbCaption,#lbNumber{margin-right:71px;}
-#lbCaption{font-weight:700;}
+#lbOverlay {
+ position: fixed;
+ z-index: 9999;
+ left: 0;
+ top: 0;
+ width: 100%;
+ height: 100%;
+ background-color: #000;
+ cursor: pointer;
+}
+
+#lbCenter, #lbBottomContainer {
+ position: absolute;
+ z-index: 9999;
+ overflow: hidden;
+ background-color: #fff;
+}
+
+.lbLoading {
+ background: #fff url(../images/loading.gif) no-repeat center;
+}
+
+#lbImage {
+ position: absolute;
+ left: 0;
+ top: 0;
+ border: 10px solid #fff;
+ background-repeat: no-repeat;
+}
+
+#lbPrevLink, #lbNextLink {
+ display: block;
+ position: absolute;
+ top: 0;
+ width: 50%;
+ outline: none;
+}
+
+#lbPrevLink {
+ left: 0;
+}
+
+ #lbPrevLink:hover {
+ background: transparent url(../images/prevlabel.gif) no-repeat 0 15%;
+ }
+
+#lbNextLink {
+ right: 0;
+}
+
+ #lbNextLink:hover {
+ background: transparent url(../images/nextlabel.gif) no-repeat 100% 15%;
+ }
+
+#lbBottom {
+ font-size: 10px;
+ color: #666;
+ line-height: 1.4em;
+ text-align: left;
+ border: 10px solid #fff;
+ border-top-style: none;
+}
+
+#lbCloseLink {
+ display: block;
+ float: right;
+ width: 66px;
+ height: 22px;
+ background: transparent url(../images/closelabel.gif) no-repeat center;
+ margin: 5px 0;
+ outline: none;
+}
+
+#lbCaption, #lbNumber {
+ margin-right: 71px;
+}
+
+#lbCaption {
+ font-weight: 700;
+}
/* BB CODE EDITOR */
-.toolbar{padding:2px;display:block;margin-bottom:10px;}
-.toolbar .button{background:url(../images/bbeditor-button-bg.gif) repeat-x;padding:2px;margin-right:2px;border:#cec6b5 1px solid;}
-.toolbar .button:hover{border:var(--grey-black) 1px solid;}
+.toolbar {
+ padding: 2px;
+ display: block;
+ margin-bottom: 10px;
+}
+
+ .toolbar .button {
+ background: url(../images/bbeditor-button-bg.gif) repeat-x;
+ padding: 2px;
+ margin-right: 2px;
+ border: #cec6b5 1px solid;
+ }
+
+ .toolbar .button:hover {
+ border: var(--grey-black) 1px solid;
+ }
/* BBCODES */
-.csharpcode {white-space: pre-wrap;word-wrap: break-word;}
-.csharpcode,.csharpcode pre{font-size:small;color:#000;font-family:Consolas,"Courier New",Courier,Monospace;background-color:#fff;}
-.csharpcode pre{margin:0;}
-.csharpcode .rem{color:green;}
-.csharpcode .kwrd{color:#00f;}
-.csharpcode .str{color:#006080;}
-.csharpcode .op{color:#0000c0;}
-.csharpcode .preproc{color:#c63;}
-.csharpcode .asp{background-color:#ff0;}
-.csharpcode .html{color:maroon;}
-.csharpcode .attr{color:red;}
-.csharpcode .alt{background-color:#f4f4f4;width:100%;margin:0;}
-.csharpcode .lnum{color:#606060;}
+.csharpcode {
+ white-space: pre-wrap;
+ word-wrap: break-word;
+}
+
+ .csharpcode, .csharpcode pre {
+ font-size: small;
+ color: #000;
+ font-family: Consolas,"Courier New",Courier,Monospace;
+ background-color: #fff;
+ }
+
+ .csharpcode pre {
+ margin: 0;
+ }
+
+ .csharpcode .rem {
+ color: green;
+ }
+
+ .csharpcode .kwrd {
+ color: #00f;
+ }
+
+ .csharpcode .str {
+ color: #006080;
+ }
+
+ .csharpcode .op {
+ color: #0000c0;
+ }
+
+ .csharpcode .preproc {
+ color: #c63;
+ }
+
+ .csharpcode .asp {
+ background-color: #ff0;
+ }
+
+ .csharpcode .html {
+ color: maroon;
+ }
+
+ .csharpcode .attr {
+ color: red;
+ }
+
+ .csharpcode .alt {
+ background-color: #f4f4f4;
+ width: 100%;
+ margin: 0;
+ }
+
+ .csharpcode .lnum {
+ color: #606060;
+ }
/* NEW STYLE */
-.pm-title-text.form-control{width:44%;}
+.pm-title-text.form-control {
+ width: 44%;
+}
/* Back To Top Arrow */
-#backTop{
- width:35px;
- height:35px;
- padding:10px;
- text-indent:-9999px;
- cursor:pointer;
- z-index:999999999;
- display:none;
- box-sizing:content-box;
- -webkit-box-sizing:content-box;
- transition:all 0.3s ease-in-out 0s;
- -webkit-transition:all 0.3s ease-in-out 0s;
- -moz-transition:all 0.3s ease-in-out 0s;
- -o-transition:all 0.3s ease-in-out 0s;
- background:url(../images/top-arrow.png) no-repeat center center var(--red);
+#backTop {
+ width: 35px;
+ height: 35px;
+ padding: 10px;
+ text-indent: -9999px;
+ cursor: pointer;
+ z-index: 999999999;
+ display: none;
+ box-sizing: content-box;
+ -webkit-box-sizing: content-box;
+ transition: all 0.3s ease-in-out 0s;
+ -webkit-transition: all 0.3s ease-in-out 0s;
+ -moz-transition: all 0.3s ease-in-out 0s;
+ -o-transition: all 0.3s ease-in-out 0s;
+ background: url(../images/top-arrow.png) no-repeat center center #aaa081;
}
-#backTop:hover{background:url(../images/top-arrow.png) no-repeat center center var(--grey-black);}
+
+ #backTop:hover {
+ background: url(../images/top-arrow.png) no-repeat center center var(--grey-black);
+ }
@@ -1935,85 +7980,240 @@ a.eu-cookie-privacyinfo-tag{color:#B80709 !important;text-decoration:underline;}
/* Legend not having bottom-margin on Webkit Browsers - Safari and Opera
https://github.com/twbs/bootstrap/issues/9187
*/
-legend + *:before { content: "."; display: block; height: 0; visibility: hidden; margin-bottom:20px;}
-.eq-ie7 legend{margin-bottom:20px;}
-textarea:hover,
+legend + *:before {
+ content: ".";
+ display: block;
+ height: 0;
+ visibility: hidden;
+ margin-bottom: 20px;
+}
+
+.eq-ie7 legend {
+ margin-bottom: 20px;
+}
+
+textarea:hover,
input:hover,
select:hover,
-textarea:active,
-input:active,
-textarea:focus,
+textarea:active,
+input:active,
+textarea:focus,
input:focus,
select:focus,
button:focus,
button:active,
-button:hover
-{
- outline:0px !important;
+button:hover {
+ outline: 0px !important;
}
/* IE8 And IE9 STYLE */
-.navbar-search .search-query{line-height:20px;}
-.eq-ie8 .item-box .thumbnail .wishlist-compare-wrapper{position: absolute;text-align: center;width: 100%;z-index: 999;opacity:0;top:calc(80% + 0px);transition:all 500ms ease-in-out 0s;-webkit-transition:all 500ms ease-in-out 0s;-moz-transition:all 500ms ease-in-out 0s;-o-transition:all 500ms ease-in-out 0s;visibility:hidden;}
-.eq-ie8 .item-box .thumbnail:hover .picture .wishlist-compare-wrapper{top:40%;opacity:1;visibility:visible;}
-.eq-ie8 .header-menu .navbar.navbar-inverse .nav.navbar-nav > li.dropdown .dropdown-menu{border:1px solid #ddd;}
+.navbar-search .search-query {
+ line-height: 20px;
+}
+
+.eq-ie8 .item-box .thumbnail .wishlist-compare-wrapper {
+ position: absolute;
+ text-align: center;
+ width: 100%;
+ z-index: 999;
+ opacity: 0;
+ top: calc(80% + 0px);
+ transition: all 500ms ease-in-out 0s;
+ -webkit-transition: all 500ms ease-in-out 0s;
+ -moz-transition: all 500ms ease-in-out 0s;
+ -o-transition: all 500ms ease-in-out 0s;
+ visibility: hidden;
+}
+
+.eq-ie8 .item-box .thumbnail:hover .picture .wishlist-compare-wrapper {
+ top: 40%;
+ opacity: 1;
+ visibility: visible;
+}
+
+.eq-ie8 .header-menu .navbar.navbar-inverse .nav.navbar-nav > li.dropdown .dropdown-menu {
+ border: 1px solid #ddd;
+}
+
.eq-ie8 .product-list .item-box .product-item .rating {
margin-left: 0px;
}
-.eq-ie8 .product-details-page .product-share-button a span{height:30px !important;width:30px !important;}
-.eq-ie8 .product-details-page .product-share-button a span .at-icon{height:30px !important;width:25px !important;}
-.eq-ie8 .sitemap-page .entity,.eq-ie8 .news-list-page .item,.eq-ie8 .order-summary-content .checkout-attributes,.eq-ie8 .private-message-view-page .view-message,.eq-ie8 .private-messages-page .panel-default.panel,.eq-ie8 .compare-products-page .panel-default.panel,.eq-ie8 .reward-points-page .panel-default.panel,.eq-ie8 .forum-topic-page .topic-posts,.eq-ie8 .forum-topic-content-top,.eq-ie8 .forum-search-page .search-results .forums-table-section,.eq-ie8 .forum-subscriptions-page .panel-default.panel,.eq-ie8 .back-in-stock-subscription-list-page .panel-default.panel,.eq-ie8 .downloadable-products-page .panel-default.panel,.eq-ie8 .return-request-list-page .section,.eq-ie8 .return-request-page .section .panel-default.panel,.eq-ie8 .shipment-details-page .section .panel-default.panel,.eq-ie8 .order-list-page .order-item,.eq-ie8 .address-list .address-item,.eq-ie8 .checkout-as-guest-or-register-block,.eq-ie8 .returning-wrapper,.eq-ie8 .register-block.new-wrapper,.eq-ie8 .forums-table-section,.eq-ie8 .order-details-page .section .panel-default.panel,.eq-ie8 .checkout-data .section .address-box,.eq-ie8 .shipment-details-page .order-info-wrap .info-content,.eq-ie8 .shipment-details-page .order-info-wrap .info-content,.eq-ie8 .order-details-page .billing-info-wrap .info-content,.eq-ie8 .order-details-page .order-info-wrap .info-content,.eq-ie8 .order-details-page .payment-method-wrap .side-list-wrap,.eq-ie8 .order-details-page .order-info-wrap .side-list-wrap,.eq-ie8 .order-details-page .total-info .panel.panel-default,.eq-ie8 .order-summary-content .cart-footer .total-info .panel.panel-default{border:1px solid #ddd;}
-.eq-ie8 .footer{border-top:1px solid #ededed;}
-.eq-ie8 .login-page FIELDSET LEGEND{margin-bottom:0px;}
-.eq-ie8 .forum-edit-page .form-group LABEL{padding-top:0px;}
-.lt-ie9 .registration-page h3 {-moz-border-bottom-colors: none;-moz-border-left-colors: none;-moz-border-right-colors: none;-moz-border-top-colors: none;border-color: -moz-use-text-color -moz-use-text-color #e5e5e5;border-image: none;border-width: 0 0 1px;display: block;line-height: inherit;margin-bottom: 20px;width: 100%;border-bottom:1px solid #ccc;}
-.lt-ie9 .payment-info .info td label {float: none;margin: 0;padding-bottom: 10px;width: 130px;}
-.lt-ie9 .entity-body.category-body.product-link li {float: left;margin-right:26px;width:46%; margin-bottom:8px;}
-.lt-ie9 .main-menu.goToTop{border-bottom:1px solid #4b5461;}
-.eq-ie11 .header-selectors-wrapper SELECT{padding-right:0px !important;}
-.lt-ie10 select{background:#fff !important;border:1px solid #ddd;}
-.lt-ie10 .footer-upper .column ul li a:hover,.lt-ie10 .footer-upper .column ul li a:focus{margin-left:0px;}
-.lt-ie9 .header-selectors-wrapper select{padding:5px 0px 5px 5px !important;}
+
+.eq-ie8 .product-details-page .product-share-button a span {
+ height: 30px !important;
+ width: 30px !important;
+}
+
+ .eq-ie8 .product-details-page .product-share-button a span .at-icon {
+ height: 30px !important;
+ width: 25px !important;
+ }
+
+.eq-ie8 .sitemap-page .entity, .eq-ie8 .news-list-page .item, .eq-ie8 .order-summary-content .checkout-attributes, .eq-ie8 .private-message-view-page .view-message, .eq-ie8 .private-messages-page .panel-default.panel, .eq-ie8 .compare-products-page .panel-default.panel, .eq-ie8 .reward-points-page .panel-default.panel, .eq-ie8 .forum-topic-page .topic-posts, .eq-ie8 .forum-topic-content-top, .eq-ie8 .forum-search-page .search-results .forums-table-section, .eq-ie8 .forum-subscriptions-page .panel-default.panel, .eq-ie8 .back-in-stock-subscription-list-page .panel-default.panel, .eq-ie8 .downloadable-products-page .panel-default.panel, .eq-ie8 .return-request-list-page .section, .eq-ie8 .return-request-page .section .panel-default.panel, .eq-ie8 .shipment-details-page .section .panel-default.panel, .eq-ie8 .order-list-page .order-item, .eq-ie8 .address-list .address-item, .eq-ie8 .checkout-as-guest-or-register-block, .eq-ie8 .returning-wrapper, .eq-ie8 .register-block.new-wrapper, .eq-ie8 .forums-table-section, .eq-ie8 .order-details-page .section .panel-default.panel, .eq-ie8 .checkout-data .section .address-box, .eq-ie8 .shipment-details-page .order-info-wrap .info-content, .eq-ie8 .shipment-details-page .order-info-wrap .info-content, .eq-ie8 .order-details-page .billing-info-wrap .info-content, .eq-ie8 .order-details-page .order-info-wrap .info-content, .eq-ie8 .order-details-page .payment-method-wrap .side-list-wrap, .eq-ie8 .order-details-page .order-info-wrap .side-list-wrap, .eq-ie8 .order-details-page .total-info .panel.panel-default, .eq-ie8 .order-summary-content .cart-footer .total-info .panel.panel-default {
+ border: 1px solid #ddd;
+}
+
+.eq-ie8 .footer {
+ border-top: 1px solid #ededed;
+}
+
+.eq-ie8 .login-page FIELDSET LEGEND {
+ margin-bottom: 0px;
+}
+
+.eq-ie8 .forum-edit-page .form-group LABEL {
+ padding-top: 0px;
+}
+
+.lt-ie9 .registration-page h3 {
+ -moz-border-bottom-colors: none;
+ -moz-border-left-colors: none;
+ -moz-border-right-colors: none;
+ -moz-border-top-colors: none;
+ border-color: -moz-use-text-color -moz-use-text-color #e5e5e5;
+ border-image: none;
+ border-width: 0 0 1px;
+ display: block;
+ line-height: inherit;
+ margin-bottom: 20px;
+ width: 100%;
+ border-bottom: 1px solid #ccc;
+}
+
+.lt-ie9 .payment-info .info td label {
+ float: none;
+ margin: 0;
+ padding-bottom: 10px;
+ width: 130px;
+}
+
+.lt-ie9 .entity-body.category-body.product-link li {
+ float: left;
+ margin-right: 26px;
+ width: 46%;
+ margin-bottom: 8px;
+}
+
+.lt-ie9 .main-menu.goToTop {
+ border-bottom: 1px solid #4b5461;
+}
+
+.eq-ie11 .header-selectors-wrapper SELECT {
+ padding-right: 0px !important;
+}
+
+.lt-ie10 select {
+ background: #fff !important;
+ border: 1px solid #ddd;
+}
+
+.lt-ie10 .footer-upper .column ul li a:hover, .lt-ie10 .footer-upper .column ul li a:focus {
+ margin-left: 0px;
+}
+
+.lt-ie9 .header-selectors-wrapper select {
+ padding: 5px 0px 5px 5px !important;
+}
/* IE9 and IE10 STYLE */
-.lt-ie11 .login-page .checkbox input[type="checkbox"]{margin-left:15px;min-height:15px;margin-top:3px;}
-.lt-ie11 .login-page .remember-me .checkbox{padding-left:0px; padding-top:0px; margin-left:0px;}
-.lt-ie11 .remember-me .checkbox > label > .checkbox{margin-top:3px;}
-.lt-ie11 .review-rating .rating-text .rb{margin-top:6px;}
-.lt-ie11 .img-responsive,.lt-ie11 .thumbnail > img,.lt-ie11 .thumbnail a > img,.lt-ie11 .carousel-inner > .item > img,.lt-ie11 .carousel-inner > .item > a > img{width:auto;}
-.lt-ie11 .order-summary-content .terms-of-service > INPUT{margin-top:5px;}
-.lt-ie11 .forum-search-box .search-box-text,.eq-ie11 .forum-search-box .search-box-text{width:100%;}
-.lt-ie11 .forum-search-page .forum-search-box .search-box-text,.eq-ie11 .forum-search-page .forum-search-box .search-box-text{width:400px;}
-.lt-ie11 .login-page .checkbox .remember-text{padding-left:35px;}
-.lt-ie11 .customer-info-page .date-picker-wrapper > SELECT,.eq-ie11 .customer-info-page .date-picker-wrapper > SELECT,.lt-ie11 .registration-page .date-picker-wrapper > SELECT,.eq-ie11 .registration-page .date-picker-wrapper > SELECT{float:left;}
-.lt-ie11 .customer-info-page .date-picker-wrapper .field-validation-error,.eq-ie11 .customer-info-page .date-picker-wrapper .field-validation-error,.lt-ie11 .registration-page .date-picker-wrapper .field-validation-error,.eq-ie11 .registration-page .date-picker-wrapper .field-validation-error{margin-left:10px;}
-.ie.ie11 .registration-page .radio-inline input[type='radio'], .lt-ie11 .registration-page .radio-inline input[type='radio'] {margin-top: 5px;}
+.lt-ie11 .login-page .checkbox input[type="checkbox"] {
+ margin-left: 15px;
+ min-height: 15px;
+ margin-top: 3px;
+}
+
+.lt-ie11 .login-page .remember-me .checkbox {
+ padding-left: 0px;
+ padding-top: 0px;
+ margin-left: 0px;
+}
+
+.lt-ie11 .remember-me .checkbox > label > .checkbox {
+ margin-top: 3px;
+}
+
+.lt-ie11 .review-rating .rating-text .rb {
+ margin-top: 6px;
+}
+
+.lt-ie11 .img-responsive, .lt-ie11 .thumbnail > img, .lt-ie11 .thumbnail a > img, .lt-ie11 .carousel-inner > .item > img, .lt-ie11 .carousel-inner > .item > a > img {
+ width: auto;
+}
+
+.lt-ie11 .order-summary-content .terms-of-service > INPUT {
+ margin-top: 5px;
+}
+
+.lt-ie11 .forum-search-box .search-box-text, .eq-ie11 .forum-search-box .search-box-text {
+ width: 100%;
+}
+
+.lt-ie11 .forum-search-page .forum-search-box .search-box-text, .eq-ie11 .forum-search-page .forum-search-box .search-box-text {
+ width: 400px;
+}
+
+.lt-ie11 .login-page .checkbox .remember-text {
+ padding-left: 35px;
+}
+
+.lt-ie11 .customer-info-page .date-picker-wrapper > SELECT, .eq-ie11 .customer-info-page .date-picker-wrapper > SELECT, .lt-ie11 .registration-page .date-picker-wrapper > SELECT, .eq-ie11 .registration-page .date-picker-wrapper > SELECT {
+ float: left;
+}
+
+.lt-ie11 .customer-info-page .date-picker-wrapper .field-validation-error, .eq-ie11 .customer-info-page .date-picker-wrapper .field-validation-error, .lt-ie11 .registration-page .date-picker-wrapper .field-validation-error, .eq-ie11 .registration-page .date-picker-wrapper .field-validation-error {
+ margin-left: 10px;
+}
+
+.ie.ie11 .registration-page .radio-inline input[type='radio'], .lt-ie11 .registration-page .radio-inline input[type='radio'] {
+ margin-top: 5px;
+}
/* OPERA STYLE */
-doesnotexist:-o-prefocus, .forum-search-box .btn.search-box-button {padding:15px 19px;}
-doesnotexist:-o-prefocus, .forum-search-box .basic .form-group{margin-bottom:0;}
-doesnotexist:-o-prefocus, .btn{height:34px;}
-doesnotexist:-o-prefocus, .new-wrapper.register-block legend , doesnotexist:-o-prefocus, .returning-wrapper legend{ margin-bottom:20px; float:left; }
+doesnotexist:-o-prefocus, .forum-search-box .btn.search-box-button {
+ padding: 15px 19px;
+}
+
+doesnotexist:-o-prefocus, .forum-search-box .basic .form-group {
+ margin-bottom: 0;
+}
+
+doesnotexist:-o-prefocus, .btn {
+ height: 34px;
+}
+
+doesnotexist:-o-prefocus, .new-wrapper.register-block legend, doesnotexist:-o-prefocus, .returning-wrapper legend {
+ margin-bottom: 20px;
+ float: left;
+}
-/* SAFARI STYLE */
+/* SAFARI STYLE */
@media screen and (-webkit-min-device-pixel-ratio:0) {
- .forum-page .pagination{margin:0;}
- .checkout-as-guest-or-register-block legend,.new-wrapper.register-block legend , .returning-wrapper legend , .facebook-login-block legend{ margin-bottom:20px; float:left; }
+ .forum-page .pagination {
+ margin: 0;
+ }
- /* Safari 5+ ONLY */
- ::i-block-chrome, .product-selectors select{margin-top:5px;}
+ .checkout-as-guest-or-register-block legend, .new-wrapper.register-block legend, .returning-wrapper legend, .facebook-login-block legend {
+ margin-bottom: 20px;
+ float: left;
+ }
+
+ /* Safari 5+ ONLY */
+ ::i-block-chrome, .product-selectors select {
+ margin-top: 5px;
+ }
}
/*CSS for nopCommerce 4.0*/
.ui-state-hover.ui-datepicker-prev-hover {
background: none !important;
border: none !important;
- top:2px !important;
- left:2px !important;
- cursor:pointer;
+ top: 2px !important;
+ left: 2px !important;
+ cursor: pointer;
}
+
.ui-state-hover.ui-datepicker-next-hover {
background: none !important;
border: none !important;
@@ -2021,29 +8221,45 @@ doesnotexist:-o-prefocus, .new-wrapper.register-block legend , doesnotexist:-o-p
right: 2px !important;
cursor: pointer;
}
+
.read {
cursor: pointer;
text-decoration: underline;
}
-.checkout-page .terms-of-service{display:flex;}
+
+.checkout-page .terms-of-service {
+ display: flex;
+}
+
.terms-of-service > label, .use-reward-points .checkbox label {
display: inline-block;
}
-.use-reward-points .checkbox label{padding:0;}
-.use-reward-points .checkbox{display:flex;align-items:start;}
-.terms-of-service > input, .use-reward-points .checkbox input {
- display: inline-block;
- vertical-align: top;
+
+.use-reward-points .checkbox label {
+ padding: 0;
}
+
+.use-reward-points .checkbox {
+ display: flex;
+ align-items: start;
+}
+
+ .terms-of-service > input, .use-reward-points .checkbox input {
+ display: inline-block;
+ vertical-align: top;
+ }
+
.estimate-shipping .estimate-shipping-result {
color: #a94442;
clear: both;
margin: 0 15px 20px;
- text-align:center;
+ text-align: center;
}
-.products-breadcrumb-link{
- display:none;
+
+.products-breadcrumb-link {
+ display: none;
}
+
.eu-cookie-bar-notification {
position: fixed;
top: 50%;
@@ -2058,52 +8274,65 @@ doesnotexist:-o-prefocus, .new-wrapper.register-block legend , doesnotexist:-o-p
padding: 20px;
text-align: center;
}
+
.eu-cookie-bar-notification a {
display: block;
- color: var(--red);
- margin-top:10px;
+ color: #aaa081;
+ margin-top: 10px;
}
+
.news-item-page p.comment-text {
word-break: break-word;
}
+
.product-filters .filter-content ul {
vertical-align: top;
}
+
.product-filter .product-spec-group {
- display:inline-block;
+ display: inline-block;
margin: 0 25px 10px 0;
}
+
.product-filters .product-spec-group {
max-width: 190px;
display: inline-block;
margin: 0 25px 10px 0;
}
+
.product-filters .group li {
font-size: 15px;
}
-.product-filters .group li.item {
- display: block;
- margin-bottom: 10px;
-}
-.product-filters .group li a, .product-filters .group li strong {
- display: inline-block;
- padding: 5px 0;
-}
-.product-filters .group li.color-item a {
- padding: 0;
-}
+
+ .product-filters .group li.item {
+ display: block;
+ margin-bottom: 10px;
+ }
+
+ .product-filters .group li a, .product-filters .group li strong {
+ display: inline-block;
+ padding: 5px 0;
+ }
+
+ .product-filters .group li.color-item a {
+ padding: 0;
+ }
+
.attribute-squares {
font-size: 0;
}
+
.attribute-squares-padding {
padding: 0 5px 0 0;
}
+
.attribute-squares .attribute-square-container {
display: block;
position: relative;
z-index: 0;
padding: 1px;
}
+
.attribute-squares .attribute-square {
display: table !important;
width: 32px !important;
@@ -2123,62 +8352,64 @@ doesnotexist:-o-prefocus, .new-wrapper.register-block legend , doesnotexist:-o-p
border: 0;
background: url("../images/remove.png") center no-repeat;
}
+
.newsletter-email:focus-within {
overflow: visible;
}
+
.product-filter .group {
- font-size: 15px;
+ font-size: 15px;
}
-.product-filter .group + .group {
- margin-top: 16px;
-}
+ .product-filter .group + .group {
+ margin-top: 16px;
+ }
-.product-filter .group .name {
- padding-bottom: 10px;
-}
+ .product-filter .group .name {
+ padding-bottom: 10px;
+ }
-.product-filter .group .item {
- display: flex;
- padding-left: 15px;
- align-items: center;
-}
+ .product-filter .group .item {
+ display: flex;
+ padding-left: 15px;
+ align-items: center;
+ }
-.product-filter .group .item + .item {
- padding-top: 8px;
-}
+ .product-filter .group .item + .item {
+ padding-top: 8px;
+ }
-.product-filter .group .item label {
- cursor: pointer;
- display: flex;
- align-items: center;
- padding-left: 8px;
- flex-grow: 1;
-}
+ .product-filter .group .item label {
+ cursor: pointer;
+ display: flex;
+ align-items: center;
+ padding-left: 8px;
+ flex-grow: 1;
+ }
.price-range-filter .selected-price-range {
- padding: 5px 0;
+ padding: 5px 0;
}
-.price-range-filter .selected-price-range .to {
- float: right;
-}
+ .price-range-filter .selected-price-range .to {
+ float: right;
+ }
-.price-range-filter .selected-price-range.manually {
- display: flex;
-}
+ .price-range-filter .selected-price-range.manually {
+ display: flex;
+ }
-.price-range-filter .selected-price-range.manually .from {
- margin-right: 8px;
-}
+ .price-range-filter .selected-price-range.manually .from {
+ margin-right: 8px;
+ }
-.price-range-filter .selected-price-range.manually .from,
-.price-range-filter .selected-price-range.manually .to {
- width: 50%;
-}
+ .price-range-filter .selected-price-range.manually .from,
+ .price-range-filter .selected-price-range.manually .to {
+ width: 50%;
+ }
.product-filter .attribute-squares {
- font-size: inherit;
+ font-size: inherit;
}
.product-filters .color-squares .attribute-square {
@@ -2191,33 +8422,38 @@ doesnotexist:-o-prefocus, .new-wrapper.register-block legend , doesnotexist:-o-p
.item-box .picture a:focus {
opacity: 0.85;
}
+
.products-container {
position: relative;
}
-.products-container .ajax-products-busy {
- display: none;
- position: absolute;
- z-index: 2;
- width: 100%;
- height: 100%;
- background: #ffffffab url(../images/loading.gif) center no-repeat;
-}
+
+ .products-container .ajax-products-busy {
+ display: none;
+ position: absolute;
+ z-index: 2;
+ width: 100%;
+ height: 100%;
+ background: #ffffffab url(../images/loading.gif) center no-repeat;
+ }
+
.product-specs-box td.spec-group-name {
border: 0;
padding-top: 20px;
font-size: 16px;
color: #444;
}
+
.attributes .option-list:not(.attribute-squares) .disabled {
- opacity: .5;
+ opacity: .5;
}
+
.attributes .attribute-squares .disabled .attribute-square {
- cursor: default;
- opacity: .25;
+ cursor: default;
+ opacity: .25;
}
.attributes .attribute-squares .disabled .attribute-square-container {
- background: linear-gradient(to top left, rgba(0,0,0,0) 0%, rgba(0,0,0,0) calc(50% - 1.5px), #e91e63 50%, rgba(0,0,0,0) calc(50% + 1.5px), rgba(0,0,0,0) 100%), linear-gradient(to top right, rgba(0,0,0,0) 0%, rgba(0,0,0,0) calc(50% - 1.5px), #e91e63 50%, rgba(0,0,0,0) calc(50% + 1.5px), rgba(0,0,0,0) 100%);
+ background: linear-gradient(to top left, rgba(0,0,0,0) 0%, rgba(0,0,0,0) calc(50% - 1.5px), #e91e63 50%, rgba(0,0,0,0) calc(50% + 1.5px), rgba(0,0,0,0) 100%), linear-gradient(to top right, rgba(0,0,0,0) 0%, rgba(0,0,0,0) calc(50% - 1.5px), #e91e63 50%, rgba(0,0,0,0) calc(50% + 1.5px), rgba(0,0,0,0) 100%);
}
.attributes .attribute-squares .tooltip-container .not-available-text {
@@ -2225,41 +8461,46 @@ doesnotexist:-o-prefocus, .new-wrapper.register-block legend , doesnotexist:-o-p
}
.attributes .attribute-squares.color-squares .tooltip-container .not-available-text {
- margin: 5px;
+ margin: 5px;
}
+
.attributes .attribute-squares.color-squares .tooltip-container {
- width: 120px;
- display: none;
+ width: 120px;
+ display: none;
}
+
.attributes .attribute-squares.color-squares li:hover .tooltip-container {
- margin-left: -42px;
+ margin-left: -42px;
}
.attributes .attribute-squares.color-squares .disabled .tooltip-container {
- display: block;
+ display: block;
}
.attributes .attribute-squares.image-squares .tooltip-container .not-available-text {
- margin-bottom: 5px;
- display: none;
+ margin-bottom: 5px;
+ display: none;
}
+
.attributes .attribute-squares.image-squares .disabled .tooltip-container .not-available-text {
- display: block;
+ display: block;
}
.attributes select option.disabled,
.attributes select option:disabled {
- color: #cecece;
-}
-.compare-products-table .specification-group td {
- border: 0;
- padding: 20px 10px 10px 10px;
+ color: #cecece;
}
-.compare-products-table .specification-group td label {
- font-size: 16px;
- color: #444;
+.compare-products-table .specification-group td {
+ border: 0;
+ padding: 20px 10px 10px 10px;
}
+
+ .compare-products-table .specification-group td label {
+ font-size: 16px;
+ color: #444;
+ }
+
.top-menu > li > a:focus {
position: relative;
z-index: 1;
@@ -2269,120 +8510,149 @@ doesnotexist:-o-prefocus, .new-wrapper.register-block legend , doesnotexist:-o-p
.filter-content .ui-slider-handle:focus {
outline: none;
}
+
.price-range-filter .selected-price-range {
margin-left: 0px;
}
+
.product-filters .item label {
font-weight: 400;
}
-.nav.nav-list.group.product-spec-group{
+
+.nav.nav-list.group.product-spec-group {
padding: 0px;
margin: 0px;
display: block;
}
+
.product-manufacturer-filter .item, .product-filters .filter-content ul, .product-filter .group .item, .product-filter .group .item label {
padding-left: 0px;
}
-.product-filter .group .item label {
- display: inline-block;
- font-size: 14px;
- color: var(--grey-black);
- font-weight: 400;
-}
+
+ .product-filter .group .item label {
+ display: inline-block;
+ font-size: 14px;
+ color: var(--grey-black);
+ font-weight: 400;
+ }
+
.product-filters .filter-content .item.color-item {
display: flex;
align-items: center;
position: relative;
}
-.product-filters .filter-content .item.color-item input{
- margin:0px;
- border: none;
- opacity: 0;
- position: absolute;
- top: 0;
- left: 0;
-}
+
+ .product-filters .filter-content .item.color-item input {
+ margin: 0px;
+ border: none;
+ opacity: 0;
+ position: absolute;
+ top: 0;
+ left: 0;
+ }
+
.sidebar input[type=checkbox] {
margin: 0px 10px 0px 0px;
}
-.product-filters .filter-content .product-spec-color label{
+
+.product-filters .filter-content .product-spec-color label {
cursor: pointer;
font-size: 14px;
}
-.sidebar label{margin: 0px;}
+
+.sidebar label {
+ margin: 0px;
+}
+
.provider-verification .inputs {
margin-right: -15px;
margin-left: -15px;
margin-bottom: 15px;
}
-.provider-verification .inputs label {
- margin-bottom: 0;
- text-align: right;
- width: 16.66666667%;
- min-height: 1px;
- padding-right: 15px;
- padding-left: 15px;
- float: left;
-}
-.provider-verification .inputs .username {
- display: inline-block;
- height: 34px;
- padding: 6px 12px;
- font-size: 14px;
- line-height: 1.42857143;
- color: #555;
- background-color: #fff;
- background-image: none;
- border: 1px solid #ccc;
- margin: 0px 15px;
- transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
- width: 25%;
-}
-.provider-verification .inputs .field-validation-error {
- width: 100%;
- display: block;
- margin: 5px 0px;
- float: left;
-}
+
+ .provider-verification .inputs label {
+ margin-bottom: 0;
+ text-align: right;
+ width: 16.66666667%;
+ min-height: 1px;
+ padding-right: 15px;
+ padding-left: 15px;
+ float: left;
+ }
+
+ .provider-verification .inputs .username {
+ display: inline-block;
+ height: 34px;
+ padding: 6px 12px;
+ font-size: 14px;
+ line-height: 1.42857143;
+ color: #555;
+ background-color: #fff;
+ background-image: none;
+ border: 1px solid #ccc;
+ margin: 0px 15px;
+ transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
+ width: 25%;
+ }
+
+ .provider-verification .inputs .field-validation-error {
+ width: 100%;
+ display: block;
+ margin: 5px 0px;
+ float: left;
+ }
+
.provider-verification .form-group .buttons {
margin-left: 16.666667%;
width: 16.666667%;
float: left;
padding: 0px 15px;
}
-.provider-verification .form-group .buttons .save-customer-info-button {
- background-color: var(--red);
- border: none;
- color: #fff;
- border-radius: 0px;
- font-size: 14px;
- font-weight: 700;
- transition: all 0.3s ease-in-out 0s;
- -webkit-transition: all 0.3s ease-in-out 0s;
- -moz-transition: all 0.3s ease-in-out 0s;
- -o-transition: all 0.3s ease-in-out 0s;
- padding: 10px 15px;
- display: inline-block;
- text-transform: uppercase;
+
+ .provider-verification .form-group .buttons .save-customer-info-button {
+ background-color: #aaa081;
+ border: none;
+ color: #fff;
+ border-radius: 0px;
+ font-size: 14px;
+ font-weight: 700;
+ transition: all 0.3s ease-in-out 0s;
+ -webkit-transition: all 0.3s ease-in-out 0s;
+ -moz-transition: all 0.3s ease-in-out 0s;
+ -o-transition: all 0.3s ease-in-out 0s;
+ padding: 10px 15px;
+ display: inline-block;
+ text-transform: uppercase;
+ }
+
+ .provider-verification .form-group .buttons .save-customer-info-button:hover,
+ .provider-verification .form-group .buttons .save-customer-info-button:focus {
+ background-color: var(--grey-black);
+ opacity: 1 !important;
+ }
+
+.multi-factor-authentication-page, .multi-factor-authentication-config-page {
+ color: #666;
}
-.provider-verification .form-group .buttons .save-customer-info-button:hover,
-.provider-verification .form-group .buttons .save-customer-info-button:focus {
- background-color: var(--grey-black);
- opacity: 1 !important;
-}
-.multi-factor-authentication-page,.multi-factor-authentication-config-page {color: #666;}
-.multi-factor-authentication-page .description p:first-child {
- color: var(--grey-black);
-}
-.multi-factor-authentication-page .description ol { padding: 0px;}
-.multi-factor-authentication-page .fieldset .title strong{
- color: var(--grey-black);
-}
-.multi-factor-authentication-page .buttons {
- margin: 10px 0px;
- text-align: center;
-}
-.google-authenticator-conteiner .inputs input{
+
+ .multi-factor-authentication-page .description p:first-child {
+ color: var(--grey-black);
+ }
+
+ .multi-factor-authentication-page .description ol {
+ padding: 0px;
+ }
+
+ .multi-factor-authentication-page .fieldset .title strong {
+ color: var(--grey-black);
+ }
+
+ .multi-factor-authentication-page .buttons {
+ margin: 10px 0px;
+ text-align: center;
+ }
+
+.google-authenticator-conteiner .inputs input {
height: 34px;
margin-left: 15px;
padding: 6px 12px;
@@ -2393,18 +8663,22 @@ doesnotexist:-o-prefocus, .new-wrapper.register-block legend , doesnotexist:-o-p
background-image: none;
border: 1px solid #ccc;
}
+
.google-authenticator-conteiner .buttons {
margin-top: 20px;
}
+
.google-authenticator-conteiner .field-validation-error {
width: 100%;
display: block;
text-align: center;
margin: 5px 0px;
}
+
#flyout-cart .shopping-cart-link:focus {
- outline:none;
+ outline: none;
}
+
.btn.active, .btn:active {
box-shadow: none;
}
@@ -2421,28 +8695,34 @@ doesnotexist:-o-prefocus, .new-wrapper.register-block legend , doesnotexist:-o-p
max-height: 100%;
margin: auto;
}
+
.video-gallery .video-thumbs .thumb-item {
display: inline-block;
position: relative;
margin: 0 0 10px;
overflow: hidden;
}
+
.vat-number-warning {
text-align: center;
font-size: 13px;
color: #e4434b;
margin-top: 5px;
}
-.vat-number-warning a {
- text-decoration: underline;
-}
+
+ .vat-number-warning a {
+ text-decoration: underline;
+ }
+
.product-filter .filter-title {
background: #f6f6f6;
}
+
.video-gallery {
width: auto;
text-align: center;
}
+
.item-box .description:not([data-short-description]) {
overflow: hidden;
text-overflow: ellipsis;
@@ -2451,16 +8731,20 @@ doesnotexist:-o-prefocus, .new-wrapper.register-block legend , doesnotexist:-o-p
margin: 0 0 15px;
line-height: 22px;
}
+
.item-box .description[data-short-description] {
display: none;
}
+
.home-page .news-list-homepage .view-all {
margin-top: 10px;
}
+
.news-list-homepage .news-items-wrapper {
margin-bottom: 10px;
display: inline-block;
}
+
.product-details-page .variant-picture {
position: relative;
margin: 0 auto 15px;
@@ -2469,9 +8753,11 @@ doesnotexist:-o-prefocus, .new-wrapper.register-block legend , doesnotexist:-o-p
width: 220px;
height: 220px;
}
+
.variant-overview {
display: inline-block;
}
+
.product-details-page .variant-picture img {
position: absolute;
top: 0;
@@ -2486,11 +8772,13 @@ doesnotexist:-o-prefocus, .new-wrapper.register-block legend , doesnotexist:-o-p
.product-item .swiper-pagination-bullet-active {
padding: 4px;
- background-color: var(--red);
+ background-color: #aaa081;
}
+
.header-logo img {
max-width: 100%;
}
+
.product-category-item .picture .title {
margin: auto;
position: absolute;
@@ -2501,112 +8789,140 @@ doesnotexist:-o-prefocus, .new-wrapper.register-block legend , doesnotexist:-o-p
transform: translate(-50%, -50%);
top: 50%;
}
+
.vendor-page .vendor-description {
margin-bottom: 10px;
}
+
.qq-uploader-selector .qq-upload-button-focus {
outline: 1px solid transparent;
}
+
textarea.form-control:focus,
.change-password-page .form-control:focus {
- border-color: var(--red) !important;
+ border-color: #aaa081 !important;
}
+
.product-details-page .picture-gallery .picture {
- position: relative;
-}
-.product-details-page .picture-gallery .picture::before {
- content: "";
- display: block;
-}
-.product-details-page .picture-gallery .picture img {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- max-width: 100%;
- max-height: 100%;
- margin: auto;
- -webkit-transition: all .3s ease;
- transition: all .3s ease;
- -webkit-transform: translateZ(0) scale(1,1);
+ position: relative;
}
+
+ .product-details-page .picture-gallery .picture::before {
+ content: "";
+ display: block;
+ }
+
+ .product-details-page .picture-gallery .picture img {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ max-width: 100%;
+ max-height: 100%;
+ margin: auto;
+ -webkit-transition: all .3s ease;
+ transition: all .3s ease;
+ -webkit-transform: translateZ(0) scale(1,1);
+ }
+
.attribute-squares .image-squares-container .attribute-square {
background-color: #fff !important;
}
+
.product-details-page .attributes ul.option-list li:not(:last-child) {
- margin-right: 10px;
+ margin-right: 10px;
}
+
.overview-buttons > div:not(:last-child) {
margin: 0 10px 10px 0;
display: inline-block;
}
+
.overview-buttons > div:last-child {
display: inline-block;
margin: 0 0 10px 0;
}
+
.product-details-page .product-variant-list .product-variant-line {
display: block;
padding: 0 15px;
}
+
.shipping-title {
margin-top: 5px;
}
+
.product-reviews-page .name-description label {
margin-bottom: 0;
display: inline-block;
line-height: 24px;
}
+
.form-horizontal .control-label {
padding-top: 0;
text-align: inherit;
}
+
.order-list-page .return-items-button {
display: inline-block;
margin-right: 2px;
}
+
.order-details-page .links .controls:not(:last-child) {
margin-right: 10px;
}
+
.order-details-page .order-overview {
margin-bottom: 25px;
}
+
.return-request-page .title strong,
.reward-points-page .title strong {
font-size: 16px;
}
+
.forum-search {
padding: 0;
}
+
.private-messages-box .buttons button,
.checkout-page #billing-buttons-container > button {
margin-bottom: 5px;
}
-.private-messages-box .buttons button:not(:last-child),
-.checkout-page #billing-buttons-container > button:not(:last-child){
- margin-right: 5px;
-}
+
+ .private-messages-box .buttons button:not(:last-child),
+ .checkout-page #billing-buttons-container > button:not(:last-child) {
+ margin-right: 5px;
+ }
+
.my-product-reviews-list-page .pager {
display: inline-block;
width: 100%;
}
+
.vendorinfo-page label + .vendor-picture {
margin-top: 10px;
display: inline-block;
width: 100%;
}
+
.vendorinfo-page .remove-picture-button {
margin-right: 5px;
}
+
.order-summary-content .checkout-attributes label {
float: left;
}
+
.checkout-page {
margin-right: 0;
}
-.checkout-page .pickup-in-store {
- margin-bottom: 10px;
-}
+
+ .checkout-page .pickup-in-store {
+ margin-bottom: 10px;
+ }
+
.section.payment-method .use-reward-points input[type=checkbox],
.checkout-billingadress-btns > button,
.next-btn-wrapper .billings-address-btns > button:not(:last-child),
@@ -2614,34 +8930,43 @@ textarea.form-control:focus,
.next-btn-wrapper .shippings-address-btns > button:not(:last-child) {
margin-right: 5px
}
+
.checkout-page #shipping-buttons-container > button,
.checkout-page #shipping-buttons-container .back-link {
margin: 0 5px 5px 0;
}
+
.address-item .address-list-page {
display: flex;
width: 100%;
justify-content: center;
}
-.address-item .address-list-page > button:not(:last-child) {
- margin-right: 10px;
-}
+
+ .address-item .address-list-page > button:not(:last-child) {
+ margin-right: 10px;
+ }
+
.next-btn-wrapper {
margin: 0 0 10px 0;
}
-.next-btn-wrapper .billings-address-btns > button,
-.next-btn-wrapper .shippings-address-btns > button {
- margin-bottom: 5px;
-}
+
+ .next-btn-wrapper .billings-address-btns > button,
+ .next-btn-wrapper .shippings-address-btns > button {
+ margin-bottom: 5px;
+ }
+
.checkout-page .order-review-data {
margin-bottom: 40px;
}
+
.compare-products-page .overview td {
padding: 20px 10px !important;
}
+
.apply-vendor-page .uploads-files {
width: 100%;
}
+
.home-category-slider.owl-carousel,
.home-features-slider.owl-carousel,
.home-bestseller-slider.owl-carousel,
@@ -2654,6 +8979,7 @@ textarea.form-control:focus,
width: calc(100% - 30px);
margin: 0 auto;
}
+
.home-category-slider .owl-item > .item-box,
.home-features-slider .owl-item > .item-box,
.home-bestseller-slider .owl-item > .item-box,
@@ -2665,26 +8991,32 @@ textarea.form-control:focus,
.crosssell-products-slider .owl-item > .item-box {
padding: 0;
}
+
.news-list-homepage .news-date {
padding: 0 10px;
}
+
.product-details-page .product-variant-wrapper {
border-bottom: 1px solid #ddd;
margin-bottom: 30px;
overflow: hidden;
}
+
.order-details-page .billing-info li,
.order-details-page .shipping-info li {
margin-bottom: 5px;
color: #666;
font-size: 14px;
}
+
.order-details-area .title {
margin-bottom: 10px;
}
+
.shipping-info-wrap .shipping-info .title {
margin-bottom: 5px;
}
+
.payment-details .payment-description {
word-break: break-word;
}
@@ -2692,7 +9024,8 @@ textarea.form-control:focus,
.color-item .form-check {
position: relative;
}
-.color-item input[type=checkbox]:checked+label::before {
+
+.color-item input[type=checkbox]:checked + label::before {
content: "";
display: block;
position: absolute;
@@ -2704,6 +9037,7 @@ textarea.form-control:focus,
border-radius: 2px;
border: 1px solid rgb(150 150 150 / 30%);
}
+
.color-item input[type=checkbox]:checked + label::after {
content: url("../img/checkmark.png");
display: block;
@@ -2711,6 +9045,7 @@ textarea.form-control:focus,
left: 4px;
top: 0;
}
+
.checkout-page .vat-numbers {
width: 100%;
height: 34px;
@@ -2722,30 +9057,37 @@ textarea.form-control:focus,
-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;
}
-.checkout-page .vat-numbers:focus {
- border-color: var(--red);
-}
+
+ .checkout-page .vat-numbers:focus {
+ border-color: #aaa081;
+ }
+
.next-btn-wrapper .billings-address-btns,
.next-btn-wrapper .shippings-address-btns,
.next-btn-wrapper .shippings-methods,
.next-btn-wrapper .payments-methods {
padding: 0;
}
+
.checkout-page .ship-to-same-address {
margin-bottom: 5px;
}
+
.recently-added-products-page .page-title {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 25px;
}
-.recently-added-products-page .page-title h1 {
- margin: 0;
-}
+
+ .recently-added-products-page .page-title h1 {
+ margin: 0;
+ }
+
.recently-added-products-page .link-rss:hover {
color: var(--grey-black);
}
+
.recently-added-products-page .link-rss i {
margin-right: 5px;
}
@@ -2755,6 +9097,7 @@ textarea.form-control:focus,
width: 100%;
height: 100%;
}
+
.swiper-slide {
text-align: center;
font-size: 18px;
@@ -2773,32 +9116,37 @@ textarea.form-control:focus,
-webkit-align-items: center;
align-items: center;
}
+
.swiper-pagination-bullet-active {
padding: 5px;
background-color: #4ab2f1;
}
+
.shopping-cart-page .product-quantity {
width: 80px;
margin: 0 auto;
}
-.shopping-cart-page .product-quantity .qty-input {
- width: 60px;
- float: left;
- margin: 0;
- height: 40px;
-}
-.shopping-cart-page .product-quantity span {
- border: 1px solid #ddd;
- cursor: pointer;
- float: left;
- font-size: 10px;
- font-weight: normal;
- height: 20px;
- line-height: 20px;
- text-align: center;
- width: 20px;
- color: #999;
-}
+
+ .shopping-cart-page .product-quantity .qty-input {
+ width: 60px;
+ float: left;
+ margin: 0;
+ height: 40px;
+ }
+
+ .shopping-cart-page .product-quantity span {
+ border: 1px solid #ddd;
+ cursor: pointer;
+ float: left;
+ font-size: 10px;
+ font-weight: normal;
+ height: 20px;
+ line-height: 20px;
+ text-align: center;
+ width: 20px;
+ color: #999;
+ }
+
a.skip {
position: absolute;
top: -1000px;
@@ -2808,21 +9156,22 @@ a.skip {
text-align: left;
overflow: hidden;
}
-a.skip:active,
-a.skip:focus,
-a.skip:hover {
- position: initial;
- top: 0;
- left: 0;
- display: block;
- height: auto;
- margin: 3px 0;
- overflow: visible;
- padding: 2px;
- color: #444444;
- background: #ffffff;
- text-decoration: underline;
- text-align: center;
- width: 100%;
- font-size: 16px;
-}
+
+ a.skip:active,
+ a.skip:focus,
+ a.skip:hover {
+ position: initial;
+ top: 0;
+ left: 0;
+ display: block;
+ height: auto;
+ margin: 3px 0;
+ overflow: visible;
+ padding: 2px;
+ color: #444444;
+ background: #ffffff;
+ text-decoration: underline;
+ text-align: center;
+ width: 100%;
+ font-size: 16px;
+ }
diff --git a/Presentation/Nop.Web/Themes/SimplexTheme/Content/js/bootstrap.bundle.min.js b/Presentation/Nop.Web/Themes/SimplexTheme/Content/js/bootstrap.bundle.min.js
new file mode 100644
index 0000000..68acb7a
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/SimplexTheme/Content/js/bootstrap.bundle.min.js
@@ -0,0 +1,7 @@
+/*!
+ * Bootstrap v5.0.2 (https://getbootstrap.com/)
+ * Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
+ */
+!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap=e()}(this,(function(){"use strict";const t={find:(t,e=document.documentElement)=>[].concat(...Element.prototype.querySelectorAll.call(e,t)),findOne:(t,e=document.documentElement)=>Element.prototype.querySelector.call(e,t),children:(t,e)=>[].concat(...t.children).filter(t=>t.matches(e)),parents(t,e){const i=[];let n=t.parentNode;for(;n&&n.nodeType===Node.ELEMENT_NODE&&3!==n.nodeType;)n.matches(e)&&i.push(n),n=n.parentNode;return i},prev(t,e){let i=t.previousElementSibling;for(;i;){if(i.matches(e))return[i];i=i.previousElementSibling}return[]},next(t,e){let i=t.nextElementSibling;for(;i;){if(i.matches(e))return[i];i=i.nextElementSibling}return[]}},e=t=>{do{t+=Math.floor(1e6*Math.random())}while(document.getElementById(t));return t},i=t=>{let e=t.getAttribute("data-bs-target");if(!e||"#"===e){let i=t.getAttribute("href");if(!i||!i.includes("#")&&!i.startsWith("."))return null;i.includes("#")&&!i.startsWith("#")&&(i="#"+i.split("#")[1]),e=i&&"#"!==i?i.trim():null}return e},n=t=>{const e=i(t);return e&&document.querySelector(e)?e:null},s=t=>{const e=i(t);return e?document.querySelector(e):null},o=t=>{t.dispatchEvent(new Event("transitionend"))},r=t=>!(!t||"object"!=typeof t)&&(void 0!==t.jquery&&(t=t[0]),void 0!==t.nodeType),a=e=>r(e)?e.jquery?e[0]:e:"string"==typeof e&&e.length>0?t.findOne(e):null,l=(t,e,i)=>{Object.keys(i).forEach(n=>{const s=i[n],o=e[n],a=o&&r(o)?"element":null==(l=o)?""+l:{}.toString.call(l).match(/\s([a-z]+)/i)[1].toLowerCase();var l;if(!new RegExp(s).test(a))throw new TypeError(`${t.toUpperCase()}: Option "${n}" provided type "${a}" but expected type "${s}".`)})},c=t=>!(!r(t)||0===t.getClientRects().length)&&"visible"===getComputedStyle(t).getPropertyValue("visibility"),h=t=>!t||t.nodeType!==Node.ELEMENT_NODE||!!t.classList.contains("disabled")||(void 0!==t.disabled?t.disabled:t.hasAttribute("disabled")&&"false"!==t.getAttribute("disabled")),d=t=>{if(!document.documentElement.attachShadow)return null;if("function"==typeof t.getRootNode){const e=t.getRootNode();return e instanceof ShadowRoot?e:null}return t instanceof ShadowRoot?t:t.parentNode?d(t.parentNode):null},u=()=>{},f=t=>t.offsetHeight,p=()=>{const{jQuery:t}=window;return t&&!document.body.hasAttribute("data-bs-no-jquery")?t:null},m=[],g=()=>"rtl"===document.documentElement.dir,_=t=>{var e;e=()=>{const e=p();if(e){const i=t.NAME,n=e.fn[i];e.fn[i]=t.jQueryInterface,e.fn[i].Constructor=t,e.fn[i].noConflict=()=>(e.fn[i]=n,t.jQueryInterface)}},"loading"===document.readyState?(m.length||document.addEventListener("DOMContentLoaded",()=>{m.forEach(t=>t())}),m.push(e)):e()},b=t=>{"function"==typeof t&&t()},v=(t,e,i=!0)=>{if(!i)return void b(t);const n=(t=>{if(!t)return 0;let{transitionDuration:e,transitionDelay:i}=window.getComputedStyle(t);const n=Number.parseFloat(e),s=Number.parseFloat(i);return n||s?(e=e.split(",")[0],i=i.split(",")[0],1e3*(Number.parseFloat(e)+Number.parseFloat(i))):0})(e)+5;let s=!1;const r=({target:i})=>{i===e&&(s=!0,e.removeEventListener("transitionend",r),b(t))};e.addEventListener("transitionend",r),setTimeout(()=>{s||o(e)},n)},y=(t,e,i,n)=>{let s=t.indexOf(e);if(-1===s)return t[!i&&n?t.length-1:0];const o=t.length;return s+=i?1:-1,n&&(s=(s+o)%o),t[Math.max(0,Math.min(s,o-1))]},w=/[^.]*(?=\..*)\.|.*/,E=/\..*/,A=/::\d+$/,T={};let O=1;const C={mouseenter:"mouseover",mouseleave:"mouseout"},k=/^(mouseenter|mouseleave)/i,L=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 x(t,e){return e&&`${e}::${O++}`||t.uidEvent||O++}function D(t){const e=x(t);return t.uidEvent=e,T[e]=T[e]||{},T[e]}function S(t,e,i=null){const n=Object.keys(t);for(let s=0,o=n.length;sfunction(e){if(!e.relatedTarget||e.relatedTarget!==e.delegateTarget&&!e.delegateTarget.contains(e.relatedTarget))return t.call(this,e)};n?n=t(n):i=t(i)}const[o,r,a]=I(e,i,n),l=D(t),c=l[a]||(l[a]={}),h=S(c,r,o?i:null);if(h)return void(h.oneOff=h.oneOff&&s);const d=x(r,e.replace(w,"")),u=o?function(t,e,i){return function n(s){const o=t.querySelectorAll(e);for(let{target:r}=s;r&&r!==this;r=r.parentNode)for(let a=o.length;a--;)if(o[a]===r)return s.delegateTarget=r,n.oneOff&&P.off(t,s.type,e,i),i.apply(r,[s]);return null}}(t,i,n):function(t,e){return function i(n){return n.delegateTarget=t,i.oneOff&&P.off(t,n.type,e),e.apply(t,[n])}}(t,i);u.delegationSelector=o?i:null,u.originalHandler=r,u.oneOff=s,u.uidEvent=d,c[d]=u,t.addEventListener(a,u,o)}function j(t,e,i,n,s){const o=S(e[i],n,s);o&&(t.removeEventListener(i,o,Boolean(s)),delete e[i][o.uidEvent])}function M(t){return t=t.replace(E,""),C[t]||t}const P={on(t,e,i,n){N(t,e,i,n,!1)},one(t,e,i,n){N(t,e,i,n,!0)},off(t,e,i,n){if("string"!=typeof e||!t)return;const[s,o,r]=I(e,i,n),a=r!==e,l=D(t),c=e.startsWith(".");if(void 0!==o){if(!l||!l[r])return;return void j(t,l,r,o,s?i:null)}c&&Object.keys(l).forEach(i=>{!function(t,e,i,n){const s=e[i]||{};Object.keys(s).forEach(o=>{if(o.includes(n)){const n=s[o];j(t,e,i,n.originalHandler,n.delegationSelector)}})}(t,l,i,e.slice(1))});const h=l[r]||{};Object.keys(h).forEach(i=>{const n=i.replace(A,"");if(!a||e.includes(n)){const e=h[i];j(t,l,r,e.originalHandler,e.delegationSelector)}})},trigger(t,e,i){if("string"!=typeof e||!t)return null;const n=p(),s=M(e),o=e!==s,r=L.has(s);let a,l=!0,c=!0,h=!1,d=null;return o&&n&&(a=n.Event(e,i),n(t).trigger(a),l=!a.isPropagationStopped(),c=!a.isImmediatePropagationStopped(),h=a.isDefaultPrevented()),r?(d=document.createEvent("HTMLEvents"),d.initEvent(s,l,!0)):d=new CustomEvent(e,{bubbles:l,cancelable:!0}),void 0!==i&&Object.keys(i).forEach(t=>{Object.defineProperty(d,t,{get:()=>i[t]})}),h&&d.preventDefault(),c&&t.dispatchEvent(d),d.defaultPrevented&&void 0!==a&&a.preventDefault(),d}},H=new Map;var R={set(t,e,i){H.has(t)||H.set(t,new Map);const n=H.get(t);n.has(e)||0===n.size?n.set(e,i):console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(n.keys())[0]}.`)},get:(t,e)=>H.has(t)&&H.get(t).get(e)||null,remove(t,e){if(!H.has(t))return;const i=H.get(t);i.delete(e),0===i.size&&H.delete(t)}};class B{constructor(t){(t=a(t))&&(this._element=t,R.set(this._element,this.constructor.DATA_KEY,this))}dispose(){R.remove(this._element,this.constructor.DATA_KEY),P.off(this._element,this.constructor.EVENT_KEY),Object.getOwnPropertyNames(this).forEach(t=>{this[t]=null})}_queueCallback(t,e,i=!0){v(t,e,i)}static getInstance(t){return R.get(t,this.DATA_KEY)}static getOrCreateInstance(t,e={}){return this.getInstance(t)||new this(t,"object"==typeof e?e:null)}static get VERSION(){return"5.0.2"}static get NAME(){throw new Error('You have to implement the static method "NAME", for each component!')}static get DATA_KEY(){return"bs."+this.NAME}static get EVENT_KEY(){return"."+this.DATA_KEY}}class W extends B{static get NAME(){return"alert"}close(t){const e=t?this._getRootElement(t):this._element,i=this._triggerCloseEvent(e);null===i||i.defaultPrevented||this._removeElement(e)}_getRootElement(t){return s(t)||t.closest(".alert")}_triggerCloseEvent(t){return P.trigger(t,"close.bs.alert")}_removeElement(t){t.classList.remove("show");const e=t.classList.contains("fade");this._queueCallback(()=>this._destroyElement(t),t,e)}_destroyElement(t){t.remove(),P.trigger(t,"closed.bs.alert")}static jQueryInterface(t){return this.each((function(){const e=W.getOrCreateInstance(this);"close"===t&&e[t](this)}))}static handleDismiss(t){return function(e){e&&e.preventDefault(),t.close(this)}}}P.on(document,"click.bs.alert.data-api",'[data-bs-dismiss="alert"]',W.handleDismiss(new W)),_(W);class q extends B{static get NAME(){return"button"}toggle(){this._element.setAttribute("aria-pressed",this._element.classList.toggle("active"))}static jQueryInterface(t){return this.each((function(){const e=q.getOrCreateInstance(this);"toggle"===t&&e[t]()}))}}function z(t){return"true"===t||"false"!==t&&(t===Number(t).toString()?Number(t):""===t||"null"===t?null:t)}function $(t){return t.replace(/[A-Z]/g,t=>"-"+t.toLowerCase())}P.on(document,"click.bs.button.data-api",'[data-bs-toggle="button"]',t=>{t.preventDefault();const e=t.target.closest('[data-bs-toggle="button"]');q.getOrCreateInstance(e).toggle()}),_(q);const U={setDataAttribute(t,e,i){t.setAttribute("data-bs-"+$(e),i)},removeDataAttribute(t,e){t.removeAttribute("data-bs-"+$(e))},getDataAttributes(t){if(!t)return{};const e={};return Object.keys(t.dataset).filter(t=>t.startsWith("bs")).forEach(i=>{let n=i.replace(/^bs/,"");n=n.charAt(0).toLowerCase()+n.slice(1,n.length),e[n]=z(t.dataset[i])}),e},getDataAttribute:(t,e)=>z(t.getAttribute("data-bs-"+$(e))),offset(t){const e=t.getBoundingClientRect();return{top:e.top+document.body.scrollTop,left:e.left+document.body.scrollLeft}},position:t=>({top:t.offsetTop,left:t.offsetLeft})},F={interval:5e3,keyboard:!0,slide:!1,pause:"hover",wrap:!0,touch:!0},V={interval:"(number|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean",touch:"boolean"},K="next",X="prev",Y="left",Q="right",G={ArrowLeft:Q,ArrowRight:Y};class Z extends B{constructor(e,i){super(e),this._items=null,this._interval=null,this._activeElement=null,this._isPaused=!1,this._isSliding=!1,this.touchTimeout=null,this.touchStartX=0,this.touchDeltaX=0,this._config=this._getConfig(i),this._indicatorsElement=t.findOne(".carousel-indicators",this._element),this._touchSupported="ontouchstart"in document.documentElement||navigator.maxTouchPoints>0,this._pointerEvent=Boolean(window.PointerEvent),this._addEventListeners()}static get Default(){return F}static get NAME(){return"carousel"}next(){this._slide(K)}nextWhenVisible(){!document.hidden&&c(this._element)&&this.next()}prev(){this._slide(X)}pause(e){e||(this._isPaused=!0),t.findOne(".carousel-item-next, .carousel-item-prev",this._element)&&(o(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null}cycle(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config&&this._config.interval&&!this._isPaused&&(this._updateInterval(),this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))}to(e){this._activeElement=t.findOne(".active.carousel-item",this._element);const i=this._getItemIndex(this._activeElement);if(e>this._items.length-1||e<0)return;if(this._isSliding)return void P.one(this._element,"slid.bs.carousel",()=>this.to(e));if(i===e)return this.pause(),void this.cycle();const n=e>i?K:X;this._slide(n,this._items[e])}_getConfig(t){return t={...F,...U.getDataAttributes(this._element),..."object"==typeof t?t:{}},l("carousel",t,V),t}_handleSwipe(){const t=Math.abs(this.touchDeltaX);if(t<=40)return;const e=t/this.touchDeltaX;this.touchDeltaX=0,e&&this._slide(e>0?Q:Y)}_addEventListeners(){this._config.keyboard&&P.on(this._element,"keydown.bs.carousel",t=>this._keydown(t)),"hover"===this._config.pause&&(P.on(this._element,"mouseenter.bs.carousel",t=>this.pause(t)),P.on(this._element,"mouseleave.bs.carousel",t=>this.cycle(t))),this._config.touch&&this._touchSupported&&this._addTouchEventListeners()}_addTouchEventListeners(){const e=t=>{!this._pointerEvent||"pen"!==t.pointerType&&"touch"!==t.pointerType?this._pointerEvent||(this.touchStartX=t.touches[0].clientX):this.touchStartX=t.clientX},i=t=>{this.touchDeltaX=t.touches&&t.touches.length>1?0:t.touches[0].clientX-this.touchStartX},n=t=>{!this._pointerEvent||"pen"!==t.pointerType&&"touch"!==t.pointerType||(this.touchDeltaX=t.clientX-this.touchStartX),this._handleSwipe(),"hover"===this._config.pause&&(this.pause(),this.touchTimeout&&clearTimeout(this.touchTimeout),this.touchTimeout=setTimeout(t=>this.cycle(t),500+this._config.interval))};t.find(".carousel-item img",this._element).forEach(t=>{P.on(t,"dragstart.bs.carousel",t=>t.preventDefault())}),this._pointerEvent?(P.on(this._element,"pointerdown.bs.carousel",t=>e(t)),P.on(this._element,"pointerup.bs.carousel",t=>n(t)),this._element.classList.add("pointer-event")):(P.on(this._element,"touchstart.bs.carousel",t=>e(t)),P.on(this._element,"touchmove.bs.carousel",t=>i(t)),P.on(this._element,"touchend.bs.carousel",t=>n(t)))}_keydown(t){if(/input|textarea/i.test(t.target.tagName))return;const e=G[t.key];e&&(t.preventDefault(),this._slide(e))}_getItemIndex(e){return this._items=e&&e.parentNode?t.find(".carousel-item",e.parentNode):[],this._items.indexOf(e)}_getItemByOrder(t,e){const i=t===K;return y(this._items,e,i,this._config.wrap)}_triggerSlideEvent(e,i){const n=this._getItemIndex(e),s=this._getItemIndex(t.findOne(".active.carousel-item",this._element));return P.trigger(this._element,"slide.bs.carousel",{relatedTarget:e,direction:i,from:s,to:n})}_setActiveIndicatorElement(e){if(this._indicatorsElement){const i=t.findOne(".active",this._indicatorsElement);i.classList.remove("active"),i.removeAttribute("aria-current");const n=t.find("[data-bs-target]",this._indicatorsElement);for(let t=0;t{P.trigger(this._element,"slid.bs.carousel",{relatedTarget:r,direction:u,from:o,to:a})};if(this._element.classList.contains("slide")){r.classList.add(d),f(r),s.classList.add(h),r.classList.add(h);const t=()=>{r.classList.remove(h,d),r.classList.add("active"),s.classList.remove("active",d,h),this._isSliding=!1,setTimeout(p,0)};this._queueCallback(t,s,!0)}else s.classList.remove("active"),r.classList.add("active"),this._isSliding=!1,p();l&&this.cycle()}_directionToOrder(t){return[Q,Y].includes(t)?g()?t===Y?X:K:t===Y?K:X:t}_orderToDirection(t){return[K,X].includes(t)?g()?t===X?Y:Q:t===X?Q:Y:t}static carouselInterface(t,e){const i=Z.getOrCreateInstance(t,e);let{_config:n}=i;"object"==typeof e&&(n={...n,...e});const s="string"==typeof e?e:n.slide;if("number"==typeof e)i.to(e);else if("string"==typeof s){if(void 0===i[s])throw new TypeError(`No method named "${s}"`);i[s]()}else n.interval&&n.ride&&(i.pause(),i.cycle())}static jQueryInterface(t){return this.each((function(){Z.carouselInterface(this,t)}))}static dataApiClickHandler(t){const e=s(this);if(!e||!e.classList.contains("carousel"))return;const i={...U.getDataAttributes(e),...U.getDataAttributes(this)},n=this.getAttribute("data-bs-slide-to");n&&(i.interval=!1),Z.carouselInterface(e,i),n&&Z.getInstance(e).to(n),t.preventDefault()}}P.on(document,"click.bs.carousel.data-api","[data-bs-slide], [data-bs-slide-to]",Z.dataApiClickHandler),P.on(window,"load.bs.carousel.data-api",()=>{const e=t.find('[data-bs-ride="carousel"]');for(let t=0,i=e.length;tt===this._element);null!==o&&r.length&&(this._selector=o,this._triggerArray.push(i))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}static get Default(){return J}static get NAME(){return"collapse"}toggle(){this._element.classList.contains("show")?this.hide():this.show()}show(){if(this._isTransitioning||this._element.classList.contains("show"))return;let e,i;this._parent&&(e=t.find(".show, .collapsing",this._parent).filter(t=>"string"==typeof this._config.parent?t.getAttribute("data-bs-parent")===this._config.parent:t.classList.contains("collapse")),0===e.length&&(e=null));const n=t.findOne(this._selector);if(e){const t=e.find(t=>n!==t);if(i=t?et.getInstance(t):null,i&&i._isTransitioning)return}if(P.trigger(this._element,"show.bs.collapse").defaultPrevented)return;e&&e.forEach(t=>{n!==t&&et.collapseInterface(t,"hide"),i||R.set(t,"bs.collapse",null)});const s=this._getDimension();this._element.classList.remove("collapse"),this._element.classList.add("collapsing"),this._element.style[s]=0,this._triggerArray.length&&this._triggerArray.forEach(t=>{t.classList.remove("collapsed"),t.setAttribute("aria-expanded",!0)}),this.setTransitioning(!0);const o="scroll"+(s[0].toUpperCase()+s.slice(1));this._queueCallback(()=>{this._element.classList.remove("collapsing"),this._element.classList.add("collapse","show"),this._element.style[s]="",this.setTransitioning(!1),P.trigger(this._element,"shown.bs.collapse")},this._element,!0),this._element.style[s]=this._element[o]+"px"}hide(){if(this._isTransitioning||!this._element.classList.contains("show"))return;if(P.trigger(this._element,"hide.bs.collapse").defaultPrevented)return;const t=this._getDimension();this._element.style[t]=this._element.getBoundingClientRect()[t]+"px",f(this._element),this._element.classList.add("collapsing"),this._element.classList.remove("collapse","show");const e=this._triggerArray.length;if(e>0)for(let t=0;t{this.setTransitioning(!1),this._element.classList.remove("collapsing"),this._element.classList.add("collapse"),P.trigger(this._element,"hidden.bs.collapse")},this._element,!0)}setTransitioning(t){this._isTransitioning=t}_getConfig(t){return(t={...J,...t}).toggle=Boolean(t.toggle),l("collapse",t,tt),t}_getDimension(){return this._element.classList.contains("width")?"width":"height"}_getParent(){let{parent:e}=this._config;e=a(e);const i=`[data-bs-toggle="collapse"][data-bs-parent="${e}"]`;return t.find(i,e).forEach(t=>{const e=s(t);this._addAriaAndCollapsedClass(e,[t])}),e}_addAriaAndCollapsedClass(t,e){if(!t||!e.length)return;const i=t.classList.contains("show");e.forEach(t=>{i?t.classList.remove("collapsed"):t.classList.add("collapsed"),t.setAttribute("aria-expanded",i)})}static collapseInterface(t,e){let i=et.getInstance(t);const n={...J,...U.getDataAttributes(t),..."object"==typeof e&&e?e:{}};if(!i&&n.toggle&&"string"==typeof e&&/show|hide/.test(e)&&(n.toggle=!1),i||(i=new et(t,n)),"string"==typeof e){if(void 0===i[e])throw new TypeError(`No method named "${e}"`);i[e]()}}static jQueryInterface(t){return this.each((function(){et.collapseInterface(this,t)}))}}P.on(document,"click.bs.collapse.data-api",'[data-bs-toggle="collapse"]',(function(e){("A"===e.target.tagName||e.delegateTarget&&"A"===e.delegateTarget.tagName)&&e.preventDefault();const i=U.getDataAttributes(this),s=n(this);t.find(s).forEach(t=>{const e=et.getInstance(t);let n;e?(null===e._parent&&"string"==typeof i.parent&&(e._config.parent=i.parent,e._parent=e._getParent()),n="toggle"):n=i,et.collapseInterface(t,n)})})),_(et);var it="top",nt="bottom",st="right",ot="left",rt=[it,nt,st,ot],at=rt.reduce((function(t,e){return t.concat([e+"-start",e+"-end"])}),[]),lt=[].concat(rt,["auto"]).reduce((function(t,e){return t.concat([e,e+"-start",e+"-end"])}),[]),ct=["beforeRead","read","afterRead","beforeMain","main","afterMain","beforeWrite","write","afterWrite"];function ht(t){return t?(t.nodeName||"").toLowerCase():null}function dt(t){if(null==t)return window;if("[object Window]"!==t.toString()){var e=t.ownerDocument;return e&&e.defaultView||window}return t}function ut(t){return t instanceof dt(t).Element||t instanceof Element}function ft(t){return t instanceof dt(t).HTMLElement||t instanceof HTMLElement}function pt(t){return"undefined"!=typeof ShadowRoot&&(t instanceof dt(t).ShadowRoot||t instanceof ShadowRoot)}var mt={name:"applyStyles",enabled:!0,phase:"write",fn:function(t){var e=t.state;Object.keys(e.elements).forEach((function(t){var i=e.styles[t]||{},n=e.attributes[t]||{},s=e.elements[t];ft(s)&&ht(s)&&(Object.assign(s.style,i),Object.keys(n).forEach((function(t){var e=n[t];!1===e?s.removeAttribute(t):s.setAttribute(t,!0===e?"":e)})))}))},effect:function(t){var e=t.state,i={popper:{position:e.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(e.elements.popper.style,i.popper),e.styles=i,e.elements.arrow&&Object.assign(e.elements.arrow.style,i.arrow),function(){Object.keys(e.elements).forEach((function(t){var n=e.elements[t],s=e.attributes[t]||{},o=Object.keys(e.styles.hasOwnProperty(t)?e.styles[t]:i[t]).reduce((function(t,e){return t[e]="",t}),{});ft(n)&&ht(n)&&(Object.assign(n.style,o),Object.keys(s).forEach((function(t){n.removeAttribute(t)})))}))}},requires:["computeStyles"]};function gt(t){return t.split("-")[0]}function _t(t){var e=t.getBoundingClientRect();return{width:e.width,height:e.height,top:e.top,right:e.right,bottom:e.bottom,left:e.left,x:e.left,y:e.top}}function bt(t){var e=_t(t),i=t.offsetWidth,n=t.offsetHeight;return Math.abs(e.width-i)<=1&&(i=e.width),Math.abs(e.height-n)<=1&&(n=e.height),{x:t.offsetLeft,y:t.offsetTop,width:i,height:n}}function vt(t,e){var i=e.getRootNode&&e.getRootNode();if(t.contains(e))return!0;if(i&&pt(i)){var n=e;do{if(n&&t.isSameNode(n))return!0;n=n.parentNode||n.host}while(n)}return!1}function yt(t){return dt(t).getComputedStyle(t)}function wt(t){return["table","td","th"].indexOf(ht(t))>=0}function Et(t){return((ut(t)?t.ownerDocument:t.document)||window.document).documentElement}function At(t){return"html"===ht(t)?t:t.assignedSlot||t.parentNode||(pt(t)?t.host:null)||Et(t)}function Tt(t){return ft(t)&&"fixed"!==yt(t).position?t.offsetParent:null}function Ot(t){for(var e=dt(t),i=Tt(t);i&&wt(i)&&"static"===yt(i).position;)i=Tt(i);return i&&("html"===ht(i)||"body"===ht(i)&&"static"===yt(i).position)?e:i||function(t){var e=-1!==navigator.userAgent.toLowerCase().indexOf("firefox");if(-1!==navigator.userAgent.indexOf("Trident")&&ft(t)&&"fixed"===yt(t).position)return null;for(var i=At(t);ft(i)&&["html","body"].indexOf(ht(i))<0;){var n=yt(i);if("none"!==n.transform||"none"!==n.perspective||"paint"===n.contain||-1!==["transform","perspective"].indexOf(n.willChange)||e&&"filter"===n.willChange||e&&n.filter&&"none"!==n.filter)return i;i=i.parentNode}return null}(t)||e}function Ct(t){return["top","bottom"].indexOf(t)>=0?"x":"y"}var kt=Math.max,Lt=Math.min,xt=Math.round;function Dt(t,e,i){return kt(t,Lt(e,i))}function St(t){return Object.assign({},{top:0,right:0,bottom:0,left:0},t)}function It(t,e){return e.reduce((function(e,i){return e[i]=t,e}),{})}var Nt={name:"arrow",enabled:!0,phase:"main",fn:function(t){var e,i=t.state,n=t.name,s=t.options,o=i.elements.arrow,r=i.modifiersData.popperOffsets,a=gt(i.placement),l=Ct(a),c=[ot,st].indexOf(a)>=0?"height":"width";if(o&&r){var h=function(t,e){return St("number"!=typeof(t="function"==typeof t?t(Object.assign({},e.rects,{placement:e.placement})):t)?t:It(t,rt))}(s.padding,i),d=bt(o),u="y"===l?it:ot,f="y"===l?nt:st,p=i.rects.reference[c]+i.rects.reference[l]-r[l]-i.rects.popper[c],m=r[l]-i.rects.reference[l],g=Ot(o),_=g?"y"===l?g.clientHeight||0:g.clientWidth||0:0,b=p/2-m/2,v=h[u],y=_-d[c]-h[f],w=_/2-d[c]/2+b,E=Dt(v,w,y),A=l;i.modifiersData[n]=((e={})[A]=E,e.centerOffset=E-w,e)}},effect:function(t){var e=t.state,i=t.options.element,n=void 0===i?"[data-popper-arrow]":i;null!=n&&("string"!=typeof n||(n=e.elements.popper.querySelector(n)))&&vt(e.elements.popper,n)&&(e.elements.arrow=n)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]},jt={top:"auto",right:"auto",bottom:"auto",left:"auto"};function Mt(t){var e,i=t.popper,n=t.popperRect,s=t.placement,o=t.offsets,r=t.position,a=t.gpuAcceleration,l=t.adaptive,c=t.roundOffsets,h=!0===c?function(t){var e=t.x,i=t.y,n=window.devicePixelRatio||1;return{x:xt(xt(e*n)/n)||0,y:xt(xt(i*n)/n)||0}}(o):"function"==typeof c?c(o):o,d=h.x,u=void 0===d?0:d,f=h.y,p=void 0===f?0:f,m=o.hasOwnProperty("x"),g=o.hasOwnProperty("y"),_=ot,b=it,v=window;if(l){var y=Ot(i),w="clientHeight",E="clientWidth";y===dt(i)&&"static"!==yt(y=Et(i)).position&&(w="scrollHeight",E="scrollWidth"),y=y,s===it&&(b=nt,p-=y[w]-n.height,p*=a?1:-1),s===ot&&(_=st,u-=y[E]-n.width,u*=a?1:-1)}var A,T=Object.assign({position:r},l&&jt);return a?Object.assign({},T,((A={})[b]=g?"0":"",A[_]=m?"0":"",A.transform=(v.devicePixelRatio||1)<2?"translate("+u+"px, "+p+"px)":"translate3d("+u+"px, "+p+"px, 0)",A)):Object.assign({},T,((e={})[b]=g?p+"px":"",e[_]=m?u+"px":"",e.transform="",e))}var Pt={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(t){var e=t.state,i=t.options,n=i.gpuAcceleration,s=void 0===n||n,o=i.adaptive,r=void 0===o||o,a=i.roundOffsets,l=void 0===a||a,c={placement:gt(e.placement),popper:e.elements.popper,popperRect:e.rects.popper,gpuAcceleration:s};null!=e.modifiersData.popperOffsets&&(e.styles.popper=Object.assign({},e.styles.popper,Mt(Object.assign({},c,{offsets:e.modifiersData.popperOffsets,position:e.options.strategy,adaptive:r,roundOffsets:l})))),null!=e.modifiersData.arrow&&(e.styles.arrow=Object.assign({},e.styles.arrow,Mt(Object.assign({},c,{offsets:e.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:l})))),e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-placement":e.placement})},data:{}},Ht={passive:!0},Rt={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(t){var e=t.state,i=t.instance,n=t.options,s=n.scroll,o=void 0===s||s,r=n.resize,a=void 0===r||r,l=dt(e.elements.popper),c=[].concat(e.scrollParents.reference,e.scrollParents.popper);return o&&c.forEach((function(t){t.addEventListener("scroll",i.update,Ht)})),a&&l.addEventListener("resize",i.update,Ht),function(){o&&c.forEach((function(t){t.removeEventListener("scroll",i.update,Ht)})),a&&l.removeEventListener("resize",i.update,Ht)}},data:{}},Bt={left:"right",right:"left",bottom:"top",top:"bottom"};function Wt(t){return t.replace(/left|right|bottom|top/g,(function(t){return Bt[t]}))}var qt={start:"end",end:"start"};function zt(t){return t.replace(/start|end/g,(function(t){return qt[t]}))}function $t(t){var e=dt(t);return{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function Ut(t){return _t(Et(t)).left+$t(t).scrollLeft}function Ft(t){var e=yt(t),i=e.overflow,n=e.overflowX,s=e.overflowY;return/auto|scroll|overlay|hidden/.test(i+s+n)}function Vt(t,e){var i;void 0===e&&(e=[]);var n=function t(e){return["html","body","#document"].indexOf(ht(e))>=0?e.ownerDocument.body:ft(e)&&Ft(e)?e:t(At(e))}(t),s=n===(null==(i=t.ownerDocument)?void 0:i.body),o=dt(n),r=s?[o].concat(o.visualViewport||[],Ft(n)?n:[]):n,a=e.concat(r);return s?a:a.concat(Vt(At(r)))}function Kt(t){return Object.assign({},t,{left:t.x,top:t.y,right:t.x+t.width,bottom:t.y+t.height})}function Xt(t,e){return"viewport"===e?Kt(function(t){var e=dt(t),i=Et(t),n=e.visualViewport,s=i.clientWidth,o=i.clientHeight,r=0,a=0;return n&&(s=n.width,o=n.height,/^((?!chrome|android).)*safari/i.test(navigator.userAgent)||(r=n.offsetLeft,a=n.offsetTop)),{width:s,height:o,x:r+Ut(t),y:a}}(t)):ft(e)?function(t){var e=_t(t);return e.top=e.top+t.clientTop,e.left=e.left+t.clientLeft,e.bottom=e.top+t.clientHeight,e.right=e.left+t.clientWidth,e.width=t.clientWidth,e.height=t.clientHeight,e.x=e.left,e.y=e.top,e}(e):Kt(function(t){var e,i=Et(t),n=$t(t),s=null==(e=t.ownerDocument)?void 0:e.body,o=kt(i.scrollWidth,i.clientWidth,s?s.scrollWidth:0,s?s.clientWidth:0),r=kt(i.scrollHeight,i.clientHeight,s?s.scrollHeight:0,s?s.clientHeight:0),a=-n.scrollLeft+Ut(t),l=-n.scrollTop;return"rtl"===yt(s||i).direction&&(a+=kt(i.clientWidth,s?s.clientWidth:0)-o),{width:o,height:r,x:a,y:l}}(Et(t)))}function Yt(t){return t.split("-")[1]}function Qt(t){var e,i=t.reference,n=t.element,s=t.placement,o=s?gt(s):null,r=s?Yt(s):null,a=i.x+i.width/2-n.width/2,l=i.y+i.height/2-n.height/2;switch(o){case it:e={x:a,y:i.y-n.height};break;case nt:e={x:a,y:i.y+i.height};break;case st:e={x:i.x+i.width,y:l};break;case ot:e={x:i.x-n.width,y:l};break;default:e={x:i.x,y:i.y}}var c=o?Ct(o):null;if(null!=c){var h="y"===c?"height":"width";switch(r){case"start":e[c]=e[c]-(i[h]/2-n[h]/2);break;case"end":e[c]=e[c]+(i[h]/2-n[h]/2)}}return e}function Gt(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=void 0===n?t.placement:n,o=i.boundary,r=void 0===o?"clippingParents":o,a=i.rootBoundary,l=void 0===a?"viewport":a,c=i.elementContext,h=void 0===c?"popper":c,d=i.altBoundary,u=void 0!==d&&d,f=i.padding,p=void 0===f?0:f,m=St("number"!=typeof p?p:It(p,rt)),g="popper"===h?"reference":"popper",_=t.elements.reference,b=t.rects.popper,v=t.elements[u?g:h],y=function(t,e,i){var n="clippingParents"===e?function(t){var e=Vt(At(t)),i=["absolute","fixed"].indexOf(yt(t).position)>=0&&ft(t)?Ot(t):t;return ut(i)?e.filter((function(t){return ut(t)&&vt(t,i)&&"body"!==ht(t)})):[]}(t):[].concat(e),s=[].concat(n,[i]),o=s[0],r=s.reduce((function(e,i){var n=Xt(t,i);return e.top=kt(n.top,e.top),e.right=Lt(n.right,e.right),e.bottom=Lt(n.bottom,e.bottom),e.left=kt(n.left,e.left),e}),Xt(t,o));return r.width=r.right-r.left,r.height=r.bottom-r.top,r.x=r.left,r.y=r.top,r}(ut(v)?v:v.contextElement||Et(t.elements.popper),r,l),w=_t(_),E=Qt({reference:w,element:b,strategy:"absolute",placement:s}),A=Kt(Object.assign({},b,E)),T="popper"===h?A:w,O={top:y.top-T.top+m.top,bottom:T.bottom-y.bottom+m.bottom,left:y.left-T.left+m.left,right:T.right-y.right+m.right},C=t.modifiersData.offset;if("popper"===h&&C){var k=C[s];Object.keys(O).forEach((function(t){var e=[st,nt].indexOf(t)>=0?1:-1,i=[it,nt].indexOf(t)>=0?"y":"x";O[t]+=k[i]*e}))}return O}function Zt(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=i.boundary,o=i.rootBoundary,r=i.padding,a=i.flipVariations,l=i.allowedAutoPlacements,c=void 0===l?lt:l,h=Yt(n),d=h?a?at:at.filter((function(t){return Yt(t)===h})):rt,u=d.filter((function(t){return c.indexOf(t)>=0}));0===u.length&&(u=d);var f=u.reduce((function(e,i){return e[i]=Gt(t,{placement:i,boundary:s,rootBoundary:o,padding:r})[gt(i)],e}),{});return Object.keys(f).sort((function(t,e){return f[t]-f[e]}))}var Jt={name:"flip",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name;if(!e.modifiersData[n]._skip){for(var s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0===r||r,l=i.fallbackPlacements,c=i.padding,h=i.boundary,d=i.rootBoundary,u=i.altBoundary,f=i.flipVariations,p=void 0===f||f,m=i.allowedAutoPlacements,g=e.options.placement,_=gt(g),b=l||(_!==g&&p?function(t){if("auto"===gt(t))return[];var e=Wt(t);return[zt(t),e,zt(e)]}(g):[Wt(g)]),v=[g].concat(b).reduce((function(t,i){return t.concat("auto"===gt(i)?Zt(e,{placement:i,boundary:h,rootBoundary:d,padding:c,flipVariations:p,allowedAutoPlacements:m}):i)}),[]),y=e.rects.reference,w=e.rects.popper,E=new Map,A=!0,T=v[0],O=0;O=0,D=x?"width":"height",S=Gt(e,{placement:C,boundary:h,rootBoundary:d,altBoundary:u,padding:c}),I=x?L?st:ot:L?nt:it;y[D]>w[D]&&(I=Wt(I));var N=Wt(I),j=[];if(o&&j.push(S[k]<=0),a&&j.push(S[I]<=0,S[N]<=0),j.every((function(t){return t}))){T=C,A=!1;break}E.set(C,j)}if(A)for(var M=function(t){var e=v.find((function(e){var i=E.get(e);if(i)return i.slice(0,t).every((function(t){return t}))}));if(e)return T=e,"break"},P=p?3:1;P>0&&"break"!==M(P);P--);e.placement!==T&&(e.modifiersData[n]._skip=!0,e.placement=T,e.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};function te(t,e,i){return void 0===i&&(i={x:0,y:0}),{top:t.top-e.height-i.y,right:t.right-e.width+i.x,bottom:t.bottom-e.height+i.y,left:t.left-e.width-i.x}}function ee(t){return[it,st,nt,ot].some((function(e){return t[e]>=0}))}var ie={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(t){var e=t.state,i=t.name,n=e.rects.reference,s=e.rects.popper,o=e.modifiersData.preventOverflow,r=Gt(e,{elementContext:"reference"}),a=Gt(e,{altBoundary:!0}),l=te(r,n),c=te(a,s,o),h=ee(l),d=ee(c);e.modifiersData[i]={referenceClippingOffsets:l,popperEscapeOffsets:c,isReferenceHidden:h,hasPopperEscaped:d},e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-reference-hidden":h,"data-popper-escaped":d})}},ne={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.offset,o=void 0===s?[0,0]:s,r=lt.reduce((function(t,i){return t[i]=function(t,e,i){var n=gt(t),s=[ot,it].indexOf(n)>=0?-1:1,o="function"==typeof i?i(Object.assign({},e,{placement:t})):i,r=o[0],a=o[1];return r=r||0,a=(a||0)*s,[ot,st].indexOf(n)>=0?{x:a,y:r}:{x:r,y:a}}(i,e.rects,o),t}),{}),a=r[e.placement],l=a.x,c=a.y;null!=e.modifiersData.popperOffsets&&(e.modifiersData.popperOffsets.x+=l,e.modifiersData.popperOffsets.y+=c),e.modifiersData[n]=r}},se={name:"popperOffsets",enabled:!0,phase:"read",fn:function(t){var e=t.state,i=t.name;e.modifiersData[i]=Qt({reference:e.rects.reference,element:e.rects.popper,strategy:"absolute",placement:e.placement})},data:{}},oe={name:"preventOverflow",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0!==r&&r,l=i.boundary,c=i.rootBoundary,h=i.altBoundary,d=i.padding,u=i.tether,f=void 0===u||u,p=i.tetherOffset,m=void 0===p?0:p,g=Gt(e,{boundary:l,rootBoundary:c,padding:d,altBoundary:h}),_=gt(e.placement),b=Yt(e.placement),v=!b,y=Ct(_),w="x"===y?"y":"x",E=e.modifiersData.popperOffsets,A=e.rects.reference,T=e.rects.popper,O="function"==typeof m?m(Object.assign({},e.rects,{placement:e.placement})):m,C={x:0,y:0};if(E){if(o||a){var k="y"===y?it:ot,L="y"===y?nt:st,x="y"===y?"height":"width",D=E[y],S=E[y]+g[k],I=E[y]-g[L],N=f?-T[x]/2:0,j="start"===b?A[x]:T[x],M="start"===b?-T[x]:-A[x],P=e.elements.arrow,H=f&&P?bt(P):{width:0,height:0},R=e.modifiersData["arrow#persistent"]?e.modifiersData["arrow#persistent"].padding:{top:0,right:0,bottom:0,left:0},B=R[k],W=R[L],q=Dt(0,A[x],H[x]),z=v?A[x]/2-N-q-B-O:j-q-B-O,$=v?-A[x]/2+N+q+W+O:M+q+W+O,U=e.elements.arrow&&Ot(e.elements.arrow),F=U?"y"===y?U.clientTop||0:U.clientLeft||0:0,V=e.modifiersData.offset?e.modifiersData.offset[e.placement][y]:0,K=E[y]+z-V-F,X=E[y]+$-V;if(o){var Y=Dt(f?Lt(S,K):S,D,f?kt(I,X):I);E[y]=Y,C[y]=Y-D}if(a){var Q="x"===y?it:ot,G="x"===y?nt:st,Z=E[w],J=Z+g[Q],tt=Z-g[G],et=Dt(f?Lt(J,K):J,Z,f?kt(tt,X):tt);E[w]=et,C[w]=et-Z}}e.modifiersData[n]=C}},requiresIfExists:["offset"]};function re(t,e,i){void 0===i&&(i=!1);var n,s,o=Et(e),r=_t(t),a=ft(e),l={scrollLeft:0,scrollTop:0},c={x:0,y:0};return(a||!a&&!i)&&(("body"!==ht(e)||Ft(o))&&(l=(n=e)!==dt(n)&&ft(n)?{scrollLeft:(s=n).scrollLeft,scrollTop:s.scrollTop}:$t(n)),ft(e)?((c=_t(e)).x+=e.clientLeft,c.y+=e.clientTop):o&&(c.x=Ut(o))),{x:r.left+l.scrollLeft-c.x,y:r.top+l.scrollTop-c.y,width:r.width,height:r.height}}var ae={placement:"bottom",modifiers:[],strategy:"absolute"};function le(){for(var t=arguments.length,e=new Array(t),i=0;i"applyStyles"===t.name&&!1===t.enabled);this._popper=ue(e,this._menu,i),n&&U.setDataAttribute(this._menu,"popper","static")}"ontouchstart"in document.documentElement&&!t.closest(".navbar-nav")&&[].concat(...document.body.children).forEach(t=>P.on(t,"mouseover",u)),this._element.focus(),this._element.setAttribute("aria-expanded",!0),this._menu.classList.toggle("show"),this._element.classList.toggle("show"),P.trigger(this._element,"shown.bs.dropdown",e)}}hide(){if(h(this._element)||!this._menu.classList.contains("show"))return;const t={relatedTarget:this._element};this._completeHide(t)}dispose(){this._popper&&this._popper.destroy(),super.dispose()}update(){this._inNavbar=this._detectNavbar(),this._popper&&this._popper.update()}_addEventListeners(){P.on(this._element,"click.bs.dropdown",t=>{t.preventDefault(),this.toggle()})}_completeHide(t){P.trigger(this._element,"hide.bs.dropdown",t).defaultPrevented||("ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach(t=>P.off(t,"mouseover",u)),this._popper&&this._popper.destroy(),this._menu.classList.remove("show"),this._element.classList.remove("show"),this._element.setAttribute("aria-expanded","false"),U.removeDataAttribute(this._menu,"popper"),P.trigger(this._element,"hidden.bs.dropdown",t))}_getConfig(t){if(t={...this.constructor.Default,...U.getDataAttributes(this._element),...t},l("dropdown",t,this.constructor.DefaultType),"object"==typeof t.reference&&!r(t.reference)&&"function"!=typeof t.reference.getBoundingClientRect)throw new TypeError("dropdown".toUpperCase()+': Option "reference" provided type "object" without a required "getBoundingClientRect" method.');return t}_getMenuElement(){return t.next(this._element,".dropdown-menu")[0]}_getPlacement(){const t=this._element.parentNode;if(t.classList.contains("dropend"))return ve;if(t.classList.contains("dropstart"))return ye;const e="end"===getComputedStyle(this._menu).getPropertyValue("--bs-position").trim();return t.classList.contains("dropup")?e?ge:me:e?be:_e}_detectNavbar(){return null!==this._element.closest(".navbar")}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map(t=>Number.parseInt(t,10)):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(){const t={placement:this._getPlacement(),modifiers:[{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"offset",options:{offset:this._getOffset()}}]};return"static"===this._config.display&&(t.modifiers=[{name:"applyStyles",enabled:!1}]),{...t,..."function"==typeof this._config.popperConfig?this._config.popperConfig(t):this._config.popperConfig}}_selectMenuItem({key:e,target:i}){const n=t.find(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",this._menu).filter(c);n.length&&y(n,i,"ArrowDown"===e,!n.includes(i)).focus()}static dropdownInterface(t,e){const i=Ae.getOrCreateInstance(t,e);if("string"==typeof e){if(void 0===i[e])throw new TypeError(`No method named "${e}"`);i[e]()}}static jQueryInterface(t){return this.each((function(){Ae.dropdownInterface(this,t)}))}static clearMenus(e){if(e&&(2===e.button||"keyup"===e.type&&"Tab"!==e.key))return;const i=t.find('[data-bs-toggle="dropdown"]');for(let t=0,n=i.length;tthis.matches('[data-bs-toggle="dropdown"]')?this:t.prev(this,'[data-bs-toggle="dropdown"]')[0];return"Escape"===e.key?(n().focus(),void Ae.clearMenus()):"ArrowUp"===e.key||"ArrowDown"===e.key?(i||n().click(),void Ae.getInstance(n())._selectMenuItem(e)):void(i&&"Space"!==e.key||Ae.clearMenus())}}P.on(document,"keydown.bs.dropdown.data-api",'[data-bs-toggle="dropdown"]',Ae.dataApiKeydownHandler),P.on(document,"keydown.bs.dropdown.data-api",".dropdown-menu",Ae.dataApiKeydownHandler),P.on(document,"click.bs.dropdown.data-api",Ae.clearMenus),P.on(document,"keyup.bs.dropdown.data-api",Ae.clearMenus),P.on(document,"click.bs.dropdown.data-api",'[data-bs-toggle="dropdown"]',(function(t){t.preventDefault(),Ae.dropdownInterface(this)})),_(Ae);class Te{constructor(){this._element=document.body}getWidth(){const t=document.documentElement.clientWidth;return Math.abs(window.innerWidth-t)}hide(){const t=this.getWidth();this._disableOverFlow(),this._setElementAttributes(this._element,"paddingRight",e=>e+t),this._setElementAttributes(".fixed-top, .fixed-bottom, .is-fixed, .sticky-top","paddingRight",e=>e+t),this._setElementAttributes(".sticky-top","marginRight",e=>e-t)}_disableOverFlow(){this._saveInitialAttribute(this._element,"overflow"),this._element.style.overflow="hidden"}_setElementAttributes(t,e,i){const n=this.getWidth();this._applyManipulationCallback(t,t=>{if(t!==this._element&&window.innerWidth>t.clientWidth+n)return;this._saveInitialAttribute(t,e);const s=window.getComputedStyle(t)[e];t.style[e]=i(Number.parseFloat(s))+"px"})}reset(){this._resetElementAttributes(this._element,"overflow"),this._resetElementAttributes(this._element,"paddingRight"),this._resetElementAttributes(".fixed-top, .fixed-bottom, .is-fixed, .sticky-top","paddingRight"),this._resetElementAttributes(".sticky-top","marginRight")}_saveInitialAttribute(t,e){const i=t.style[e];i&&U.setDataAttribute(t,e,i)}_resetElementAttributes(t,e){this._applyManipulationCallback(t,t=>{const i=U.getDataAttribute(t,e);void 0===i?t.style.removeProperty(e):(U.removeDataAttribute(t,e),t.style[e]=i)})}_applyManipulationCallback(e,i){r(e)?i(e):t.find(e,this._element).forEach(i)}isOverflowing(){return this.getWidth()>0}}const Oe={isVisible:!0,isAnimated:!1,rootElement:"body",clickCallback:null},Ce={isVisible:"boolean",isAnimated:"boolean",rootElement:"(element|string)",clickCallback:"(function|null)"};class ke{constructor(t){this._config=this._getConfig(t),this._isAppended=!1,this._element=null}show(t){this._config.isVisible?(this._append(),this._config.isAnimated&&f(this._getElement()),this._getElement().classList.add("show"),this._emulateAnimation(()=>{b(t)})):b(t)}hide(t){this._config.isVisible?(this._getElement().classList.remove("show"),this._emulateAnimation(()=>{this.dispose(),b(t)})):b(t)}_getElement(){if(!this._element){const t=document.createElement("div");t.className="modal-backdrop",this._config.isAnimated&&t.classList.add("fade"),this._element=t}return this._element}_getConfig(t){return(t={...Oe,..."object"==typeof t?t:{}}).rootElement=a(t.rootElement),l("backdrop",t,Ce),t}_append(){this._isAppended||(this._config.rootElement.appendChild(this._getElement()),P.on(this._getElement(),"mousedown.bs.backdrop",()=>{b(this._config.clickCallback)}),this._isAppended=!0)}dispose(){this._isAppended&&(P.off(this._element,"mousedown.bs.backdrop"),this._element.remove(),this._isAppended=!1)}_emulateAnimation(t){v(t,this._getElement(),this._config.isAnimated)}}const Le={backdrop:!0,keyboard:!0,focus:!0},xe={backdrop:"(boolean|string)",keyboard:"boolean",focus:"boolean"};class De extends B{constructor(e,i){super(e),this._config=this._getConfig(i),this._dialog=t.findOne(".modal-dialog",this._element),this._backdrop=this._initializeBackDrop(),this._isShown=!1,this._ignoreBackdropClick=!1,this._isTransitioning=!1,this._scrollBar=new Te}static get Default(){return Le}static get NAME(){return"modal"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||this._isTransitioning||P.trigger(this._element,"show.bs.modal",{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._isAnimated()&&(this._isTransitioning=!0),this._scrollBar.hide(),document.body.classList.add("modal-open"),this._adjustDialog(),this._setEscapeEvent(),this._setResizeEvent(),P.on(this._element,"click.dismiss.bs.modal",'[data-bs-dismiss="modal"]',t=>this.hide(t)),P.on(this._dialog,"mousedown.dismiss.bs.modal",()=>{P.one(this._element,"mouseup.dismiss.bs.modal",t=>{t.target===this._element&&(this._ignoreBackdropClick=!0)})}),this._showBackdrop(()=>this._showElement(t)))}hide(t){if(t&&["A","AREA"].includes(t.target.tagName)&&t.preventDefault(),!this._isShown||this._isTransitioning)return;if(P.trigger(this._element,"hide.bs.modal").defaultPrevented)return;this._isShown=!1;const e=this._isAnimated();e&&(this._isTransitioning=!0),this._setEscapeEvent(),this._setResizeEvent(),P.off(document,"focusin.bs.modal"),this._element.classList.remove("show"),P.off(this._element,"click.dismiss.bs.modal"),P.off(this._dialog,"mousedown.dismiss.bs.modal"),this._queueCallback(()=>this._hideModal(),this._element,e)}dispose(){[window,this._dialog].forEach(t=>P.off(t,".bs.modal")),this._backdrop.dispose(),super.dispose(),P.off(document,"focusin.bs.modal")}handleUpdate(){this._adjustDialog()}_initializeBackDrop(){return new ke({isVisible:Boolean(this._config.backdrop),isAnimated:this._isAnimated()})}_getConfig(t){return t={...Le,...U.getDataAttributes(this._element),..."object"==typeof t?t:{}},l("modal",t,xe),t}_showElement(e){const i=this._isAnimated(),n=t.findOne(".modal-body",this._dialog);this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(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,n&&(n.scrollTop=0),i&&f(this._element),this._element.classList.add("show"),this._config.focus&&this._enforceFocus(),this._queueCallback(()=>{this._config.focus&&this._element.focus(),this._isTransitioning=!1,P.trigger(this._element,"shown.bs.modal",{relatedTarget:e})},this._dialog,i)}_enforceFocus(){P.off(document,"focusin.bs.modal"),P.on(document,"focusin.bs.modal",t=>{document===t.target||this._element===t.target||this._element.contains(t.target)||this._element.focus()})}_setEscapeEvent(){this._isShown?P.on(this._element,"keydown.dismiss.bs.modal",t=>{this._config.keyboard&&"Escape"===t.key?(t.preventDefault(),this.hide()):this._config.keyboard||"Escape"!==t.key||this._triggerBackdropTransition()}):P.off(this._element,"keydown.dismiss.bs.modal")}_setResizeEvent(){this._isShown?P.on(window,"resize.bs.modal",()=>this._adjustDialog()):P.off(window,"resize.bs.modal")}_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("modal-open"),this._resetAdjustments(),this._scrollBar.reset(),P.trigger(this._element,"hidden.bs.modal")})}_showBackdrop(t){P.on(this._element,"click.dismiss.bs.modal",t=>{this._ignoreBackdropClick?this._ignoreBackdropClick=!1:t.target===t.currentTarget&&(!0===this._config.backdrop?this.hide():"static"===this._config.backdrop&&this._triggerBackdropTransition())}),this._backdrop.show(t)}_isAnimated(){return this._element.classList.contains("fade")}_triggerBackdropTransition(){if(P.trigger(this._element,"hidePrevented.bs.modal").defaultPrevented)return;const{classList:t,scrollHeight:e,style:i}=this._element,n=e>document.documentElement.clientHeight;!n&&"hidden"===i.overflowY||t.contains("modal-static")||(n||(i.overflowY="hidden"),t.add("modal-static"),this._queueCallback(()=>{t.remove("modal-static"),n||this._queueCallback(()=>{i.overflowY=""},this._dialog)},this._dialog),this._element.focus())}_adjustDialog(){const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._scrollBar.getWidth(),i=e>0;(!i&&t&&!g()||i&&!t&&g())&&(this._element.style.paddingLeft=e+"px"),(i&&!t&&!g()||!i&&t&&g())&&(this._element.style.paddingRight=e+"px")}_resetAdjustments(){this._element.style.paddingLeft="",this._element.style.paddingRight=""}static jQueryInterface(t,e){return this.each((function(){const i=De.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t](e)}}))}}P.on(document,"click.bs.modal.data-api",'[data-bs-toggle="modal"]',(function(t){const e=s(this);["A","AREA"].includes(this.tagName)&&t.preventDefault(),P.one(e,"show.bs.modal",t=>{t.defaultPrevented||P.one(e,"hidden.bs.modal",()=>{c(this)&&this.focus()})}),De.getOrCreateInstance(e).toggle(this)})),_(De);const Se={backdrop:!0,keyboard:!0,scroll:!1},Ie={backdrop:"boolean",keyboard:"boolean",scroll:"boolean"};class Ne extends B{constructor(t,e){super(t),this._config=this._getConfig(e),this._isShown=!1,this._backdrop=this._initializeBackDrop(),this._addEventListeners()}static get NAME(){return"offcanvas"}static get Default(){return Se}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||P.trigger(this._element,"show.bs.offcanvas",{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._element.style.visibility="visible",this._backdrop.show(),this._config.scroll||((new Te).hide(),this._enforceFocusOnElement(this._element)),this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.classList.add("show"),this._queueCallback(()=>{P.trigger(this._element,"shown.bs.offcanvas",{relatedTarget:t})},this._element,!0))}hide(){this._isShown&&(P.trigger(this._element,"hide.bs.offcanvas").defaultPrevented||(P.off(document,"focusin.bs.offcanvas"),this._element.blur(),this._isShown=!1,this._element.classList.remove("show"),this._backdrop.hide(),this._queueCallback(()=>{this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._element.style.visibility="hidden",this._config.scroll||(new Te).reset(),P.trigger(this._element,"hidden.bs.offcanvas")},this._element,!0)))}dispose(){this._backdrop.dispose(),super.dispose(),P.off(document,"focusin.bs.offcanvas")}_getConfig(t){return t={...Se,...U.getDataAttributes(this._element),..."object"==typeof t?t:{}},l("offcanvas",t,Ie),t}_initializeBackDrop(){return new ke({isVisible:this._config.backdrop,isAnimated:!0,rootElement:this._element.parentNode,clickCallback:()=>this.hide()})}_enforceFocusOnElement(t){P.off(document,"focusin.bs.offcanvas"),P.on(document,"focusin.bs.offcanvas",e=>{document===e.target||t===e.target||t.contains(e.target)||t.focus()}),t.focus()}_addEventListeners(){P.on(this._element,"click.dismiss.bs.offcanvas",'[data-bs-dismiss="offcanvas"]',()=>this.hide()),P.on(this._element,"keydown.dismiss.bs.offcanvas",t=>{this._config.keyboard&&"Escape"===t.key&&this.hide()})}static jQueryInterface(t){return this.each((function(){const e=Ne.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)}}))}}P.on(document,"click.bs.offcanvas.data-api",'[data-bs-toggle="offcanvas"]',(function(e){const i=s(this);if(["A","AREA"].includes(this.tagName)&&e.preventDefault(),h(this))return;P.one(i,"hidden.bs.offcanvas",()=>{c(this)&&this.focus()});const n=t.findOne(".offcanvas.show");n&&n!==i&&Ne.getInstance(n).hide(),Ne.getOrCreateInstance(i).toggle(this)})),P.on(window,"load.bs.offcanvas.data-api",()=>t.find(".offcanvas.show").forEach(t=>Ne.getOrCreateInstance(t).show())),_(Ne);const je=new Set(["background","cite","href","itemtype","longdesc","poster","src","xlink:href"]),Me=/^(?:(?:https?|mailto|ftp|tel|file):|[^#&/:?]*(?:[#/?]|$))/i,Pe=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[\d+/a-z]+=*$/i,He=(t,e)=>{const i=t.nodeName.toLowerCase();if(e.includes(i))return!je.has(i)||Boolean(Me.test(t.nodeValue)||Pe.test(t.nodeValue));const n=e.filter(t=>t instanceof RegExp);for(let t=0,e=n.length;t{He(t,a)||i.removeAttribute(t.nodeName)})}return n.body.innerHTML}const Be=new RegExp("(^|\\s)bs-tooltip\\S+","g"),We=new Set(["sanitize","allowList","sanitizeFn"]),qe={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(array|string|function)",container:"(string|element|boolean)",fallbackPlacements:"array",boundary:"(string|element)",customClass:"(string|function)",sanitize:"boolean",sanitizeFn:"(null|function)",allowList:"object",popperConfig:"(null|object|function)"},ze={AUTO:"auto",TOP:"top",RIGHT:g()?"left":"right",BOTTOM:"bottom",LEFT:g()?"right":"left"},$e={animation:!0,template:'',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:[0,0],container:!1,fallbackPlacements:["top","right","bottom","left"],boundary:"clippingParents",customClass:"",sanitize:!0,sanitizeFn:null,allowList:{"*":["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:[]},popperConfig:null},Ue={HIDE:"hide.bs.tooltip",HIDDEN:"hidden.bs.tooltip",SHOW:"show.bs.tooltip",SHOWN:"shown.bs.tooltip",INSERTED:"inserted.bs.tooltip",CLICK:"click.bs.tooltip",FOCUSIN:"focusin.bs.tooltip",FOCUSOUT:"focusout.bs.tooltip",MOUSEENTER:"mouseenter.bs.tooltip",MOUSELEAVE:"mouseleave.bs.tooltip"};class Fe extends B{constructor(t,e){if(void 0===fe)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");super(t),this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this._config=this._getConfig(e),this.tip=null,this._setListeners()}static get Default(){return $e}static get NAME(){return"tooltip"}static get Event(){return Ue}static get DefaultType(){return qe}enable(){this._isEnabled=!0}disable(){this._isEnabled=!1}toggleEnabled(){this._isEnabled=!this._isEnabled}toggle(t){if(this._isEnabled)if(t){const e=this._initializeOnDelegatedTarget(t);e._activeTrigger.click=!e._activeTrigger.click,e._isWithActiveTrigger()?e._enter(null,e):e._leave(null,e)}else{if(this.getTipElement().classList.contains("show"))return void this._leave(null,this);this._enter(null,this)}}dispose(){clearTimeout(this._timeout),P.off(this._element.closest(".modal"),"hide.bs.modal",this._hideModalHandler),this.tip&&this.tip.remove(),this._popper&&this._popper.destroy(),super.dispose()}show(){if("none"===this._element.style.display)throw new Error("Please use show on visible elements");if(!this.isWithContent()||!this._isEnabled)return;const t=P.trigger(this._element,this.constructor.Event.SHOW),i=d(this._element),n=null===i?this._element.ownerDocument.documentElement.contains(this._element):i.contains(this._element);if(t.defaultPrevented||!n)return;const s=this.getTipElement(),o=e(this.constructor.NAME);s.setAttribute("id",o),this._element.setAttribute("aria-describedby",o),this.setContent(),this._config.animation&&s.classList.add("fade");const r="function"==typeof this._config.placement?this._config.placement.call(this,s,this._element):this._config.placement,a=this._getAttachment(r);this._addAttachmentClass(a);const{container:l}=this._config;R.set(s,this.constructor.DATA_KEY,this),this._element.ownerDocument.documentElement.contains(this.tip)||(l.appendChild(s),P.trigger(this._element,this.constructor.Event.INSERTED)),this._popper?this._popper.update():this._popper=ue(this._element,s,this._getPopperConfig(a)),s.classList.add("show");const c="function"==typeof this._config.customClass?this._config.customClass():this._config.customClass;c&&s.classList.add(...c.split(" ")),"ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach(t=>{P.on(t,"mouseover",u)});const h=this.tip.classList.contains("fade");this._queueCallback(()=>{const t=this._hoverState;this._hoverState=null,P.trigger(this._element,this.constructor.Event.SHOWN),"out"===t&&this._leave(null,this)},this.tip,h)}hide(){if(!this._popper)return;const t=this.getTipElement();if(P.trigger(this._element,this.constructor.Event.HIDE).defaultPrevented)return;t.classList.remove("show"),"ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach(t=>P.off(t,"mouseover",u)),this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1;const e=this.tip.classList.contains("fade");this._queueCallback(()=>{this._isWithActiveTrigger()||("show"!==this._hoverState&&t.remove(),this._cleanTipClass(),this._element.removeAttribute("aria-describedby"),P.trigger(this._element,this.constructor.Event.HIDDEN),this._popper&&(this._popper.destroy(),this._popper=null))},this.tip,e),this._hoverState=""}update(){null!==this._popper&&this._popper.update()}isWithContent(){return Boolean(this.getTitle())}getTipElement(){if(this.tip)return this.tip;const t=document.createElement("div");return t.innerHTML=this._config.template,this.tip=t.children[0],this.tip}setContent(){const e=this.getTipElement();this.setElementContent(t.findOne(".tooltip-inner",e),this.getTitle()),e.classList.remove("fade","show")}setElementContent(t,e){if(null!==t)return r(e)?(e=a(e),void(this._config.html?e.parentNode!==t&&(t.innerHTML="",t.appendChild(e)):t.textContent=e.textContent)):void(this._config.html?(this._config.sanitize&&(e=Re(e,this._config.allowList,this._config.sanitizeFn)),t.innerHTML=e):t.textContent=e)}getTitle(){let t=this._element.getAttribute("data-bs-original-title");return t||(t="function"==typeof this._config.title?this._config.title.call(this._element):this._config.title),t}updateAttachment(t){return"right"===t?"end":"left"===t?"start":t}_initializeOnDelegatedTarget(t,e){const i=this.constructor.DATA_KEY;return(e=e||R.get(t.delegateTarget,i))||(e=new this.constructor(t.delegateTarget,this._getDelegateConfig()),R.set(t.delegateTarget,i,e)),e}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map(t=>Number.parseInt(t,10)):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(t){const e={placement:t,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:"onChange",enabled:!0,phase:"afterWrite",fn:t=>this._handlePopperPlacementChange(t)}],onFirstUpdate:t=>{t.options.placement!==t.placement&&this._handlePopperPlacementChange(t)}};return{...e,..."function"==typeof this._config.popperConfig?this._config.popperConfig(e):this._config.popperConfig}}_addAttachmentClass(t){this.getTipElement().classList.add("bs-tooltip-"+this.updateAttachment(t))}_getAttachment(t){return ze[t.toUpperCase()]}_setListeners(){this._config.trigger.split(" ").forEach(t=>{if("click"===t)P.on(this._element,this.constructor.Event.CLICK,this._config.selector,t=>this.toggle(t));else if("manual"!==t){const e="hover"===t?this.constructor.Event.MOUSEENTER:this.constructor.Event.FOCUSIN,i="hover"===t?this.constructor.Event.MOUSELEAVE:this.constructor.Event.FOCUSOUT;P.on(this._element,e,this._config.selector,t=>this._enter(t)),P.on(this._element,i,this._config.selector,t=>this._leave(t))}}),this._hideModalHandler=()=>{this._element&&this.hide()},P.on(this._element.closest(".modal"),"hide.bs.modal",this._hideModalHandler),this._config.selector?this._config={...this._config,trigger:"manual",selector:""}:this._fixTitle()}_fixTitle(){const t=this._element.getAttribute("title"),e=typeof this._element.getAttribute("data-bs-original-title");(t||"string"!==e)&&(this._element.setAttribute("data-bs-original-title",t||""),!t||this._element.getAttribute("aria-label")||this._element.textContent||this._element.setAttribute("aria-label",t),this._element.setAttribute("title",""))}_enter(t,e){e=this._initializeOnDelegatedTarget(t,e),t&&(e._activeTrigger["focusin"===t.type?"focus":"hover"]=!0),e.getTipElement().classList.contains("show")||"show"===e._hoverState?e._hoverState="show":(clearTimeout(e._timeout),e._hoverState="show",e._config.delay&&e._config.delay.show?e._timeout=setTimeout(()=>{"show"===e._hoverState&&e.show()},e._config.delay.show):e.show())}_leave(t,e){e=this._initializeOnDelegatedTarget(t,e),t&&(e._activeTrigger["focusout"===t.type?"focus":"hover"]=e._element.contains(t.relatedTarget)),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState="out",e._config.delay&&e._config.delay.hide?e._timeout=setTimeout(()=>{"out"===e._hoverState&&e.hide()},e._config.delay.hide):e.hide())}_isWithActiveTrigger(){for(const t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1}_getConfig(t){const e=U.getDataAttributes(this._element);return Object.keys(e).forEach(t=>{We.has(t)&&delete e[t]}),(t={...this.constructor.Default,...e,..."object"==typeof t&&t?t:{}}).container=!1===t.container?document.body:a(t.container),"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),l("tooltip",t,this.constructor.DefaultType),t.sanitize&&(t.template=Re(t.template,t.allowList,t.sanitizeFn)),t}_getDelegateConfig(){const t={};if(this._config)for(const e in this._config)this.constructor.Default[e]!==this._config[e]&&(t[e]=this._config[e]);return t}_cleanTipClass(){const t=this.getTipElement(),e=t.getAttribute("class").match(Be);null!==e&&e.length>0&&e.map(t=>t.trim()).forEach(e=>t.classList.remove(e))}_handlePopperPlacementChange(t){const{state:e}=t;e&&(this.tip=e.elements.popper,this._cleanTipClass(),this._addAttachmentClass(this._getAttachment(e.placement)))}static jQueryInterface(t){return this.each((function(){const e=Fe.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}_(Fe);const Ve=new RegExp("(^|\\s)bs-popover\\S+","g"),Ke={...Fe.Default,placement:"right",offset:[0,8],trigger:"click",content:"",template:''},Xe={...Fe.DefaultType,content:"(string|element|function)"},Ye={HIDE:"hide.bs.popover",HIDDEN:"hidden.bs.popover",SHOW:"show.bs.popover",SHOWN:"shown.bs.popover",INSERTED:"inserted.bs.popover",CLICK:"click.bs.popover",FOCUSIN:"focusin.bs.popover",FOCUSOUT:"focusout.bs.popover",MOUSEENTER:"mouseenter.bs.popover",MOUSELEAVE:"mouseleave.bs.popover"};class Qe extends Fe{static get Default(){return Ke}static get NAME(){return"popover"}static get Event(){return Ye}static get DefaultType(){return Xe}isWithContent(){return this.getTitle()||this._getContent()}getTipElement(){return this.tip||(this.tip=super.getTipElement(),this.getTitle()||t.findOne(".popover-header",this.tip).remove(),this._getContent()||t.findOne(".popover-body",this.tip).remove()),this.tip}setContent(){const e=this.getTipElement();this.setElementContent(t.findOne(".popover-header",e),this.getTitle());let i=this._getContent();"function"==typeof i&&(i=i.call(this._element)),this.setElementContent(t.findOne(".popover-body",e),i),e.classList.remove("fade","show")}_addAttachmentClass(t){this.getTipElement().classList.add("bs-popover-"+this.updateAttachment(t))}_getContent(){return this._element.getAttribute("data-bs-content")||this._config.content}_cleanTipClass(){const t=this.getTipElement(),e=t.getAttribute("class").match(Ve);null!==e&&e.length>0&&e.map(t=>t.trim()).forEach(e=>t.classList.remove(e))}static jQueryInterface(t){return this.each((function(){const e=Qe.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}_(Qe);const Ge={offset:10,method:"auto",target:""},Ze={offset:"number",method:"string",target:"(string|element)"};class Je extends B{constructor(t,e){super(t),this._scrollElement="BODY"===this._element.tagName?window:this._element,this._config=this._getConfig(e),this._selector=`${this._config.target} .nav-link, ${this._config.target} .list-group-item, ${this._config.target} .dropdown-item`,this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,P.on(this._scrollElement,"scroll.bs.scrollspy",()=>this._process()),this.refresh(),this._process()}static get Default(){return Ge}static get NAME(){return"scrollspy"}refresh(){const e=this._scrollElement===this._scrollElement.window?"offset":"position",i="auto"===this._config.method?e:this._config.method,s="position"===i?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),t.find(this._selector).map(e=>{const o=n(e),r=o?t.findOne(o):null;if(r){const t=r.getBoundingClientRect();if(t.width||t.height)return[U[i](r).top+s,o]}return null}).filter(t=>t).sort((t,e)=>t[0]-e[0]).forEach(t=>{this._offsets.push(t[0]),this._targets.push(t[1])})}dispose(){P.off(this._scrollElement,".bs.scrollspy"),super.dispose()}_getConfig(t){if("string"!=typeof(t={...Ge,...U.getDataAttributes(this._element),..."object"==typeof t&&t?t:{}}).target&&r(t.target)){let{id:i}=t.target;i||(i=e("scrollspy"),t.target.id=i),t.target="#"+i}return l("scrollspy",t,Ze),t}_getScrollTop(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop}_getScrollHeight(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)}_getOffsetHeight(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height}_process(){const t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),i=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=i){const t=this._targets[this._targets.length-1];this._activeTarget!==t&&this._activate(t)}else{if(this._activeTarget&&t0)return this._activeTarget=null,void this._clear();for(let e=this._offsets.length;e--;)this._activeTarget!==this._targets[e]&&t>=this._offsets[e]&&(void 0===this._offsets[e+1]||t`${t}[data-bs-target="${e}"],${t}[href="${e}"]`),n=t.findOne(i.join(","));n.classList.contains("dropdown-item")?(t.findOne(".dropdown-toggle",n.closest(".dropdown")).classList.add("active"),n.classList.add("active")):(n.classList.add("active"),t.parents(n,".nav, .list-group").forEach(e=>{t.prev(e,".nav-link, .list-group-item").forEach(t=>t.classList.add("active")),t.prev(e,".nav-item").forEach(e=>{t.children(e,".nav-link").forEach(t=>t.classList.add("active"))})})),P.trigger(this._scrollElement,"activate.bs.scrollspy",{relatedTarget:e})}_clear(){t.find(this._selector).filter(t=>t.classList.contains("active")).forEach(t=>t.classList.remove("active"))}static jQueryInterface(t){return this.each((function(){const e=Je.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}P.on(window,"load.bs.scrollspy.data-api",()=>{t.find('[data-bs-spy="scroll"]').forEach(t=>new Je(t))}),_(Je);class ti extends B{static get NAME(){return"tab"}show(){if(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&this._element.classList.contains("active"))return;let e;const i=s(this._element),n=this._element.closest(".nav, .list-group");if(n){const i="UL"===n.nodeName||"OL"===n.nodeName?":scope > li > .active":".active";e=t.find(i,n),e=e[e.length-1]}const o=e?P.trigger(e,"hide.bs.tab",{relatedTarget:this._element}):null;if(P.trigger(this._element,"show.bs.tab",{relatedTarget:e}).defaultPrevented||null!==o&&o.defaultPrevented)return;this._activate(this._element,n);const r=()=>{P.trigger(e,"hidden.bs.tab",{relatedTarget:this._element}),P.trigger(this._element,"shown.bs.tab",{relatedTarget:e})};i?this._activate(i,i.parentNode,r):r()}_activate(e,i,n){const s=(!i||"UL"!==i.nodeName&&"OL"!==i.nodeName?t.children(i,".active"):t.find(":scope > li > .active",i))[0],o=n&&s&&s.classList.contains("fade"),r=()=>this._transitionComplete(e,s,n);s&&o?(s.classList.remove("show"),this._queueCallback(r,e,!0)):r()}_transitionComplete(e,i,n){if(i){i.classList.remove("active");const e=t.findOne(":scope > .dropdown-menu .active",i.parentNode);e&&e.classList.remove("active"),"tab"===i.getAttribute("role")&&i.setAttribute("aria-selected",!1)}e.classList.add("active"),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!0),f(e),e.classList.contains("fade")&&e.classList.add("show");let s=e.parentNode;if(s&&"LI"===s.nodeName&&(s=s.parentNode),s&&s.classList.contains("dropdown-menu")){const i=e.closest(".dropdown");i&&t.find(".dropdown-toggle",i).forEach(t=>t.classList.add("active")),e.setAttribute("aria-expanded",!0)}n&&n()}static jQueryInterface(t){return this.each((function(){const e=ti.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}P.on(document,"click.bs.tab.data-api",'[data-bs-toggle="tab"], [data-bs-toggle="pill"], [data-bs-toggle="list"]',(function(t){["A","AREA"].includes(this.tagName)&&t.preventDefault(),h(this)||ti.getOrCreateInstance(this).show()})),_(ti);const ei={animation:"boolean",autohide:"boolean",delay:"number"},ii={animation:!0,autohide:!0,delay:5e3};class ni extends B{constructor(t,e){super(t),this._config=this._getConfig(e),this._timeout=null,this._hasMouseInteraction=!1,this._hasKeyboardInteraction=!1,this._setListeners()}static get DefaultType(){return ei}static get Default(){return ii}static get NAME(){return"toast"}show(){P.trigger(this._element,"show.bs.toast").defaultPrevented||(this._clearTimeout(),this._config.animation&&this._element.classList.add("fade"),this._element.classList.remove("hide"),f(this._element),this._element.classList.add("showing"),this._queueCallback(()=>{this._element.classList.remove("showing"),this._element.classList.add("show"),P.trigger(this._element,"shown.bs.toast"),this._maybeScheduleHide()},this._element,this._config.animation))}hide(){this._element.classList.contains("show")&&(P.trigger(this._element,"hide.bs.toast").defaultPrevented||(this._element.classList.remove("show"),this._queueCallback(()=>{this._element.classList.add("hide"),P.trigger(this._element,"hidden.bs.toast")},this._element,this._config.animation)))}dispose(){this._clearTimeout(),this._element.classList.contains("show")&&this._element.classList.remove("show"),super.dispose()}_getConfig(t){return t={...ii,...U.getDataAttributes(this._element),..."object"==typeof t&&t?t:{}},l("toast",t,this.constructor.DefaultType),t}_maybeScheduleHide(){this._config.autohide&&(this._hasMouseInteraction||this._hasKeyboardInteraction||(this._timeout=setTimeout(()=>{this.hide()},this._config.delay)))}_onInteraction(t,e){switch(t.type){case"mouseover":case"mouseout":this._hasMouseInteraction=e;break;case"focusin":case"focusout":this._hasKeyboardInteraction=e}if(e)return void this._clearTimeout();const i=t.relatedTarget;this._element===i||this._element.contains(i)||this._maybeScheduleHide()}_setListeners(){P.on(this._element,"click.dismiss.bs.toast",'[data-bs-dismiss="toast"]',()=>this.hide()),P.on(this._element,"mouseover.bs.toast",t=>this._onInteraction(t,!0)),P.on(this._element,"mouseout.bs.toast",t=>this._onInteraction(t,!1)),P.on(this._element,"focusin.bs.toast",t=>this._onInteraction(t,!0)),P.on(this._element,"focusout.bs.toast",t=>this._onInteraction(t,!1))}_clearTimeout(){clearTimeout(this._timeout),this._timeout=null}static jQueryInterface(t){return this.each((function(){const e=ni.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}return _(ni),{Alert:W,Button:q,Carousel:Z,Collapse:et,Dropdown:Ae,Modal:De,Offcanvas:Ne,Popover:Qe,ScrollSpy:Je,Tab:ti,Toast:ni,Tooltip:Fe}}));
+//# sourceMappingURL=bootstrap.bundle.min.js.map
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/SimplexTheme/Content/js/bootstrap.esm.min.js b/Presentation/Nop.Web/Themes/SimplexTheme/Content/js/bootstrap.esm.min.js
new file mode 100644
index 0000000..adfb373
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/SimplexTheme/Content/js/bootstrap.esm.min.js
@@ -0,0 +1,7 @@
+/*!
+ * Bootstrap v5.0.2 (https://getbootstrap.com/)
+ * Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
+ */
+import*as Popper from"@popperjs/core";const NODE_TEXT=3,SelectorEngine={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){const n=[];let i=e.parentNode;for(;i&&i.nodeType===Node.ELEMENT_NODE&&3!==i.nodeType;)i.matches(t)&&n.push(i),i=i.parentNode;return n},prev(e,t){let n=e.previousElementSibling;for(;n;){if(n.matches(t))return[n];n=n.previousElementSibling}return[]},next(e,t){let n=e.nextElementSibling;for(;n;){if(n.matches(t))return[n];n=n.nextElementSibling}return[]}},MAX_UID=1e6,MILLISECONDS_MULTIPLIER=1e3,TRANSITION_END="transitionend",toType=e=>null==e?""+e:{}.toString.call(e).match(/\s([a-z]+)/i)[1].toLowerCase(),getUID=e=>{do{e+=Math.floor(1e6*Math.random())}while(document.getElementById(e));return e},getSelector=e=>{let t=e.getAttribute("data-bs-target");if(!t||"#"===t){let n=e.getAttribute("href");if(!n||!n.includes("#")&&!n.startsWith("."))return null;n.includes("#")&&!n.startsWith("#")&&(n="#"+n.split("#")[1]),t=n&&"#"!==n?n.trim():null}return t},getSelectorFromElement=e=>{const t=getSelector(e);return t&&document.querySelector(t)?t:null},getElementFromSelector=e=>{const t=getSelector(e);return t?document.querySelector(t):null},getTransitionDurationFromElement=e=>{if(!e)return 0;let{transitionDuration:t,transitionDelay:n}=window.getComputedStyle(e);const i=Number.parseFloat(t),s=Number.parseFloat(n);return i||s?(t=t.split(",")[0],n=n.split(",")[0],1e3*(Number.parseFloat(t)+Number.parseFloat(n))):0},triggerTransitionEnd=e=>{e.dispatchEvent(new Event(TRANSITION_END))},isElement=e=>!(!e||"object"!=typeof e)&&(void 0!==e.jquery&&(e=e[0]),void 0!==e.nodeType),getElement=e=>isElement(e)?e.jquery?e[0]:e:"string"==typeof e&&e.length>0?SelectorEngine.findOne(e):null,typeCheckConfig=(e,t,n)=>{Object.keys(n).forEach(i=>{const s=n[i],o=t[i],r=o&&isElement(o)?"element":null==(a=o)?""+a:{}.toString.call(a).match(/\s([a-z]+)/i)[1].toLowerCase();var a;if(!new RegExp(s).test(r))throw new TypeError(`${e.toUpperCase()}: Option "${i}" provided type "${r}" but expected type "${s}".`)})},isVisible=e=>!(!isElement(e)||0===e.getClientRects().length)&&"visible"===getComputedStyle(e).getPropertyValue("visibility"),isDisabled=e=>!e||e.nodeType!==Node.ELEMENT_NODE||!!e.classList.contains("disabled")||(void 0!==e.disabled?e.disabled:e.hasAttribute("disabled")&&"false"!==e.getAttribute("disabled")),findShadowRoot=e=>{if(!document.documentElement.attachShadow)return null;if("function"==typeof e.getRootNode){const t=e.getRootNode();return t instanceof ShadowRoot?t:null}return e instanceof ShadowRoot?e:e.parentNode?findShadowRoot(e.parentNode):null},noop=()=>{},reflow=e=>e.offsetHeight,getjQuery=()=>{const{jQuery:e}=window;return e&&!document.body.hasAttribute("data-bs-no-jquery")?e:null},DOMContentLoadedCallbacks=[],onDOMContentLoaded=e=>{"loading"===document.readyState?(DOMContentLoadedCallbacks.length||document.addEventListener("DOMContentLoaded",()=>{DOMContentLoadedCallbacks.forEach(e=>e())}),DOMContentLoadedCallbacks.push(e)):e()},isRTL=()=>"rtl"===document.documentElement.dir,defineJQueryPlugin=e=>{var t;t=()=>{const t=getjQuery();if(t){const n=e.NAME,i=t.fn[n];t.fn[n]=e.jQueryInterface,t.fn[n].Constructor=e,t.fn[n].noConflict=()=>(t.fn[n]=i,e.jQueryInterface)}},"loading"===document.readyState?(DOMContentLoadedCallbacks.length||document.addEventListener("DOMContentLoaded",()=>{DOMContentLoadedCallbacks.forEach(e=>e())}),DOMContentLoadedCallbacks.push(t)):t()},execute=e=>{"function"==typeof e&&e()},executeAfterTransition=(e,t,n=!0)=>{if(!n)return void execute(e);const i=getTransitionDurationFromElement(t)+5;let s=!1;const o=({target:n})=>{n===t&&(s=!0,t.removeEventListener(TRANSITION_END,o),execute(e))};t.addEventListener(TRANSITION_END,o),setTimeout(()=>{s||triggerTransitionEnd(t)},i)},getNextActiveElement=(e,t,n,i)=>{let s=e.indexOf(t);if(-1===s)return e[!n&&i?e.length-1:0];const o=e.length;return s+=n?1:-1,i&&(s=(s+o)%o),e[Math.max(0,Math.min(s,o-1))]},namespaceRegex=/[^.]*(?=\..*)\.|.*/,stripNameRegex=/\..*/,stripUidRegex=/::\d+$/,eventRegistry={};let uidEvent=1;const customEvents={mouseenter:"mouseover",mouseleave:"mouseout"},customEventsRegex=/^(mouseenter|mouseleave)/i,nativeEvents=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 getUidEvent(e,t){return t&&`${t}::${uidEvent++}`||e.uidEvent||uidEvent++}function getEvent(e){const t=getUidEvent(e);return e.uidEvent=t,eventRegistry[t]=eventRegistry[t]||{},eventRegistry[t]}function bootstrapHandler(e,t){return function n(i){return i.delegateTarget=e,n.oneOff&&EventHandler.off(e,i.type,t),t.apply(e,[i])}}function bootstrapDelegationHandler(e,t,n){return function i(s){const o=e.querySelectorAll(t);for(let{target:r}=s;r&&r!==this;r=r.parentNode)for(let a=o.length;a--;)if(o[a]===r)return s.delegateTarget=r,i.oneOff&&EventHandler.off(e,s.type,t,n),n.apply(r,[s]);return null}}function findHandler(e,t,n=null){const i=Object.keys(e);for(let s=0,o=i.length;sfunction(t){if(!t.relatedTarget||t.relatedTarget!==t.delegateTarget&&!t.delegateTarget.contains(t.relatedTarget))return e.call(this,t)};i?i=e(i):n=e(n)}const[o,r,a]=normalizeParams(t,n,i),l=getEvent(e),c=l[a]||(l[a]={}),E=findHandler(c,r,o?n:null);if(E)return void(E.oneOff=E.oneOff&&s);const _=getUidEvent(r,t.replace(namespaceRegex,"")),h=o?bootstrapDelegationHandler(e,n,i):bootstrapHandler(e,n);h.delegationSelector=o?n:null,h.originalHandler=r,h.oneOff=s,h.uidEvent=_,c[_]=h,e.addEventListener(a,h,o)}function removeHandler(e,t,n,i,s){const o=findHandler(t[n],i,s);o&&(e.removeEventListener(n,o,Boolean(s)),delete t[n][o.uidEvent])}function removeNamespacedHandlers(e,t,n,i){const s=t[n]||{};Object.keys(s).forEach(o=>{if(o.includes(i)){const i=s[o];removeHandler(e,t,n,i.originalHandler,i.delegationSelector)}})}function getTypeEvent(e){return e=e.replace(stripNameRegex,""),customEvents[e]||e}const EventHandler={on(e,t,n,i){addHandler(e,t,n,i,!1)},one(e,t,n,i){addHandler(e,t,n,i,!0)},off(e,t,n,i){if("string"!=typeof t||!e)return;const[s,o,r]=normalizeParams(t,n,i),a=r!==t,l=getEvent(e),c=t.startsWith(".");if(void 0!==o){if(!l||!l[r])return;return void removeHandler(e,l,r,o,s?n:null)}c&&Object.keys(l).forEach(n=>{removeNamespacedHandlers(e,l,n,t.slice(1))});const E=l[r]||{};Object.keys(E).forEach(n=>{const i=n.replace(stripUidRegex,"");if(!a||t.includes(i)){const t=E[n];removeHandler(e,l,r,t.originalHandler,t.delegationSelector)}})},trigger(e,t,n){if("string"!=typeof t||!e)return null;const i=getjQuery(),s=getTypeEvent(t),o=t!==s,r=nativeEvents.has(s);let a,l=!0,c=!0,E=!1,_=null;return o&&i&&(a=i.Event(t,n),i(e).trigger(a),l=!a.isPropagationStopped(),c=!a.isImmediatePropagationStopped(),E=a.isDefaultPrevented()),r?(_=document.createEvent("HTMLEvents"),_.initEvent(s,l,!0)):_=new CustomEvent(t,{bubbles:l,cancelable:!0}),void 0!==n&&Object.keys(n).forEach(e=>{Object.defineProperty(_,e,{get:()=>n[e]})}),E&&_.preventDefault(),c&&e.dispatchEvent(_),_.defaultPrevented&&void 0!==a&&a.preventDefault(),_}},elementMap=new Map;var Data={set(e,t,n){elementMap.has(e)||elementMap.set(e,new Map);const i=elementMap.get(e);i.has(t)||0===i.size?i.set(t,n):console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(i.keys())[0]}.`)},get:(e,t)=>elementMap.has(e)&&elementMap.get(e).get(t)||null,remove(e,t){if(!elementMap.has(e))return;const n=elementMap.get(e);n.delete(t),0===n.size&&elementMap.delete(e)}};const VERSION="5.0.2";class BaseComponent{constructor(e){(e=getElement(e))&&(this._element=e,Data.set(this._element,this.constructor.DATA_KEY,this))}dispose(){Data.remove(this._element,this.constructor.DATA_KEY),EventHandler.off(this._element,this.constructor.EVENT_KEY),Object.getOwnPropertyNames(this).forEach(e=>{this[e]=null})}_queueCallback(e,t,n=!0){executeAfterTransition(e,t,n)}static getInstance(e){return Data.get(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.0.2"}static get NAME(){throw new Error('You have to implement the static method "NAME", for each component!')}static get DATA_KEY(){return"bs."+this.NAME}static get EVENT_KEY(){return"."+this.DATA_KEY}}const NAME$c="alert",DATA_KEY$b="bs.alert",EVENT_KEY$b=".bs.alert",DATA_API_KEY$8=".data-api",SELECTOR_DISMISS='[data-bs-dismiss="alert"]',EVENT_CLOSE="close.bs.alert",EVENT_CLOSED="closed.bs.alert",EVENT_CLICK_DATA_API$7="click.bs.alert.data-api",CLASS_NAME_ALERT="alert",CLASS_NAME_FADE$6="fade",CLASS_NAME_SHOW$9="show";class Alert extends BaseComponent{static get NAME(){return NAME$c}close(e){const t=e?this._getRootElement(e):this._element,n=this._triggerCloseEvent(t);null===n||n.defaultPrevented||this._removeElement(t)}_getRootElement(e){return getElementFromSelector(e)||e.closest(".alert")}_triggerCloseEvent(e){return EventHandler.trigger(e,EVENT_CLOSE)}_removeElement(e){e.classList.remove("show");const t=e.classList.contains("fade");this._queueCallback(()=>this._destroyElement(e),e,t)}_destroyElement(e){e.remove(),EventHandler.trigger(e,EVENT_CLOSED)}static jQueryInterface(e){return this.each((function(){const t=Alert.getOrCreateInstance(this);"close"===e&&t[e](this)}))}static handleDismiss(e){return function(t){t&&t.preventDefault(),e.close(this)}}}EventHandler.on(document,EVENT_CLICK_DATA_API$7,SELECTOR_DISMISS,Alert.handleDismiss(new Alert)),defineJQueryPlugin(Alert);const NAME$b="button",DATA_KEY$a="bs.button",EVENT_KEY$a=".bs.button",DATA_API_KEY$7=".data-api",CLASS_NAME_ACTIVE$3="active",SELECTOR_DATA_TOGGLE$5='[data-bs-toggle="button"]',EVENT_CLICK_DATA_API$6="click.bs.button.data-api";class Button extends BaseComponent{static get NAME(){return NAME$b}toggle(){this._element.setAttribute("aria-pressed",this._element.classList.toggle("active"))}static jQueryInterface(e){return this.each((function(){const t=Button.getOrCreateInstance(this);"toggle"===e&&t[e]()}))}}function normalizeData(e){return"true"===e||"false"!==e&&(e===Number(e).toString()?Number(e):""===e||"null"===e?null:e)}function normalizeDataKey(e){return e.replace(/[A-Z]/g,e=>"-"+e.toLowerCase())}EventHandler.on(document,EVENT_CLICK_DATA_API$6,SELECTOR_DATA_TOGGLE$5,e=>{e.preventDefault();const t=e.target.closest(SELECTOR_DATA_TOGGLE$5);Button.getOrCreateInstance(t).toggle()}),defineJQueryPlugin(Button);const Manipulator={setDataAttribute(e,t,n){e.setAttribute("data-bs-"+normalizeDataKey(t),n)},removeDataAttribute(e,t){e.removeAttribute("data-bs-"+normalizeDataKey(t))},getDataAttributes(e){if(!e)return{};const t={};return Object.keys(e.dataset).filter(e=>e.startsWith("bs")).forEach(n=>{let i=n.replace(/^bs/,"");i=i.charAt(0).toLowerCase()+i.slice(1,i.length),t[i]=normalizeData(e.dataset[n])}),t},getDataAttribute:(e,t)=>normalizeData(e.getAttribute("data-bs-"+normalizeDataKey(t))),offset(e){const t=e.getBoundingClientRect();return{top:t.top+document.body.scrollTop,left:t.left+document.body.scrollLeft}},position:e=>({top:e.offsetTop,left:e.offsetLeft})},NAME$a="carousel",DATA_KEY$9="bs.carousel",EVENT_KEY$9=".bs.carousel",DATA_API_KEY$6=".data-api",ARROW_LEFT_KEY="ArrowLeft",ARROW_RIGHT_KEY="ArrowRight",TOUCHEVENT_COMPAT_WAIT=500,SWIPE_THRESHOLD=40,Default$9={interval:5e3,keyboard:!0,slide:!1,pause:"hover",wrap:!0,touch:!0},DefaultType$9={interval:"(number|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean",touch:"boolean"},ORDER_NEXT="next",ORDER_PREV="prev",DIRECTION_LEFT="left",DIRECTION_RIGHT="right",KEY_TO_DIRECTION={ArrowLeft:DIRECTION_RIGHT,ArrowRight:DIRECTION_LEFT},EVENT_SLIDE="slide.bs.carousel",EVENT_SLID="slid.bs.carousel",EVENT_KEYDOWN="keydown.bs.carousel",EVENT_MOUSEENTER="mouseenter.bs.carousel",EVENT_MOUSELEAVE="mouseleave.bs.carousel",EVENT_TOUCHSTART="touchstart.bs.carousel",EVENT_TOUCHMOVE="touchmove.bs.carousel",EVENT_TOUCHEND="touchend.bs.carousel",EVENT_POINTERDOWN="pointerdown.bs.carousel",EVENT_POINTERUP="pointerup.bs.carousel",EVENT_DRAG_START="dragstart.bs.carousel",EVENT_LOAD_DATA_API$2="load.bs.carousel.data-api",EVENT_CLICK_DATA_API$5="click.bs.carousel.data-api",CLASS_NAME_CAROUSEL="carousel",CLASS_NAME_ACTIVE$2="active",CLASS_NAME_SLIDE="slide",CLASS_NAME_END="carousel-item-end",CLASS_NAME_START="carousel-item-start",CLASS_NAME_NEXT="carousel-item-next",CLASS_NAME_PREV="carousel-item-prev",CLASS_NAME_POINTER_EVENT="pointer-event",SELECTOR_ACTIVE$1=".active",SELECTOR_ACTIVE_ITEM=".active.carousel-item",SELECTOR_ITEM=".carousel-item",SELECTOR_ITEM_IMG=".carousel-item img",SELECTOR_NEXT_PREV=".carousel-item-next, .carousel-item-prev",SELECTOR_INDICATORS=".carousel-indicators",SELECTOR_INDICATOR="[data-bs-target]",SELECTOR_DATA_SLIDE="[data-bs-slide], [data-bs-slide-to]",SELECTOR_DATA_RIDE='[data-bs-ride="carousel"]',POINTER_TYPE_TOUCH="touch",POINTER_TYPE_PEN="pen";class Carousel extends BaseComponent{constructor(e,t){super(e),this._items=null,this._interval=null,this._activeElement=null,this._isPaused=!1,this._isSliding=!1,this.touchTimeout=null,this.touchStartX=0,this.touchDeltaX=0,this._config=this._getConfig(t),this._indicatorsElement=SelectorEngine.findOne(SELECTOR_INDICATORS,this._element),this._touchSupported="ontouchstart"in document.documentElement||navigator.maxTouchPoints>0,this._pointerEvent=Boolean(window.PointerEvent),this._addEventListeners()}static get Default(){return Default$9}static get NAME(){return NAME$a}next(){this._slide(ORDER_NEXT)}nextWhenVisible(){!document.hidden&&isVisible(this._element)&&this.next()}prev(){this._slide(ORDER_PREV)}pause(e){e||(this._isPaused=!0),SelectorEngine.findOne(SELECTOR_NEXT_PREV,this._element)&&(triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null}cycle(e){e||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config&&this._config.interval&&!this._isPaused&&(this._updateInterval(),this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))}to(e){this._activeElement=SelectorEngine.findOne(SELECTOR_ACTIVE_ITEM,this._element);const t=this._getItemIndex(this._activeElement);if(e>this._items.length-1||e<0)return;if(this._isSliding)return void EventHandler.one(this._element,EVENT_SLID,()=>this.to(e));if(t===e)return this.pause(),void this.cycle();const n=e>t?ORDER_NEXT:ORDER_PREV;this._slide(n,this._items[e])}_getConfig(e){return e={...Default$9,...Manipulator.getDataAttributes(this._element),..."object"==typeof e?e:{}},typeCheckConfig(NAME$a,e,DefaultType$9),e}_handleSwipe(){const e=Math.abs(this.touchDeltaX);if(e<=40)return;const t=e/this.touchDeltaX;this.touchDeltaX=0,t&&this._slide(t>0?DIRECTION_RIGHT:DIRECTION_LEFT)}_addEventListeners(){this._config.keyboard&&EventHandler.on(this._element,EVENT_KEYDOWN,e=>this._keydown(e)),"hover"===this._config.pause&&(EventHandler.on(this._element,EVENT_MOUSEENTER,e=>this.pause(e)),EventHandler.on(this._element,EVENT_MOUSELEAVE,e=>this.cycle(e))),this._config.touch&&this._touchSupported&&this._addTouchEventListeners()}_addTouchEventListeners(){const e=e=>{!this._pointerEvent||"pen"!==e.pointerType&&"touch"!==e.pointerType?this._pointerEvent||(this.touchStartX=e.touches[0].clientX):this.touchStartX=e.clientX},t=e=>{this.touchDeltaX=e.touches&&e.touches.length>1?0:e.touches[0].clientX-this.touchStartX},n=e=>{!this._pointerEvent||"pen"!==e.pointerType&&"touch"!==e.pointerType||(this.touchDeltaX=e.clientX-this.touchStartX),this._handleSwipe(),"hover"===this._config.pause&&(this.pause(),this.touchTimeout&&clearTimeout(this.touchTimeout),this.touchTimeout=setTimeout(e=>this.cycle(e),500+this._config.interval))};SelectorEngine.find(SELECTOR_ITEM_IMG,this._element).forEach(e=>{EventHandler.on(e,EVENT_DRAG_START,e=>e.preventDefault())}),this._pointerEvent?(EventHandler.on(this._element,EVENT_POINTERDOWN,t=>e(t)),EventHandler.on(this._element,EVENT_POINTERUP,e=>n(e)),this._element.classList.add("pointer-event")):(EventHandler.on(this._element,EVENT_TOUCHSTART,t=>e(t)),EventHandler.on(this._element,EVENT_TOUCHMOVE,e=>t(e)),EventHandler.on(this._element,EVENT_TOUCHEND,e=>n(e)))}_keydown(e){if(/input|textarea/i.test(e.target.tagName))return;const t=KEY_TO_DIRECTION[e.key];t&&(e.preventDefault(),this._slide(t))}_getItemIndex(e){return this._items=e&&e.parentNode?SelectorEngine.find(SELECTOR_ITEM,e.parentNode):[],this._items.indexOf(e)}_getItemByOrder(e,t){const n=e===ORDER_NEXT;return getNextActiveElement(this._items,t,n,this._config.wrap)}_triggerSlideEvent(e,t){const n=this._getItemIndex(e),i=this._getItemIndex(SelectorEngine.findOne(SELECTOR_ACTIVE_ITEM,this._element));return EventHandler.trigger(this._element,EVENT_SLIDE,{relatedTarget:e,direction:t,from:i,to:n})}_setActiveIndicatorElement(e){if(this._indicatorsElement){const t=SelectorEngine.findOne(".active",this._indicatorsElement);t.classList.remove("active"),t.removeAttribute("aria-current");const n=SelectorEngine.find("[data-bs-target]",this._indicatorsElement);for(let t=0;t{EventHandler.trigger(this._element,EVENT_SLID,{relatedTarget:o,direction:_,from:s,to:r})};if(this._element.classList.contains("slide")){o.classList.add(E),reflow(o),i.classList.add(c),o.classList.add(c);const e=()=>{o.classList.remove(c,E),o.classList.add("active"),i.classList.remove("active",E,c),this._isSliding=!1,setTimeout(h,0)};this._queueCallback(e,i,!0)}else i.classList.remove("active"),o.classList.add("active"),this._isSliding=!1,h();a&&this.cycle()}_directionToOrder(e){return[DIRECTION_RIGHT,DIRECTION_LEFT].includes(e)?isRTL()?e===DIRECTION_LEFT?ORDER_PREV:ORDER_NEXT:e===DIRECTION_LEFT?ORDER_NEXT:ORDER_PREV:e}_orderToDirection(e){return[ORDER_NEXT,ORDER_PREV].includes(e)?isRTL()?e===ORDER_PREV?DIRECTION_LEFT:DIRECTION_RIGHT:e===ORDER_PREV?DIRECTION_RIGHT:DIRECTION_LEFT:e}static carouselInterface(e,t){const n=Carousel.getOrCreateInstance(e,t);let{_config:i}=n;"object"==typeof t&&(i={...i,...t});const s="string"==typeof t?t:i.slide;if("number"==typeof t)n.to(t);else if("string"==typeof s){if(void 0===n[s])throw new TypeError(`No method named "${s}"`);n[s]()}else i.interval&&i.ride&&(n.pause(),n.cycle())}static jQueryInterface(e){return this.each((function(){Carousel.carouselInterface(this,e)}))}static dataApiClickHandler(e){const t=getElementFromSelector(this);if(!t||!t.classList.contains("carousel"))return;const n={...Manipulator.getDataAttributes(t),...Manipulator.getDataAttributes(this)},i=this.getAttribute("data-bs-slide-to");i&&(n.interval=!1),Carousel.carouselInterface(t,n),i&&Carousel.getInstance(t).to(i),e.preventDefault()}}EventHandler.on(document,EVENT_CLICK_DATA_API$5,SELECTOR_DATA_SLIDE,Carousel.dataApiClickHandler),EventHandler.on(window,EVENT_LOAD_DATA_API$2,()=>{const e=SelectorEngine.find(SELECTOR_DATA_RIDE);for(let t=0,n=e.length;te===this._element);null!==i&&s.length&&(this._selector=i,this._triggerArray.push(t))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}static get Default(){return Default$8}static get NAME(){return NAME$9}toggle(){this._element.classList.contains("show")?this.hide():this.show()}show(){if(this._isTransitioning||this._element.classList.contains("show"))return;let e,t;this._parent&&(e=SelectorEngine.find(SELECTOR_ACTIVES,this._parent).filter(e=>"string"==typeof this._config.parent?e.getAttribute("data-bs-parent")===this._config.parent:e.classList.contains("collapse")),0===e.length&&(e=null));const n=SelectorEngine.findOne(this._selector);if(e){const i=e.find(e=>n!==e);if(t=i?Collapse.getInstance(i):null,t&&t._isTransitioning)return}if(EventHandler.trigger(this._element,EVENT_SHOW$5).defaultPrevented)return;e&&e.forEach(e=>{n!==e&&Collapse.collapseInterface(e,"hide"),t||Data.set(e,DATA_KEY$8,null)});const i=this._getDimension();this._element.classList.remove("collapse"),this._element.classList.add("collapsing"),this._element.style[i]=0,this._triggerArray.length&&this._triggerArray.forEach(e=>{e.classList.remove("collapsed"),e.setAttribute("aria-expanded",!0)}),this.setTransitioning(!0);const s="scroll"+(i[0].toUpperCase()+i.slice(1));this._queueCallback(()=>{this._element.classList.remove("collapsing"),this._element.classList.add("collapse","show"),this._element.style[i]="",this.setTransitioning(!1),EventHandler.trigger(this._element,EVENT_SHOWN$5)},this._element,!0),this._element.style[i]=this._element[s]+"px"}hide(){if(this._isTransitioning||!this._element.classList.contains("show"))return;if(EventHandler.trigger(this._element,EVENT_HIDE$5).defaultPrevented)return;const e=this._getDimension();this._element.style[e]=this._element.getBoundingClientRect()[e]+"px",reflow(this._element),this._element.classList.add("collapsing"),this._element.classList.remove("collapse","show");const t=this._triggerArray.length;if(t>0)for(let e=0;e{this.setTransitioning(!1),this._element.classList.remove("collapsing"),this._element.classList.add("collapse"),EventHandler.trigger(this._element,EVENT_HIDDEN$5)},this._element,!0)}setTransitioning(e){this._isTransitioning=e}_getConfig(e){return(e={...Default$8,...e}).toggle=Boolean(e.toggle),typeCheckConfig(NAME$9,e,DefaultType$8),e}_getDimension(){return this._element.classList.contains(WIDTH)?WIDTH:HEIGHT}_getParent(){let{parent:e}=this._config;e=getElement(e);const t=`${SELECTOR_DATA_TOGGLE$4}[data-bs-parent="${e}"]`;return SelectorEngine.find(t,e).forEach(e=>{const t=getElementFromSelector(e);this._addAriaAndCollapsedClass(t,[e])}),e}_addAriaAndCollapsedClass(e,t){if(!e||!t.length)return;const n=e.classList.contains("show");t.forEach(e=>{n?e.classList.remove("collapsed"):e.classList.add("collapsed"),e.setAttribute("aria-expanded",n)})}static collapseInterface(e,t){let n=Collapse.getInstance(e);const i={...Default$8,...Manipulator.getDataAttributes(e),..."object"==typeof t&&t?t:{}};if(!n&&i.toggle&&"string"==typeof t&&/show|hide/.test(t)&&(i.toggle=!1),n||(n=new Collapse(e,i)),"string"==typeof t){if(void 0===n[t])throw new TypeError(`No method named "${t}"`);n[t]()}}static jQueryInterface(e){return this.each((function(){Collapse.collapseInterface(this,e)}))}}EventHandler.on(document,EVENT_CLICK_DATA_API$4,SELECTOR_DATA_TOGGLE$4,(function(e){("A"===e.target.tagName||e.delegateTarget&&"A"===e.delegateTarget.tagName)&&e.preventDefault();const t=Manipulator.getDataAttributes(this),n=getSelectorFromElement(this);SelectorEngine.find(n).forEach(e=>{const n=Collapse.getInstance(e);let i;n?(null===n._parent&&"string"==typeof t.parent&&(n._config.parent=t.parent,n._parent=n._getParent()),i="toggle"):i=t,Collapse.collapseInterface(e,i)})})),defineJQueryPlugin(Collapse);const NAME$8="dropdown",DATA_KEY$7="bs.dropdown",EVENT_KEY$7=".bs.dropdown",DATA_API_KEY$4=".data-api",ESCAPE_KEY$2="Escape",SPACE_KEY="Space",TAB_KEY="Tab",ARROW_UP_KEY="ArrowUp",ARROW_DOWN_KEY="ArrowDown",RIGHT_MOUSE_BUTTON=2,REGEXP_KEYDOWN=new RegExp("ArrowUp|ArrowDown|Escape"),EVENT_HIDE$4="hide.bs.dropdown",EVENT_HIDDEN$4="hidden.bs.dropdown",EVENT_SHOW$4="show.bs.dropdown",EVENT_SHOWN$4="shown.bs.dropdown",EVENT_CLICK="click.bs.dropdown",EVENT_CLICK_DATA_API$3="click.bs.dropdown.data-api",EVENT_KEYDOWN_DATA_API="keydown.bs.dropdown.data-api",EVENT_KEYUP_DATA_API="keyup.bs.dropdown.data-api",CLASS_NAME_SHOW$7="show",CLASS_NAME_DROPUP="dropup",CLASS_NAME_DROPEND="dropend",CLASS_NAME_DROPSTART="dropstart",CLASS_NAME_NAVBAR="navbar",SELECTOR_DATA_TOGGLE$3='[data-bs-toggle="dropdown"]',SELECTOR_MENU=".dropdown-menu",SELECTOR_NAVBAR_NAV=".navbar-nav",SELECTOR_VISIBLE_ITEMS=".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",PLACEMENT_TOP=isRTL()?"top-end":"top-start",PLACEMENT_TOPEND=isRTL()?"top-start":"top-end",PLACEMENT_BOTTOM=isRTL()?"bottom-end":"bottom-start",PLACEMENT_BOTTOMEND=isRTL()?"bottom-start":"bottom-end",PLACEMENT_RIGHT=isRTL()?"left-start":"right-start",PLACEMENT_LEFT=isRTL()?"right-start":"left-start",Default$7={offset:[0,2],boundary:"clippingParents",reference:"toggle",display:"dynamic",popperConfig:null,autoClose:!0},DefaultType$7={offset:"(array|string|function)",boundary:"(string|element)",reference:"(string|element|object)",display:"string",popperConfig:"(null|object|function)",autoClose:"(boolean|string)"};class Dropdown extends BaseComponent{constructor(e,t){super(e),this._popper=null,this._config=this._getConfig(t),this._menu=this._getMenuElement(),this._inNavbar=this._detectNavbar(),this._addEventListeners()}static get Default(){return Default$7}static get DefaultType(){return DefaultType$7}static get NAME(){return NAME$8}toggle(){isDisabled(this._element)||(this._element.classList.contains("show")?this.hide():this.show())}show(){if(isDisabled(this._element)||this._menu.classList.contains("show"))return;const e=Dropdown.getParentFromElement(this._element),t={relatedTarget:this._element};if(!EventHandler.trigger(this._element,EVENT_SHOW$4,t).defaultPrevented){if(this._inNavbar)Manipulator.setDataAttribute(this._menu,"popper","none");else{if(void 0===Popper)throw new TypeError("Bootstrap's dropdowns require Popper (https://popper.js.org)");let t=this._element;"parent"===this._config.reference?t=e:isElement(this._config.reference)?t=getElement(this._config.reference):"object"==typeof this._config.reference&&(t=this._config.reference);const n=this._getPopperConfig(),i=n.modifiers.find(e=>"applyStyles"===e.name&&!1===e.enabled);this._popper=Popper.createPopper(t,this._menu,n),i&&Manipulator.setDataAttribute(this._menu,"popper","static")}"ontouchstart"in document.documentElement&&!e.closest(".navbar-nav")&&[].concat(...document.body.children).forEach(e=>EventHandler.on(e,"mouseover",noop)),this._element.focus(),this._element.setAttribute("aria-expanded",!0),this._menu.classList.toggle("show"),this._element.classList.toggle("show"),EventHandler.trigger(this._element,EVENT_SHOWN$4,t)}}hide(){if(isDisabled(this._element)||!this._menu.classList.contains("show"))return;const e={relatedTarget:this._element};this._completeHide(e)}dispose(){this._popper&&this._popper.destroy(),super.dispose()}update(){this._inNavbar=this._detectNavbar(),this._popper&&this._popper.update()}_addEventListeners(){EventHandler.on(this._element,EVENT_CLICK,e=>{e.preventDefault(),this.toggle()})}_completeHide(e){EventHandler.trigger(this._element,EVENT_HIDE$4,e).defaultPrevented||("ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach(e=>EventHandler.off(e,"mouseover",noop)),this._popper&&this._popper.destroy(),this._menu.classList.remove("show"),this._element.classList.remove("show"),this._element.setAttribute("aria-expanded","false"),Manipulator.removeDataAttribute(this._menu,"popper"),EventHandler.trigger(this._element,EVENT_HIDDEN$4,e))}_getConfig(e){if(e={...this.constructor.Default,...Manipulator.getDataAttributes(this._element),...e},typeCheckConfig(NAME$8,e,this.constructor.DefaultType),"object"==typeof e.reference&&!isElement(e.reference)&&"function"!=typeof e.reference.getBoundingClientRect)throw new TypeError(NAME$8.toUpperCase()+': Option "reference" provided type "object" without a required "getBoundingClientRect" method.');return e}_getMenuElement(){return SelectorEngine.next(this._element,SELECTOR_MENU)[0]}_getPlacement(){const e=this._element.parentNode;if(e.classList.contains("dropend"))return PLACEMENT_RIGHT;if(e.classList.contains("dropstart"))return PLACEMENT_LEFT;const t="end"===getComputedStyle(this._menu).getPropertyValue("--bs-position").trim();return e.classList.contains("dropup")?t?PLACEMENT_TOPEND:PLACEMENT_TOP:t?PLACEMENT_BOTTOMEND:PLACEMENT_BOTTOM}_detectNavbar(){return null!==this._element.closest(".navbar")}_getOffset(){const{offset:e}=this._config;return"string"==typeof e?e.split(",").map(e=>Number.parseInt(e,10)):"function"==typeof e?t=>e(t,this._element):e}_getPopperConfig(){const e={placement:this._getPlacement(),modifiers:[{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"offset",options:{offset:this._getOffset()}}]};return"static"===this._config.display&&(e.modifiers=[{name:"applyStyles",enabled:!1}]),{...e,..."function"==typeof this._config.popperConfig?this._config.popperConfig(e):this._config.popperConfig}}_selectMenuItem({key:e,target:t}){const n=SelectorEngine.find(SELECTOR_VISIBLE_ITEMS,this._menu).filter(isVisible);n.length&&getNextActiveElement(n,t,"ArrowDown"===e,!n.includes(t)).focus()}static dropdownInterface(e,t){const n=Dropdown.getOrCreateInstance(e,t);if("string"==typeof t){if(void 0===n[t])throw new TypeError(`No method named "${t}"`);n[t]()}}static jQueryInterface(e){return this.each((function(){Dropdown.dropdownInterface(this,e)}))}static clearMenus(e){if(e&&(2===e.button||"keyup"===e.type&&"Tab"!==e.key))return;const t=SelectorEngine.find(SELECTOR_DATA_TOGGLE$3);for(let n=0,i=t.length;nthis.matches(SELECTOR_DATA_TOGGLE$3)?this:SelectorEngine.prev(this,SELECTOR_DATA_TOGGLE$3)[0];return"Escape"===e.key?(n().focus(),void Dropdown.clearMenus()):"ArrowUp"===e.key||"ArrowDown"===e.key?(t||n().click(),void Dropdown.getInstance(n())._selectMenuItem(e)):void(t&&"Space"!==e.key||Dropdown.clearMenus())}}EventHandler.on(document,EVENT_KEYDOWN_DATA_API,SELECTOR_DATA_TOGGLE$3,Dropdown.dataApiKeydownHandler),EventHandler.on(document,EVENT_KEYDOWN_DATA_API,SELECTOR_MENU,Dropdown.dataApiKeydownHandler),EventHandler.on(document,EVENT_CLICK_DATA_API$3,Dropdown.clearMenus),EventHandler.on(document,EVENT_KEYUP_DATA_API,Dropdown.clearMenus),EventHandler.on(document,EVENT_CLICK_DATA_API$3,SELECTOR_DATA_TOGGLE$3,(function(e){e.preventDefault(),Dropdown.dropdownInterface(this)})),defineJQueryPlugin(Dropdown);const SELECTOR_FIXED_CONTENT=".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",SELECTOR_STICKY_CONTENT=".sticky-top";class ScrollBarHelper{constructor(){this._element=document.body}getWidth(){const e=document.documentElement.clientWidth;return Math.abs(window.innerWidth-e)}hide(){const e=this.getWidth();this._disableOverFlow(),this._setElementAttributes(this._element,"paddingRight",t=>t+e),this._setElementAttributes(SELECTOR_FIXED_CONTENT,"paddingRight",t=>t+e),this._setElementAttributes(".sticky-top","marginRight",t=>t-e)}_disableOverFlow(){this._saveInitialAttribute(this._element,"overflow"),this._element.style.overflow="hidden"}_setElementAttributes(e,t,n){const i=this.getWidth();this._applyManipulationCallback(e,e=>{if(e!==this._element&&window.innerWidth>e.clientWidth+i)return;this._saveInitialAttribute(e,t);const s=window.getComputedStyle(e)[t];e.style[t]=n(Number.parseFloat(s))+"px"})}reset(){this._resetElementAttributes(this._element,"overflow"),this._resetElementAttributes(this._element,"paddingRight"),this._resetElementAttributes(SELECTOR_FIXED_CONTENT,"paddingRight"),this._resetElementAttributes(".sticky-top","marginRight")}_saveInitialAttribute(e,t){const n=e.style[t];n&&Manipulator.setDataAttribute(e,t,n)}_resetElementAttributes(e,t){this._applyManipulationCallback(e,e=>{const n=Manipulator.getDataAttribute(e,t);void 0===n?e.style.removeProperty(t):(Manipulator.removeDataAttribute(e,t),e.style[t]=n)})}_applyManipulationCallback(e,t){isElement(e)?t(e):SelectorEngine.find(e,this._element).forEach(t)}isOverflowing(){return this.getWidth()>0}}const Default$6={isVisible:!0,isAnimated:!1,rootElement:"body",clickCallback:null},DefaultType$6={isVisible:"boolean",isAnimated:"boolean",rootElement:"(element|string)",clickCallback:"(function|null)"},NAME$7="backdrop",CLASS_NAME_BACKDROP="modal-backdrop",CLASS_NAME_FADE$5="fade",CLASS_NAME_SHOW$6="show",EVENT_MOUSEDOWN="mousedown.bs.backdrop";class Backdrop{constructor(e){this._config=this._getConfig(e),this._isAppended=!1,this._element=null}show(e){this._config.isVisible?(this._append(),this._config.isAnimated&&reflow(this._getElement()),this._getElement().classList.add("show"),this._emulateAnimation(()=>{execute(e)})):execute(e)}hide(e){this._config.isVisible?(this._getElement().classList.remove("show"),this._emulateAnimation(()=>{this.dispose(),execute(e)})):execute(e)}_getElement(){if(!this._element){const e=document.createElement("div");e.className="modal-backdrop",this._config.isAnimated&&e.classList.add("fade"),this._element=e}return this._element}_getConfig(e){return(e={...Default$6,..."object"==typeof e?e:{}}).rootElement=getElement(e.rootElement),typeCheckConfig(NAME$7,e,DefaultType$6),e}_append(){this._isAppended||(this._config.rootElement.appendChild(this._getElement()),EventHandler.on(this._getElement(),EVENT_MOUSEDOWN,()=>{execute(this._config.clickCallback)}),this._isAppended=!0)}dispose(){this._isAppended&&(EventHandler.off(this._element,EVENT_MOUSEDOWN),this._element.remove(),this._isAppended=!1)}_emulateAnimation(e){executeAfterTransition(e,this._getElement(),this._config.isAnimated)}}const NAME$6="modal",DATA_KEY$6="bs.modal",EVENT_KEY$6=".bs.modal",DATA_API_KEY$3=".data-api",ESCAPE_KEY$1="Escape",Default$5={backdrop:!0,keyboard:!0,focus:!0},DefaultType$5={backdrop:"(boolean|string)",keyboard:"boolean",focus:"boolean"},EVENT_HIDE$3="hide.bs.modal",EVENT_HIDE_PREVENTED="hidePrevented.bs.modal",EVENT_HIDDEN$3="hidden.bs.modal",EVENT_SHOW$3="show.bs.modal",EVENT_SHOWN$3="shown.bs.modal",EVENT_FOCUSIN$2="focusin.bs.modal",EVENT_RESIZE="resize.bs.modal",EVENT_CLICK_DISMISS$2="click.dismiss.bs.modal",EVENT_KEYDOWN_DISMISS$1="keydown.dismiss.bs.modal",EVENT_MOUSEUP_DISMISS="mouseup.dismiss.bs.modal",EVENT_MOUSEDOWN_DISMISS="mousedown.dismiss.bs.modal",EVENT_CLICK_DATA_API$2="click.bs.modal.data-api",CLASS_NAME_OPEN="modal-open",CLASS_NAME_FADE$4="fade",CLASS_NAME_SHOW$5="show",CLASS_NAME_STATIC="modal-static",SELECTOR_DIALOG=".modal-dialog",SELECTOR_MODAL_BODY=".modal-body",SELECTOR_DATA_TOGGLE$2='[data-bs-toggle="modal"]',SELECTOR_DATA_DISMISS$2='[data-bs-dismiss="modal"]';class Modal extends BaseComponent{constructor(e,t){super(e),this._config=this._getConfig(t),this._dialog=SelectorEngine.findOne(".modal-dialog",this._element),this._backdrop=this._initializeBackDrop(),this._isShown=!1,this._ignoreBackdropClick=!1,this._isTransitioning=!1,this._scrollBar=new ScrollBarHelper}static get Default(){return Default$5}static get NAME(){return NAME$6}toggle(e){return this._isShown?this.hide():this.show(e)}show(e){this._isShown||this._isTransitioning||EventHandler.trigger(this._element,EVENT_SHOW$3,{relatedTarget:e}).defaultPrevented||(this._isShown=!0,this._isAnimated()&&(this._isTransitioning=!0),this._scrollBar.hide(),document.body.classList.add("modal-open"),this._adjustDialog(),this._setEscapeEvent(),this._setResizeEvent(),EventHandler.on(this._element,EVENT_CLICK_DISMISS$2,SELECTOR_DATA_DISMISS$2,e=>this.hide(e)),EventHandler.on(this._dialog,EVENT_MOUSEDOWN_DISMISS,()=>{EventHandler.one(this._element,EVENT_MOUSEUP_DISMISS,e=>{e.target===this._element&&(this._ignoreBackdropClick=!0)})}),this._showBackdrop(()=>this._showElement(e)))}hide(e){if(e&&["A","AREA"].includes(e.target.tagName)&&e.preventDefault(),!this._isShown||this._isTransitioning)return;if(EventHandler.trigger(this._element,EVENT_HIDE$3).defaultPrevented)return;this._isShown=!1;const t=this._isAnimated();t&&(this._isTransitioning=!0),this._setEscapeEvent(),this._setResizeEvent(),EventHandler.off(document,EVENT_FOCUSIN$2),this._element.classList.remove("show"),EventHandler.off(this._element,EVENT_CLICK_DISMISS$2),EventHandler.off(this._dialog,EVENT_MOUSEDOWN_DISMISS),this._queueCallback(()=>this._hideModal(),this._element,t)}dispose(){[window,this._dialog].forEach(e=>EventHandler.off(e,".bs.modal")),this._backdrop.dispose(),super.dispose(),EventHandler.off(document,EVENT_FOCUSIN$2)}handleUpdate(){this._adjustDialog()}_initializeBackDrop(){return new Backdrop({isVisible:Boolean(this._config.backdrop),isAnimated:this._isAnimated()})}_getConfig(e){return e={...Default$5,...Manipulator.getDataAttributes(this._element),..."object"==typeof e?e:{}},typeCheckConfig(NAME$6,e,DefaultType$5),e}_showElement(e){const t=this._isAnimated(),n=SelectorEngine.findOne(".modal-body",this._dialog);this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(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,n&&(n.scrollTop=0),t&&reflow(this._element),this._element.classList.add("show"),this._config.focus&&this._enforceFocus(),this._queueCallback(()=>{this._config.focus&&this._element.focus(),this._isTransitioning=!1,EventHandler.trigger(this._element,EVENT_SHOWN$3,{relatedTarget:e})},this._dialog,t)}_enforceFocus(){EventHandler.off(document,EVENT_FOCUSIN$2),EventHandler.on(document,EVENT_FOCUSIN$2,e=>{document===e.target||this._element===e.target||this._element.contains(e.target)||this._element.focus()})}_setEscapeEvent(){this._isShown?EventHandler.on(this._element,EVENT_KEYDOWN_DISMISS$1,e=>{this._config.keyboard&&"Escape"===e.key?(e.preventDefault(),this.hide()):this._config.keyboard||"Escape"!==e.key||this._triggerBackdropTransition()}):EventHandler.off(this._element,EVENT_KEYDOWN_DISMISS$1)}_setResizeEvent(){this._isShown?EventHandler.on(window,EVENT_RESIZE,()=>this._adjustDialog()):EventHandler.off(window,EVENT_RESIZE)}_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("modal-open"),this._resetAdjustments(),this._scrollBar.reset(),EventHandler.trigger(this._element,EVENT_HIDDEN$3)})}_showBackdrop(e){EventHandler.on(this._element,EVENT_CLICK_DISMISS$2,e=>{this._ignoreBackdropClick?this._ignoreBackdropClick=!1:e.target===e.currentTarget&&(!0===this._config.backdrop?this.hide():"static"===this._config.backdrop&&this._triggerBackdropTransition())}),this._backdrop.show(e)}_isAnimated(){return this._element.classList.contains("fade")}_triggerBackdropTransition(){if(EventHandler.trigger(this._element,EVENT_HIDE_PREVENTED).defaultPrevented)return;const{classList:e,scrollHeight:t,style:n}=this._element,i=t>document.documentElement.clientHeight;!i&&"hidden"===n.overflowY||e.contains("modal-static")||(i||(n.overflowY="hidden"),e.add("modal-static"),this._queueCallback(()=>{e.remove("modal-static"),i||this._queueCallback(()=>{n.overflowY=""},this._dialog)},this._dialog),this._element.focus())}_adjustDialog(){const e=this._element.scrollHeight>document.documentElement.clientHeight,t=this._scrollBar.getWidth(),n=t>0;(!n&&e&&!isRTL()||n&&!e&&isRTL())&&(this._element.style.paddingLeft=t+"px"),(n&&!e&&!isRTL()||!n&&e&&isRTL())&&(this._element.style.paddingRight=t+"px")}_resetAdjustments(){this._element.style.paddingLeft="",this._element.style.paddingRight=""}static jQueryInterface(e,t){return this.each((function(){const n=Modal.getOrCreateInstance(this,e);if("string"==typeof e){if(void 0===n[e])throw new TypeError(`No method named "${e}"`);n[e](t)}}))}}EventHandler.on(document,EVENT_CLICK_DATA_API$2,SELECTOR_DATA_TOGGLE$2,(function(e){const t=getElementFromSelector(this);["A","AREA"].includes(this.tagName)&&e.preventDefault(),EventHandler.one(t,EVENT_SHOW$3,e=>{e.defaultPrevented||EventHandler.one(t,EVENT_HIDDEN$3,()=>{isVisible(this)&&this.focus()})}),Modal.getOrCreateInstance(t).toggle(this)})),defineJQueryPlugin(Modal);const NAME$5="offcanvas",DATA_KEY$5="bs.offcanvas",EVENT_KEY$5=".bs.offcanvas",DATA_API_KEY$2=".data-api",EVENT_LOAD_DATA_API$1="load.bs.offcanvas.data-api",ESCAPE_KEY="Escape",Default$4={backdrop:!0,keyboard:!0,scroll:!1},DefaultType$4={backdrop:"boolean",keyboard:"boolean",scroll:"boolean"},CLASS_NAME_SHOW$4="show",OPEN_SELECTOR=".offcanvas.show",EVENT_SHOW$2="show.bs.offcanvas",EVENT_SHOWN$2="shown.bs.offcanvas",EVENT_HIDE$2="hide.bs.offcanvas",EVENT_HIDDEN$2="hidden.bs.offcanvas",EVENT_FOCUSIN$1="focusin.bs.offcanvas",EVENT_CLICK_DATA_API$1="click.bs.offcanvas.data-api",EVENT_CLICK_DISMISS$1="click.dismiss.bs.offcanvas",EVENT_KEYDOWN_DISMISS="keydown.dismiss.bs.offcanvas",SELECTOR_DATA_DISMISS$1='[data-bs-dismiss="offcanvas"]',SELECTOR_DATA_TOGGLE$1='[data-bs-toggle="offcanvas"]';class Offcanvas extends BaseComponent{constructor(e,t){super(e),this._config=this._getConfig(t),this._isShown=!1,this._backdrop=this._initializeBackDrop(),this._addEventListeners()}static get NAME(){return NAME$5}static get Default(){return Default$4}toggle(e){return this._isShown?this.hide():this.show(e)}show(e){this._isShown||EventHandler.trigger(this._element,EVENT_SHOW$2,{relatedTarget:e}).defaultPrevented||(this._isShown=!0,this._element.style.visibility="visible",this._backdrop.show(),this._config.scroll||((new ScrollBarHelper).hide(),this._enforceFocusOnElement(this._element)),this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.classList.add("show"),this._queueCallback(()=>{EventHandler.trigger(this._element,EVENT_SHOWN$2,{relatedTarget:e})},this._element,!0))}hide(){this._isShown&&(EventHandler.trigger(this._element,EVENT_HIDE$2).defaultPrevented||(EventHandler.off(document,EVENT_FOCUSIN$1),this._element.blur(),this._isShown=!1,this._element.classList.remove("show"),this._backdrop.hide(),this._queueCallback(()=>{this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._element.style.visibility="hidden",this._config.scroll||(new ScrollBarHelper).reset(),EventHandler.trigger(this._element,EVENT_HIDDEN$2)},this._element,!0)))}dispose(){this._backdrop.dispose(),super.dispose(),EventHandler.off(document,EVENT_FOCUSIN$1)}_getConfig(e){return e={...Default$4,...Manipulator.getDataAttributes(this._element),..."object"==typeof e?e:{}},typeCheckConfig(NAME$5,e,DefaultType$4),e}_initializeBackDrop(){return new Backdrop({isVisible:this._config.backdrop,isAnimated:!0,rootElement:this._element.parentNode,clickCallback:()=>this.hide()})}_enforceFocusOnElement(e){EventHandler.off(document,EVENT_FOCUSIN$1),EventHandler.on(document,EVENT_FOCUSIN$1,t=>{document===t.target||e===t.target||e.contains(t.target)||e.focus()}),e.focus()}_addEventListeners(){EventHandler.on(this._element,EVENT_CLICK_DISMISS$1,SELECTOR_DATA_DISMISS$1,()=>this.hide()),EventHandler.on(this._element,EVENT_KEYDOWN_DISMISS,e=>{this._config.keyboard&&"Escape"===e.key&&this.hide()})}static jQueryInterface(e){return this.each((function(){const t=Offcanvas.getOrCreateInstance(this,e);if("string"==typeof e){if(void 0===t[e]||e.startsWith("_")||"constructor"===e)throw new TypeError(`No method named "${e}"`);t[e](this)}}))}}EventHandler.on(document,EVENT_CLICK_DATA_API$1,SELECTOR_DATA_TOGGLE$1,(function(e){const t=getElementFromSelector(this);if(["A","AREA"].includes(this.tagName)&&e.preventDefault(),isDisabled(this))return;EventHandler.one(t,EVENT_HIDDEN$2,()=>{isVisible(this)&&this.focus()});const n=SelectorEngine.findOne(OPEN_SELECTOR);n&&n!==t&&Offcanvas.getInstance(n).hide(),Offcanvas.getOrCreateInstance(t).toggle(this)})),EventHandler.on(window,EVENT_LOAD_DATA_API$1,()=>SelectorEngine.find(OPEN_SELECTOR).forEach(e=>Offcanvas.getOrCreateInstance(e).show())),defineJQueryPlugin(Offcanvas);const uriAttrs=new Set(["background","cite","href","itemtype","longdesc","poster","src","xlink:href"]),ARIA_ATTRIBUTE_PATTERN=/^aria-[\w-]*$/i,SAFE_URL_PATTERN=/^(?:(?:https?|mailto|ftp|tel|file):|[^#&/:?]*(?:[#/?]|$))/i,DATA_URL_PATTERN=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[\d+/a-z]+=*$/i,allowedAttribute=(e,t)=>{const n=e.nodeName.toLowerCase();if(t.includes(n))return!uriAttrs.has(n)||Boolean(SAFE_URL_PATTERN.test(e.nodeValue)||DATA_URL_PATTERN.test(e.nodeValue));const i=t.filter(e=>e instanceof RegExp);for(let e=0,t=i.length;e{allowedAttribute(e,a)||n.removeAttribute(e.nodeName)})}return i.body.innerHTML}const NAME$4="tooltip",DATA_KEY$4="bs.tooltip",EVENT_KEY$4=".bs.tooltip",CLASS_PREFIX$1="bs-tooltip",BSCLS_PREFIX_REGEX$1=new RegExp("(^|\\s)bs-tooltip\\S+","g"),DISALLOWED_ATTRIBUTES=new Set(["sanitize","allowList","sanitizeFn"]),DefaultType$3={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(array|string|function)",container:"(string|element|boolean)",fallbackPlacements:"array",boundary:"(string|element)",customClass:"(string|function)",sanitize:"boolean",sanitizeFn:"(null|function)",allowList:"object",popperConfig:"(null|object|function)"},AttachmentMap={AUTO:"auto",TOP:"top",RIGHT:isRTL()?"left":"right",BOTTOM:"bottom",LEFT:isRTL()?"right":"left"},Default$3={animation:!0,template:'',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:[0,0],container:!1,fallbackPlacements:["top","right","bottom","left"],boundary:"clippingParents",customClass:"",sanitize:!0,sanitizeFn:null,allowList:DefaultAllowlist,popperConfig:null},Event$2={HIDE:"hide.bs.tooltip",HIDDEN:"hidden.bs.tooltip",SHOW:"show.bs.tooltip",SHOWN:"shown.bs.tooltip",INSERTED:"inserted.bs.tooltip",CLICK:"click.bs.tooltip",FOCUSIN:"focusin.bs.tooltip",FOCUSOUT:"focusout.bs.tooltip",MOUSEENTER:"mouseenter.bs.tooltip",MOUSELEAVE:"mouseleave.bs.tooltip"},CLASS_NAME_FADE$3="fade",CLASS_NAME_MODAL="modal",CLASS_NAME_SHOW$3="show",HOVER_STATE_SHOW="show",HOVER_STATE_OUT="out",SELECTOR_TOOLTIP_INNER=".tooltip-inner",TRIGGER_HOVER="hover",TRIGGER_FOCUS="focus",TRIGGER_CLICK="click",TRIGGER_MANUAL="manual";class Tooltip extends BaseComponent{constructor(e,t){if(void 0===Popper)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");super(e),this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this._config=this._getConfig(t),this.tip=null,this._setListeners()}static get Default(){return Default$3}static get NAME(){return NAME$4}static get Event(){return Event$2}static get DefaultType(){return DefaultType$3}enable(){this._isEnabled=!0}disable(){this._isEnabled=!1}toggleEnabled(){this._isEnabled=!this._isEnabled}toggle(e){if(this._isEnabled)if(e){const t=this._initializeOnDelegatedTarget(e);t._activeTrigger.click=!t._activeTrigger.click,t._isWithActiveTrigger()?t._enter(null,t):t._leave(null,t)}else{if(this.getTipElement().classList.contains("show"))return void this._leave(null,this);this._enter(null,this)}}dispose(){clearTimeout(this._timeout),EventHandler.off(this._element.closest(".modal"),"hide.bs.modal",this._hideModalHandler),this.tip&&this.tip.remove(),this._popper&&this._popper.destroy(),super.dispose()}show(){if("none"===this._element.style.display)throw new Error("Please use show on visible elements");if(!this.isWithContent()||!this._isEnabled)return;const e=EventHandler.trigger(this._element,this.constructor.Event.SHOW),t=findShadowRoot(this._element),n=null===t?this._element.ownerDocument.documentElement.contains(this._element):t.contains(this._element);if(e.defaultPrevented||!n)return;const i=this.getTipElement(),s=getUID(this.constructor.NAME);i.setAttribute("id",s),this._element.setAttribute("aria-describedby",s),this.setContent(),this._config.animation&&i.classList.add("fade");const o="function"==typeof this._config.placement?this._config.placement.call(this,i,this._element):this._config.placement,r=this._getAttachment(o);this._addAttachmentClass(r);const{container:a}=this._config;Data.set(i,this.constructor.DATA_KEY,this),this._element.ownerDocument.documentElement.contains(this.tip)||(a.appendChild(i),EventHandler.trigger(this._element,this.constructor.Event.INSERTED)),this._popper?this._popper.update():this._popper=Popper.createPopper(this._element,i,this._getPopperConfig(r)),i.classList.add("show");const l="function"==typeof this._config.customClass?this._config.customClass():this._config.customClass;l&&i.classList.add(...l.split(" ")),"ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach(e=>{EventHandler.on(e,"mouseover",noop)});const c=this.tip.classList.contains("fade");this._queueCallback(()=>{const e=this._hoverState;this._hoverState=null,EventHandler.trigger(this._element,this.constructor.Event.SHOWN),"out"===e&&this._leave(null,this)},this.tip,c)}hide(){if(!this._popper)return;const e=this.getTipElement();if(EventHandler.trigger(this._element,this.constructor.Event.HIDE).defaultPrevented)return;e.classList.remove("show"),"ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach(e=>EventHandler.off(e,"mouseover",noop)),this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1;const t=this.tip.classList.contains("fade");this._queueCallback(()=>{this._isWithActiveTrigger()||("show"!==this._hoverState&&e.remove(),this._cleanTipClass(),this._element.removeAttribute("aria-describedby"),EventHandler.trigger(this._element,this.constructor.Event.HIDDEN),this._popper&&(this._popper.destroy(),this._popper=null))},this.tip,t),this._hoverState=""}update(){null!==this._popper&&this._popper.update()}isWithContent(){return Boolean(this.getTitle())}getTipElement(){if(this.tip)return this.tip;const e=document.createElement("div");return e.innerHTML=this._config.template,this.tip=e.children[0],this.tip}setContent(){const e=this.getTipElement();this.setElementContent(SelectorEngine.findOne(".tooltip-inner",e),this.getTitle()),e.classList.remove("fade","show")}setElementContent(e,t){if(null!==e)return isElement(t)?(t=getElement(t),void(this._config.html?t.parentNode!==e&&(e.innerHTML="",e.appendChild(t)):e.textContent=t.textContent)):void(this._config.html?(this._config.sanitize&&(t=sanitizeHtml(t,this._config.allowList,this._config.sanitizeFn)),e.innerHTML=t):e.textContent=t)}getTitle(){let e=this._element.getAttribute("data-bs-original-title");return e||(e="function"==typeof this._config.title?this._config.title.call(this._element):this._config.title),e}updateAttachment(e){return"right"===e?"end":"left"===e?"start":e}_initializeOnDelegatedTarget(e,t){const n=this.constructor.DATA_KEY;return(t=t||Data.get(e.delegateTarget,n))||(t=new this.constructor(e.delegateTarget,this._getDelegateConfig()),Data.set(e.delegateTarget,n,t)),t}_getOffset(){const{offset:e}=this._config;return"string"==typeof e?e.split(",").map(e=>Number.parseInt(e,10)):"function"==typeof e?t=>e(t,this._element):e}_getPopperConfig(e){const t={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:"onChange",enabled:!0,phase:"afterWrite",fn:e=>this._handlePopperPlacementChange(e)}],onFirstUpdate:e=>{e.options.placement!==e.placement&&this._handlePopperPlacementChange(e)}};return{...t,..."function"==typeof this._config.popperConfig?this._config.popperConfig(t):this._config.popperConfig}}_addAttachmentClass(e){this.getTipElement().classList.add("bs-tooltip-"+this.updateAttachment(e))}_getAttachment(e){return AttachmentMap[e.toUpperCase()]}_setListeners(){this._config.trigger.split(" ").forEach(e=>{if("click"===e)EventHandler.on(this._element,this.constructor.Event.CLICK,this._config.selector,e=>this.toggle(e));else if("manual"!==e){const t="hover"===e?this.constructor.Event.MOUSEENTER:this.constructor.Event.FOCUSIN,n="hover"===e?this.constructor.Event.MOUSELEAVE:this.constructor.Event.FOCUSOUT;EventHandler.on(this._element,t,this._config.selector,e=>this._enter(e)),EventHandler.on(this._element,n,this._config.selector,e=>this._leave(e))}}),this._hideModalHandler=()=>{this._element&&this.hide()},EventHandler.on(this._element.closest(".modal"),"hide.bs.modal",this._hideModalHandler),this._config.selector?this._config={...this._config,trigger:"manual",selector:""}:this._fixTitle()}_fixTitle(){const e=this._element.getAttribute("title"),t=typeof this._element.getAttribute("data-bs-original-title");(e||"string"!==t)&&(this._element.setAttribute("data-bs-original-title",e||""),!e||this._element.getAttribute("aria-label")||this._element.textContent||this._element.setAttribute("aria-label",e),this._element.setAttribute("title",""))}_enter(e,t){t=this._initializeOnDelegatedTarget(e,t),e&&(t._activeTrigger["focusin"===e.type?"focus":"hover"]=!0),t.getTipElement().classList.contains("show")||"show"===t._hoverState?t._hoverState="show":(clearTimeout(t._timeout),t._hoverState="show",t._config.delay&&t._config.delay.show?t._timeout=setTimeout(()=>{"show"===t._hoverState&&t.show()},t._config.delay.show):t.show())}_leave(e,t){t=this._initializeOnDelegatedTarget(e,t),e&&(t._activeTrigger["focusout"===e.type?"focus":"hover"]=t._element.contains(e.relatedTarget)),t._isWithActiveTrigger()||(clearTimeout(t._timeout),t._hoverState="out",t._config.delay&&t._config.delay.hide?t._timeout=setTimeout(()=>{"out"===t._hoverState&&t.hide()},t._config.delay.hide):t.hide())}_isWithActiveTrigger(){for(const e in this._activeTrigger)if(this._activeTrigger[e])return!0;return!1}_getConfig(e){const t=Manipulator.getDataAttributes(this._element);return Object.keys(t).forEach(e=>{DISALLOWED_ATTRIBUTES.has(e)&&delete t[e]}),(e={...this.constructor.Default,...t,..."object"==typeof e&&e?e:{}}).container=!1===e.container?document.body:getElement(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()),typeCheckConfig(NAME$4,e,this.constructor.DefaultType),e.sanitize&&(e.template=sanitizeHtml(e.template,e.allowList,e.sanitizeFn)),e}_getDelegateConfig(){const e={};if(this._config)for(const t in this._config)this.constructor.Default[t]!==this._config[t]&&(e[t]=this._config[t]);return e}_cleanTipClass(){const e=this.getTipElement(),t=e.getAttribute("class").match(BSCLS_PREFIX_REGEX$1);null!==t&&t.length>0&&t.map(e=>e.trim()).forEach(t=>e.classList.remove(t))}_handlePopperPlacementChange(e){const{state:t}=e;t&&(this.tip=t.elements.popper,this._cleanTipClass(),this._addAttachmentClass(this._getAttachment(t.placement)))}static jQueryInterface(e){return this.each((function(){const t=Tooltip.getOrCreateInstance(this,e);if("string"==typeof e){if(void 0===t[e])throw new TypeError(`No method named "${e}"`);t[e]()}}))}}defineJQueryPlugin(Tooltip);const NAME$3="popover",DATA_KEY$3="bs.popover",EVENT_KEY$3=".bs.popover",CLASS_PREFIX="bs-popover",BSCLS_PREFIX_REGEX=new RegExp("(^|\\s)bs-popover\\S+","g"),Default$2={...Tooltip.Default,placement:"right",offset:[0,8],trigger:"click",content:"",template:''},DefaultType$2={...Tooltip.DefaultType,content:"(string|element|function)"},Event$1={HIDE:"hide.bs.popover",HIDDEN:"hidden.bs.popover",SHOW:"show.bs.popover",SHOWN:"shown.bs.popover",INSERTED:"inserted.bs.popover",CLICK:"click.bs.popover",FOCUSIN:"focusin.bs.popover",FOCUSOUT:"focusout.bs.popover",MOUSEENTER:"mouseenter.bs.popover",MOUSELEAVE:"mouseleave.bs.popover"},CLASS_NAME_FADE$2="fade",CLASS_NAME_SHOW$2="show",SELECTOR_TITLE=".popover-header",SELECTOR_CONTENT=".popover-body";class Popover extends Tooltip{static get Default(){return Default$2}static get NAME(){return NAME$3}static get Event(){return Event$1}static get DefaultType(){return DefaultType$2}isWithContent(){return this.getTitle()||this._getContent()}getTipElement(){return this.tip||(this.tip=super.getTipElement(),this.getTitle()||SelectorEngine.findOne(SELECTOR_TITLE,this.tip).remove(),this._getContent()||SelectorEngine.findOne(".popover-body",this.tip).remove()),this.tip}setContent(){const e=this.getTipElement();this.setElementContent(SelectorEngine.findOne(SELECTOR_TITLE,e),this.getTitle());let t=this._getContent();"function"==typeof t&&(t=t.call(this._element)),this.setElementContent(SelectorEngine.findOne(".popover-body",e),t),e.classList.remove("fade","show")}_addAttachmentClass(e){this.getTipElement().classList.add("bs-popover-"+this.updateAttachment(e))}_getContent(){return this._element.getAttribute("data-bs-content")||this._config.content}_cleanTipClass(){const e=this.getTipElement(),t=e.getAttribute("class").match(BSCLS_PREFIX_REGEX);null!==t&&t.length>0&&t.map(e=>e.trim()).forEach(t=>e.classList.remove(t))}static jQueryInterface(e){return this.each((function(){const t=Popover.getOrCreateInstance(this,e);if("string"==typeof e){if(void 0===t[e])throw new TypeError(`No method named "${e}"`);t[e]()}}))}}defineJQueryPlugin(Popover);const NAME$2="scrollspy",DATA_KEY$2="bs.scrollspy",EVENT_KEY$2=".bs.scrollspy",DATA_API_KEY$1=".data-api",Default$1={offset:10,method:"auto",target:""},DefaultType$1={offset:"number",method:"string",target:"(string|element)"},EVENT_ACTIVATE="activate.bs.scrollspy",EVENT_SCROLL="scroll.bs.scrollspy",EVENT_LOAD_DATA_API="load.bs.scrollspy.data-api",CLASS_NAME_DROPDOWN_ITEM="dropdown-item",CLASS_NAME_ACTIVE$1="active",SELECTOR_DATA_SPY='[data-bs-spy="scroll"]',SELECTOR_NAV_LIST_GROUP$1=".nav, .list-group",SELECTOR_NAV_LINKS=".nav-link",SELECTOR_NAV_ITEMS=".nav-item",SELECTOR_LIST_ITEMS=".list-group-item",SELECTOR_DROPDOWN$1=".dropdown",SELECTOR_DROPDOWN_TOGGLE$1=".dropdown-toggle",METHOD_OFFSET="offset",METHOD_POSITION="position";class ScrollSpy extends BaseComponent{constructor(e,t){super(e),this._scrollElement="BODY"===this._element.tagName?window:this._element,this._config=this._getConfig(t),this._selector=`${this._config.target} .nav-link, ${this._config.target} .list-group-item, ${this._config.target} .dropdown-item`,this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,EventHandler.on(this._scrollElement,EVENT_SCROLL,()=>this._process()),this.refresh(),this._process()}static get Default(){return Default$1}static get NAME(){return NAME$2}refresh(){const e=this._scrollElement===this._scrollElement.window?"offset":"position",t="auto"===this._config.method?e:this._config.method,n="position"===t?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),SelectorEngine.find(this._selector).map(e=>{const i=getSelectorFromElement(e),s=i?SelectorEngine.findOne(i):null;if(s){const e=s.getBoundingClientRect();if(e.width||e.height)return[Manipulator[t](s).top+n,i]}return null}).filter(e=>e).sort((e,t)=>e[0]-t[0]).forEach(e=>{this._offsets.push(e[0]),this._targets.push(e[1])})}dispose(){EventHandler.off(this._scrollElement,EVENT_KEY$2),super.dispose()}_getConfig(e){if("string"!=typeof(e={...Default$1,...Manipulator.getDataAttributes(this._element),..."object"==typeof e&&e?e:{}}).target&&isElement(e.target)){let{id:t}=e.target;t||(t=getUID(NAME$2),e.target.id=t),e.target="#"+t}return typeCheckConfig(NAME$2,e,DefaultType$1),e}_getScrollTop(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop}_getScrollHeight(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)}_getOffsetHeight(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height}_process(){const e=this._getScrollTop()+this._config.offset,t=this._getScrollHeight(),n=this._config.offset+t-this._getOffsetHeight();if(this._scrollHeight!==t&&this.refresh(),e>=n){const e=this._targets[this._targets.length-1];this._activeTarget!==e&&this._activate(e)}else{if(this._activeTarget&&e0)return this._activeTarget=null,void this._clear();for(let t=this._offsets.length;t--;)this._activeTarget!==this._targets[t]&&e>=this._offsets[t]&&(void 0===this._offsets[t+1]||e`${t}[data-bs-target="${e}"],${t}[href="${e}"]`),n=SelectorEngine.findOne(t.join(","));n.classList.contains("dropdown-item")?(SelectorEngine.findOne(".dropdown-toggle",n.closest(".dropdown")).classList.add("active"),n.classList.add("active")):(n.classList.add("active"),SelectorEngine.parents(n,".nav, .list-group").forEach(e=>{SelectorEngine.prev(e,".nav-link, .list-group-item").forEach(e=>e.classList.add("active")),SelectorEngine.prev(e,".nav-item").forEach(e=>{SelectorEngine.children(e,".nav-link").forEach(e=>e.classList.add("active"))})})),EventHandler.trigger(this._scrollElement,EVENT_ACTIVATE,{relatedTarget:e})}_clear(){SelectorEngine.find(this._selector).filter(e=>e.classList.contains("active")).forEach(e=>e.classList.remove("active"))}static jQueryInterface(e){return this.each((function(){const t=ScrollSpy.getOrCreateInstance(this,e);if("string"==typeof e){if(void 0===t[e])throw new TypeError(`No method named "${e}"`);t[e]()}}))}}EventHandler.on(window,EVENT_LOAD_DATA_API,()=>{SelectorEngine.find(SELECTOR_DATA_SPY).forEach(e=>new ScrollSpy(e))}),defineJQueryPlugin(ScrollSpy);const NAME$1="tab",DATA_KEY$1="bs.tab",EVENT_KEY$1=".bs.tab",DATA_API_KEY=".data-api",EVENT_HIDE$1="hide.bs.tab",EVENT_HIDDEN$1="hidden.bs.tab",EVENT_SHOW$1="show.bs.tab",EVENT_SHOWN$1="shown.bs.tab",EVENT_CLICK_DATA_API="click.bs.tab.data-api",CLASS_NAME_DROPDOWN_MENU="dropdown-menu",CLASS_NAME_ACTIVE="active",CLASS_NAME_FADE$1="fade",CLASS_NAME_SHOW$1="show",SELECTOR_DROPDOWN=".dropdown",SELECTOR_NAV_LIST_GROUP=".nav, .list-group",SELECTOR_ACTIVE=".active",SELECTOR_ACTIVE_UL=":scope > li > .active",SELECTOR_DATA_TOGGLE='[data-bs-toggle="tab"], [data-bs-toggle="pill"], [data-bs-toggle="list"]',SELECTOR_DROPDOWN_TOGGLE=".dropdown-toggle",SELECTOR_DROPDOWN_ACTIVE_CHILD=":scope > .dropdown-menu .active";class Tab extends BaseComponent{static get NAME(){return"tab"}show(){if(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&this._element.classList.contains("active"))return;let e;const t=getElementFromSelector(this._element),n=this._element.closest(".nav, .list-group");if(n){const t="UL"===n.nodeName||"OL"===n.nodeName?SELECTOR_ACTIVE_UL:".active";e=SelectorEngine.find(t,n),e=e[e.length-1]}const i=e?EventHandler.trigger(e,EVENT_HIDE$1,{relatedTarget:this._element}):null;if(EventHandler.trigger(this._element,EVENT_SHOW$1,{relatedTarget:e}).defaultPrevented||null!==i&&i.defaultPrevented)return;this._activate(this._element,n);const s=()=>{EventHandler.trigger(e,EVENT_HIDDEN$1,{relatedTarget:this._element}),EventHandler.trigger(this._element,EVENT_SHOWN$1,{relatedTarget:e})};t?this._activate(t,t.parentNode,s):s()}_activate(e,t,n){const i=(!t||"UL"!==t.nodeName&&"OL"!==t.nodeName?SelectorEngine.children(t,".active"):SelectorEngine.find(SELECTOR_ACTIVE_UL,t))[0],s=n&&i&&i.classList.contains("fade"),o=()=>this._transitionComplete(e,i,n);i&&s?(i.classList.remove("show"),this._queueCallback(o,e,!0)):o()}_transitionComplete(e,t,n){if(t){t.classList.remove("active");const e=SelectorEngine.findOne(SELECTOR_DROPDOWN_ACTIVE_CHILD,t.parentNode);e&&e.classList.remove("active"),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!1)}e.classList.add("active"),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!0),reflow(e),e.classList.contains("fade")&&e.classList.add("show");let i=e.parentNode;if(i&&"LI"===i.nodeName&&(i=i.parentNode),i&&i.classList.contains("dropdown-menu")){const t=e.closest(".dropdown");t&&SelectorEngine.find(".dropdown-toggle",t).forEach(e=>e.classList.add("active")),e.setAttribute("aria-expanded",!0)}n&&n()}static jQueryInterface(e){return this.each((function(){const t=Tab.getOrCreateInstance(this);if("string"==typeof e){if(void 0===t[e])throw new TypeError(`No method named "${e}"`);t[e]()}}))}}EventHandler.on(document,EVENT_CLICK_DATA_API,SELECTOR_DATA_TOGGLE,(function(e){["A","AREA"].includes(this.tagName)&&e.preventDefault(),isDisabled(this)||Tab.getOrCreateInstance(this).show()})),defineJQueryPlugin(Tab);const NAME="toast",DATA_KEY="bs.toast",EVENT_KEY=".bs.toast",EVENT_CLICK_DISMISS="click.dismiss.bs.toast",EVENT_MOUSEOVER="mouseover.bs.toast",EVENT_MOUSEOUT="mouseout.bs.toast",EVENT_FOCUSIN="focusin.bs.toast",EVENT_FOCUSOUT="focusout.bs.toast",EVENT_HIDE="hide.bs.toast",EVENT_HIDDEN="hidden.bs.toast",EVENT_SHOW="show.bs.toast",EVENT_SHOWN="shown.bs.toast",CLASS_NAME_FADE="fade",CLASS_NAME_HIDE="hide",CLASS_NAME_SHOW="show",CLASS_NAME_SHOWING="showing",DefaultType={animation:"boolean",autohide:"boolean",delay:"number"},Default={animation:!0,autohide:!0,delay:5e3},SELECTOR_DATA_DISMISS='[data-bs-dismiss="toast"]';class Toast extends BaseComponent{constructor(e,t){super(e),this._config=this._getConfig(t),this._timeout=null,this._hasMouseInteraction=!1,this._hasKeyboardInteraction=!1,this._setListeners()}static get DefaultType(){return DefaultType}static get Default(){return Default}static get NAME(){return NAME}show(){EventHandler.trigger(this._element,EVENT_SHOW).defaultPrevented||(this._clearTimeout(),this._config.animation&&this._element.classList.add("fade"),this._element.classList.remove("hide"),reflow(this._element),this._element.classList.add("showing"),this._queueCallback(()=>{this._element.classList.remove("showing"),this._element.classList.add("show"),EventHandler.trigger(this._element,EVENT_SHOWN),this._maybeScheduleHide()},this._element,this._config.animation))}hide(){this._element.classList.contains("show")&&(EventHandler.trigger(this._element,EVENT_HIDE).defaultPrevented||(this._element.classList.remove("show"),this._queueCallback(()=>{this._element.classList.add("hide"),EventHandler.trigger(this._element,EVENT_HIDDEN)},this._element,this._config.animation)))}dispose(){this._clearTimeout(),this._element.classList.contains("show")&&this._element.classList.remove("show"),super.dispose()}_getConfig(e){return e={...Default,...Manipulator.getDataAttributes(this._element),..."object"==typeof e&&e?e:{}},typeCheckConfig(NAME,e,this.constructor.DefaultType),e}_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}if(t)return void this._clearTimeout();const n=e.relatedTarget;this._element===n||this._element.contains(n)||this._maybeScheduleHide()}_setListeners(){EventHandler.on(this._element,EVENT_CLICK_DISMISS,SELECTOR_DATA_DISMISS,()=>this.hide()),EventHandler.on(this._element,EVENT_MOUSEOVER,e=>this._onInteraction(e,!0)),EventHandler.on(this._element,EVENT_MOUSEOUT,e=>this._onInteraction(e,!1)),EventHandler.on(this._element,EVENT_FOCUSIN,e=>this._onInteraction(e,!0)),EventHandler.on(this._element,EVENT_FOCUSOUT,e=>this._onInteraction(e,!1))}_clearTimeout(){clearTimeout(this._timeout),this._timeout=null}static jQueryInterface(e){return this.each((function(){const t=Toast.getOrCreateInstance(this,e);if("string"==typeof e){if(void 0===t[e])throw new TypeError(`No method named "${e}"`);t[e](this)}}))}}defineJQueryPlugin(Toast);export{Alert,Button,Carousel,Collapse,Dropdown,Modal,Offcanvas,Popover,ScrollSpy,Tab,Toast,Tooltip};
+//# sourceMappingURL=bootstrap.esm.min.js.map
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/SimplexTheme/Content/js/bootstrap.min.js b/Presentation/Nop.Web/Themes/SimplexTheme/Content/js/bootstrap.min.js
index 9bcd2fc..aed031f 100644
--- a/Presentation/Nop.Web/Themes/SimplexTheme/Content/js/bootstrap.min.js
+++ b/Presentation/Nop.Web/Themes/SimplexTheme/Content/js/bootstrap.min.js
@@ -1,7 +1,7 @@
/*!
- * Bootstrap v3.3.7 (http://getbootstrap.com)
- * Copyright 2011-2016 Twitter, Inc.
- * Licensed under the MIT license
- */
-if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1||b[0]>3)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){if(a(b.target).is(this))return b.handleObj.handler.apply(this,arguments)}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.7",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a("#"===f?[]:f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.7",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c).prop(c,!0)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c).prop(c,!1))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&&c.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target).closest(".btn");b.call(d,"toggle"),a(c.target).is('input[type="radio"], input[type="checkbox"]')||(c.preventDefault(),d.is("input,button")?d.trigger("focus"):d.find("input:visible,button:visible").first().trigger("focus"))}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.7",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));if(!(a>this.$items.length-1||a<0))return this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){if(!this.sliding)return this.slide("next")},c.prototype.prev=function(){if(!this.sliding)return this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.7",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function c(c){c&&3===c.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=b(d),f={relatedTarget:this};e.hasClass("open")&&(c&&"click"==c.type&&/input|textarea/i.test(c.target.tagName)&&a.contains(e[0],c.target)||(e.trigger(c=a.Event("hide.bs.dropdown",f)),c.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger(a.Event("hidden.bs.dropdown",f)))))}))}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.7",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=b(e),g=f.hasClass("open");if(c(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(a(this)).on("click",c);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger(a.Event("shown.bs.dropdown",h))}return!1}},g.prototype.keydown=function(c){if(/(38|40|27|32)/.test(c.which)&&!/input|textarea/i.test(c.target.tagName)){var d=a(this);if(c.preventDefault(),c.stopPropagation(),!d.is(".disabled, :disabled")){var e=b(d),g=e.hasClass("open");if(!g&&27!=c.which||g&&27==c.which)return 27==c.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find(".dropdown-menu"+h);if(i.length){var j=i.index(c.target);38==c.which&&j>0&&j--,40==c.which&&jdocument.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth
',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(a.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusin"==b.type?"focus":"hover"]=!0),c.tip().hasClass("in")||"in"==c.hoverState?void(c.hoverState="in"):(clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);if(c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusout"==b.type?"focus":"hover"]=!1),!c.isInStateTrue())return clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h="bottom"==h&&k.bottom+m>o.bottom?"top":"top"==h&&k.top-mo.width?"left":"left"==h&&k.left-lg.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;jg.right&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&&(this.$tip=a(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type),a.$tip&&a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null,a.$element=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;!e&&/destroy|hide/.test(b)||(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.7",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.7",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b=e[a]&&(void 0===e[a+1]||b .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.7",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return e=a-d&&"bottom"},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery);
\ No newline at end of file
+ * Bootstrap v5.0.2 (https://getbootstrap.com/)
+ * Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
+ */
+!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e(require("@popperjs/core")):"function"==typeof define&&define.amd?define(["@popperjs/core"],e):(t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap=e(t.Popper)}(this,(function(t){"use strict";function e(t){if(t&&t.__esModule)return t;var e=Object.create(null);return t&&Object.keys(t).forEach((function(s){if("default"!==s){var i=Object.getOwnPropertyDescriptor(t,s);Object.defineProperty(e,s,i.get?i:{enumerable:!0,get:function(){return t[s]}})}})),e.default=t,Object.freeze(e)}var s=e(t);const i={find:(t,e=document.documentElement)=>[].concat(...Element.prototype.querySelectorAll.call(e,t)),findOne:(t,e=document.documentElement)=>Element.prototype.querySelector.call(e,t),children:(t,e)=>[].concat(...t.children).filter(t=>t.matches(e)),parents(t,e){const s=[];let i=t.parentNode;for(;i&&i.nodeType===Node.ELEMENT_NODE&&3!==i.nodeType;)i.matches(e)&&s.push(i),i=i.parentNode;return s},prev(t,e){let s=t.previousElementSibling;for(;s;){if(s.matches(e))return[s];s=s.previousElementSibling}return[]},next(t,e){let s=t.nextElementSibling;for(;s;){if(s.matches(e))return[s];s=s.nextElementSibling}return[]}},n=t=>{do{t+=Math.floor(1e6*Math.random())}while(document.getElementById(t));return t},o=t=>{let e=t.getAttribute("data-bs-target");if(!e||"#"===e){let s=t.getAttribute("href");if(!s||!s.includes("#")&&!s.startsWith("."))return null;s.includes("#")&&!s.startsWith("#")&&(s="#"+s.split("#")[1]),e=s&&"#"!==s?s.trim():null}return e},r=t=>{const e=o(t);return e&&document.querySelector(e)?e:null},a=t=>{const e=o(t);return e?document.querySelector(e):null},l=t=>{t.dispatchEvent(new Event("transitionend"))},c=t=>!(!t||"object"!=typeof t)&&(void 0!==t.jquery&&(t=t[0]),void 0!==t.nodeType),h=t=>c(t)?t.jquery?t[0]:t:"string"==typeof t&&t.length>0?i.findOne(t):null,d=(t,e,s)=>{Object.keys(s).forEach(i=>{const n=s[i],o=e[i],r=o&&c(o)?"element":null==(a=o)?""+a:{}.toString.call(a).match(/\s([a-z]+)/i)[1].toLowerCase();var a;if(!new RegExp(n).test(r))throw new TypeError(`${t.toUpperCase()}: Option "${i}" provided type "${r}" but expected type "${n}".`)})},u=t=>!(!c(t)||0===t.getClientRects().length)&&"visible"===getComputedStyle(t).getPropertyValue("visibility"),g=t=>!t||t.nodeType!==Node.ELEMENT_NODE||!!t.classList.contains("disabled")||(void 0!==t.disabled?t.disabled:t.hasAttribute("disabled")&&"false"!==t.getAttribute("disabled")),p=t=>{if(!document.documentElement.attachShadow)return null;if("function"==typeof t.getRootNode){const e=t.getRootNode();return e instanceof ShadowRoot?e:null}return t instanceof ShadowRoot?t:t.parentNode?p(t.parentNode):null},f=()=>{},m=t=>t.offsetHeight,_=()=>{const{jQuery:t}=window;return t&&!document.body.hasAttribute("data-bs-no-jquery")?t:null},b=[],v=()=>"rtl"===document.documentElement.dir,y=t=>{var e;e=()=>{const e=_();if(e){const s=t.NAME,i=e.fn[s];e.fn[s]=t.jQueryInterface,e.fn[s].Constructor=t,e.fn[s].noConflict=()=>(e.fn[s]=i,t.jQueryInterface)}},"loading"===document.readyState?(b.length||document.addEventListener("DOMContentLoaded",()=>{b.forEach(t=>t())}),b.push(e)):e()},w=t=>{"function"==typeof t&&t()},E=(t,e,s=!0)=>{if(!s)return void w(t);const i=(t=>{if(!t)return 0;let{transitionDuration:e,transitionDelay:s}=window.getComputedStyle(t);const i=Number.parseFloat(e),n=Number.parseFloat(s);return i||n?(e=e.split(",")[0],s=s.split(",")[0],1e3*(Number.parseFloat(e)+Number.parseFloat(s))):0})(e)+5;let n=!1;const o=({target:s})=>{s===e&&(n=!0,e.removeEventListener("transitionend",o),w(t))};e.addEventListener("transitionend",o),setTimeout(()=>{n||l(e)},i)},A=(t,e,s,i)=>{let n=t.indexOf(e);if(-1===n)return t[!s&&i?t.length-1:0];const o=t.length;return n+=s?1:-1,i&&(n=(n+o)%o),t[Math.max(0,Math.min(n,o-1))]},T=/[^.]*(?=\..*)\.|.*/,C=/\..*/,k=/::\d+$/,L={};let O=1;const D={mouseenter:"mouseover",mouseleave:"mouseout"},I=/^(mouseenter|mouseleave)/i,N=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 S(t,e){return e&&`${e}::${O++}`||t.uidEvent||O++}function x(t){const e=S(t);return t.uidEvent=e,L[e]=L[e]||{},L[e]}function M(t,e,s=null){const i=Object.keys(t);for(let n=0,o=i.length;nfunction(e){if(!e.relatedTarget||e.relatedTarget!==e.delegateTarget&&!e.delegateTarget.contains(e.relatedTarget))return t.call(this,e)};i?i=t(i):s=t(s)}const[o,r,a]=P(e,s,i),l=x(t),c=l[a]||(l[a]={}),h=M(c,r,o?s:null);if(h)return void(h.oneOff=h.oneOff&&n);const d=S(r,e.replace(T,"")),u=o?function(t,e,s){return function i(n){const o=t.querySelectorAll(e);for(let{target:r}=n;r&&r!==this;r=r.parentNode)for(let a=o.length;a--;)if(o[a]===r)return n.delegateTarget=r,i.oneOff&&B.off(t,n.type,e,s),s.apply(r,[n]);return null}}(t,s,i):function(t,e){return function s(i){return i.delegateTarget=t,s.oneOff&&B.off(t,i.type,e),e.apply(t,[i])}}(t,s);u.delegationSelector=o?s:null,u.originalHandler=r,u.oneOff=n,u.uidEvent=d,c[d]=u,t.addEventListener(a,u,o)}function H(t,e,s,i,n){const o=M(e[s],i,n);o&&(t.removeEventListener(s,o,Boolean(n)),delete e[s][o.uidEvent])}function R(t){return t=t.replace(C,""),D[t]||t}const B={on(t,e,s,i){j(t,e,s,i,!1)},one(t,e,s,i){j(t,e,s,i,!0)},off(t,e,s,i){if("string"!=typeof e||!t)return;const[n,o,r]=P(e,s,i),a=r!==e,l=x(t),c=e.startsWith(".");if(void 0!==o){if(!l||!l[r])return;return void H(t,l,r,o,n?s:null)}c&&Object.keys(l).forEach(s=>{!function(t,e,s,i){const n=e[s]||{};Object.keys(n).forEach(o=>{if(o.includes(i)){const i=n[o];H(t,e,s,i.originalHandler,i.delegationSelector)}})}(t,l,s,e.slice(1))});const h=l[r]||{};Object.keys(h).forEach(s=>{const i=s.replace(k,"");if(!a||e.includes(i)){const e=h[s];H(t,l,r,e.originalHandler,e.delegationSelector)}})},trigger(t,e,s){if("string"!=typeof e||!t)return null;const i=_(),n=R(e),o=e!==n,r=N.has(n);let a,l=!0,c=!0,h=!1,d=null;return o&&i&&(a=i.Event(e,s),i(t).trigger(a),l=!a.isPropagationStopped(),c=!a.isImmediatePropagationStopped(),h=a.isDefaultPrevented()),r?(d=document.createEvent("HTMLEvents"),d.initEvent(n,l,!0)):d=new CustomEvent(e,{bubbles:l,cancelable:!0}),void 0!==s&&Object.keys(s).forEach(t=>{Object.defineProperty(d,t,{get:()=>s[t]})}),h&&d.preventDefault(),c&&t.dispatchEvent(d),d.defaultPrevented&&void 0!==a&&a.preventDefault(),d}},$=new Map;var W={set(t,e,s){$.has(t)||$.set(t,new Map);const i=$.get(t);i.has(e)||0===i.size?i.set(e,s):console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(i.keys())[0]}.`)},get:(t,e)=>$.has(t)&&$.get(t).get(e)||null,remove(t,e){if(!$.has(t))return;const s=$.get(t);s.delete(e),0===s.size&&$.delete(t)}};class q{constructor(t){(t=h(t))&&(this._element=t,W.set(this._element,this.constructor.DATA_KEY,this))}dispose(){W.remove(this._element,this.constructor.DATA_KEY),B.off(this._element,this.constructor.EVENT_KEY),Object.getOwnPropertyNames(this).forEach(t=>{this[t]=null})}_queueCallback(t,e,s=!0){E(t,e,s)}static getInstance(t){return W.get(t,this.DATA_KEY)}static getOrCreateInstance(t,e={}){return this.getInstance(t)||new this(t,"object"==typeof e?e:null)}static get VERSION(){return"5.0.2"}static get NAME(){throw new Error('You have to implement the static method "NAME", for each component!')}static get DATA_KEY(){return"bs."+this.NAME}static get EVENT_KEY(){return"."+this.DATA_KEY}}class z extends q{static get NAME(){return"alert"}close(t){const e=t?this._getRootElement(t):this._element,s=this._triggerCloseEvent(e);null===s||s.defaultPrevented||this._removeElement(e)}_getRootElement(t){return a(t)||t.closest(".alert")}_triggerCloseEvent(t){return B.trigger(t,"close.bs.alert")}_removeElement(t){t.classList.remove("show");const e=t.classList.contains("fade");this._queueCallback(()=>this._destroyElement(t),t,e)}_destroyElement(t){t.remove(),B.trigger(t,"closed.bs.alert")}static jQueryInterface(t){return this.each((function(){const e=z.getOrCreateInstance(this);"close"===t&&e[t](this)}))}static handleDismiss(t){return function(e){e&&e.preventDefault(),t.close(this)}}}B.on(document,"click.bs.alert.data-api",'[data-bs-dismiss="alert"]',z.handleDismiss(new z)),y(z);class F extends q{static get NAME(){return"button"}toggle(){this._element.setAttribute("aria-pressed",this._element.classList.toggle("active"))}static jQueryInterface(t){return this.each((function(){const e=F.getOrCreateInstance(this);"toggle"===t&&e[t]()}))}}function U(t){return"true"===t||"false"!==t&&(t===Number(t).toString()?Number(t):""===t||"null"===t?null:t)}function K(t){return t.replace(/[A-Z]/g,t=>"-"+t.toLowerCase())}B.on(document,"click.bs.button.data-api",'[data-bs-toggle="button"]',t=>{t.preventDefault();const e=t.target.closest('[data-bs-toggle="button"]');F.getOrCreateInstance(e).toggle()}),y(F);const V={setDataAttribute(t,e,s){t.setAttribute("data-bs-"+K(e),s)},removeDataAttribute(t,e){t.removeAttribute("data-bs-"+K(e))},getDataAttributes(t){if(!t)return{};const e={};return Object.keys(t.dataset).filter(t=>t.startsWith("bs")).forEach(s=>{let i=s.replace(/^bs/,"");i=i.charAt(0).toLowerCase()+i.slice(1,i.length),e[i]=U(t.dataset[s])}),e},getDataAttribute:(t,e)=>U(t.getAttribute("data-bs-"+K(e))),offset(t){const e=t.getBoundingClientRect();return{top:e.top+document.body.scrollTop,left:e.left+document.body.scrollLeft}},position:t=>({top:t.offsetTop,left:t.offsetLeft})},Q={interval:5e3,keyboard:!0,slide:!1,pause:"hover",wrap:!0,touch:!0},X={interval:"(number|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean",touch:"boolean"},Y="next",G="prev",Z="left",J="right",tt={ArrowLeft:J,ArrowRight:Z};class et extends q{constructor(t,e){super(t),this._items=null,this._interval=null,this._activeElement=null,this._isPaused=!1,this._isSliding=!1,this.touchTimeout=null,this.touchStartX=0,this.touchDeltaX=0,this._config=this._getConfig(e),this._indicatorsElement=i.findOne(".carousel-indicators",this._element),this._touchSupported="ontouchstart"in document.documentElement||navigator.maxTouchPoints>0,this._pointerEvent=Boolean(window.PointerEvent),this._addEventListeners()}static get Default(){return Q}static get NAME(){return"carousel"}next(){this._slide(Y)}nextWhenVisible(){!document.hidden&&u(this._element)&&this.next()}prev(){this._slide(G)}pause(t){t||(this._isPaused=!0),i.findOne(".carousel-item-next, .carousel-item-prev",this._element)&&(l(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null}cycle(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config&&this._config.interval&&!this._isPaused&&(this._updateInterval(),this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))}to(t){this._activeElement=i.findOne(".active.carousel-item",this._element);const e=this._getItemIndex(this._activeElement);if(t>this._items.length-1||t<0)return;if(this._isSliding)return void B.one(this._element,"slid.bs.carousel",()=>this.to(t));if(e===t)return this.pause(),void this.cycle();const s=t>e?Y:G;this._slide(s,this._items[t])}_getConfig(t){return t={...Q,...V.getDataAttributes(this._element),..."object"==typeof t?t:{}},d("carousel",t,X),t}_handleSwipe(){const t=Math.abs(this.touchDeltaX);if(t<=40)return;const e=t/this.touchDeltaX;this.touchDeltaX=0,e&&this._slide(e>0?J:Z)}_addEventListeners(){this._config.keyboard&&B.on(this._element,"keydown.bs.carousel",t=>this._keydown(t)),"hover"===this._config.pause&&(B.on(this._element,"mouseenter.bs.carousel",t=>this.pause(t)),B.on(this._element,"mouseleave.bs.carousel",t=>this.cycle(t))),this._config.touch&&this._touchSupported&&this._addTouchEventListeners()}_addTouchEventListeners(){const t=t=>{!this._pointerEvent||"pen"!==t.pointerType&&"touch"!==t.pointerType?this._pointerEvent||(this.touchStartX=t.touches[0].clientX):this.touchStartX=t.clientX},e=t=>{this.touchDeltaX=t.touches&&t.touches.length>1?0:t.touches[0].clientX-this.touchStartX},s=t=>{!this._pointerEvent||"pen"!==t.pointerType&&"touch"!==t.pointerType||(this.touchDeltaX=t.clientX-this.touchStartX),this._handleSwipe(),"hover"===this._config.pause&&(this.pause(),this.touchTimeout&&clearTimeout(this.touchTimeout),this.touchTimeout=setTimeout(t=>this.cycle(t),500+this._config.interval))};i.find(".carousel-item img",this._element).forEach(t=>{B.on(t,"dragstart.bs.carousel",t=>t.preventDefault())}),this._pointerEvent?(B.on(this._element,"pointerdown.bs.carousel",e=>t(e)),B.on(this._element,"pointerup.bs.carousel",t=>s(t)),this._element.classList.add("pointer-event")):(B.on(this._element,"touchstart.bs.carousel",e=>t(e)),B.on(this._element,"touchmove.bs.carousel",t=>e(t)),B.on(this._element,"touchend.bs.carousel",t=>s(t)))}_keydown(t){if(/input|textarea/i.test(t.target.tagName))return;const e=tt[t.key];e&&(t.preventDefault(),this._slide(e))}_getItemIndex(t){return this._items=t&&t.parentNode?i.find(".carousel-item",t.parentNode):[],this._items.indexOf(t)}_getItemByOrder(t,e){const s=t===Y;return A(this._items,e,s,this._config.wrap)}_triggerSlideEvent(t,e){const s=this._getItemIndex(t),n=this._getItemIndex(i.findOne(".active.carousel-item",this._element));return B.trigger(this._element,"slide.bs.carousel",{relatedTarget:t,direction:e,from:n,to:s})}_setActiveIndicatorElement(t){if(this._indicatorsElement){const e=i.findOne(".active",this._indicatorsElement);e.classList.remove("active"),e.removeAttribute("aria-current");const s=i.find("[data-bs-target]",this._indicatorsElement);for(let e=0;e{B.trigger(this._element,"slid.bs.carousel",{relatedTarget:r,direction:u,from:o,to:a})};if(this._element.classList.contains("slide")){r.classList.add(d),m(r),n.classList.add(h),r.classList.add(h);const t=()=>{r.classList.remove(h,d),r.classList.add("active"),n.classList.remove("active",d,h),this._isSliding=!1,setTimeout(g,0)};this._queueCallback(t,n,!0)}else n.classList.remove("active"),r.classList.add("active"),this._isSliding=!1,g();l&&this.cycle()}_directionToOrder(t){return[J,Z].includes(t)?v()?t===Z?G:Y:t===Z?Y:G:t}_orderToDirection(t){return[Y,G].includes(t)?v()?t===G?Z:J:t===G?J:Z:t}static carouselInterface(t,e){const s=et.getOrCreateInstance(t,e);let{_config:i}=s;"object"==typeof e&&(i={...i,...e});const n="string"==typeof e?e:i.slide;if("number"==typeof e)s.to(e);else if("string"==typeof n){if(void 0===s[n])throw new TypeError(`No method named "${n}"`);s[n]()}else i.interval&&i.ride&&(s.pause(),s.cycle())}static jQueryInterface(t){return this.each((function(){et.carouselInterface(this,t)}))}static dataApiClickHandler(t){const e=a(this);if(!e||!e.classList.contains("carousel"))return;const s={...V.getDataAttributes(e),...V.getDataAttributes(this)},i=this.getAttribute("data-bs-slide-to");i&&(s.interval=!1),et.carouselInterface(e,s),i&&et.getInstance(e).to(i),t.preventDefault()}}B.on(document,"click.bs.carousel.data-api","[data-bs-slide], [data-bs-slide-to]",et.dataApiClickHandler),B.on(window,"load.bs.carousel.data-api",()=>{const t=i.find('[data-bs-ride="carousel"]');for(let e=0,s=t.length;et===this._element);null!==n&&o.length&&(this._selector=n,this._triggerArray.push(e))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}static get Default(){return st}static get NAME(){return"collapse"}toggle(){this._element.classList.contains("show")?this.hide():this.show()}show(){if(this._isTransitioning||this._element.classList.contains("show"))return;let t,e;this._parent&&(t=i.find(".show, .collapsing",this._parent).filter(t=>"string"==typeof this._config.parent?t.getAttribute("data-bs-parent")===this._config.parent:t.classList.contains("collapse")),0===t.length&&(t=null));const s=i.findOne(this._selector);if(t){const i=t.find(t=>s!==t);if(e=i?nt.getInstance(i):null,e&&e._isTransitioning)return}if(B.trigger(this._element,"show.bs.collapse").defaultPrevented)return;t&&t.forEach(t=>{s!==t&&nt.collapseInterface(t,"hide"),e||W.set(t,"bs.collapse",null)});const n=this._getDimension();this._element.classList.remove("collapse"),this._element.classList.add("collapsing"),this._element.style[n]=0,this._triggerArray.length&&this._triggerArray.forEach(t=>{t.classList.remove("collapsed"),t.setAttribute("aria-expanded",!0)}),this.setTransitioning(!0);const o="scroll"+(n[0].toUpperCase()+n.slice(1));this._queueCallback(()=>{this._element.classList.remove("collapsing"),this._element.classList.add("collapse","show"),this._element.style[n]="",this.setTransitioning(!1),B.trigger(this._element,"shown.bs.collapse")},this._element,!0),this._element.style[n]=this._element[o]+"px"}hide(){if(this._isTransitioning||!this._element.classList.contains("show"))return;if(B.trigger(this._element,"hide.bs.collapse").defaultPrevented)return;const t=this._getDimension();this._element.style[t]=this._element.getBoundingClientRect()[t]+"px",m(this._element),this._element.classList.add("collapsing"),this._element.classList.remove("collapse","show");const e=this._triggerArray.length;if(e>0)for(let t=0;t{this.setTransitioning(!1),this._element.classList.remove("collapsing"),this._element.classList.add("collapse"),B.trigger(this._element,"hidden.bs.collapse")},this._element,!0)}setTransitioning(t){this._isTransitioning=t}_getConfig(t){return(t={...st,...t}).toggle=Boolean(t.toggle),d("collapse",t,it),t}_getDimension(){return this._element.classList.contains("width")?"width":"height"}_getParent(){let{parent:t}=this._config;t=h(t);const e=`[data-bs-toggle="collapse"][data-bs-parent="${t}"]`;return i.find(e,t).forEach(t=>{const e=a(t);this._addAriaAndCollapsedClass(e,[t])}),t}_addAriaAndCollapsedClass(t,e){if(!t||!e.length)return;const s=t.classList.contains("show");e.forEach(t=>{s?t.classList.remove("collapsed"):t.classList.add("collapsed"),t.setAttribute("aria-expanded",s)})}static collapseInterface(t,e){let s=nt.getInstance(t);const i={...st,...V.getDataAttributes(t),..."object"==typeof e&&e?e:{}};if(!s&&i.toggle&&"string"==typeof e&&/show|hide/.test(e)&&(i.toggle=!1),s||(s=new nt(t,i)),"string"==typeof e){if(void 0===s[e])throw new TypeError(`No method named "${e}"`);s[e]()}}static jQueryInterface(t){return this.each((function(){nt.collapseInterface(this,t)}))}}B.on(document,"click.bs.collapse.data-api",'[data-bs-toggle="collapse"]',(function(t){("A"===t.target.tagName||t.delegateTarget&&"A"===t.delegateTarget.tagName)&&t.preventDefault();const e=V.getDataAttributes(this),s=r(this);i.find(s).forEach(t=>{const s=nt.getInstance(t);let i;s?(null===s._parent&&"string"==typeof e.parent&&(s._config.parent=e.parent,s._parent=s._getParent()),i="toggle"):i=e,nt.collapseInterface(t,i)})})),y(nt);const ot=new RegExp("ArrowUp|ArrowDown|Escape"),rt=v()?"top-end":"top-start",at=v()?"top-start":"top-end",lt=v()?"bottom-end":"bottom-start",ct=v()?"bottom-start":"bottom-end",ht=v()?"left-start":"right-start",dt=v()?"right-start":"left-start",ut={offset:[0,2],boundary:"clippingParents",reference:"toggle",display:"dynamic",popperConfig:null,autoClose:!0},gt={offset:"(array|string|function)",boundary:"(string|element)",reference:"(string|element|object)",display:"string",popperConfig:"(null|object|function)",autoClose:"(boolean|string)"};class pt extends q{constructor(t,e){super(t),this._popper=null,this._config=this._getConfig(e),this._menu=this._getMenuElement(),this._inNavbar=this._detectNavbar(),this._addEventListeners()}static get Default(){return ut}static get DefaultType(){return gt}static get NAME(){return"dropdown"}toggle(){g(this._element)||(this._element.classList.contains("show")?this.hide():this.show())}show(){if(g(this._element)||this._menu.classList.contains("show"))return;const t=pt.getParentFromElement(this._element),e={relatedTarget:this._element};if(!B.trigger(this._element,"show.bs.dropdown",e).defaultPrevented){if(this._inNavbar)V.setDataAttribute(this._menu,"popper","none");else{if(void 0===s)throw new TypeError("Bootstrap's dropdowns require Popper (https://popper.js.org)");let e=this._element;"parent"===this._config.reference?e=t:c(this._config.reference)?e=h(this._config.reference):"object"==typeof this._config.reference&&(e=this._config.reference);const i=this._getPopperConfig(),n=i.modifiers.find(t=>"applyStyles"===t.name&&!1===t.enabled);this._popper=s.createPopper(e,this._menu,i),n&&V.setDataAttribute(this._menu,"popper","static")}"ontouchstart"in document.documentElement&&!t.closest(".navbar-nav")&&[].concat(...document.body.children).forEach(t=>B.on(t,"mouseover",f)),this._element.focus(),this._element.setAttribute("aria-expanded",!0),this._menu.classList.toggle("show"),this._element.classList.toggle("show"),B.trigger(this._element,"shown.bs.dropdown",e)}}hide(){if(g(this._element)||!this._menu.classList.contains("show"))return;const t={relatedTarget:this._element};this._completeHide(t)}dispose(){this._popper&&this._popper.destroy(),super.dispose()}update(){this._inNavbar=this._detectNavbar(),this._popper&&this._popper.update()}_addEventListeners(){B.on(this._element,"click.bs.dropdown",t=>{t.preventDefault(),this.toggle()})}_completeHide(t){B.trigger(this._element,"hide.bs.dropdown",t).defaultPrevented||("ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach(t=>B.off(t,"mouseover",f)),this._popper&&this._popper.destroy(),this._menu.classList.remove("show"),this._element.classList.remove("show"),this._element.setAttribute("aria-expanded","false"),V.removeDataAttribute(this._menu,"popper"),B.trigger(this._element,"hidden.bs.dropdown",t))}_getConfig(t){if(t={...this.constructor.Default,...V.getDataAttributes(this._element),...t},d("dropdown",t,this.constructor.DefaultType),"object"==typeof t.reference&&!c(t.reference)&&"function"!=typeof t.reference.getBoundingClientRect)throw new TypeError("dropdown".toUpperCase()+': Option "reference" provided type "object" without a required "getBoundingClientRect" method.');return t}_getMenuElement(){return i.next(this._element,".dropdown-menu")[0]}_getPlacement(){const t=this._element.parentNode;if(t.classList.contains("dropend"))return ht;if(t.classList.contains("dropstart"))return dt;const e="end"===getComputedStyle(this._menu).getPropertyValue("--bs-position").trim();return t.classList.contains("dropup")?e?at:rt:e?ct:lt}_detectNavbar(){return null!==this._element.closest(".navbar")}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map(t=>Number.parseInt(t,10)):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(){const t={placement:this._getPlacement(),modifiers:[{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"offset",options:{offset:this._getOffset()}}]};return"static"===this._config.display&&(t.modifiers=[{name:"applyStyles",enabled:!1}]),{...t,..."function"==typeof this._config.popperConfig?this._config.popperConfig(t):this._config.popperConfig}}_selectMenuItem({key:t,target:e}){const s=i.find(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",this._menu).filter(u);s.length&&A(s,e,"ArrowDown"===t,!s.includes(e)).focus()}static dropdownInterface(t,e){const s=pt.getOrCreateInstance(t,e);if("string"==typeof e){if(void 0===s[e])throw new TypeError(`No method named "${e}"`);s[e]()}}static jQueryInterface(t){return this.each((function(){pt.dropdownInterface(this,t)}))}static clearMenus(t){if(t&&(2===t.button||"keyup"===t.type&&"Tab"!==t.key))return;const e=i.find('[data-bs-toggle="dropdown"]');for(let s=0,i=e.length;sthis.matches('[data-bs-toggle="dropdown"]')?this:i.prev(this,'[data-bs-toggle="dropdown"]')[0];return"Escape"===t.key?(s().focus(),void pt.clearMenus()):"ArrowUp"===t.key||"ArrowDown"===t.key?(e||s().click(),void pt.getInstance(s())._selectMenuItem(t)):void(e&&"Space"!==t.key||pt.clearMenus())}}B.on(document,"keydown.bs.dropdown.data-api",'[data-bs-toggle="dropdown"]',pt.dataApiKeydownHandler),B.on(document,"keydown.bs.dropdown.data-api",".dropdown-menu",pt.dataApiKeydownHandler),B.on(document,"click.bs.dropdown.data-api",pt.clearMenus),B.on(document,"keyup.bs.dropdown.data-api",pt.clearMenus),B.on(document,"click.bs.dropdown.data-api",'[data-bs-toggle="dropdown"]',(function(t){t.preventDefault(),pt.dropdownInterface(this)})),y(pt);class ft{constructor(){this._element=document.body}getWidth(){const t=document.documentElement.clientWidth;return Math.abs(window.innerWidth-t)}hide(){const t=this.getWidth();this._disableOverFlow(),this._setElementAttributes(this._element,"paddingRight",e=>e+t),this._setElementAttributes(".fixed-top, .fixed-bottom, .is-fixed, .sticky-top","paddingRight",e=>e+t),this._setElementAttributes(".sticky-top","marginRight",e=>e-t)}_disableOverFlow(){this._saveInitialAttribute(this._element,"overflow"),this._element.style.overflow="hidden"}_setElementAttributes(t,e,s){const i=this.getWidth();this._applyManipulationCallback(t,t=>{if(t!==this._element&&window.innerWidth>t.clientWidth+i)return;this._saveInitialAttribute(t,e);const n=window.getComputedStyle(t)[e];t.style[e]=s(Number.parseFloat(n))+"px"})}reset(){this._resetElementAttributes(this._element,"overflow"),this._resetElementAttributes(this._element,"paddingRight"),this._resetElementAttributes(".fixed-top, .fixed-bottom, .is-fixed, .sticky-top","paddingRight"),this._resetElementAttributes(".sticky-top","marginRight")}_saveInitialAttribute(t,e){const s=t.style[e];s&&V.setDataAttribute(t,e,s)}_resetElementAttributes(t,e){this._applyManipulationCallback(t,t=>{const s=V.getDataAttribute(t,e);void 0===s?t.style.removeProperty(e):(V.removeDataAttribute(t,e),t.style[e]=s)})}_applyManipulationCallback(t,e){c(t)?e(t):i.find(t,this._element).forEach(e)}isOverflowing(){return this.getWidth()>0}}const mt={isVisible:!0,isAnimated:!1,rootElement:"body",clickCallback:null},_t={isVisible:"boolean",isAnimated:"boolean",rootElement:"(element|string)",clickCallback:"(function|null)"};class bt{constructor(t){this._config=this._getConfig(t),this._isAppended=!1,this._element=null}show(t){this._config.isVisible?(this._append(),this._config.isAnimated&&m(this._getElement()),this._getElement().classList.add("show"),this._emulateAnimation(()=>{w(t)})):w(t)}hide(t){this._config.isVisible?(this._getElement().classList.remove("show"),this._emulateAnimation(()=>{this.dispose(),w(t)})):w(t)}_getElement(){if(!this._element){const t=document.createElement("div");t.className="modal-backdrop",this._config.isAnimated&&t.classList.add("fade"),this._element=t}return this._element}_getConfig(t){return(t={...mt,..."object"==typeof t?t:{}}).rootElement=h(t.rootElement),d("backdrop",t,_t),t}_append(){this._isAppended||(this._config.rootElement.appendChild(this._getElement()),B.on(this._getElement(),"mousedown.bs.backdrop",()=>{w(this._config.clickCallback)}),this._isAppended=!0)}dispose(){this._isAppended&&(B.off(this._element,"mousedown.bs.backdrop"),this._element.remove(),this._isAppended=!1)}_emulateAnimation(t){E(t,this._getElement(),this._config.isAnimated)}}const vt={backdrop:!0,keyboard:!0,focus:!0},yt={backdrop:"(boolean|string)",keyboard:"boolean",focus:"boolean"};class wt extends q{constructor(t,e){super(t),this._config=this._getConfig(e),this._dialog=i.findOne(".modal-dialog",this._element),this._backdrop=this._initializeBackDrop(),this._isShown=!1,this._ignoreBackdropClick=!1,this._isTransitioning=!1,this._scrollBar=new ft}static get Default(){return vt}static get NAME(){return"modal"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||this._isTransitioning||B.trigger(this._element,"show.bs.modal",{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._isAnimated()&&(this._isTransitioning=!0),this._scrollBar.hide(),document.body.classList.add("modal-open"),this._adjustDialog(),this._setEscapeEvent(),this._setResizeEvent(),B.on(this._element,"click.dismiss.bs.modal",'[data-bs-dismiss="modal"]',t=>this.hide(t)),B.on(this._dialog,"mousedown.dismiss.bs.modal",()=>{B.one(this._element,"mouseup.dismiss.bs.modal",t=>{t.target===this._element&&(this._ignoreBackdropClick=!0)})}),this._showBackdrop(()=>this._showElement(t)))}hide(t){if(t&&["A","AREA"].includes(t.target.tagName)&&t.preventDefault(),!this._isShown||this._isTransitioning)return;if(B.trigger(this._element,"hide.bs.modal").defaultPrevented)return;this._isShown=!1;const e=this._isAnimated();e&&(this._isTransitioning=!0),this._setEscapeEvent(),this._setResizeEvent(),B.off(document,"focusin.bs.modal"),this._element.classList.remove("show"),B.off(this._element,"click.dismiss.bs.modal"),B.off(this._dialog,"mousedown.dismiss.bs.modal"),this._queueCallback(()=>this._hideModal(),this._element,e)}dispose(){[window,this._dialog].forEach(t=>B.off(t,".bs.modal")),this._backdrop.dispose(),super.dispose(),B.off(document,"focusin.bs.modal")}handleUpdate(){this._adjustDialog()}_initializeBackDrop(){return new bt({isVisible:Boolean(this._config.backdrop),isAnimated:this._isAnimated()})}_getConfig(t){return t={...vt,...V.getDataAttributes(this._element),..."object"==typeof t?t:{}},d("modal",t,yt),t}_showElement(t){const e=this._isAnimated(),s=i.findOne(".modal-body",this._dialog);this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(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,s&&(s.scrollTop=0),e&&m(this._element),this._element.classList.add("show"),this._config.focus&&this._enforceFocus(),this._queueCallback(()=>{this._config.focus&&this._element.focus(),this._isTransitioning=!1,B.trigger(this._element,"shown.bs.modal",{relatedTarget:t})},this._dialog,e)}_enforceFocus(){B.off(document,"focusin.bs.modal"),B.on(document,"focusin.bs.modal",t=>{document===t.target||this._element===t.target||this._element.contains(t.target)||this._element.focus()})}_setEscapeEvent(){this._isShown?B.on(this._element,"keydown.dismiss.bs.modal",t=>{this._config.keyboard&&"Escape"===t.key?(t.preventDefault(),this.hide()):this._config.keyboard||"Escape"!==t.key||this._triggerBackdropTransition()}):B.off(this._element,"keydown.dismiss.bs.modal")}_setResizeEvent(){this._isShown?B.on(window,"resize.bs.modal",()=>this._adjustDialog()):B.off(window,"resize.bs.modal")}_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("modal-open"),this._resetAdjustments(),this._scrollBar.reset(),B.trigger(this._element,"hidden.bs.modal")})}_showBackdrop(t){B.on(this._element,"click.dismiss.bs.modal",t=>{this._ignoreBackdropClick?this._ignoreBackdropClick=!1:t.target===t.currentTarget&&(!0===this._config.backdrop?this.hide():"static"===this._config.backdrop&&this._triggerBackdropTransition())}),this._backdrop.show(t)}_isAnimated(){return this._element.classList.contains("fade")}_triggerBackdropTransition(){if(B.trigger(this._element,"hidePrevented.bs.modal").defaultPrevented)return;const{classList:t,scrollHeight:e,style:s}=this._element,i=e>document.documentElement.clientHeight;!i&&"hidden"===s.overflowY||t.contains("modal-static")||(i||(s.overflowY="hidden"),t.add("modal-static"),this._queueCallback(()=>{t.remove("modal-static"),i||this._queueCallback(()=>{s.overflowY=""},this._dialog)},this._dialog),this._element.focus())}_adjustDialog(){const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._scrollBar.getWidth(),s=e>0;(!s&&t&&!v()||s&&!t&&v())&&(this._element.style.paddingLeft=e+"px"),(s&&!t&&!v()||!s&&t&&v())&&(this._element.style.paddingRight=e+"px")}_resetAdjustments(){this._element.style.paddingLeft="",this._element.style.paddingRight=""}static jQueryInterface(t,e){return this.each((function(){const s=wt.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===s[t])throw new TypeError(`No method named "${t}"`);s[t](e)}}))}}B.on(document,"click.bs.modal.data-api",'[data-bs-toggle="modal"]',(function(t){const e=a(this);["A","AREA"].includes(this.tagName)&&t.preventDefault(),B.one(e,"show.bs.modal",t=>{t.defaultPrevented||B.one(e,"hidden.bs.modal",()=>{u(this)&&this.focus()})}),wt.getOrCreateInstance(e).toggle(this)})),y(wt);const Et={backdrop:!0,keyboard:!0,scroll:!1},At={backdrop:"boolean",keyboard:"boolean",scroll:"boolean"};class Tt extends q{constructor(t,e){super(t),this._config=this._getConfig(e),this._isShown=!1,this._backdrop=this._initializeBackDrop(),this._addEventListeners()}static get NAME(){return"offcanvas"}static get Default(){return Et}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||B.trigger(this._element,"show.bs.offcanvas",{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._element.style.visibility="visible",this._backdrop.show(),this._config.scroll||((new ft).hide(),this._enforceFocusOnElement(this._element)),this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.classList.add("show"),this._queueCallback(()=>{B.trigger(this._element,"shown.bs.offcanvas",{relatedTarget:t})},this._element,!0))}hide(){this._isShown&&(B.trigger(this._element,"hide.bs.offcanvas").defaultPrevented||(B.off(document,"focusin.bs.offcanvas"),this._element.blur(),this._isShown=!1,this._element.classList.remove("show"),this._backdrop.hide(),this._queueCallback(()=>{this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._element.style.visibility="hidden",this._config.scroll||(new ft).reset(),B.trigger(this._element,"hidden.bs.offcanvas")},this._element,!0)))}dispose(){this._backdrop.dispose(),super.dispose(),B.off(document,"focusin.bs.offcanvas")}_getConfig(t){return t={...Et,...V.getDataAttributes(this._element),..."object"==typeof t?t:{}},d("offcanvas",t,At),t}_initializeBackDrop(){return new bt({isVisible:this._config.backdrop,isAnimated:!0,rootElement:this._element.parentNode,clickCallback:()=>this.hide()})}_enforceFocusOnElement(t){B.off(document,"focusin.bs.offcanvas"),B.on(document,"focusin.bs.offcanvas",e=>{document===e.target||t===e.target||t.contains(e.target)||t.focus()}),t.focus()}_addEventListeners(){B.on(this._element,"click.dismiss.bs.offcanvas",'[data-bs-dismiss="offcanvas"]',()=>this.hide()),B.on(this._element,"keydown.dismiss.bs.offcanvas",t=>{this._config.keyboard&&"Escape"===t.key&&this.hide()})}static jQueryInterface(t){return this.each((function(){const e=Tt.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)}}))}}B.on(document,"click.bs.offcanvas.data-api",'[data-bs-toggle="offcanvas"]',(function(t){const e=a(this);if(["A","AREA"].includes(this.tagName)&&t.preventDefault(),g(this))return;B.one(e,"hidden.bs.offcanvas",()=>{u(this)&&this.focus()});const s=i.findOne(".offcanvas.show");s&&s!==e&&Tt.getInstance(s).hide(),Tt.getOrCreateInstance(e).toggle(this)})),B.on(window,"load.bs.offcanvas.data-api",()=>i.find(".offcanvas.show").forEach(t=>Tt.getOrCreateInstance(t).show())),y(Tt);const Ct=new Set(["background","cite","href","itemtype","longdesc","poster","src","xlink:href"]),kt=/^(?:(?:https?|mailto|ftp|tel|file):|[^#&/:?]*(?:[#/?]|$))/i,Lt=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[\d+/a-z]+=*$/i,Ot=(t,e)=>{const s=t.nodeName.toLowerCase();if(e.includes(s))return!Ct.has(s)||Boolean(kt.test(t.nodeValue)||Lt.test(t.nodeValue));const i=e.filter(t=>t instanceof RegExp);for(let t=0,e=i.length;t{Ot(t,a)||s.removeAttribute(t.nodeName)})}return i.body.innerHTML}const It=new RegExp("(^|\\s)bs-tooltip\\S+","g"),Nt=new Set(["sanitize","allowList","sanitizeFn"]),St={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(array|string|function)",container:"(string|element|boolean)",fallbackPlacements:"array",boundary:"(string|element)",customClass:"(string|function)",sanitize:"boolean",sanitizeFn:"(null|function)",allowList:"object",popperConfig:"(null|object|function)"},xt={AUTO:"auto",TOP:"top",RIGHT:v()?"left":"right",BOTTOM:"bottom",LEFT:v()?"right":"left"},Mt={animation:!0,template:'',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:[0,0],container:!1,fallbackPlacements:["top","right","bottom","left"],boundary:"clippingParents",customClass:"",sanitize:!0,sanitizeFn:null,allowList:{"*":["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:[]},popperConfig:null},Pt={HIDE:"hide.bs.tooltip",HIDDEN:"hidden.bs.tooltip",SHOW:"show.bs.tooltip",SHOWN:"shown.bs.tooltip",INSERTED:"inserted.bs.tooltip",CLICK:"click.bs.tooltip",FOCUSIN:"focusin.bs.tooltip",FOCUSOUT:"focusout.bs.tooltip",MOUSEENTER:"mouseenter.bs.tooltip",MOUSELEAVE:"mouseleave.bs.tooltip"};class jt extends q{constructor(t,e){if(void 0===s)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");super(t),this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this._config=this._getConfig(e),this.tip=null,this._setListeners()}static get Default(){return Mt}static get NAME(){return"tooltip"}static get Event(){return Pt}static get DefaultType(){return St}enable(){this._isEnabled=!0}disable(){this._isEnabled=!1}toggleEnabled(){this._isEnabled=!this._isEnabled}toggle(t){if(this._isEnabled)if(t){const e=this._initializeOnDelegatedTarget(t);e._activeTrigger.click=!e._activeTrigger.click,e._isWithActiveTrigger()?e._enter(null,e):e._leave(null,e)}else{if(this.getTipElement().classList.contains("show"))return void this._leave(null,this);this._enter(null,this)}}dispose(){clearTimeout(this._timeout),B.off(this._element.closest(".modal"),"hide.bs.modal",this._hideModalHandler),this.tip&&this.tip.remove(),this._popper&&this._popper.destroy(),super.dispose()}show(){if("none"===this._element.style.display)throw new Error("Please use show on visible elements");if(!this.isWithContent()||!this._isEnabled)return;const t=B.trigger(this._element,this.constructor.Event.SHOW),e=p(this._element),i=null===e?this._element.ownerDocument.documentElement.contains(this._element):e.contains(this._element);if(t.defaultPrevented||!i)return;const o=this.getTipElement(),r=n(this.constructor.NAME);o.setAttribute("id",r),this._element.setAttribute("aria-describedby",r),this.setContent(),this._config.animation&&o.classList.add("fade");const a="function"==typeof this._config.placement?this._config.placement.call(this,o,this._element):this._config.placement,l=this._getAttachment(a);this._addAttachmentClass(l);const{container:c}=this._config;W.set(o,this.constructor.DATA_KEY,this),this._element.ownerDocument.documentElement.contains(this.tip)||(c.appendChild(o),B.trigger(this._element,this.constructor.Event.INSERTED)),this._popper?this._popper.update():this._popper=s.createPopper(this._element,o,this._getPopperConfig(l)),o.classList.add("show");const h="function"==typeof this._config.customClass?this._config.customClass():this._config.customClass;h&&o.classList.add(...h.split(" ")),"ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach(t=>{B.on(t,"mouseover",f)});const d=this.tip.classList.contains("fade");this._queueCallback(()=>{const t=this._hoverState;this._hoverState=null,B.trigger(this._element,this.constructor.Event.SHOWN),"out"===t&&this._leave(null,this)},this.tip,d)}hide(){if(!this._popper)return;const t=this.getTipElement();if(B.trigger(this._element,this.constructor.Event.HIDE).defaultPrevented)return;t.classList.remove("show"),"ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach(t=>B.off(t,"mouseover",f)),this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1;const e=this.tip.classList.contains("fade");this._queueCallback(()=>{this._isWithActiveTrigger()||("show"!==this._hoverState&&t.remove(),this._cleanTipClass(),this._element.removeAttribute("aria-describedby"),B.trigger(this._element,this.constructor.Event.HIDDEN),this._popper&&(this._popper.destroy(),this._popper=null))},this.tip,e),this._hoverState=""}update(){null!==this._popper&&this._popper.update()}isWithContent(){return Boolean(this.getTitle())}getTipElement(){if(this.tip)return this.tip;const t=document.createElement("div");return t.innerHTML=this._config.template,this.tip=t.children[0],this.tip}setContent(){const t=this.getTipElement();this.setElementContent(i.findOne(".tooltip-inner",t),this.getTitle()),t.classList.remove("fade","show")}setElementContent(t,e){if(null!==t)return c(e)?(e=h(e),void(this._config.html?e.parentNode!==t&&(t.innerHTML="",t.appendChild(e)):t.textContent=e.textContent)):void(this._config.html?(this._config.sanitize&&(e=Dt(e,this._config.allowList,this._config.sanitizeFn)),t.innerHTML=e):t.textContent=e)}getTitle(){let t=this._element.getAttribute("data-bs-original-title");return t||(t="function"==typeof this._config.title?this._config.title.call(this._element):this._config.title),t}updateAttachment(t){return"right"===t?"end":"left"===t?"start":t}_initializeOnDelegatedTarget(t,e){const s=this.constructor.DATA_KEY;return(e=e||W.get(t.delegateTarget,s))||(e=new this.constructor(t.delegateTarget,this._getDelegateConfig()),W.set(t.delegateTarget,s,e)),e}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map(t=>Number.parseInt(t,10)):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(t){const e={placement:t,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:"onChange",enabled:!0,phase:"afterWrite",fn:t=>this._handlePopperPlacementChange(t)}],onFirstUpdate:t=>{t.options.placement!==t.placement&&this._handlePopperPlacementChange(t)}};return{...e,..."function"==typeof this._config.popperConfig?this._config.popperConfig(e):this._config.popperConfig}}_addAttachmentClass(t){this.getTipElement().classList.add("bs-tooltip-"+this.updateAttachment(t))}_getAttachment(t){return xt[t.toUpperCase()]}_setListeners(){this._config.trigger.split(" ").forEach(t=>{if("click"===t)B.on(this._element,this.constructor.Event.CLICK,this._config.selector,t=>this.toggle(t));else if("manual"!==t){const e="hover"===t?this.constructor.Event.MOUSEENTER:this.constructor.Event.FOCUSIN,s="hover"===t?this.constructor.Event.MOUSELEAVE:this.constructor.Event.FOCUSOUT;B.on(this._element,e,this._config.selector,t=>this._enter(t)),B.on(this._element,s,this._config.selector,t=>this._leave(t))}}),this._hideModalHandler=()=>{this._element&&this.hide()},B.on(this._element.closest(".modal"),"hide.bs.modal",this._hideModalHandler),this._config.selector?this._config={...this._config,trigger:"manual",selector:""}:this._fixTitle()}_fixTitle(){const t=this._element.getAttribute("title"),e=typeof this._element.getAttribute("data-bs-original-title");(t||"string"!==e)&&(this._element.setAttribute("data-bs-original-title",t||""),!t||this._element.getAttribute("aria-label")||this._element.textContent||this._element.setAttribute("aria-label",t),this._element.setAttribute("title",""))}_enter(t,e){e=this._initializeOnDelegatedTarget(t,e),t&&(e._activeTrigger["focusin"===t.type?"focus":"hover"]=!0),e.getTipElement().classList.contains("show")||"show"===e._hoverState?e._hoverState="show":(clearTimeout(e._timeout),e._hoverState="show",e._config.delay&&e._config.delay.show?e._timeout=setTimeout(()=>{"show"===e._hoverState&&e.show()},e._config.delay.show):e.show())}_leave(t,e){e=this._initializeOnDelegatedTarget(t,e),t&&(e._activeTrigger["focusout"===t.type?"focus":"hover"]=e._element.contains(t.relatedTarget)),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState="out",e._config.delay&&e._config.delay.hide?e._timeout=setTimeout(()=>{"out"===e._hoverState&&e.hide()},e._config.delay.hide):e.hide())}_isWithActiveTrigger(){for(const t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1}_getConfig(t){const e=V.getDataAttributes(this._element);return Object.keys(e).forEach(t=>{Nt.has(t)&&delete e[t]}),(t={...this.constructor.Default,...e,..."object"==typeof t&&t?t:{}}).container=!1===t.container?document.body:h(t.container),"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),d("tooltip",t,this.constructor.DefaultType),t.sanitize&&(t.template=Dt(t.template,t.allowList,t.sanitizeFn)),t}_getDelegateConfig(){const t={};if(this._config)for(const e in this._config)this.constructor.Default[e]!==this._config[e]&&(t[e]=this._config[e]);return t}_cleanTipClass(){const t=this.getTipElement(),e=t.getAttribute("class").match(It);null!==e&&e.length>0&&e.map(t=>t.trim()).forEach(e=>t.classList.remove(e))}_handlePopperPlacementChange(t){const{state:e}=t;e&&(this.tip=e.elements.popper,this._cleanTipClass(),this._addAttachmentClass(this._getAttachment(e.placement)))}static jQueryInterface(t){return this.each((function(){const e=jt.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}y(jt);const Ht=new RegExp("(^|\\s)bs-popover\\S+","g"),Rt={...jt.Default,placement:"right",offset:[0,8],trigger:"click",content:"",template:''},Bt={...jt.DefaultType,content:"(string|element|function)"},$t={HIDE:"hide.bs.popover",HIDDEN:"hidden.bs.popover",SHOW:"show.bs.popover",SHOWN:"shown.bs.popover",INSERTED:"inserted.bs.popover",CLICK:"click.bs.popover",FOCUSIN:"focusin.bs.popover",FOCUSOUT:"focusout.bs.popover",MOUSEENTER:"mouseenter.bs.popover",MOUSELEAVE:"mouseleave.bs.popover"};class Wt extends jt{static get Default(){return Rt}static get NAME(){return"popover"}static get Event(){return $t}static get DefaultType(){return Bt}isWithContent(){return this.getTitle()||this._getContent()}getTipElement(){return this.tip||(this.tip=super.getTipElement(),this.getTitle()||i.findOne(".popover-header",this.tip).remove(),this._getContent()||i.findOne(".popover-body",this.tip).remove()),this.tip}setContent(){const t=this.getTipElement();this.setElementContent(i.findOne(".popover-header",t),this.getTitle());let e=this._getContent();"function"==typeof e&&(e=e.call(this._element)),this.setElementContent(i.findOne(".popover-body",t),e),t.classList.remove("fade","show")}_addAttachmentClass(t){this.getTipElement().classList.add("bs-popover-"+this.updateAttachment(t))}_getContent(){return this._element.getAttribute("data-bs-content")||this._config.content}_cleanTipClass(){const t=this.getTipElement(),e=t.getAttribute("class").match(Ht);null!==e&&e.length>0&&e.map(t=>t.trim()).forEach(e=>t.classList.remove(e))}static jQueryInterface(t){return this.each((function(){const e=Wt.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}y(Wt);const qt={offset:10,method:"auto",target:""},zt={offset:"number",method:"string",target:"(string|element)"};class Ft extends q{constructor(t,e){super(t),this._scrollElement="BODY"===this._element.tagName?window:this._element,this._config=this._getConfig(e),this._selector=`${this._config.target} .nav-link, ${this._config.target} .list-group-item, ${this._config.target} .dropdown-item`,this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,B.on(this._scrollElement,"scroll.bs.scrollspy",()=>this._process()),this.refresh(),this._process()}static get Default(){return qt}static get NAME(){return"scrollspy"}refresh(){const t=this._scrollElement===this._scrollElement.window?"offset":"position",e="auto"===this._config.method?t:this._config.method,s="position"===e?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),i.find(this._selector).map(t=>{const n=r(t),o=n?i.findOne(n):null;if(o){const t=o.getBoundingClientRect();if(t.width||t.height)return[V[e](o).top+s,n]}return null}).filter(t=>t).sort((t,e)=>t[0]-e[0]).forEach(t=>{this._offsets.push(t[0]),this._targets.push(t[1])})}dispose(){B.off(this._scrollElement,".bs.scrollspy"),super.dispose()}_getConfig(t){if("string"!=typeof(t={...qt,...V.getDataAttributes(this._element),..."object"==typeof t&&t?t:{}}).target&&c(t.target)){let{id:e}=t.target;e||(e=n("scrollspy"),t.target.id=e),t.target="#"+e}return d("scrollspy",t,zt),t}_getScrollTop(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop}_getScrollHeight(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)}_getOffsetHeight(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height}_process(){const t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),s=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=s){const t=this._targets[this._targets.length-1];this._activeTarget!==t&&this._activate(t)}else{if(this._activeTarget&&t0)return this._activeTarget=null,void this._clear();for(let e=this._offsets.length;e--;)this._activeTarget!==this._targets[e]&&t>=this._offsets[e]&&(void 0===this._offsets[e+1]||t`${e}[data-bs-target="${t}"],${e}[href="${t}"]`),s=i.findOne(e.join(","));s.classList.contains("dropdown-item")?(i.findOne(".dropdown-toggle",s.closest(".dropdown")).classList.add("active"),s.classList.add("active")):(s.classList.add("active"),i.parents(s,".nav, .list-group").forEach(t=>{i.prev(t,".nav-link, .list-group-item").forEach(t=>t.classList.add("active")),i.prev(t,".nav-item").forEach(t=>{i.children(t,".nav-link").forEach(t=>t.classList.add("active"))})})),B.trigger(this._scrollElement,"activate.bs.scrollspy",{relatedTarget:t})}_clear(){i.find(this._selector).filter(t=>t.classList.contains("active")).forEach(t=>t.classList.remove("active"))}static jQueryInterface(t){return this.each((function(){const e=Ft.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}B.on(window,"load.bs.scrollspy.data-api",()=>{i.find('[data-bs-spy="scroll"]').forEach(t=>new Ft(t))}),y(Ft);class Ut extends q{static get NAME(){return"tab"}show(){if(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&this._element.classList.contains("active"))return;let t;const e=a(this._element),s=this._element.closest(".nav, .list-group");if(s){const e="UL"===s.nodeName||"OL"===s.nodeName?":scope > li > .active":".active";t=i.find(e,s),t=t[t.length-1]}const n=t?B.trigger(t,"hide.bs.tab",{relatedTarget:this._element}):null;if(B.trigger(this._element,"show.bs.tab",{relatedTarget:t}).defaultPrevented||null!==n&&n.defaultPrevented)return;this._activate(this._element,s);const o=()=>{B.trigger(t,"hidden.bs.tab",{relatedTarget:this._element}),B.trigger(this._element,"shown.bs.tab",{relatedTarget:t})};e?this._activate(e,e.parentNode,o):o()}_activate(t,e,s){const n=(!e||"UL"!==e.nodeName&&"OL"!==e.nodeName?i.children(e,".active"):i.find(":scope > li > .active",e))[0],o=s&&n&&n.classList.contains("fade"),r=()=>this._transitionComplete(t,n,s);n&&o?(n.classList.remove("show"),this._queueCallback(r,t,!0)):r()}_transitionComplete(t,e,s){if(e){e.classList.remove("active");const t=i.findOne(":scope > .dropdown-menu .active",e.parentNode);t&&t.classList.remove("active"),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!1)}t.classList.add("active"),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!0),m(t),t.classList.contains("fade")&&t.classList.add("show");let n=t.parentNode;if(n&&"LI"===n.nodeName&&(n=n.parentNode),n&&n.classList.contains("dropdown-menu")){const e=t.closest(".dropdown");e&&i.find(".dropdown-toggle",e).forEach(t=>t.classList.add("active")),t.setAttribute("aria-expanded",!0)}s&&s()}static jQueryInterface(t){return this.each((function(){const e=Ut.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}B.on(document,"click.bs.tab.data-api",'[data-bs-toggle="tab"], [data-bs-toggle="pill"], [data-bs-toggle="list"]',(function(t){["A","AREA"].includes(this.tagName)&&t.preventDefault(),g(this)||Ut.getOrCreateInstance(this).show()})),y(Ut);const Kt={animation:"boolean",autohide:"boolean",delay:"number"},Vt={animation:!0,autohide:!0,delay:5e3};class Qt extends q{constructor(t,e){super(t),this._config=this._getConfig(e),this._timeout=null,this._hasMouseInteraction=!1,this._hasKeyboardInteraction=!1,this._setListeners()}static get DefaultType(){return Kt}static get Default(){return Vt}static get NAME(){return"toast"}show(){B.trigger(this._element,"show.bs.toast").defaultPrevented||(this._clearTimeout(),this._config.animation&&this._element.classList.add("fade"),this._element.classList.remove("hide"),m(this._element),this._element.classList.add("showing"),this._queueCallback(()=>{this._element.classList.remove("showing"),this._element.classList.add("show"),B.trigger(this._element,"shown.bs.toast"),this._maybeScheduleHide()},this._element,this._config.animation))}hide(){this._element.classList.contains("show")&&(B.trigger(this._element,"hide.bs.toast").defaultPrevented||(this._element.classList.remove("show"),this._queueCallback(()=>{this._element.classList.add("hide"),B.trigger(this._element,"hidden.bs.toast")},this._element,this._config.animation)))}dispose(){this._clearTimeout(),this._element.classList.contains("show")&&this._element.classList.remove("show"),super.dispose()}_getConfig(t){return t={...Vt,...V.getDataAttributes(this._element),..."object"==typeof t&&t?t:{}},d("toast",t,this.constructor.DefaultType),t}_maybeScheduleHide(){this._config.autohide&&(this._hasMouseInteraction||this._hasKeyboardInteraction||(this._timeout=setTimeout(()=>{this.hide()},this._config.delay)))}_onInteraction(t,e){switch(t.type){case"mouseover":case"mouseout":this._hasMouseInteraction=e;break;case"focusin":case"focusout":this._hasKeyboardInteraction=e}if(e)return void this._clearTimeout();const s=t.relatedTarget;this._element===s||this._element.contains(s)||this._maybeScheduleHide()}_setListeners(){B.on(this._element,"click.dismiss.bs.toast",'[data-bs-dismiss="toast"]',()=>this.hide()),B.on(this._element,"mouseover.bs.toast",t=>this._onInteraction(t,!0)),B.on(this._element,"mouseout.bs.toast",t=>this._onInteraction(t,!1)),B.on(this._element,"focusin.bs.toast",t=>this._onInteraction(t,!0)),B.on(this._element,"focusout.bs.toast",t=>this._onInteraction(t,!1))}_clearTimeout(){clearTimeout(this._timeout),this._timeout=null}static jQueryInterface(t){return this.each((function(){const e=Qt.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}return y(Qt),{Alert:z,Button:F,Carousel:et,Collapse:nt,Dropdown:pt,Modal:wt,Offcanvas:Tt,Popover:Wt,ScrollSpy:Ft,Tab:Ut,Toast:Qt,Tooltip:jt}}));
+//# sourceMappingURL=bootstrap.min.js.map
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/SimplexTheme/Content/js/bootstrap.min_v3.js b/Presentation/Nop.Web/Themes/SimplexTheme/Content/js/bootstrap.min_v3.js
new file mode 100644
index 0000000..9bcd2fc
--- /dev/null
+++ b/Presentation/Nop.Web/Themes/SimplexTheme/Content/js/bootstrap.min_v3.js
@@ -0,0 +1,7 @@
+/*!
+ * Bootstrap v3.3.7 (http://getbootstrap.com)
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under the MIT license
+ */
+if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1||b[0]>3)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){if(a(b.target).is(this))return b.handleObj.handler.apply(this,arguments)}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.7",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a("#"===f?[]:f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.7",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c).prop(c,!0)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c).prop(c,!1))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&&c.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target).closest(".btn");b.call(d,"toggle"),a(c.target).is('input[type="radio"], input[type="checkbox"]')||(c.preventDefault(),d.is("input,button")?d.trigger("focus"):d.find("input:visible,button:visible").first().trigger("focus"))}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.7",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));if(!(a>this.$items.length-1||a<0))return this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){if(!this.sliding)return this.slide("next")},c.prototype.prev=function(){if(!this.sliding)return this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.7",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function c(c){c&&3===c.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=b(d),f={relatedTarget:this};e.hasClass("open")&&(c&&"click"==c.type&&/input|textarea/i.test(c.target.tagName)&&a.contains(e[0],c.target)||(e.trigger(c=a.Event("hide.bs.dropdown",f)),c.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger(a.Event("hidden.bs.dropdown",f)))))}))}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.7",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=b(e),g=f.hasClass("open");if(c(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(a(this)).on("click",c);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger(a.Event("shown.bs.dropdown",h))}return!1}},g.prototype.keydown=function(c){if(/(38|40|27|32)/.test(c.which)&&!/input|textarea/i.test(c.target.tagName)){var d=a(this);if(c.preventDefault(),c.stopPropagation(),!d.is(".disabled, :disabled")){var e=b(d),g=e.hasClass("open");if(!g&&27!=c.which||g&&27==c.which)return 27==c.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find(".dropdown-menu"+h);if(i.length){var j=i.index(c.target);38==c.which&&j>0&&j--,40==c.which&&jdocument.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth
',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(a.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusin"==b.type?"focus":"hover"]=!0),c.tip().hasClass("in")||"in"==c.hoverState?void(c.hoverState="in"):(clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);if(c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusout"==b.type?"focus":"hover"]=!1),!c.isInStateTrue())return clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h="bottom"==h&&k.bottom+m>o.bottom?"top":"top"==h&&k.top-mo.width?"left":"left"==h&&k.left-lg.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;jg.right&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&&(this.$tip=a(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type),a.$tip&&a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null,a.$element=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;!e&&/destroy|hide/.test(b)||(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.7",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.7",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b=e[a]&&(void 0===e[a+1]||b .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.7",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return e=a-d&&"bottom"},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery);
\ No newline at end of file
diff --git a/Presentation/Nop.Web/Themes/SimplexTheme/Views/Shared/Components/TopMenu/Default.cshtml b/Presentation/Nop.Web/Themes/SimplexTheme/Views/Shared/Components/TopMenu/Default.cshtml
index 29d38a2..1d929e0 100644
--- a/Presentation/Nop.Web/Themes/SimplexTheme/Views/Shared/Components/TopMenu/Default.cshtml
+++ b/Presentation/Nop.Web/Themes/SimplexTheme/Views/Shared/Components/TopMenu/Default.cshtml
@@ -3,23 +3,19 @@
@using Nop.Core.Domain.Topics
-